From 469e0100437f6f4b3b9bcc93381bab1107bfdc89 Mon Sep 17 00:00:00 2001 From: Peter Verthez Date: Sat, 28 Sep 2002 17:53:15 +0000 Subject: [PATCH] Remove compiler option -Wno-unused-parameter (old gcc doesn't have it). Add linker option -export-dynamic to be able to use libtool --execute. --- gom/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.30.2