1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Description: Upstream changes by gniibe to fix LDADD and CFLAGS
Author: NIIBE Yutaka <gniibe@fsij.org>
Last-Update: 2011-02-15
Index: sigscheme/src/Makefile.am
===================================================================
--- sigscheme.orig/src/Makefile.am
+++ sigscheme/src/Makefile.am
@@ -376,9 +376,9 @@ endif
if USE_SHELL
bin_PROGRAMS = sscm
sscm_SOURCES = main.c
-sscm_LDADD = libsscm.la @GCROOTS_LIBS@
-sscm_CPPFLAGS = -I$(top_builddir)/include @GCROOTS_CFLAGS@
-sscm_CFLAGS =
+sscm_LDADD = libsscm.la
+sscm_CPPFLAGS = -I$(top_builddir)/include
+sscm_CFLAGS = @GCROOTS_CFLAGS@
endif
# To enable ruby-and-perl-less build on tarball distribution, we should not
Index: sigscheme/src/Makefile.in
===================================================================
--- sigscheme.orig/src/Makefile.in
+++ sigscheme/src/Makefile.in
@@ -647,9 +647,9 @@ libsscm_sources = alloc.c storage.c stor
@USE_LIBSSCM_TRUE@libsscm_la_CFLAGS =
@USE_SHELL_TRUE@sscm_SOURCES = main.c
-@USE_SHELL_TRUE@sscm_LDADD = libsscm.la @GCROOTS_LIBS@
-@USE_SHELL_TRUE@sscm_CPPFLAGS = -I$(top_builddir)/include @GCROOTS_CFLAGS@
-@USE_SHELL_TRUE@sscm_CFLAGS =
+@USE_SHELL_TRUE@sscm_LDADD = libsscm.la
+@USE_SHELL_TRUE@sscm_CPPFLAGS = -I$(top_builddir)/include
+@USE_SHELL_TRUE@sscm_CFLAGS = @GCROOTS_CFLAGS@
# To enable ruby-and-perl-less build on tarball distribution, we should not
# delete $(FUNC_TABLES) and sigscheme-combined-trim.h here.
|