]> arthur.barton.de Git - netatalk.git/commitdiff
Removed checks for libs that cause problems on OpenBSD. Use new quota check.
authorsrittau <srittau>
Sat, 1 Dec 2001 15:26:41 +0000 (15:26 +0000)
committersrittau <srittau>
Sat, 1 Dec 2001 15:26:41 +0000 (15:26 +0000)
configure.in
etc/afpd/Makefile.am

index 9740df99e8c1eab84caa39ac8757bebe38c7b901..c9ba79798c6cf349c3206091a669858618bae23e 100644 (file)
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.135 2001-11-30 05:52:36 srittau Exp $
+dnl $Id: configure.in,v 1.136 2001-12-01 15:26:41 srittau Exp $
 dnl configure.in for netatalk
 
 AC_INIT(bin/adv1tov2/adv1tov2.c)
@@ -36,8 +36,6 @@ dnl Replace `main' with a function in -lauth:
 AC_CHECK_LIB(auth, main)
 dnl Replace `main' with a function in -lcmd:
 AC_CHECK_LIB(cmd, main)
-dnl Replace `main' with a function in -lcom_err:
-AC_CHECK_LIB(com_err, main)
 dnl Replace `main' with a function in -lcrypt:
 AC_CHECK_LIB(crypt, main)
 dnl Replace `main' with a function in -ld:
@@ -56,10 +54,6 @@ dnl Replace `main' with a function in -lnsl:
 AC_CHECK_LIB(nsl, main)
 dnl Replace `main' with a function in -lprot:
 AC_CHECK_LIB(prot, main)
-dnl Replace `main' with a function in -lresolv:
-AC_CHECK_LIB(resolv, main)
-dnl Replace `main' with a function in -lrpcsvc:
-AC_CHECK_LIB(rpcsvc, main)
 dnl Replace `main' with a function in -lrx:
 AC_CHECK_LIB(rx, main)
 dnl Replace `main' with a function in -lrxkad:
@@ -258,6 +252,9 @@ if test "x$db3_required" = "xyes"; then
        AC_PATH_DB3(, [AC_MSG_ERROR([Berkeley DB3 library not found!])])
 fi
 
+dnl Check for quota support
+AC_CHECK_QUOTA
+
 msg_dir=""
 AC_ARG_WITH(message-dir,
        [  --with-message-dir=PATH path to message files [[PKGCONF/msg]]],
index 17a2f060c28a44ad0a122714dc60efc1d0e0a50d..138c17e421839cfa4fe4966a433e7bdaeaaefdb5 100644 (file)
@@ -23,7 +23,7 @@ noinst_HEADERS = auth.h codepage.h afp_config.h desktop.h directory.h file.h \
         filedir.h fork.h globals.h icon.h misc.h status.h switch.h uam_auth.h \
         uid.h unix.h volume.h parse_mtab.h
 
-LIBS = @LIBS@ @AFPD_LIBS@
+LIBS = @LIBS@ @AFPD_LIBS@ @QUOTA_LIBS@
 
 CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/sys \
         @CFLAGS@ \