diff options
author | Marius Halden <marius.h@lden.org> | 2017-05-19 09:12:38 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2017-05-19 09:12:38 +0200 |
commit | 2211c7c2026ad5c2cf67e1bb27470dd61e443f12 (patch) | |
tree | f7133e2b15ce75e99c5b09b6ea7546c5ceefde13 | |
parent | 195f1a3a40b19f8df919a69def0829388a06bf3b (diff) | |
parent | 310de485e9597df35e94cd4020f8b23121cb3904 (diff) | |
download | bitlbee-facebook-2211c7c2026ad5c2cf67e1bb27470dd61e443f12.tar.gz bitlbee-facebook-2211c7c2026ad5c2cf67e1bb27470dd61e443f12.tar.bz2 bitlbee-facebook-2211c7c2026ad5c2cf67e1bb27470dd61e443f12.tar.xz |
Merge branch 'master' into track-messages
-rwxr-xr-x | .travis/obs.sh | 1 | ||||
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | README | 9 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | facebook/Makefile.am | 2 |
5 files changed, 14 insertions, 11 deletions
diff --git a/.travis/obs.sh b/.travis/obs.sh index 34b08b9..7292750 100755 --- a/.travis/obs.sh +++ b/.travis/obs.sh @@ -18,6 +18,7 @@ sed -ri \ configure.ac sed -ri \ -e "s/bitlbee-dev \([^\(\)]+\),?\s*//" \ + -e "s/(bitlbee[^ ]*) \(>= 3.4\)/\1 (>= 3.5)/g" \ debian/control cat <<EOF > debian/changelog @@ -1,4 +1,9 @@ -bitlbee-facebook-1.1.0 (2017-01-29): +bitlbee-facebook-1.1.1 (2017-04-02): + - Send orca-formatted user agent for all HTTP requests too. Fixes "Failed to + parse thread information" errors when joining channels. + - Fix typo in the month of the 1.1.0 release in the next line + +bitlbee-facebook-1.1.0 (2017-03-29): - Fix connection errors after facebook discontinued support for old versions of facebook messenger for android. While most of the protocol implementation was already above that version, there was a subtle change that broke fetching @@ -36,13 +36,10 @@ With a "global" (or system) bitlbee installation: $ make $ make install -Or with a "local" bitlbee installation (location: $HOME/bitlbee): +Otherwise, before running those commands, set PKG_CONFIG_PATH to the path to +the `bitlbee.pc` file. For example: - $ export BITLBEE_CFLAGS="-I$HOME/bitlbee/include/bitlbee" - $ export BITLBEE_LIBS="" - $ ./autogen.sh --with-plugindir=$HOME/bitlbee/lib - $ make - $ make install + $ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ ## Debugging diff --git a/configure.ac b/configure.ac index e27bb58..8989460 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ AC_INIT( [bitlbee-facebook], - [1.1.0], + [1.1.1], [https://github.com/bitlbee/bitlbee-facebook/issues], [bitlbee-facebook], [https://github.com/bitlbee/bitlbee-facebook], @@ -49,7 +49,7 @@ AC_ARG_ENABLE( [--enable-warnings], [Enable additional compile-time (GCC) warnings] )], - [WARNINGS="yes"], + [WARNINGS="$enableval"], [WARNINGS="no"] ) @@ -73,7 +73,7 @@ AC_ARG_WITH( [--with-plugindir], [BitlBee plugin directory] )], - [plugindir="$with_plugindir"] + [plugindir="$withval"] ) PKG_CHECK_MODULES([BITLBEE], [bitlbee >= 3.4]) diff --git a/facebook/Makefile.am b/facebook/Makefile.am index 779abbe..08254e2 100644 --- a/facebook/Makefile.am +++ b/facebook/Makefile.am @@ -33,7 +33,7 @@ facebook_la_SOURCES = \ facebook-util.h # Build the library as a module -facebook_la_LDFLAGS += -module -avoid-version +facebook_la_LDFLAGS += -module -avoid-version -no-undefined EXTRA_DIST = \ marshaller.list |