From: <fr...@us...> - 2014-12-30 11:29:54
|
Revision: 5106 http://sourceforge.net/p/fuse-emulator/code/5106 Author: fredm Date: 2014-12-30 11:29:52 +0000 (Tue, 30 Dec 2014) Log Message: ----------- Select glibtoolize where required (Sergio via fuse). Modified Paths: -------------- trunk/libspectrum/autogen.sh trunk/libspectrum/hacking/ChangeLog Modified: trunk/libspectrum/autogen.sh =================================================================== --- trunk/libspectrum/autogen.sh 2014-12-29 13:08:38 UTC (rev 5105) +++ trunk/libspectrum/autogen.sh 2014-12-30 11:29:52 UTC (rev 5106) @@ -28,6 +28,9 @@ aclocal -I m4 autoheader -libtoolize --automake +# Mac OS X: Use glibtoolize instead +(glibtoolize --version) < /dev/null > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize \ + || LIBTOOLIZE=libtoolize +$LIBTOOLIZE --automake automake --add-missing autoconf Modified: trunk/libspectrum/hacking/ChangeLog =================================================================== --- trunk/libspectrum/hacking/ChangeLog 2014-12-29 13:08:38 UTC (rev 5105) +++ trunk/libspectrum/hacking/ChangeLog 2014-12-30 11:29:52 UTC (rev 5106) @@ -964,3 +964,4 @@ Lee Tonks) (Fred). 20141230 szx.c: guard against passing a NULL pointer to memcpy in write_if1_chunk() (thanks, clang static analyser) (Fred). +20141230 autogen.sh: select glibtoolize where required (Sergio via fuse). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |