Mercurial > SDL_sound_CoreAudio
diff configure.in @ 496:67d785044411
Forward port from stable branch: fix modplug header detection.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 12 Oct 2005 22:20:58 +0000 |
parents | 9e761a594df1 |
children | 0b244f36049e |
line wrap: on
line diff
--- a/configure.in Sat Oct 01 15:38:51 2005 +0000 +++ b/configure.in Wed Oct 12 22:20:58 2005 +0000 @@ -214,7 +214,16 @@ [ --enable-modplug enable MOD decoding via modplug [default=yes]], , enable_modplug=yes) if test x$enable_modplug = xyes; then + have_modplug_hdr=no AC_CHECK_HEADER(modplug.h, have_modplug_hdr=yes) + if test x$have_modplug_hdr = xno; then + AC_CHECK_HEADER(libmodplug/modplug.h, have_modplug_hdr=yes) + if test x$have_modplug_hdr = xyes; then + have_modplug_hdr=yes + AC_DEFINE(SOUND_MODPLUG_IN_OWN_PATH) + fi + fi + AC_CHECK_LIB(modplug, ModPlug_Load, have_modplug_lib=yes) if test x$have_modplug_hdr = xyes -a x$have_modplug_lib = xyes; then LIBS="$LIBS -lmodplug"