]> git.meshlink.io Git - catta/commitdiff
* modified autogen.sh to better support bsd
authorSebastien Estienne <sebastien.estienne@gmail.com>
Tue, 18 Oct 2005 18:36:01 +0000 (18:36 +0000)
committerSebastien Estienne <sebastien.estienne@gmail.com>
Tue, 18 Oct 2005 18:36:01 +0000 (18:36 +0000)
 * added some info for autogen.sh on bsd in the script
 * cleaned some avahi_log

git-svn-id: file:///home/lennart/svn/public/avahi/trunk@810 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

autogen.sh
avahi-core/iface-pfroute.c

index 9205c57c6c4cbe6285ff2a62d6e080854c73acf6..a9614a5c404daf8ef8c6c089a20ca556556b4ac3 100755 (executable)
@@ -22,7 +22,9 @@ VERSION=1.9
 
 run_versioned() {
     local P
-    type -p "$1-$2" &> /dev/null && P="$1-$2" || local P="$1"
+    type -p "$1-$2" &> /dev/null && P="$1-$2" \
+       || type -p "$1`echo $2 | tr -d '.'`" &> /dev/null && P="$1`echo $2 | tr -d '.'`" \
+       || local P="$1"
 
     shift 2
     "$P" "$@"
@@ -37,10 +39,10 @@ else
     rm -rf autom4te.cache
     rm -f config.cache
 
-    libtoolize -c --force
+    run_versioned libtoolize 1.5 -c --force
     run_versioned aclocal "$VERSION" -I common
-    autoconf -Wall
-    autoheader
+    run_versioned autoconf 2.59 -Wall
+    run_versioned autoheader 2.59
     run_versioned automake "$VERSION" -a -c --foreign
 
     if test "x$NOCONFIGURE" = "x"; then
@@ -48,3 +50,8 @@ else
         make clean
     fi
 fi
+
+# on FreeBSD i must copy this file
+# cp /usr/local/share/aclocal/libtool15.m4 common/
+# cp /usr/local/share/aclocal/pkg.m4 common/
+#./configure --disable-qt3 --disable-qt4 --disable-mono --disable-monodoc --disable-python --disable-dbus --disable-glib --disable-expat --disable-libdaemon --with-distro=none --disable-gtk --disable-xmltoman
index e05b2262ab2c9089d7aead8defb2e20c247932c5..17b80d4bf9b7a3afa86e1e023c560d28f0f67695 100644 (file)
@@ -189,7 +189,7 @@ static void parse_rtmsg(struct rt_msghdr *rtm, int msglen, AvahiInterfaceMonitor
   assert(rtm);
   
   if (rtm->rtm_version != RTM_VERSION) {
-    avahi_log_warn("routing message version %d not understood\n",
+    avahi_log_warn("routing message version %d not understood",
                   rtm->rtm_version);
     return;
   }
@@ -227,7 +227,7 @@ static void socket_event(AvahiWatch *w, int fd, AvahiWatchEvent event,void *user
        return;
       }
 
-      avahi_log_debug("\ngot message of size %d on %s", (int)bytes, ctime(&now));
+      avahi_log_debug("socket_event: got message of size %d on %s", (int)bytes, ctime(&now));
       parse_rtmsg((struct rt_msghdr *)msg, bytes ,m);
     }
     while (bytes > 0);