gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog configure.ac


From: Russ Nelson
Subject: [Gnash-commit] gnash ChangeLog configure.ac
Date: Thu, 01 May 2008 02:36:26 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Russ Nelson <nelsonrn>  08/05/01 02:36:26

Modified files:
        .              : ChangeLog configure.ac 

Log message:
        * configure.ac: check for dejagnu and throw a warning if not present.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6470&r2=1.6471
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.527&r2=1.528

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6470
retrieving revision 1.6471
diff -u -b -r1.6470 -r1.6471
--- ChangeLog   30 Apr 2008 18:31:50 -0000      1.6470
+++ ChangeLog   1 May 2008 02:36:25 -0000       1.6471
@@ -1,3 +1,7 @@
+2008-04-30 Russ Nelson <address@hidden>
+
+       * configure.ac: check for dejagnu and throw a warning if not present.
+
 2008-04-30 Sandro Santilli <address@hidden>
 
        * testsuite/misc-swfmill.all/Makefile.am: don't forget
@@ -24,7 +28,7 @@
        * testsuite/actionscript.all/MovieClip.as: success for all newly
          added _alpha tests.
 
-2008-04-28 Russ Nelson <address@hidden>
+2008-04-30 Russ Nelson <address@hidden>
 
        * resolve http://savannah.gnu.org/bugs/?22973 by adding a test
          for a directory, and by removing .. and ../.. which we probably

Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.527
retrieving revision 1.528
diff -u -b -r1.527 -r1.528
--- configure.ac        30 Apr 2008 18:02:05 -0000      1.527
+++ configure.ac        1 May 2008 02:36:26 -0000       1.528
@@ -861,6 +861,8 @@
 AM_CONDITIONAL(ENABLE_STATIC, [test x"${enable_shared}" = xno])
 dnl -- AM_CONDITIONAL(STATIC_GUI, test x"${dynamic_gui}" = xno -o 
x"${enable_shared}" = xno)
 
+AC_PATH_PROG(DEJAGNU, runtest)
+
 AM_CONDITIONAL(BUILD_OGL_RENDERER, [ test x$build_ogl = xyes ])
 AM_CONDITIONAL(BUILD_AGG_RENDERER, [ test x$build_agg = xyes ])
 AM_CONDITIONAL(BUILD_CAIRO_RENDERER, [ test x$build_cairo = xyes ])
@@ -2872,10 +2874,20 @@
   echo "        WARNING: You need the gettext package installed to use 
translations." >&4
   echo "                 Required for building a package or 'make distcheck'" 
>&4
   echo "                 Install it from http://www.gnu.org/software/gettext/"; 
>&4
-  echo "                  or deb users: apt-get install gettext" >&4
+  echo "                 or .deb users: apt-get install gettext" >&4
   #echo "                 or .rpm users: yum install gettext" >&4
 fi
 
+if test x"${DEJAGNU}" != x""; then
+  echo "        DEJAGNU's runtest is $DEJAGNU"
+else
+  echo "        WARNING: You need the dejagnu package installed to get a 
summary" >&4
+  echo "                 report after running ``make check''" >&4
+  echo "                 Install it from http://www.gnu.org/software/dejagnu/"; 
>&4
+  echo "                 or .deb users: apt-get install dejagnu" >&4
+  #echo "                or .rpm users: yum install dejagnu" >&4
+fi
+
 
 dnl Access Linux Platform
 if test x"${build_alp}" = xyes; then




reply via email to

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