1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/x11/kdebase11/files/patch-az
Chris Piazza 996343d863 Compile kdm with -O0 always so it actually works on freebsd 4.0+
PR:		17938
Submitted by:	"Jeffrey S. Sharp" <jss@subatomix.com>
2000-04-26 20:42:09 +00:00

27 lines
1.0 KiB
Plaintext

--- 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)