From: <fr...@us...> - 2012-10-26 12:59:47
|
Revision: 4753 http://fuse-emulator.svn.sourceforge.net/fuse-emulator/?rev=4753&view=rev Author: fredm Date: 2012-10-26 12:59:37 +0000 (Fri, 26 Oct 2012) Log Message: ----------- Fix the build when libaudiofile is not found and we are using an old pkg-config/autoconf (bug #3579244) (Sergio). Modified Paths: -------------- trunk/libspectrum/configure.ac trunk/libspectrum/hacking/ChangeLog Modified: trunk/libspectrum/configure.ac =================================================================== --- trunk/libspectrum/configure.ac 2012-10-21 05:18:11 UTC (rev 4752) +++ trunk/libspectrum/configure.ac 2012-10-26 12:59:37 UTC (rev 4753) @@ -207,7 +207,8 @@ PKG_CHECK_MODULES( AUDIOFILE, audiofile, - AC_DEFINE([HAVE_LIB_AUDIOFILE], 1, [Defined if we've got audiofile]), [] + AC_DEFINE([HAVE_LIB_AUDIOFILE], 1, [Defined if we've got audiofile]), + [true] ) if test -z "$AUDIOFILE_LIBS"; then AM_PATH_AUDIOFILE( Modified: trunk/libspectrum/hacking/ChangeLog =================================================================== --- trunk/libspectrum/hacking/ChangeLog 2012-10-21 05:18:11 UTC (rev 4752) +++ trunk/libspectrum/hacking/ChangeLog 2012-10-26 12:59:37 UTC (rev 4753) @@ -892,3 +892,5 @@ 20121021 Makefile.am,acinclude.m4,autogen.sh,configure.ac,configure.in, m4/audiofile.m4,windres.rc: modernise autoconf support (more from patch #3575831) (Sergio). +20121026 configure.ac: fix the build when libaudiofile is not found and we are + using an old pkg-config/autoconf (bug #3579244) (Sergio). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |