From: Robert Boehne Date: Sun, 12 Jan 2003 07:04:27 +0000 (+0000) Subject: * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Revert an X-Git-Tag: release-1-5~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f7134ae45d2df0e484cc690d5bf21fc1ade5250;p=thirdparty%2Flibtool.git * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Revert an accidental rearranging of dylib and so for darwin. --- diff --git a/ChangeLog b/ChangeLog index c985c1af2..a0013d899 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-01-12 Robert Boehne + + * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Revert an + accidental rearranging of dylib and so for darwin. + 2003-01-10 Robert Boehne * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Modify the diff --git a/libtool.m4 b/libtool.m4 index 378538947..5ee22c99c 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -1225,7 +1225,7 @@ darwin* | rhapsody*) soname_spec='${libname}${release}${major}.$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH - shrext='$(test .$module = .yes && echo dylib || echo so)' + shrext='$(test .$module = .yes && echo so || echo dylib)' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/\nlibraries:/' | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g"` ;;