aboutsummaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeLines
...
* Add git specific stuff!dequis2015-01-25-0/+6
| | | | | | | | - A few build system tweaks - A fancy README.md - s/.bzrignore/.gitignore/ - .travis.yml for travis-ci integration - doc/git-bzr-rev-map for historical purposes
* Fix compiler warnings on Cygwin and Mac OS X.Jason Copenhaver2015-01-16-0/+8
| | | | | | | | * Don't use PIE/PIC on Cygwin/Darwin unless specified as these platforms don't support it. * Cleanup warnings for 'make check' build. * Fix the type issue for getsockopt calls. * Fix enum warnings in Yahoo libs on Mac OS X.
* configure: --asan=1 parameter for AddressSanitizerdequis2014-11-24-1/+14
| | | | | | | | Requires gcc >=4.8 or clang >=3.1 AddressSanitizer (ASan) is a fast memory error detector. See also: https://code.google.com/p/address-sanitizer/wiki/AddressSanitizer
* RIP native win32 support (use cygwin instead)dequis2014-09-27-3/+1
| | | | It has been broken for a very long time and nobody cared about it.
* Add -lgcrypt when building with OTR built-indequis2014-09-27-1/+1
| | | | Needed when building without gnutls (which already depends on gcrypt)
* fix latest HAS_NAMESER code on cygwin, mac and openbsdJason Copenhaver2014-07-24-27/+13
|
* srv_lookup: Portability fixes, handle compressed responsesjcopenha2014-07-24-1/+112
| | | | | | | | | | srv_lookup works on cygwin and openbsd now. Provide ns_initparse, friends, and types where they aren't provided by platform. Use dn_expandname instead of custom parser so compressed DNS responses are handled correctly.
* Allow LDFLAGS to be provided in the environment and consistently use $(LDFLAGS)Jelmer Vernooij2014-07-20-0/+2
| | | | | when linking (not partially linking).
* Fix version in pkg-config file, also change bzr version format slightlydequis2014-06-26-2/+6
| | | | | | | | | Old bzr version format: bzr-1234 New bzr version format: 3.2.1-bzr-1234 Version spoofing with the BITLBEE_VERSION also changed slightly - it does not need quotes around the version number anymore for it to compile correctly.
* configure: Let the user enable both built-in protocols and purpledequis2014-06-26-10/+15
| | | | | | | | | | There's no real risk in enabling these, since protocols/purple/purple.c already avoids adding duplicate protocols in purple_initmodule(): /* If we already have this one (as a native module), don't add a libpurple duplicate. */ if( find_protocol( prot->info->id ) ) continue;
* configure: Add spaces after <<EOF heredoc markers for claritydequis2014-06-26-9/+9
| | | | I mean, they confuse the vim bash syntax highlighter
* pkgconfig: Plugindir fix for bitlbee.pc (Ticket #1085)jgeboski2014-02-27-0/+2
|
* Update json-parser code to git rev 11a80f389769d1f66ca7fbe64ad89c82d3ba4ba9.Wilmer van der Gaast2014-02-13-1/+1
| | | | | | Few BitlBee-specific diffs now. Annoyingly need to link to libm now for the use of the function pow() since the lib now does its own number parsing...
* Fix building of debug binaries (partially broken by changeset:devel,253).Wilmer van der Gaast2013-12-20-2/+1
|
* Ugly: Bogus dependency on libotr2-dev, but adding a warning to the configureWilmer van der Gaast2013-12-07-0/+6
| | | | | | | | | script that this actually won't work. This because I can't figure out how to make a source dependency conditional on whether a certain binary packages is going to be built. It's kind of okay since libotr2-dev is unavailable on new systems anyway.
* Define _GNU_SOURCE via the command line instead of bitlbee.h (which doesn'tWilmer van der Gaast2013-06-02-1/+1
| | | | | get included everywhere). Debian #703550.
* Merging "storage" branch which I wrote long ago. It separates generation ofWilmer van der Gaast2013-04-20-34/+0
|\ | | | | | | | | | | XML-formatted user configs from disk I/O so we can try to start using other mechanisms to store them (a REST API or something, for example).
| * Drop the LDAP stuff that was never even close to finished.Wilmer van der Gaast2012-06-04-34/+0
| | | | | | | | | | | | | | | | | | | | | | There was actually a branch where LDAP support was more or less in a usable state, but there were still some unsolved problems including the fact that every setting has its own LDAP schema entry, which would mean lots of maintenance overhead for pretty much every BitlBee release. :-( Instead, we'll just stick to the XML format everywhere and just store it in different ways.
* | #978 fix Mac build of the Skype pluginMiklos Vajna2013-03-01-0/+5
| |
* | 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..