]> arthur.barton.de Git - netatalk.git/blobdiff - macros/config-checks.m4
Writing metadata xattr on directories with sticky bit set, FR#94
[netatalk.git] / macros / config-checks.m4
index 1627fd1ddc8750e1b6e194f9ac17bd9d505a3d06..2b4f4b7e0f3fce515ffba5ea4f49ba73bcba470f 100644 (file)
@@ -1,12 +1,11 @@
-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([AC_NETATALK_CONFIG_DIRS], [
-       PKGCONFDIR="${sysconfdir}/netatalk"
+       PKGCONFDIR="${sysconfdir}"
 
        AC_ARG_WITH(pkgconfdir,
                [  --with-pkgconfdir=DIR   package specific configuration in DIR
-                          [[SYSCONF/netatalk]]],
+                          [[$sysconfdir]]],
                        [
                        if test "x$withval" != "x"; then
                                PKGCONFDIR="$withval"
@@ -15,13 +14,13 @@ AC_DEFUN([AC_NETATALK_CONFIG_DIRS], [
        )
 
 
-       SERVERTEXT="${PKGCONFDIR}/msg"
+       SERVERTEXT="${localstatedir}/netatalk/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 [[$localstatedir/netatalk/msg/]]],
                [
                        if test x"$withval" = x"no";  then 
-                               AC_MSG_WARN([*** message-dir is mandatory and cannot be disabled, using default ***])
+                               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"
                        fi