CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/10/18 13:05:07

Modified files:
        .              : ChangeLog configure.ac 

Log message:
        * configure.ac: print an error on invalid --enable-sound value.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1290&r2=1.1291
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.171&r2=1.172

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1290
retrieving revision 1.1291
diff -u -b -r1.1290 -r1.1291
--- ChangeLog   18 Oct 2006 12:36:49 -0000      1.1290
+++ ChangeLog   18 Oct 2006 13:05:07 -0000      1.1291
@@ -1,3 +1,7 @@
+2006-10-18 Sandro Santilli <[EMAIL PROTECTED]>
+
+       * configure.ac: print an error on invalid --enable-sound value.
+
 2006-10-18 Markus Gothe <[EMAIL PROTECTED]>
 
        * gui/gnash.cpp, gui/sdl.cpp, utilities/parser.cpp, 

Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -b -r1.171 -r1.172
--- configure.ac        18 Oct 2006 11:16:57 -0000      1.171
+++ configure.ac        18 Oct 2006 13:05:07 -0000      1.172
@@ -33,7 +33,7 @@
 dnl also makes it possible to release a modified version which carries
 dnl forward this exception.
 
-dnl $Id: configure.ac,v 1.171 2006/10/18 11:16:57 strk Exp $
+dnl $Id: configure.ac,v 1.172 2006/10/18 13:05:07 strk Exp $
 
 AC_PREREQ(2.50)
 AC_INIT(gnash, 0.7.1-cvs)
@@ -232,7 +232,7 @@
    GST|gst) sound_handler=gst ;;
    sdl|SDL) sound_handler=sdl  ;;
    no|NO)   sound_handler=none ;;
-   *) sound_handler=SDL ;;
+   *) AC_MSG_ERROR([bad value ${enableval} for --enable-sound option]) ;;
   esac],
  [sound_handler=sdl]
 )


_______________________________________________
Gnash-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-commit

Reply via email to