]> arthur.barton.de Git - netatalk.git/blobdiff - macros/config-checks.m4
Spelling fix in log message: continous -> continuous
[netatalk.git] / macros / config-checks.m4
index 47d063a3ce95dfd1b07458323fc36e3f6c844d61..eb4cf882efe7fe8ceaec72e974149fbaa3e835c3 100644 (file)
@@ -1,4 +1,4 @@
-dnl $Id: config-checks.m4,v 1.3 2002-04-29 06:23:58 morgana Exp $
+dnl $Id: config-checks.m4,v 1.6 2005-04-28 20:50:05 bfernhomberg Exp $
 dnl Autoconf macro to set the configuration directories.
 
 AC_DEFUN([NETATALK_CONFIG_DIRS], [
@@ -6,7 +6,7 @@ AC_DEFUN([NETATALK_CONFIG_DIRS], [
 
        AC_ARG_WITH(pkgconfdir,
                [  --with-pkgconfdir=DIR   package specific configuration in DIR
-                          [SYSCONF/netatalk]],
+                          [[SYSCONF/netatalk]]],
                        [
                        if test "x$withval" != "x"; then
                                PKGCONFDIR="$withval"
@@ -14,32 +14,20 @@ AC_DEFUN([NETATALK_CONFIG_DIRS], [
                ]
        )
 
-       NLSDIR="${PKGCONFDIR}/nls"
-
-       AC_ARG_WITH(nls-dir,
-               [  --with-nls-dir=PATH     path to NLS files [PKGCONF/nls]],
-               [
-                       if test "x$withval" != "x"; then
-                               NLSDIR="$withval"
-                       fi
-               ]
-       )
 
        SERVERTEXT="${PKGCONFDIR}/msg"
 
        AC_ARG_WITH(message-dir,
-               [  --with-message-dir=PATH path to server message files [PKGCONF/msg]],
+               [  --with-message-dir=PATH path to server message files [[PKGCONF/msg]]],
                [
-                       if test "x$withval" != "x"; then
+                       if test x"$withval" = x"no";  then 
+                               AC_MSG_WARN([*** message-dir is mandatory and cannot be disabled, using default ***])
+                       elif test "x$withval" != "x" && test x"$withval" != x"yes"; then
                                SERVERTEXT="$withval"
-                               cat >> confdefs.h <<EOF
-#define SERVERTEXT "$withval"
-EOF
                        fi
                ]
        )
 
        AC_SUBST(PKGCONFDIR)
-       AC_SUBST(NLSDIR)
        AC_SUBST(SERVERTEXT)
 ])