summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Peach <jpeach@samba.org>2006-10-15 04:49:22 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:15:28 -0500
commit2e46e9189ab7d04b98033dcf2c8a11a2831937d9 (patch)
tree932aba579b77834f3829a3fad5f6dcc20c9a0add
parent94d565b36bf733093195ddec013f3b4e0514945e (diff)
downloadsamba-2e46e9189ab7d04b98033dcf2c8a11a2831937d9.tar.gz
samba-2e46e9189ab7d04b98033dcf2c8a11a2831937d9.tar.bz2
samba-2e46e9189ab7d04b98033dcf2c8a11a2831937d9.zip
r19286: Remove dependency on Fink. If we really *need* anything from Fink,
this shold be a strong dependency. If stuff from Fink is an optional extra, there should be a --with-stuff-from-fink argument. It's just too easy to unexpectedly end up with binaries that depend on /sw/{lib,include}. (This used to be commit d0166e117216b5196b27a7caef776007641072f2)
-rw-r--r--source3/configure.in15
1 files changed, 2 insertions, 13 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 7c257afe6e..8531738ec0 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -813,21 +813,10 @@ main() {
#
*darwin*)
AC_DEFINE(BROKEN_UNICODE_COMPOSE_CHARACTERS, 1, [Does this system use unicode compose characters])
-# Add Fink directories for various packages, like dlcompat.
-# Note: iconv does that explicitly below, but other packages
-# don't.
- CPPFLAGS="$CPPFLAGS -I/sw/include"
- LDFLAGS="$LDFLAGS -L/sw/lib"
-
-# If we have dlsym_prepend_underscore (from Fink's dlcompat),
-# use that instead of plain dlsym.
-
- AC_CHECK_LIB(dl,dlopen)
- AC_CHECK_FUNCS(dlsym_prepend_underscore,[CPPFLAGS="$CPPFLAGS -Ddlsym=dlsym_prepend_underscore"])
-
-# Add a system specific charset module.
+ # Add a system specific charset module.
default_shared_modules="$default_shared_modules charset_macosxfs"
+
;;
*hurd*)
AC_MSG_CHECKING([for LFS support])