CVSROOT: /sources/gnash Module name: gnash Changes by: Rob Savoye <rsavoye> 07/11/24 16:47:11
Modified files: . : ChangeLog macros : archflag.m4 boost.m4 curl.m4 dbus.m4 docbook.m4 freetype.m4 gnashpkgtool.m4 gtk2.m4 gtkglext.m4 jpeg.m4 lib-link.m4 libXML.m4 ming.m4 opengl.m4 pango.m4 sdl.m4 x11.m4 Log message: * macros/libtool.m4: Move the serial numbers to the top of the file as required by newer autotools. * macros/archflag.m4, boost.m4, curl.m4, dbus.m4, docbook.m4, freetype.m4, gnashpkgtool.m4, gtk2.m4, gtkglext.m4, jpeg.m4, lib-link.m4, libXML.m4, ming.m4, opengl.m4, pango.m4, sdl.m4, x11.m4: Put double quotes around sub-shell invocation to avoid problems with the buggy bash on RHEL5. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4951&r2=1.4952 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/archflag.m4?cvsroot=gnash&r1=1.7&r2=1.8 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/boost.m4?cvsroot=gnash&r1=1.70&r2=1.71 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/curl.m4?cvsroot=gnash&r1=1.20&r2=1.21 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/dbus.m4?cvsroot=gnash&r1=1.1&r2=1.2 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/docbook.m4?cvsroot=gnash&r1=1.24&r2=1.25 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/freetype.m4?cvsroot=gnash&r1=1.5&r2=1.6 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/gnashpkgtool.m4?cvsroot=gnash&r1=1.44&r2=1.45 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/gtk2.m4?cvsroot=gnash&r1=1.44&r2=1.45 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/gtkglext.m4?cvsroot=gnash&r1=1.37&r2=1.38 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/jpeg.m4?cvsroot=gnash&r1=1.25&r2=1.26 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/lib-link.m4?cvsroot=gnash&r1=1.2&r2=1.3 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/libXML.m4?cvsroot=gnash&r1=1.33&r2=1.34 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/ming.m4?cvsroot=gnash&r1=1.17&r2=1.18 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/opengl.m4?cvsroot=gnash&r1=1.36&r2=1.37 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/pango.m4?cvsroot=gnash&r1=1.27&r2=1.28 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/sdl.m4?cvsroot=gnash&r1=1.45&r2=1.46 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/x11.m4?cvsroot=gnash&r1=1.14&r2=1.15 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.4951 retrieving revision 1.4952 diff -u -b -r1.4951 -r1.4952 --- ChangeLog 24 Nov 2007 08:23:47 -0000 1.4951 +++ ChangeLog 24 Nov 2007 16:47:09 -0000 1.4952 @@ -1,3 +1,14 @@ +2007-11-24 Rob Savoye <[EMAIL PROTECTED]> + + * macros/libtool.m4: Move the serial numbers to the top of the + file as required by newer autotools. + * macros/archflag.m4, boost.m4, curl.m4, dbus.m4, docbook.m4, + freetype.m4, gnashpkgtool.m4, gtk2.m4, gtkglext.m4, jpeg.m4, + lib-link.m4, libXML.m4, ming.m4, opengl.m4, pango.m4, sdl.m4, + x11.m4: Put double quotes around sub-shell invocation to avoid + problems with the buggy bash on RHEL5. + + 2007-11-24 Sandro Santilli <[EMAIL PROTECTED]> * server/: swf.h, swf/StartSoundTag.{cpp,h}: More dox about Index: macros/archflag.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/archflag.m4,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- macros/archflag.m4 22 Nov 2007 20:50:03 -0000 1.7 +++ macros/archflag.m4 24 Nov 2007 16:47:10 -0000 1.8 @@ -152,8 +152,8 @@ sparc*) AC_PATH_PROG([PRTDIAG], [prtdiag], [prtdiag], [$PATH:/usr/platform/`uname -i`/sbin/:/usr/platform/`uname -m`/sbin/]) - cputype=`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /var/run/dmesg.boot ) | head -n 1) 2> /dev/null` - cputype=`echo "$cputype" | tr -d ' -' |tr $as_cr_LETTERS $as_cr_letters` + cputype="`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /var/run/dmesg.boot ) | head -n 1) 2> /dev/null`" + cputype="`echo "$cputype" | tr -d ' -' |tr $as_cr_LETTERS $as_cr_letters`" case $cputype in *ultrasparciv*) ax_gcc_arch="ultrasparc4 ultrasparc3 ultrasparc v9" ;; *ultrasparciii*) ax_gcc_arch="ultrasparc3 ultrasparc v9" ;; @@ -175,8 +175,8 @@ alphaev79) ax_gcc_arch="ev79 ev7 ev69 ev68 ev67" ;; powerpc*) - cputype=`((grep cpu /proc/cpuinfo | head -n 1 | cut -d: -f2 | cut -d, -f1 | sed 's/ //g') ; /usr/bin/machine ; /bin/machine; grep CPU /var/run/dmesg.boot | head -n 1 | cut -d" " -f2) 2> /dev/null` - cputype=`echo $cputype | sed -e 's/ppc//g;s/ *//g'` + cputype="`((grep cpu /proc/cpuinfo | head -n 1 | cut -d: -f2 | cut -d, -f1 | sed 's/ //g') ; /usr/bin/machine ; /bin/machine; grep CPU /var/run/dmesg.boot | head -n 1 | cut -d" " -f2) 2> /dev/null`" + cputype="`echo $cputype | sed -e 's/ppc//g;s/ *//g'`" case $cputype in *750*) ax_gcc_arch="750 G3" ;; *740[[0-9]]*) ax_gcc_arch="$cputype 7400 G4" ;; Index: macros/boost.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/boost.m4,v retrieving revision 1.70 retrieving revision 1.71 diff -u -b -r1.70 -r1.71 --- macros/boost.m4 22 Oct 2007 15:58:40 -0000 1.70 +++ macros/boost.m4 24 Nov 2007 16:47:10 -0000 1.71 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: boost.m4,v 1.70 2007/10/22 15:58:40 rsavoye Exp $ +dnl $Id: boost.m4,v 1.71 2007/11/24 16:47:10 rsavoye Exp $ dnl Boost modules are: dnl date-time, filesystem. graph. iostreams, program options, python, @@ -49,7 +49,7 @@ dnl Look for the header AC_ARG_WITH(boost_incl, AC_HELP_STRING([--with-boost-incl], [directory where boost headers are]), with_boost_incl=${withval}) if test x"${with_boost_incl}" != x ; then - gnash_boost_topdir=`(cd ${with_boost_incl}; pwd)` + gnash_boost_topdir="`(cd ${with_boost_incl}; pwd)`" gnash_boost_version=`echo ${gnash_boost_topdir} | sed -e 's:.*boost-::'` newlist=${gnash_boost_topdir} fi @@ -76,9 +76,9 @@ for i in $newlist; do dirs=`ls -dr $i/boost* 2>/dev/null` if test -n "${dirs}"; then - gnash_boost_topdir=`(cd ${dirs}; pwd)` - gnash_boost_subdir=`dirname ${gnash_boost_topdir}` - gnash_boost_version=`echo ${gnash_boost_topdir} | sed -e 's:boost-::'` + gnash_boost_topdir="`(cd ${dirs}; pwd)`" + gnash_boost_subdir="`dirname ${gnash_boost_topdir}`" + gnash_boost_version="`echo ${gnash_boost_topdir} | sed -e 's:boost-::'`" dnl Fix for packaging systems not adding extra fluff to the path-name. for k in ${boost_headers}; do if test ! -f ${gnash_boost_topdir}/boost/$k; then @@ -107,7 +107,7 @@ dnl Look for the library AC_ARG_WITH(boost_lib, AC_HELP_STRING([--with-boost-lib], [directory where boost libraries are]), with_boost_lib=${withval}) if test x"${with_boost_lib}" != x ; then - gnash_boost_libdir=`(cd ${with_boost_lib}; pwd)` + gnash_boost_libdir="`(cd ${with_boost_lib}; pwd)`" newlist="${gnash_boost_libdir}" fi Index: macros/curl.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/curl.m4,v retrieving revision 1.20 retrieving revision 1.21 diff -u -b -r1.20 -r1.21 --- macros/curl.m4 28 Oct 2007 21:06:51 -0000 1.20 +++ macros/curl.m4 24 Nov 2007 16:47:10 -0000 1.21 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: curl.m4,v 1.20 2007/10/28 21:06:51 eh9 Exp $ +dnl $Id: curl.m4,v 1.21 2007/11/24 16:47:10 rsavoye Exp $ AC_DEFUN([GNASH_PATH_CURL], [ @@ -23,7 +23,7 @@ AC_CACHE_VAL(ac_cv_path_curl_incl,[ if test x"${with_curl_incl}" != x ; then if test -f ${with_curl_incl}/curl/curl.h ; then - ac_cv_path_curl_incl=`(cd ${with_curl_incl}; pwd)` + ac_cv_path_curl_incl="`(cd ${with_curl_incl}; pwd)`" else AC_MSG_ERROR([${with_curl_incl} directory doesn't contain curl/curl.h]) fi @@ -34,7 +34,7 @@ AC_PATH_PROG(curlconfig, curl-config, ,[${pathlist}]) if test x"${curlconfig}" != "x" ; then AC_MSG_CHECKING([for RTMP support]) - rtmp=`${curlconfig} --protocols|grep -c RTMP` + rtmp="`${curlconfig} --protocols|grep -c RTMP`" if test $rtmp -eq 0; then AC_MSG_RESULT([none]) rtmp=no @@ -47,7 +47,7 @@ dnl If the path hasn't been specified, go look for it. if test x"${ac_cv_path_curl_incl}" = x; then if test x"${curlconfig}" != "x"; then - ac_cv_path_curl_incl=`${curlconfig} --cflags` + ac_cv_path_curl_incl="`${curlconfig} --cflags`" else for i in $incllist; do if test -f $i/curl/curl.h; then Index: macros/dbus.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/dbus.m4,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- macros/dbus.m4 27 Sep 2007 00:29:30 -0000 1.1 +++ macros/dbus.m4 24 Nov 2007 16:47:10 -0000 1.2 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: dbus.m4,v 1.1 2007/09/27 00:29:30 rsavoye Exp $ +dnl $Id: dbus.m4,v 1.2 2007/11/24 16:47:10 rsavoye Exp $ AC_DEFUN([GNASH_PATH_DBUS], [ @@ -24,7 +24,7 @@ AC_CACHE_VAL(ac_cv_path_dbus_incl,[ if test x"${with_dbus_incl}" != x ; then if test -f ${with_dbus_incl}/dbus/dbus.h ; then - ac_cv_path_dbus_incl=-I`(cd ${with_dbus_incl}; pwd)` + ac_cv_path_dbus_incl="-I`(cd ${with_dbus_incl}; pwd)`" else AC_MSG_ERROR([${with_dbus_incl} directory doesn't contain dbus/dbus.h]) fi @@ -81,7 +81,7 @@ AC_CACHE_VAL(ac_cv_path_dbus_lib,[ if test x"${with_dbus_lib}" != x ; then if test -f ${with_dbus_lib}/libdbus-1.a -o -f ${with_dbus_lib}/libdbus-1.${shlibext}; then - ac_cv_path_dbus_lib=-L`(cd ${with_dbus_lib}; pwd)` + ac_cv_path_dbus_lib="-L`(cd ${with_dbus_lib}; pwd)`" else AC_MSG_ERROR([${with_dbus_lib} directory doesn't contain libdbus.]) fi Index: macros/docbook.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/docbook.m4,v retrieving revision 1.24 retrieving revision 1.25 diff -u -b -r1.24 -r1.25 --- macros/docbook.m4 12 Jul 2007 09:31:51 -0000 1.24 +++ macros/docbook.m4 24 Nov 2007 16:47:10 -0000 1.25 @@ -28,7 +28,7 @@ AC_ARG_WITH(docbook_styles, AC_HELP_STRING([--with-docbook-styles], [directory where Docbook stylesheets are]), with_docbook_styles=${withval}) if test x"${with_docbook_styles}" != x ; then if test -f ${with_docbook_styles}/html/docbook.xsl ; then - docbook_styles=`(cd ${with_docbook_styles}; pwd)` + docbook_styles="`(cd ${with_docbook_styles}; pwd)`" else AC_MSG_ERROR([${with_docbook_styles}/html directory doesn't contain docbook.xsl]) fi @@ -37,7 +37,7 @@ dirlist="/usr/share/xml/docbook/stylesheet/nwalsh /usr/share/sgml/docbook/xsl-stylesheets /usr/local/share/sgml/docbook/xsl-stylesheets /opt/share/sgml/docbook/xsl-stylesheets /home/latest/share/sgml/docbook/xsl-stylesheets /usr/share/sgml/docbook/stylesheet/xsl/nwalsh" for i in $dirlist; do if test -f $i/html/docbook.xsl; then - gnash_cv_path_docbook_styles=`(cd $i; pwd)` + gnash_cv_path_docbook_styles="`(cd $i; pwd)`" break fi done @@ -58,14 +58,14 @@ if test -f $i/bin/java; then version=`$i/bin/java -version 2>&1` dnl See if it's Sun Java - tmp=`echo $version | grep -c "java version" ` + tmp="`echo $version | grep -c "java version" `" if test $tmp -gt 0; then version=sun JAVA=$i/bin/java break; fi dnl See if it's GCJ - tmp=`echo $version | grep -c "java version" ` + tmp="`echo $version | grep -c "java version" `" if test $tmp -gt 0; then AC_MSG_WARN([$i/bin/java not Sun version!]) version=gcj Index: macros/freetype.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/freetype.m4,v retrieving revision 1.5 retrieving revision 1.6 diff -u -b -r1.5 -r1.6 --- macros/freetype.m4 6 Nov 2007 12:02:57 -0000 1.5 +++ macros/freetype.m4 24 Nov 2007 16:47:10 -0000 1.6 @@ -21,7 +21,7 @@ AC_CACHE_VAL(ac_cv_path_freetype_incl,[ if test x"${with_freetype_incl}" != x ; then if test -f ${with_freetype_incl}/freetype/freetype.h ; then - ac_cv_path_freetype_incl=-I`(cd ${with_freetype_incl}; pwd)` + ac_cv_path_freetype_incl="-I`(cd ${with_freetype_incl}; pwd)`" else AC_MSG_ERROR([${with_freetype_incl} directory doesn't contain freetype/freetype.h]) fi Index: macros/gnashpkgtool.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/gnashpkgtool.m4,v retrieving revision 1.44 retrieving revision 1.45 diff -u -b -r1.44 -r1.45 --- macros/gnashpkgtool.m4 13 Oct 2007 23:24:07 -0000 1.44 +++ macros/gnashpkgtool.m4 24 Nov 2007 16:47:10 -0000 1.45 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: gnashpkgtool.m4,v 1.44 2007/10/13 23:24:07 rsavoye Exp $ +dnl $Id: gnashpkgtool.m4,v 1.45 2007/11/24 16:47:10 rsavoye Exp $ dnl Generic macros for finding and setting include-paths and library-path dnl for packages. Implements GNASH_PKG_INCLUDES() and GNASH_PKG_LIBS(). @@ -54,7 +54,7 @@ AC_CACHE_VAL(ac_cv_path_$1_incl, [ if test x"${with_$1_incl}" != x ; then if test -f ${with_$1_incl}/$2 ; then - ac_cv_path_$1_incl=-I`(cd ${with_$1_incl}; pwd)` + ac_cv_path_$1_incl="-I`(cd ${with_$1_incl}; pwd)`" found_$1_incl="yes" else AC_MSG_ERROR([${with_$1_incl} directory doesn't contain $2.]) @@ -165,7 +165,7 @@ if test x"${with_$1_lib}" != x ; then AC_MSG_CHECKING([for lib$1 library in specified directory]) if test -f ${with_$1_lib}/lib$name.a -o -f ${with_$1_lib}/lib$name.${shlibext}; then - tmp=`(cd ${with_$1_lib}; pwd)` + tmp="`(cd ${with_$1_lib}; pwd)`" ac_cv_path_$1_lib="-L${tmp} -l$name" AC_MSG_RESULT([yes]) else Index: macros/gtk2.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/gtk2.m4,v retrieving revision 1.44 retrieving revision 1.45 diff -u -b -r1.44 -r1.45 --- macros/gtk2.m4 13 Oct 2007 23:24:07 -0000 1.44 +++ macros/gtk2.m4 24 Nov 2007 16:47:10 -0000 1.45 @@ -15,7 +15,7 @@ dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: gtk2.m4,v 1.44 2007/10/13 23:24:07 rsavoye Exp $ +dnl $Id: gtk2.m4,v 1.45 2007/11/24 16:47:10 rsavoye Exp $ AC_DEFUN([GNASH_PATH_GTK2], [ @@ -24,7 +24,7 @@ AC_CACHE_VAL(ac_cv_path_gtk2_incl,[ if test x"${with_gtk2_incl}" != x ; then if test -f ${with_gtk2_incl}/gtk/gtk.h; then - ac_cv_path_gtk2_incl=-I`(cd ${with_gtk2_incl}; pwd)` + ac_cv_path_gtk2_incl="-I`(cd ${with_gtk2_incl}; pwd)`" else AC_MSG_ERROR([${with_gtk2_incl} directory doesn't contain gtk/gtk.h]) fi @@ -77,7 +77,7 @@ if test x"${with_gtk2_lib}" != x ; then if test -f ${with_gtk2_lib}/libgtk-x11-2.0.${shlibext}; then if test -f ${with_gtk2_lib}/libgdk-x11-2.0; then - ac_cv_path_gtk2_lib=-I`(cd ${with_gtk2_lib}; pwd)` + ac_cv_path_gtk2_lib="-I`(cd ${with_gtk2_lib}; pwd)`" else AC_MSG_ERROR([${with_gtk2_lib} directory doesn't contain libgdk-x11-2.0]) fi Index: macros/gtkglext.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/gtkglext.m4,v retrieving revision 1.37 retrieving revision 1.38 diff -u -b -r1.37 -r1.38 --- macros/gtkglext.m4 13 Oct 2007 23:24:07 -0000 1.37 +++ macros/gtkglext.m4 24 Nov 2007 16:47:10 -0000 1.38 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl: $Id: gtkglext.m4,v 1.37 2007/10/13 23:24:07 rsavoye Exp $ +dnl: $Id: gtkglext.m4,v 1.38 2007/11/24 16:47:10 rsavoye Exp $ AC_DEFUN([GNASH_PATH_GLEXT], [ @@ -100,7 +100,7 @@ AC_CACHE_VAL(ac_cv_path_glext_lib,[ if test x"${with_glext_lib}" != x ; then if test -f ${with_glext_lib}/libgtkglext-x11-${gnash_glext_version}.a -o -f ${with_glext_lib}/libgtkglext-x11-${gnash_glext_version}.${shlibext}; then - ac_cv_path_glext_lib=-L`(cd ${with_glext_lib}; pwd)` + ac_cv_path_glext_lib="-L`(cd ${with_glext_lib}; pwd)`" else AC_MSG_ERROR([${with_glext_lib} directory doesnt contain libgtkglext-x11-${gnash_glext_version}.[a|so]]) fi Index: macros/jpeg.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/jpeg.m4,v retrieving revision 1.25 retrieving revision 1.26 diff -u -b -r1.25 -r1.26 --- macros/jpeg.m4 13 Oct 2007 23:24:07 -0000 1.25 +++ macros/jpeg.m4 24 Nov 2007 16:47:10 -0000 1.26 @@ -15,7 +15,7 @@ dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: jpeg.m4,v 1.25 2007/10/13 23:24:07 rsavoye Exp $ +dnl $Id: jpeg.m4,v 1.26 2007/11/24 16:47:10 rsavoye Exp $ AC_DEFUN([GNASH_PATH_JPEG], [ @@ -32,7 +32,7 @@ AC_CACHE_VAL(ac_cv_path_jpeg_incl,[ if test x"${with_jpeg_incl}" != x ; then if test -f ${with_jpeg_incl}/jpeglib.h ; then - ac_cv_path_jpeg_incl=-I`(cd ${with_jpeg_incl}; pwd)` + ac_cv_path_jpeg_incl="-I`(cd ${with_jpeg_incl}; pwd)`" else AC_MSG_ERROR([${with_jpeg_incl} directory doesn't contain jpeglib.h]) fi Index: macros/lib-link.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/lib-link.m4,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- macros/lib-link.m4 25 Apr 2007 07:04:13 -0000 1.2 +++ macros/lib-link.m4 24 Nov 2007 16:47:10 -0000 1.3 @@ -176,7 +176,7 @@ names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. - uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` + uppername="`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`" eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then Index: macros/libXML.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/libXML.m4,v retrieving revision 1.33 retrieving revision 1.34 diff -u -b -r1.33 -r1.34 --- macros/libXML.m4 6 Nov 2007 04:00:39 -0000 1.33 +++ macros/libXML.m4 24 Nov 2007 16:47:11 -0000 1.34 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: libXML.m4,v 1.33 2007/11/06 04:00:39 nihilus Exp $ +dnl $Id: libXML.m4,v 1.34 2007/11/24 16:47:11 rsavoye Exp $ AC_DEFUN([GNASH_PATH_LIBXML], [ has_xml=no @@ -23,7 +23,7 @@ AC_CACHE_VAL(ac_cv_path_libxml_incl, [ if test x"${with_libxml_incl}" != x ; then if test -f ${with_libxml_incl}/libxml/xmlmemory.h ; then - ac_cv_path_libxml_incl=-I`(cd ${with_libxml_incl}; pwd)` + ac_cv_path_libxml_incl="-I`(cd ${with_libxml_incl}; pwd)`" else AC_MSG_ERROR([${with_libxml_incl} directory doesn't contain libxml/xmlmemory.h]) fi Index: macros/ming.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/ming.m4,v retrieving revision 1.17 retrieving revision 1.18 diff -u -b -r1.17 -r1.18 --- macros/ming.m4 13 Oct 2007 23:24:08 -0000 1.17 +++ macros/ming.m4 24 Nov 2007 16:47:11 -0000 1.18 @@ -67,7 +67,7 @@ AC_CACHE_VAL(ac_cv_path_ming_incl, [ if test x"${with_ming_incl}" != x ; then if test -f ${with_ming_incl}/ming.h ; then - ac_cv_path_ming_incl=-I`(cd ${with_ming_incl}; pwd)` + ac_cv_path_ming_incl="-I`(cd ${with_ming_incl}; pwd)`" else AC_MSG_ERROR([${with_ming_incl} directory doesn't contain minglib.h]) fi @@ -100,7 +100,7 @@ AC_CACHE_VAL(ac_cv_path_ming_lib, [ if test x"${with_ming_lib}" != x ; then if test -f ${with_ming_lib}/libming.a -o -f ${with_ming_lib}/libming.${shlibext}; then - ac_cv_path_ming_lib=`(cd ${with_ming_lib}; pwd)` + ac_cv_path_ming_lib="`(cd ${with_ming_lib}; pwd)`" else AC_MSG_ERROR([${with_ming_lib} directory doesn't contain libming.]) fi Index: macros/opengl.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/opengl.m4,v retrieving revision 1.36 retrieving revision 1.37 diff -u -b -r1.36 -r1.37 --- macros/opengl.m4 13 Oct 2007 23:24:08 -0000 1.36 +++ macros/opengl.m4 24 Nov 2007 16:47:11 -0000 1.37 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: opengl.m4,v 1.36 2007/10/13 23:24:08 rsavoye Exp $ +dnl $Id: opengl.m4,v 1.37 2007/11/24 16:47:11 rsavoye Exp $ AC_DEFUN([GNASH_PATH_OPENGL], [ @@ -25,7 +25,7 @@ AC_CACHE_VAL(ac_cv_path_opengl_includes,[ if test x"${with_opengl_includes}" != x ; then if test -f ${with_opengl_includes}/GL/gl.h -a -f ${with_opengl_includes}/GL/glu.h ; then - ac_cv_path_opengl_includes=`(cd ${with_opengl_includes}; pwd)` + ac_cv_path_opengl_includes="`(cd ${with_opengl_includes}; pwd)`" else AC_MSG_ERROR([${with_opengl_includes} directory doesn't contain GL/gl.h]) fi Index: macros/pango.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/pango.m4,v retrieving revision 1.27 retrieving revision 1.28 diff -u -b -r1.27 -r1.28 --- macros/pango.m4 13 Oct 2007 23:24:08 -0000 1.27 +++ macros/pango.m4 24 Nov 2007 16:47:11 -0000 1.28 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: pango.m4,v 1.27 2007/10/13 23:24:08 rsavoye Exp $ +dnl $Id: pango.m4,v 1.28 2007/11/24 16:47:11 rsavoye Exp $ AC_DEFUN([GNASH_PATH_PANGO], [ @@ -24,7 +24,7 @@ AC_CACHE_VAL(ac_cv_path_pango_incl,[ if test x"${with_pango_incl}" != x ; then if test -f ${with_pango_incl}/pango/pango.h ; then - ac_cv_path_pango_incl=-I`(cd ${with_pango_incl}; pwd)` + ac_cv_path_pango_incl="-I`(cd ${with_pango_incl}; pwd)`" else AC_MSG_ERROR([${with_pango_incl} directory doesn't contain pango/pango.h]) fi @@ -33,7 +33,7 @@ if test x$cross_compiling = xno; then if test x"$PKG_CONFIG" != x -a x"${ac_cv_path_pango_incl}" = x; then - $PKG_CONFIG --exists pangox && ac_cv_path_pango_incl=`$PKG_CONFIG --cflags pangox` + $PKG_CONFIG --exists pangox && ac_cv_path_pango_incl="`$PKG_CONFIG --cflags pangox`" fi fi Index: macros/sdl.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/sdl.m4,v retrieving revision 1.45 retrieving revision 1.46 diff -u -b -r1.45 -r1.46 --- macros/sdl.m4 8 Nov 2007 10:58:16 -0000 1.45 +++ macros/sdl.m4 24 Nov 2007 16:47:11 -0000 1.46 @@ -14,7 +14,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: sdl.m4,v 1.45 2007/11/08 10:58:16 strk Exp $ +dnl $Id: sdl.m4,v 1.46 2007/11/24 16:47:11 rsavoye Exp $ AC_DEFUN([GNASH_PATH_SDL], [ has_sdl=no @@ -23,7 +23,7 @@ AC_CACHE_VAL(ac_cv_path_sdl_incl, [ if test x"${with_sdl_incl}" != x ; then if test -f ${with_sdl_incl}/SDL.h ; then - ac_cv_path_sdl_incl=-I`(cd ${with_sdl_incl}; pwd)` + ac_cv_path_sdl_incl="-I`(cd ${with_sdl_incl}; pwd)`" else AC_MSG_ERROR([${with_sdl_incl} directory doesn't contain SDL.h]) fi Index: macros/x11.m4 =================================================================== RCS file: /sources/gnash/gnash/macros/x11.m4,v retrieving revision 1.14 retrieving revision 1.15 diff -u -b -r1.14 -r1.15 --- macros/x11.m4 13 Oct 2007 23:24:08 -0000 1.14 +++ macros/x11.m4 24 Nov 2007 16:47:11 -0000 1.15 @@ -15,7 +15,7 @@ dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -dnl $Id: x11.m4,v 1.14 2007/10/13 23:24:08 rsavoye Exp $ +dnl $Id: x11.m4,v 1.15 2007/11/24 16:47:11 rsavoye Exp $ AC_DEFUN([GNASH_PATH_X11], [ @@ -24,7 +24,7 @@ AC_CACHE_VAL(ac_cv_path_x11_incl, [ if test x"${with_x11_incl}" != x ; then if test -f ${with_x11_incl}/X11/X.h ; then - ac_cv_path_x11_incl=-I`(cd ${with_x11_incl}; pwd)` + ac_cv_path_x11_incl="-I`(cd ${with_x11_incl}; pwd)`" else AC_MSG_ERROR([${with_x11_incl} directory doesn't contain X.h]) fi _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit