From 14cfd1874f5ecfed1b51fe3421da7f5c7715ac6a Mon Sep 17 00:00:00 2001 From: Diego 'Flameeyes' Pettenò Date: Fri, 8 Aug 2008 18:39:49 +0200 Subject: Remove gettext macro, the package uses intltool instead. --- configure.ac | 2 -- 1 file changed, 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ce365b4..c075a68 100644 --- a/configure.ac +++ b/configure.ac @@ -405,8 +405,6 @@ if test "x$have_kqueue" = "xyes" ; then AC_DEFINE([HAVE_KQUEUE], 1, [Enable BSD kqueue() usage]) fi -AM_GNU_GETTEXT([external]) - IT_PROG_INTLTOOL([0.35.0]) GETTEXT_PACKAGE=avahi AC_SUBST([GETTEXT_PACKAGE]) -- cgit From 01905caa58178302d2bc910893e09eeca81ef320 Mon Sep 17 00:00:00 2001 From: Diego Elio 'Flameeyes' Pettenò Date: Sun, 7 Dec 2008 16:03:06 +0100 Subject: Don't enable PIC code for all compilation. libtool will take care of enabling PIC code whenever necessary, users of PIE-based systems, for randomised processes address will have -fPIE anyway. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index c075a68..4826a60 100644 --- a/configure.ac +++ b/configure.ac @@ -299,7 +299,7 @@ test_gcc_flag() { # If using GCC specify some additional parameters if test "x$GCC" = "xyes" ; then - DESIRED_FLAGS="-Wall -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Winline -fPIC" + DESIRED_FLAGS="-Wall -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Winline" if test "x$HAVE_NETLINK" = "xyes" ; then # Test whether rtnetlink.h can be included when compiled with -std=c99 -- cgit From abc3a9efd1124d74155c6a70798d10710b20786d Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 12 Dec 2008 20:13:58 +0100 Subject: Drop private inotify code Quoting Adrian Bunk: "avahi-daemon ships with the contents of linux/inotify.h plus #define's for the syscall numbers. The latter are #if 0'ed. I'm not sure whether this setup could work at all with some kernel headers and glibc version, but considering that glibc already provides sys/inotify.h for some time it's IMHO time to drop the private inotify code." Original patch from Adrian Bunk. Closes #243. --- configure.ac | 1 - 1 file changed, 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ce365b4..8c41f6b 100644 --- a/configure.ac +++ b/configure.ac @@ -387,7 +387,6 @@ fi AM_CONDITIONAL(HAVE_DLOPEN, test "x$HAVE_DLOPEN" = "xyes") have_inotify=no -AC_CHECK_HEADERS([linux/inotify.h], [have_inotify=yes]) AC_CHECK_HEADERS([sys/inotify.h], [have_inotify=yes]) AM_CONDITIONAL(HAVE_INOTIFY, test "x$have_inotify" = "xyes") -- cgit From 80f53bd46d7416929676afee9ec20bfb436ee154 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 12 Dec 2008 22:10:27 +0100 Subject: bump version and soname --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 8c41f6b..519d73a 100644 --- a/configure.ac +++ b/configure.ac @@ -21,21 +21,21 @@ # USA. AC_PREREQ(2.57) -AC_INIT([avahi],[0.6.23],[avahi (at) lists (dot) freedesktop (dot) org]) +AC_INIT([avahi],[0.6.24],[avahi (at) lists (dot) freedesktop (dot) org]) AC_CONFIG_SRCDIR([avahi-core/server.c]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign 1.9 -Wall]) AC_SUBST(PACKAGE_URL, [http://avahi.org/]) -AC_SUBST(LIBAVAHI_COMMON_VERSION_INFO, [8:0:5]) -AC_SUBST(LIBAVAHI_CORE_VERSION_INFO, [5:5:0]) -AC_SUBST(LIBAVAHI_CLIENT_VERSION_INFO, [5:4:2]) +AC_SUBST(LIBAVAHI_COMMON_VERSION_INFO, [8:1:5]) +AC_SUBST(LIBAVAHI_CORE_VERSION_INFO, [6:0:0]) +AC_SUBST(LIBAVAHI_CLIENT_VERSION_INFO, [5:5:2]) AC_SUBST(LIBAVAHI_GLIB_VERSION_INFO, [1:1:0]) AC_SUBST(LIBAVAHI_GOBJECT_VERSION_INFO, [0:1:0]) AC_SUBST(LIBAVAHI_QT3_VERSION_INFO, [1:2:0]) AC_SUBST(LIBAVAHI_QT4_VERSION_INFO, [1:2:0]) -AC_SUBST(LIBAVAHI_UI_VERSION_INFO, [1:0:1]) +AC_SUBST(LIBAVAHI_UI_VERSION_INFO, [1:1:1]) # Do not touch these, since they we took this version-info from upstream HOWL/Bonjour AC_SUBST(LIBAVAHI_COMPAT_LIBDNS_SD_VERSION_INFO, [1:0:0]) -- cgit