gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libbase/tu_config.h


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog libbase/tu_config.h
Date: Sat, 29 Mar 2008 10:16:37 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/03/29 10:16:37

Modified files:
        .              : ChangeLog 
Removed files:
        libbase        : tu_config.h 

Log message:
        tu_config.h was just *everywhere*. Grep suggests I've got rid of
        all the includes, so this should be okay now.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6072&r2=1.6073
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/tu_config.h?cvsroot=gnash&r1=1.19&r2=0

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6072
retrieving revision 1.6073
diff -u -b -r1.6072 -r1.6073
--- ChangeLog   29 Mar 2008 10:13:54 -0000      1.6072
+++ ChangeLog   29 Mar 2008 10:16:36 -0000      1.6073
@@ -8,6 +8,7 @@
        * gui/kdesup.h
        * gui/riscossup.h
        * gui/sdlsup.h: drop tu_config.h, remove visibility qualifiers.
+       * libbase/tu_config.h: drop.
 
 2008-03-28  Dossy Shiobara <address@hidden>
 

Index: libbase/tu_config.h
===================================================================
RCS file: libbase/tu_config.h
diff -N libbase/tu_config.h
--- libbase/tu_config.h 22 Mar 2008 19:24:30 -0000      1.19
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,52 +0,0 @@
-// tu_config.h -- by Thatcher Ulrich <address@hidden> 2003
-
-// This source code has been donated to the Public Domain.  Do
-// whatever you want with it.
-
-// Generic include file for configuring tu-testbed.
-
-
-#ifndef TU_CONFIG_H
-#define TU_CONFIG_H
-
-#ifdef HAVE_CONFIG_H
-#include "gnashconfig.h"
-#endif
-
-#include "dlmalloc.h"
-#include "dsodefs.h"
-
-// #define these in compatibility_include.h if you want something different.
-#ifndef tu_malloc
-#define tu_malloc(size) dlmalloc(size)
-#endif
-#ifndef tu_realloc
-#define tu_realloc(old_ptr, new_size, old_size) dlrealloc(old_ptr, new_size)
-#endif
-#ifndef tu_free
-#define tu_free(old_ptr, old_size) dlfree(old_ptr)
-#endif
-
-// tu_error_exit() is for fatal errors; it should not return!
-// You can #define it to something else in compatibility_include.h; e.g. you 
could
-// throw an exception, halt, whatever.
-#ifndef tu_error_exit
-#include <cstdlib>     // for exit()
-#include <cstdio>
-#define tu_error_exit(error_code, error_message) { fprintf(stderr, 
error_message); std::exit(error_code); }
-#endif
-
-// define TU_CONFIG_LINK_TO_LIBPNG to 0 to exclude libpng code from
-// your build.  Be aware of what you're doing -- it may break
-// features!
-#ifndef TU_CONFIG_LINK_TO_LIBPNG
-#define TU_CONFIG_LINK_TO_LIBPNG 1
-#endif
-
-// define TU_CONFIG_LINK_TO_LIBXML to 1 to include XML support in,
-// depending on the GNOME libxml library.
-#ifndef TU_CONFIG_LINK_TO_LIBXML
-#define TU_CONFIG_LINK_TO_LIBXML 1
-#endif
-
-#endif // TU_CONFIG_H




reply via email to

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