]> arthur.barton.de Git - netatalk.git/commitdiff
MFH: 1.170
authorjmarcus <jmarcus>
Fri, 18 Oct 2002 03:39:40 +0000 (03:39 +0000)
committerjmarcus <jmarcus>
Fri, 18 Oct 2002 03:39:40 +0000 (03:39 +0000)
Make CDB the default data store.

configure.in

index 92216571eed19ee1ce49927020a3fd068e76d805..f575753854373389b7ba1760f12d13d827aaa020 100644 (file)
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.170 2002-10-16 16:55:55 jmarcus Exp $
+dnl $Id: configure.in,v 1.168.2.1 2002-10-18 03:39:40 jmarcus Exp $
 dnl configure.in for netatalk
 
 AC_INIT(bin/adv1tov2/adv1tov2.c)
@@ -72,8 +72,6 @@ AC_CHECK_LIB(ubik, main)
 # Be sure to test before adding AFS libs in LIBS path as AFS lib
 # has such a function that works only on AFS filesystems.
 AC_CHECK_FUNCS(access)
-# 
-AC_CHECK_FUNCS(pread pwrite)
 
 dnl Checks for header files.
 AC_HEADER_DIRENT
@@ -106,7 +104,7 @@ AC_FUNC_MMAP
 AC_TYPE_SIGNAL
 AC_FUNC_UTIME_NULL
 AC_FUNC_WAIT3
-AC_CHECK_FUNCS(flock getcwd gethostname gettimeofday getusershell mkdir rmdir select socket strdup strcasestr strstr strtoul setpgrp strchr memcpy)
+AC_CHECK_FUNCS(flock getcwd gethostname gettimeofday getusershell mkdir rmdir select socket strdup strstr strtoul setpgrp strchr memcpy)
 AC_FUNC_SETPGRP
 
 dnl Checks for (v)snprintf
@@ -186,20 +184,6 @@ AC_ARG_ENABLE(debug,
        fi
 )
 
-afp3=no
-AC_ARG_ENABLE(afp3,
-       [  --enable-afp3          enable AFP 3.x calls],
-       if test "$enableval" = "yes"; then
-               afp3=yes
-               AC_DEFINE(AFP3x, 1)
-               AC_MSG_RESULT([enabling AFP 3.x calls])
-       fi
-)
-
-if test "$afp3" = "yes"; then
-        AC_SYS_LARGEFILE
-fi
-
 
 dnl ----------- A NOTE ABOUT DROPKLUDGE
 dnl The trouble with this fix is that if you know what the file is called, it
@@ -279,12 +263,12 @@ AC_ARG_WITH(cdb,
                USE_CDB="no"
                AC_MSG_ERROR([DID scheme must be CNID to use CDB])
            else
-               USE_CDB="no"
-               AC_MSG_RESULT([no])
+               USE_CDB="no"
+               AC_MSG_RESULT([no])
            fi
        else
-           USE_CDB="yes"
-           AC_MSG_RESULT([yes])
+               USE_CDB="yes"
+               AC_MSG_RESULT([yes])
        fi
        , AC_MSG_RESULT([yes])
 )