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: Fri, 28 Mar 2008 23:58:58 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Russ Nelson <nelsonrn>  08/03/28 23:58:58

Modified files:
        .              : ChangeLog configure.ac 

Log message:
        Fix this problem report:
        http://www.mail-archive.com/address@hidden/msg03319.html
        Both debian and ubuntu use a dash instead of underscore.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6066&r2=1.6067
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.501&r2=1.502

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6066
retrieving revision 1.6067
diff -u -b -r1.6066 -r1.6067
--- ChangeLog   28 Mar 2008 21:53:56 -0000      1.6066
+++ ChangeLog   28 Mar 2008 23:58:57 -0000      1.6067
@@ -1,5 +1,11 @@
 2008-03-28 Russ Nelson <address@hidden>
 
+       * Fix this problem report:
+         http://www.mail-archive.com/address@hidden/msg03319.html
+         Both debian and ubuntu use a dash instead of underscore.
+
+2008-03-28 Russ Nelson <address@hidden>
+
        * Remove test which disables GTK gui if dependencies are missing.
          If the gtk is disabled, you don't get the right errors at the
          end of the output.

Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.501
retrieving revision 1.502
diff -u -b -r1.501 -r1.502
--- configure.ac        28 Mar 2008 21:52:29 -0000      1.501
+++ configure.ac        28 Mar 2008 23:58:57 -0000      1.502
@@ -2642,7 +2642,7 @@
       for i in ${extra_missing_libs}; do
              echo "        WARNING: The BOOST $i library is recommended!"
         echo "               Install it from http://www.boost.org";
-        echo "               or .deb users: apt-get install libboost-${i}-dev"
+        echo "               or .deb users: apt-get install libboost-"`echo 
${i} | sed 's/_/-/g'`"-dev"
         echo "               Gnash will compile anyway, but not all tests will 
work."
       done
     fi
@@ -2651,7 +2651,7 @@
        # They have some boost libs but no date_time and want to compile cygnal.
        echo "        ERROR: The BOOST $i library is needed!"
        echo "               Install it from http://boost.org";
-       echo "               or .deb users: apt-get install libboost-$i-dev"
+       echo "               or .deb users: apt-get install libboost-"`echo 
${i} | sed 's/_/-/g'`"-dev"
        nogo=true
       done
     fi




reply via email to

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