gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash configure.ac ChangeLog


From: Rob Savoye
Subject: [Gnash-commit] gnash configure.ac ChangeLog
Date: Wed, 20 Feb 2008 14:33:04 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Rob Savoye <rsavoye>    08/02/20 14:33:04

Modified files:
        .              : configure.ac ChangeLog 

Log message:
                * configure.ac: Don't build C/asspec/Makefile, it's never been
                used anyway. Use new variables for testing if paths were found.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.478&r2=1.479
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5702&r2=1.5703

Patches:
Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.478
retrieving revision 1.479
diff -u -b -r1.478 -r1.479
--- configure.ac        1 Feb 2008 01:30:27 -0000       1.478
+++ configure.ac        20 Feb 2008 14:33:03 -0000      1.479
@@ -225,6 +225,18 @@
   yes) AC_DEFINE([GNASH_FPS_DEBUG], [1], [Enable FPS debugging code])
 esac])
 
+dnl When we're making binary releases, it's often nice to just statically link
+dnl the final executables so we don't worry about what's installed, or which
+dnl version it is.
+AC_ARG_ENABLE(allstatic,
+  AC_HELP_STRING([--enable-allstatic],[Enable using static libraries when 
possible for dependencies]),
+[case "${enableval}" in
+  yes) allstatic=yes ;;
+  no)  allstatic=no ;;
+  *)   AC_MSG_ERROR([bad value ${enableval} for --enable-allstatic option]) ;;
+esac],allstatic=no)
+AM_CONDITIONAL(ALLSTATIC, test x$allstatic = xyes)
+
 AC_ARG_WITH(cpu,
   AC_HELP_STRING([--with-cpu],[specify a cpu when cross compiling.]),
   [case "${withval}" in
@@ -878,8 +890,6 @@
 AC_PATH_PROG(PYTHON, python, ,[${pathlist}])
 AM_CONDITIONAL([ENABLE_GNASH_PYTHON_MODULE], false)
 
-AC_PATH_PROG(MKINSTALLDIRS, mkinstalldirs, ,[${pathlist}])
-
 dnl Look for scratchbox
 sbox=no
 if test x"${SBOX_REDIRECT_FROM_DIRS}" != x; then
@@ -1502,6 +1512,9 @@
 if test "$media_handler" = "gst"; then
   AC_PATH_PROG(GST_INSPECT, gst-inspect, ,[${pathlist}])
   if test "x$GST_INSPECT" != "x" -a x"${darwin}" = xno ; then
+    AC_PATH_PROG(GST_INSPECT, gst-inspect-0.10, ,[${pathlist}])
+  fi
+  if test "x$GST_INSPECT" != "x" -a x"${darwin}" = xno ; then
     dnl FIXME: there may be multiple acceptable plugins that are acceptable for
     dnl our use. For example, mad or ffmpeg will play mp3.
     codecs="ffdec_flv ffdec_flashsv ffdec_vp6f ffdec_flashsv mad vorbisdec 
ffdec_vp6"
@@ -1840,7 +1853,6 @@
 utilities/Makefile
 doc/Makefile
 doc/C/Makefile
-doc/C/asspec/Makefile
 doc/Doxyfile
 pythonmodule/Makefile
 testsuite/Makefile
@@ -2425,7 +2437,7 @@
 fi
 
 if test x"$docbook" = x"yes"; then
-  if test x"$DB2X_XSLTPROC" = x -o x"$DB2X_TEXIXML" = x -o x"$MAKEINFO" = x -o 
x"$XSLTPROC" = x; then
+  if test x"$DB2X_TEXI" = x -o x"$MAKEINFO" = x -o x"$DB2X_MAN" = x; then
     echo "        ERROR: No DocBook2X tools installed!"
     echo "               Either install it from 
http://docbook2x.sourceforge.net";
     echo "               or .deb users: apt-get install docbook docbook2x 
docbook-utils"

Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5702
retrieving revision 1.5703
diff -u -b -r1.5702 -r1.5703
--- ChangeLog   20 Feb 2008 11:33:53 -0000      1.5702
+++ ChangeLog   20 Feb 2008 14:33:03 -0000      1.5703
@@ -1,3 +1,8 @@
+2008-02-20  Rob Savoye  <address@hidden>
+
+       * configure.ac: Don't build C/asspec/Makefile, it's never been
+       used anyway. Use new variables for testing if paths were found.
+
 2008-02-20 Sandro Santilli <address@hidden>
 
        * doc/C/gnash.xml, doc/C/usermanual/installation/configuration.xml:
@@ -32,7 +37,6 @@
        * doc/C/gnash.xml: Beat back into a semblance of shape. Still
        needs massive work, but at least the chapters are in order.
 
-
 2008-02-19 Benjamin Wolsey <address@hidden>
 
        * libbase/log.{h,cpp}: drop log_msg.
@@ -43,7 +47,7 @@
 
        * doc/C/Makefile.am: Use newer wrappers for docbook2x tools
        instead of the old two step process.
-       * macros/docbook.m4: Look for alternate names fo rdocbook
+       * macros/docbook.m4: Look for alternate names for docbook
        utlities. Find docbook2pdf. Fix automake conditionals.
 
 2008-02-19  Rob Savoye  <address@hidden>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]