From: Peter Verthez Date: Sat, 28 Sep 2002 17:53:15 +0000 (+0000) Subject: Remove compiler option -Wno-unused-parameter (old gcc doesn't have it). X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;ds=sidebyside;h=469e0100437f6f4b3b9bcc93381bab1107bfdc89;p=gedcom-parse.git Remove compiler option -Wno-unused-parameter (old gcc doesn't have it). Add linker option -export-dynamic to be able to use libtool --execute. --- diff --git a/gom/Makefile.am b/gom/Makefile.am index 38c5edf..c1f0158 100644 --- a/gom/Makefile.am +++ b/gom/Makefile.am @@ -3,7 +3,7 @@ # $Name$ INCLUDES = -I $(srcdir)/../intl -I $(srcdir)/../include -I $(srcdir)/../utf8 -CFLAGS = -g -O2 -W -Wall -Wno-unused-parameter -pedantic +CFLAGS = -g -O2 -W -Wall -pedantic lib_LTLIBRARIES = libgedcom_gom.la libgedcom_gom_la_SOURCES = gom.c \ @@ -58,5 +58,5 @@ noinst_HEADERS = header.h \ user_rec.h \ gom_internal.h -libgedcom_gom_la_LDFLAGS = -version-info $(LIBVERSION) +libgedcom_gom_la_LDFLAGS = -export-dynamic -version-info $(LIBVERSION) libgedcom_gom_la_LIBADD = ../utf8/libutf8.la