]> git.meshlink.io Git - catta/commitdiff
add some quoting to configure.ac
authorLennart Poettering <lennart@poettering.net>
Wed, 10 Aug 2005 14:23:39 +0000 (14:23 +0000)
committerLennart Poettering <lennart@poettering.net>
Wed, 10 Aug 2005 14:23:39 +0000 (14:23 +0000)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@287 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

configure.ac

index 34b57896eb72b12e5f7ab5ecec8ec2820e36e213..f27a959a1fcaa60e9b2a9d31b9ac3e14173f9845 100644 (file)
@@ -71,7 +71,7 @@ AC_SUBST(GLIB20_CFLAGS)
 AC_SUBST(GLIB20_LIBS)
 
 AC_ARG_ENABLE(gtk,
 AC_SUBST(GLIB20_LIBS)
 
 AC_ARG_ENABLE(gtk,
-        AS_HELP_STRING(--disable-gtk,Use GTK+ (default=yes)),
+        AS_HELP_STRING([--disable-gtk],[Use GTK+ (default=yes)]),
         [case "${enableval}" in
                 yes) ENABLE_GTK=yes ;;
                 no)  ENABLE_GTK=no ;;
         [case "${enableval}" in
                 yes) ENABLE_GTK=yes ;;
                 no)  ENABLE_GTK=no ;;
@@ -113,7 +113,7 @@ DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
 # XMLTOMAN manpage generation
 #
 AC_ARG_ENABLE(xmltoman,
 # XMLTOMAN manpage generation
 #
 AC_ARG_ENABLE(xmltoman,
-        AS_HELP_STRING(--disable-xmltoman,Disable rebuilding of man pages with xmltoman),
+        AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
 [case "${enableval}" in
   yes) xmltoman=yes ;;
   no)  xmltoman=no ;;
 [case "${enableval}" in
   yes) xmltoman=yes ;;
   no)  xmltoman=no ;;
@@ -135,7 +135,7 @@ AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
 # D-BUS
 #
 AC_ARG_ENABLE(dbus,
 # D-BUS
 #
 AC_ARG_ENABLE(dbus,
-        AS_HELP_STRING(--disable-dbus,Enable DBUS support (default=no)),
+        AS_HELP_STRING([--disable-dbus],[Enable DBUS support (default=no)]),
         [case "${enableval}" in
                 yes) ENABLE_DBUS=yes ;;
                 no)  ENABLE_DBUS=no ;;
         [case "${enableval}" in
                 yes) ENABLE_DBUS=yes ;;
                 no)  ENABLE_DBUS=no ;;
@@ -148,7 +148,7 @@ if test "x$ENABLE_DBUS" = "xyes"; then
        AC_DEFINE(ENABLE_DBUS, 1, [Whether to use DBUS or not])
         PKG_CHECK_MODULES(DBUS, [ dbus-glib-1 >= 0.30])
 
        AC_DEFINE(ENABLE_DBUS, 1, [Whether to use DBUS or not])
         PKG_CHECK_MODULES(DBUS, [ dbus-glib-1 >= 0.30])
 
-       AC_ARG_WITH(dbus-sys, [  --with-dbus-sys=<dir>   where D-BUS system.d directory is])
+       AC_ARG_WITH(dbus-sys, AS_HELP_STRING([--with-dbus-sys=<dir>], [where D-BUS system.d directory is]))
 
        if ! test -z "$with_dbus_sys" ; then
           DBUS_SYS_DIR="$with_dbus_sys"
 
        if ! test -z "$with_dbus_sys" ; then
           DBUS_SYS_DIR="$with_dbus_sys"
@@ -191,7 +191,7 @@ fi
 #
 # Detecting the linux distro for specific things like initscripts.
 #
 #
 # Detecting the linux distro for specific things like initscripts.
 #
-AC_ARG_WITH(distro, AS_HELP_STRING(--with-distro=DISTRO,Specify the Linux distribution to target: One of redhat, suse, gentoo, debian, or slackware))
+AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the Linux distribution to target: One of redhat, suse, gentoo, debian, or slackware]))
 if test "z$with_distro" = "z"; then
    AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
    AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
 if test "z$with_distro" = "z"; then
    AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
    AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
@@ -224,7 +224,7 @@ AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
 #
 # Defining Avahi User and Group.
 #
 #
 # Defining Avahi User and Group.
 #
-AC_ARG_WITH(avahi_user,[  --with-avahi-user=<user>  User for running the Avahi daemon (avahi)])
+AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running the Avahi daemon (avahi)]))
 if test -z "$with_avahi_user" ; then
     AVAHI_USER=avahi
 else
 if test -z "$with_avahi_user" ; then
     AVAHI_USER=avahi
 else
@@ -233,7 +233,7 @@ fi
 AC_SUBST(AVAHI_USER)
 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
 
 AC_SUBST(AVAHI_USER)
 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
 
-AC_ARG_WITH(avahi_group,[  --with-avahi-group=<grp>  Group for Avahi (avahi)])
+AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for Avahi (avahi)]))
 if test -z "$with_avahi_group" ; then
     AVAHI_GROUP=avahi
 else
 if test -z "$with_avahi_group" ; then
     AVAHI_GROUP=avahi
 else
@@ -254,7 +254,7 @@ AC_SUBST(avahi_socket)
 # Python stuff
 #
 AC_ARG_ENABLE(python,
 # Python stuff
 #
 AC_ARG_ENABLE(python,
-       AS_HELP_STRING(--disable-python, Disable scripts that depends on python),
+       AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
        [case "${enableval}" in
              yes) use_python=yes ;;
              no)  use_python=no ;;
        [case "${enableval}" in
              yes) use_python=yes ;;
              no)  use_python=no ;;