Added support for Apple's ".dylib". Suggested by Marc Vaillant (who says

it's needed with OS 10.5.)
This commit is contained in:
William McBrine
2008-07-13 01:28:59 +00:00
parent 13fc553871
commit 57765baba7
2 changed files with 2 additions and 2 deletions

2
aclocal.m4 vendored
View File

@@ -175,7 +175,7 @@ mh_solaris_path=""
for mh_lib in $mh_libs; do
mh_lib_found=no
for ac_dir in $mh_lib_dirs ; do
for mh_ext in a so sl dll.a; do
for mh_ext in a so sl dll.a dylib; do
if test -r $ac_dir/lib$mh_lib.$mh_ext; then
if test "x$mh_prev_dir" != "x$ac_dir" ; then
if test "x$mh_prev_dir" = "x" ; then

2
configure vendored
View File

@@ -4799,7 +4799,7 @@ mh_solaris_path=""
for mh_lib in $mh_libs; do
mh_lib_found=no
for ac_dir in $mh_lib_dirs ; do
for mh_ext in a so sl dll.a; do
for mh_ext in a so sl dll.a dylib; do
if test -r $ac_dir/lib$mh_lib.$mh_ext; then
if test "x$mh_prev_dir" != "x$ac_dir" ; then
if test "x$mh_prev_dir" = "x" ; then