aboutsummaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeLines
...
* | make check: fix this to work againMiklos Vajna2013-01-20-1/+1
| |
* | Remove claims that BitlBee with NSS for SSL is supported or even preferred.Wilmer van der Gaast2012-12-02-5/+5
| |
* | Remove ssl_bogus.c, it really shouldn't be used anymore since it builds aWilmer van der Gaast2012-11-12-16/+2
| | | | | | | | | | next-to-useless binary.
* | Allow building position-independent executables. #981, patch from brainsmoke.Wilmer van der Gaast2012-09-15-0/+15
| |
* | NSS module fixes from mcepl in #714. This removes des.c since it's noWilmer van der Gaast2012-08-19-8/+0
|/ | | | | longer necessary.
* Commit two patches from RH package maintainer (#956).Wilmer van der Gaast2012-06-03-1/+3
|
* Set PACKAGE to BitlBee-LIBPURPLE for the libpurple variant, because in manyWilmer van der Gaast2012-05-02-0/+3
| | | | | ways it's not BitlBee and I'm tired of getting libpurple-related bug reports.
* Use -MMD instead of -MD for dependency calculation. This should drop mostWilmer van der Gaast2012-03-09-1/+1
| | | | | | system includes from the .d files, solving occassional irritating error messages when recompiling an old tree.
* Require at least GLib 2.14 now. It was released in Aug 2007 so that meansWilmer van der Gaast2012-02-19-1/+1
| | | | | BitlBee will still build on any Linux released over the last 5 or so years.
* Rename SRCDIR directory to _SRCDIR_. I guess #907 was caused by SRCDIRWilmer van der Gaast2012-02-11-1/+1
| | | | | unexpectedly being set to something already.
* Fix compatibility with old GnuTLS versions, but with a warning. SeeWilmer van der Gaast2011-12-24-0/+4
| | | | | http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1417 for details.
* Skype module packaging.Wilmer van der Gaast2011-12-10-1/+5
|
* Fix libresolv detection on FreeBSD. Based on a patch by ashish@FreeBSD.org.Wilmer van der Gaast2011-12-07-2/+11
|
* Removing duplicate twitter=1 line. Bug #804.Wilmer van der Gaast2011-11-25-1/+0
|
* Drop the on-disk IPC socket by default. Nothing uses it. If one really wantsWilmer van der Gaast2011-10-19-2/+1
| | | | | it, it can be restored using the --ipcsocket= configure option.
* Small changes to --skype= flag behaviour in configure script.Wilmer van der Gaast2011-07-24-9/+6
|
* configure: --skype=plugin -> --skype=1Miklos Vajna2011-06-30-2/+2
|
* Add build system support for building the skype pluginMiklos Vajna2011-04-12-0/+13
|
* systemd stuff (bug #738)Wilmer van der Gaast2011-03-18-0/+19
|
* More discouraging words on libpurple. Too many people seem to be using itWilmer van der Gaast2011-02-24-1/+7
| | | | | with no good reason.
* Fixing syntax error in configure script.Wilmer van der Gaast2010-12-16-0/+1
|
* Don't use NSS unless the user insists. It's known to not work so well (andWilmer van der Gaast2010-12-16-1/+2
| | | | | | has been fully broken for a long time already anyway). Just use GnuTLS, it's on every machine these days.
* At least don't disable Twitter anymore for libpurple builds. libpurpleWilmer van der Gaast2010-12-07-2/+1
| | | | | | | | | | | doesn't have Twitter support by default and it's unlikely that someone will prefer libpurple-twitter over BitlBee's Twitter code anyway. Also automatically disable libpurple protocol modules if a native variant is already set up. The linking conflict works the other way around (libpurple modules may break if native modules for the same protocol are compiled in) so this should mostly resolve the linking conflict problem.
* Fixed out-of-directory build support to not get confused by Eclipse. #713Wilmer van der Gaast2010-11-20-2/+3
|
* Fix up NSS SSL module.Wilmer van der Gaast2010-11-20-3/+3
|
* Don't use the fd passing code in ipc.c on SunOS since it doesn't seem to beWilmer van der Gaast2010-11-12-0/+1
| | | | | supported there.
* Use gcrypt for 3DES encryption (used for new MSN authentication) so weWilmer van der Gaast2010-10-16-6/+8
| | | | | mostly don't need lib/des.c anymore.
* At least for now, only enable OTR if the user specifically asks for it.Wilmer van der Gaast2010-10-02-2/+4
| | | | | | Distros can now ship a bitlbee-plugin-otr package (that should work with both bitlbee and bitlbee-libpurple).
* Merging mainline, which includes a huge msnp13 merge.Wilmer van der Gaast2010-10-02-0/+6
|\ | | | | | | | | | | Not 100% sure about the OpenSSL merge, should double check that but I'm currently offline.
| * Pull in Makefile dependencies fix from mainline.Wilmer van der Gaast2010-08-28-0/+8
| |\
| * | Now including a nice and compact 3DES implementation done by ChristopheWilmer van der Gaast2010-08-21-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | Devine. OpenSSL exports nice cipher functions, but GnuTLS only just started doing this in 2.10 or so (not even in Debian Sid yet). So instead of adding a whole library for encrypting 72 bytes of data, let's have a built-in 3DES implementation for a while..
* | | Allow building OTR support as a plugin. Fairly simple, let's hope I can getWilmer van der Gaast2010-09-29-3/+10
| | | | | | | | | | | | | | | away with doing this without libtool (eep).
* | | Merge mainline stuff.Wilmer van der Gaast2010-08-31-0/+8
|\ \ \ | | |/ | |/|
| * | Use nifty gcc -MD feature to automatically track .h dependencies of all CWilmer van der Gaast2010-08-27-0/+8
| |/ | | | | | | | | | | | | | | | | | | files, this finally gives proper dependencies, which means the end of getting broken binaries around headerfile changes, etc. Sure, this may not work on obscurux with superawesomeincompatiblecc while autoconf does, but at least BitlBee's configure script still runs in <1s. :-)
* | First step in this merge. Mostly a bzr merge and then a cleanup of conflictsWilmer van der Gaast2010-08-24-0/+30
|\ \ | |/ |/| | | | | and parts I want to/have to redo (because of ui-fix).
| * merge in bitlbee 1.2.6Sven Moritz Hallberg2010-06-03-9/+39
| |\
| * \ merge in bitlbee 1.2.5Sven Moritz Hallberg2010-06-03-12/+52
| |\ \
| * | | commit updates by ashish shukla <wahjava@gmail.com>Sven Moritz Hallberg2009-03-12-1/+1
| | | |
| * | | merge in latest trunkSven Moritz Hallberg2008-07-17-22/+61
| |\ \ \
| * | | | remove gthread dependencySven Moritz Hallberg2008-02-17-2/+2
| | | | |
| * | | | OTR support, first checkinSven Moritz Hallberg2008-02-03-2/+25
| | | | |
* | | | | OpenSolaris (non-gcc) fixes, patches from Dagobert Michelsen <dam@opencsw.org>Wilmer van der Gaast2010-08-07-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | with some changes.
* | | | | Merging killerbee stuff, bringing all the bleeding-edge stuff together.Wilmer van der Gaast2010-06-07-2/+61
|\ \ \ \ \
| * | | | | A few more configure script tweaks: Don't enable libpurple by defaultWilmer van der Gaast2010-06-05-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | anymore (in preparation for a merge), and limit the directory replication stuff.
| * | | | | Allow one to run the configure script from a different directory and put allWilmer van der Gaast2010-05-25-1/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | build files in there. I need this to properly make Debian package variants (i.e. libpurple and native).
| * | | | | Merging killerbee. (The non-libpurple stuff currently doesn't compile.)Wilmer van der Gaast2010-05-25-1/+1
| |\ \ \ \ \
| * | | | | | As long as this is a separate branch, enabling purple by default's not aWilmer van der Gaast2010-05-14-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bad idea.
| * | | | | | Warning on the libpurple+libevent combination.Wilmer van der Gaast2010-05-02-0/+7
| | | | | | |
| * | | | | | Although probably the Twitter module won't interfere with libpurple,Wilmer van der Gaast2010-05-02-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for now I'll let BitlBee-libpurple be just that.
| * | | | | | Merging stuff from mainline (1.2.6).Wilmer van der Gaast2010-04-24-3/+27
| |\ \ \ \ \ \ | | | |_|_|_|/ | | |/| | | |