From 26c3cad60f4c04231efb7ff67ce77c5e3d701b58 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 6 Nov 2007 02:35:46 +0100 Subject: r25852: Move SHLIBEXT determination into a test as well. (This used to be commit aaaed5edc06f3055794e55a8038dbbdac47ce5b6) --- source4/build/m4/check_ld.m4 | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'source4/build') diff --git a/source4/build/m4/check_ld.m4 b/source4/build/m4/check_ld.m4 index 77c22bcfd6..460cb15621 100644 --- a/source4/build/m4/check_ld.m4 +++ b/source4/build/m4/check_ld.m4 @@ -18,11 +18,8 @@ AC_SUBST(BLDSHARED) AC_SUBST(LD) AC_SUBST(LDFLAGS) AC_SUBST(SHLD) -AC_SUBST(SHLD_FLAGS) AC_SUBST(SHLD_UNDEF_FLAGS) -AC_SUBST(SHLIBEXT) AC_SUBST(SONAMEFLAG) -AC_SUBST(PICFLAG) # Assume non-shared by default and override below # these are the defaults, good for lots of systems @@ -31,7 +28,6 @@ STLD_FLAGS="-rcs" BLDSHARED="false" LD="${CC}" SHLD="${CC}" -SHLIBEXT="so" SONAMEFLAG="" PICFLAG="" @@ -101,10 +97,8 @@ case "$host_os" in BLDSHARED="true" # I hope this is correct fi if test "$host_cpu" = "ia64"; then - SHLIBEXT="so" LDFLAGS="$LDFLAGS -Wl,-E,+b/usr/local/lib/hpux32:/usr/lib/hpux32" else - SHLIBEXT="sl" LDFLAGS="$LDFLAGS -Wl,-E,+b/usr/local/lib:/usr/lib" fi ;; @@ -119,7 +113,6 @@ case "$host_os" in ;; *darwin*) BLDSHARED="true" - SHLIBEXT="dylib" ;; esac @@ -140,6 +133,7 @@ AC_MSG_RESULT([$STLD_FLAGS]) AC_LD_PICFLAG AC_LD_EXPORT_DYNAMIC AC_LD_SHLDFLAGS +AC_LD_SHLIBEXT AC_ARG_ENABLE(shared, [ --disable-shared Disable testing for building shared libraries], -- cgit