CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/08/03 18:17:22
Modified files: . : ChangeLog configure.ac Log message: * configure.ac: fix misleading warning about KDE/GTK gui not being built while KPARTS/NSAPI plugin is when instead the guis are actually being built. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3932&r2=1.3933 http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.390&r2=1.391 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.3932 retrieving revision 1.3933 diff -u -b -r1.3932 -r1.3933 --- ChangeLog 3 Aug 2007 18:04:08 -0000 1.3932 +++ ChangeLog 3 Aug 2007 18:17:21 -0000 1.3933 @@ -1,3 +1,9 @@ +2007-08-02 Sandro Santilli <[EMAIL PROTECTED]> + + * configure.ac: fix misleading warning about KDE/GTK gui + not being built while KPARTS/NSAPI plugin is when instead + the guis are actually being built. + 2007-08-03 Ivor Blockley <[EMAIL PROTECTED]> * server/array.cpp: fix iterators invalidation (bug #20667). Index: configure.ac =================================================================== RCS file: /sources/gnash/gnash/configure.ac,v retrieving revision 1.390 retrieving revision 1.391 diff -u -b -r1.390 -r1.391 --- configure.ac 3 Aug 2007 17:23:23 -0000 1.390 +++ configure.ac 3 Aug 2007 18:17:22 -0000 1.391 @@ -15,7 +15,7 @@ dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA dnl -dnl $Id: configure.ac,v 1.390 2007/08/03 17:23:23 rsavoye Exp $ +dnl $Id: configure.ac,v 1.391 2007/08/03 18:17:22 strk Exp $ AC_PREREQ(2.50) AC_INIT(gnash, cvs) @@ -961,7 +961,7 @@ AC_MSG_WARN(["Disabling NSAPI plugin, no GTK development tools found"]) fi -if test x$build_gtk = xno -o x$nsapi = xyes; then +if test x$build_gtk = xno -a x$nsapi = xyes; then AC_MSG_WARN(["Enabled NSAPI plugin, but you aren't building a GTK based GUI!"]) fi @@ -973,7 +973,7 @@ AC_MSG_WARN(["Disabling KPARTS plugin, no KDE development found"]) fi -if test x$build_kde = xno -o x$kparts = xyes; then +if test x$build_kde = xno -a x$kparts = xyes; then AC_MSG_WARN(["Enabled KPARTS plugin, but you aren't building a KDE based GUI!"]) fi _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit