Skip to content

Commit

Permalink
Just look for the base .dylib files
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 18, 2009
1 parent b98c851 commit 0ca2351
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.in
Expand Up @@ -155,7 +155,7 @@ if test x$enable_jpg = xyes || test x$enable_tif = xyes; then

case "$host" in
*-*-darwin*)
jpg_lib=[`find_lib libjpeg*.dylib`]
jpg_lib=[`find_lib libjpeg.dylib`]
;;
*-*-cygwin* | *-*-mingw32*)
jpg_lib=[`find_lib "jpeg.dll"`]
Expand Down Expand Up @@ -190,7 +190,7 @@ if test "x$enable_png" = xyes; then

case "$host" in
*-*-darwin*)
png_lib=[`find_lib libpng*.dylib`]
png_lib=[`find_lib libpng.dylib`]
;;
*-*-cygwin* | *-*-mingw32*)
png_lib=[`find_lib "libpng*.dll"`]
Expand Down Expand Up @@ -222,7 +222,7 @@ if test x$enable_tif = xyes; then

case "$host" in
*-*-darwin*)
tif_lib=[`find_lib libtiff*.dylib`]
tif_lib=[`find_lib libtiff.dylib`]
;;
*-*-cygwin* | *-*-mingw32*)
tif_lib=[`find_lib "libtiff-*.dll"`]
Expand Down

0 comments on commit 0ca2351

Please sign in to comment.