From 2e46e9189ab7d04b98033dcf2c8a11a2831937d9 Mon Sep 17 00:00:00 2001 From: James Peach Date: Sun, 15 Oct 2006 04:49:22 +0000 Subject: 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) --- source3/configure.in | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'source3') 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]) -- cgit