diff options
author | jmz <jmz@FreeBSD.org> | 1999-11-25 02:31:33 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1999-11-25 02:31:33 +0000 |
commit | f385ae74e04ef85c54d2ea79f688f6113ea8efc9 (patch) | |
tree | a847839cc2efb678331fe12b6a14dec2e248cb8a /x11/XFree86 | |
parent | 8c1c9b1d6633b2fe7216189c1a5d87d43e38b512 (diff) | |
download | FreeBSD-ports-f385ae74e04ef85c54d2ea79f688f6113ea8efc9.zip FreeBSD-ports-f385ae74e04ef85c54d2ea79f688f6113ea8efc9.tar.gz |
Change Imake.tmpl and FreeBSD.cf. Imake programs will now use the system
CFLAGS instead of the predefined default (-O2)
Submitted by: Jeremy Lea <reg@shale.csir.co.za>
Diffstat (limited to 'x11/XFree86')
-rw-r--r-- | x11/XFree86/files/patch-b | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11/XFree86/files/patch-b b/x11/XFree86/files/patch-b new file mode 100644 index 0000000..a1e92a8 --- /dev/null +++ b/x11/XFree86/files/patch-b @@ -0,0 +1,20 @@ +--- config/cf/Imake.tmpl.orig Sat Jan 9 15:18:57 1999 ++++ config/cf/Imake.tmpl Thu Nov 25 02:31:28 1999 +@@ -1150,7 +1150,7 @@ + CXXOPTIONS = CplusplusOptions + CXXINCLUDES = $(INCLUDES) $(TOP_INCLUDES) $(CXXEXTRA_INCLUDES) + CXXDEFINES = $(CXXINCLUDES) $(CXXSTD_DEFINES) $(THREADS_CXXDEFINES) $(CXXEXTRA_DEFINES) $(DEFINES) +- CXXFLAGS = $(CXXDEBUGFLAGS) $(CXXOPTIONS) $(THREADS_CXXFLAGS) $(CXXDEFINES) ++ CXXFLAGS += $(CXXDEBUGFLAGS) $(CXXOPTIONS) $(THREADS_CXXFLAGS) $(CXXDEFINES) + #endif + COMPRESS = CompressCmd + GZIPCMD = GzipCmd +@@ -1321,7 +1321,7 @@ + */ + ALLINCLUDES = $(INCLUDES) $(EXTRA_INCLUDES) $(TOP_INCLUDES) $(STD_INCLUDES) + ALLDEFINES = $(ALLINCLUDES) $(STD_DEFINES) $(EXTRA_DEFINES) $(PROTO_DEFINES) $(THREADS_DEFINES) $(DEFINES) +- CFLAGS = $(CDEBUGFLAGS) $(CCOPTIONS) $(THREADS_CFLAGS) $(ALLDEFINES) ++ CFLAGS += $(CDEBUGFLAGS) $(CCOPTIONS) $(THREADS_CFLAGS) $(ALLDEFINES) + LINTFLAGS = $(LINTOPTS) -DLINT $(ALLDEFINES) $(DEPEND_DEFINES) + LDPRELIB = LdPreLib + LDPOSTLIB = LdPostLib |