summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Piazza <cpiazza@FreeBSD.org>2000-04-26 20:42:09 +0000
committerChris Piazza <cpiazza@FreeBSD.org>2000-04-26 20:42:09 +0000
commit996343d8637a8a64f307a6bb3c2260580c79d97c (patch)
tree0a44e08fea9716d934d46a81db0b41f177d701cd
parentImport of port for dnscache, djb's set of DNS utilities, including a (diff)
Compile kdm with -O0 always so it actually works on freebsd 4.0+
PR: 17938 Submitted by: "Jeffrey S. Sharp" <jss@subatomix.com>
Notes
Notes: svn path=/head/; revision=28027
-rw-r--r--x11/kdebase11/files/patch-az26
1 files changed, 26 insertions, 0 deletions
diff --git a/x11/kdebase11/files/patch-az b/x11/kdebase11/files/patch-az
new file mode 100644
index 000000000000..8bd634bccbfa
--- /dev/null
+++ b/x11/kdebase11/files/patch-az
@@ -0,0 +1,26 @@
+--- kdm/Makefile.in.orig Wed Apr 26 13:39:25 2000
++++ kdm/Makefile.in Wed Apr 26 13:40:22 2000
+@@ -121,7 +121,7 @@
+ MOC = @MOC@
+ MSGFMT = @MSGFMT@
+ NM = @NM@
+-NOOPT_CXXFLAGS = @NOOPT_CXXFLAGS@
++NOOPT_CXXFLAGS = @NOOPT_CXXFLAGS@ -O0
+ PACKAGE = @PACKAGE@
+ PAMINC = @PAMINC@
+ PAMLIBPATHS = @PAMLIBPATHS@
+@@ -228,12 +228,12 @@
+ kdmdesktop_OBJECTS = kdmdesktop.o
+ kdmdesktop_DEPENDENCIES =
+ kdmdesktop_LDFLAGS =
+-CXXFLAGS = @CXXFLAGS@
++CXXFLAGS = @CXXFLAGS@ -O0
+ CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+ LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+ CXXLD = $(CXX)
+ CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@
+-CFLAGS = @CFLAGS@
++CFLAGS = @CFLAGS@ -O0
+ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)