gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash configure.ac


From: Rob Savoye
Subject: [Gnash-commit] gnash configure.ac
Date: Sat, 07 Oct 2006 04:00:09 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Rob Savoye <rsavoye>    06/10/07 04:00:09

Modified files:
        .              : configure.ac 

Log message:
        Only print sdl warning if it's configured.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.124&r2=1.125

Patches:
Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -b -r1.124 -r1.125
--- configure.ac        7 Oct 2006 02:54:23 -0000       1.124
+++ configure.ac        7 Oct 2006 04:00:09 -0000       1.125
@@ -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.124 2006/10/07 02:54:23 rsavoye Exp $
+dnl $Id: configure.ac,v 1.125 2006/10/07 04:00:09 rsavoye Exp $
 
 AC_PREREQ(2.50)
 AC_INIT(gnash, 0.7.1-cvs)
@@ -944,7 +944,7 @@
   fi
 fi
 
-if test x"$fltk" = x"yes"; then
+if test x"$gui" = x"fltk"; then
   if test x"$XFT_LIBS" != x; then
     if test x"$XFT_CFLAGS" != x; then
       echo "        Xft flags are: $XFT_CFLAGS"
@@ -961,15 +961,17 @@
   fi
 fi
 
-if test x"$SDL_LIBS" != x; then
+if test x"$gui" = xsdl; then
+  if test x"$SDL_LIBS" != x; then
     echo "        SDL flags are: $SDL_CFLAGS"
     echo "        SDL libs are: $SDL_LIBS"
-else
+  else
     echo "ERROR: No SDL development package installed!\
  You need to have the SDL development package installed\
  to compile, or install libsdl1.2-dev (using apt-get)\
  or SDL-devel (using yum)."
     nogo=true
+  fi
 fi
 
 if test "$sound_handler" = "sdl"; then




reply via email to

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