use -u to prevent garbage collection of symbols prematurely. I wonder if

2003-09-16  Manish Singh  <yosh@gimp.org>

        * app/Makefile.am: use -u to prevent garbage collection of symbols
        prematurely. I wonder if this works everywhere...

        * app/pdb/Makefile.am
        * app/vectors/Makefile.am: remove gross hacks
This commit is contained in:
Manish Singh 2003-09-16 01:05:12 +00:00 committed by Manish Singh
parent 5563bdad06
commit dd35944d57
4 changed files with 16 additions and 8 deletions

View File

@ -1,3 +1,11 @@
2003-09-16 Manish Singh <yosh@gimp.org>
* app/Makefile.am: use -u to prevent garbage collection of symbols
prematurely. I wonder if this works everywhere...
* app/pdb/Makefile.am
* app/vectors/Makefile.am: remove gross hacks
2003-09-16 Simon Budig <simon@gimp.org>
* app/vectors/gimpvectors.[ch]: Implemented an (unused/untested)

View File

@ -50,9 +50,16 @@ REGEXREPL = $(top_builddir)/regexrepl/libregex.a
endif
if OS_WIN32
gimp_1_3_LDFLAGS = -mwindows
mwindows = -mwindows
endif
gimp_1_3_LDFLAGS = \
$(mwindows) \
-u gimp_container_get_filtered_name_array \
-u gimp_xml_parser_new \
-u gimp_xml_parser_parse_file \
-u gimp_xml_parser_free
AM_CPPFLAGS = \
-DG_LOG_DOMAIN=\"Gimp\" \
-DGIMP_APP_GLUE_COMPILATION \

View File

@ -48,9 +48,6 @@ libapppdb_a_SOURCES = \
undo_cmds.c \
unit_cmds.c
## This is a truly ugly hack
libapppdb_a_LIBADD = ../core/gimpcontainer-filter.o
AM_CPPFLAGS = \
-DG_LOG_DOMAIN=\"Gimp-PDB\" \
@GIMP_THREAD_FLAGS@ \

View File

@ -34,7 +34,3 @@ libappvectors_a_SOURCES = \
gimpvectors-import.h \
gimpvectors-preview.c \
gimpvectors-preview.h
## This is a truly ugly hack
libappvectors_a_LIBADD = ../config/gimpxmlparser.o