gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash configure.ac ChangeLog


From: Rob Savoye
Subject: [Gnash-commit] gnash configure.ac ChangeLog
Date: Fri, 07 Mar 2008 01:35:04 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Rob Savoye <rsavoye>    08/03/07 01:35:04

Modified files:
        .              : configure.ac ChangeLog 

Log message:
                * configure.ac: Add a test for mallinfo();

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.492&r2=1.493
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5835&r2=1.5836

Patches:
Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.492
retrieving revision 1.493
diff -u -b -r1.492 -r1.493
--- configure.ac        6 Mar 2008 11:15:27 -0000       1.492
+++ configure.ac        7 Mar 2008 01:35:03 -0000       1.493
@@ -1112,6 +1112,12 @@
 dnl fi
 AM_CONDITIONAL(HAVE_X11, [test x$x11 = xyes])
 
+AC_TRY_COMPILE([#include <malloc.h>], [
+  struct mallinfo x = mallinfo(); ],
+  AC_DEFINE(HAVE_MALLINFO, [1], [Has mallinfo()])
+)
+AM_CONDITIONAL(HAVE_MALLINFO, [test x$HAVE_MALLINFO = xyes])
+
 AC_CHECK_LIB(rt, shm_unlink)
 AC_CHECK_FUNCS(shm_open shm_unlink)
 AC_TRY_COMPILE([#include <strings.h>], [

Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5835
retrieving revision 1.5836
diff -u -b -r1.5835 -r1.5836
--- ChangeLog   7 Mar 2008 01:02:20 -0000       1.5835
+++ ChangeLog   7 Mar 2008 01:35:03 -0000       1.5836
@@ -1,5 +1,6 @@
 2008-03-06  Rob Savoye  <address@hidden>
 
+       * configure.ac: Add a test for mallinfo();
        * testsuite/libbase/memtest.cpp: New test case for the Memory
        debugger for use by maintainers.
        * testsuite/libbase/Makefile.am: Add new memory testv case.




reply via email to

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