diff options
| author | Trent Lloyd <lathiat@bur.st> | 2005-08-24 09:38:42 +0000 | 
|---|---|---|
| committer | Trent Lloyd <lathiat@bur.st> | 2005-08-24 09:38:42 +0000 | 
| commit | b937e3db60682cec5fec1119cbbb8bf0ae31834a (patch) | |
| tree | edb8583301a1ba755dd68977a327943aae2b7cc6 | |
| parent | 02454f166de8f9199a79a7b731124ba27f263b6b (diff) | |
 * Merge r433:436 from trunk into branches/netlink-integrationnetlink-abstraction
git-svn-id: file:///home/lennart/svn/public/avahi/branches/netlink-abstraction@437 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
| -rwxr-xr-x | avahi-utils/avahi-bookmarks.in | 2 | ||||
| -rwxr-xr-x | bootstrap.sh | 2 | ||||
| -rw-r--r-- | configure.ac | 14 | ||||
| -rwxr-xr-x | initscript/archlinux/avahi-dnsconfd.in | 3 | 
4 files changed, 15 insertions, 6 deletions
| diff --git a/avahi-utils/avahi-bookmarks.in b/avahi-utils/avahi-bookmarks.in index ce8eba1..07ca8f0 100755 --- a/avahi-utils/avahi-bookmarks.in +++ b/avahi-utils/avahi-bookmarks.in @@ -38,7 +38,7 @@ try:      from twisted.internet import reactor      from twisted.web import server, resource  except ImportError: -    print "Sorry, to use this tool you need to install twisted." +    print "Sorry, to use this tool you need to install twisted and twisted.web."      sys.exit(1)  urlproto = { "_http._tcp" : "http",  "_https._tcp" : "https", "_ftp._tcp" : "ftp" } diff --git a/bootstrap.sh b/bootstrap.sh index d24de75..4d8d545 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh  # $Id$  # This file is part of avahi. diff --git a/configure.ac b/configure.ac index d53dc76..c041dbc 100644 --- a/configure.ac +++ b/configure.ac @@ -59,14 +59,14 @@ fi  with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `  if test "z$with_distro" = "z"; then -    AC_MSG_ERROR([Linux distribution autodetection failed, you must specify the distribution to target using --with-distro=DISTRO]) +    AC_MSG_ERROR([Linux distribution autodetection failed, you must specify the distribution to target using --with-distro=DISTRO, set DISTRO to none if your distribution is not supported.])      exit 1  else  case $with_distro in -    debian|gentoo|archlinux) +    debian|gentoo|archlinux|none)       ;;      *) -     AC_MSG_ERROR([Your distribution (${with_distro}) is not yet supported, init scripts and dbus configuration will not be installed! (patches welcome)]) +     AC_MSG_ERROR([Your distribution (${with_distro}) is not yet supported, init scripts and dbus configuration will not be installed! (patches welcome), you can specify --with-distro=none to skip this check])       ;;  esac  fi @@ -140,6 +140,14 @@ AC_FUNC_STAT  AC_TYPE_MODE_T  AC_TYPE_PID_T +# Check for pkg-config manually first, as if its not installed the +# PKG_PROG_PKG_CONFIG macro won't be defined. +AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no) + +if test x"$have_pkg_config" == xno; then +    AC_MSG_ERROR(pkg-config is required to install this program) +fi +  PKG_PROG_PKG_CONFIG  # diff --git a/initscript/archlinux/avahi-dnsconfd.in b/initscript/archlinux/avahi-dnsconfd.in index 5bfbcbf..780b48b 100755 --- a/initscript/archlinux/avahi-dnsconfd.in +++ b/initscript/archlinux/avahi-dnsconfd.in @@ -66,7 +66,8 @@ case "$1" in              stat_fail          else              stat_done -        endif +        fi +        ;;      *)          echo "usage: $0 {start|stop|restart|reload}"  	;; | 
