summaryrefslogtreecommitdiff
path: root/math/xgfe/files/patch-aa
diff options
context:
space:
mode:
authorTim Vanderhoek <hoek@FreeBSD.org>1998-04-10 05:00:51 +0000
committerTim Vanderhoek <hoek@FreeBSD.org>1998-04-10 05:00:51 +0000
commit8830306820e34978b20b1241dcf6b061d44a0dc4 (patch)
tree83e5c0e37f66f6faa7115fcbb7172c93545b668e /math/xgfe/files/patch-aa
parentFix images dir to match installation (diff)
Graphical front-end to gnuplot.
PR: ports/6123 Submitted by: Matthew Hunt <mph@pobox.com>
Diffstat (limited to 'math/xgfe/files/patch-aa')
-rw-r--r--math/xgfe/files/patch-aa42
1 files changed, 42 insertions, 0 deletions
diff --git a/math/xgfe/files/patch-aa b/math/xgfe/files/patch-aa
new file mode 100644
index 000000000000..1938e32f2a2e
--- /dev/null
+++ b/math/xgfe/files/patch-aa
@@ -0,0 +1,42 @@
+--- Makefile.freebsd.gcc.orig Mon Feb 23 17:31:22 1998
++++ Makefile.freebsd.gcc Tue Mar 24 13:17:49 1998
+@@ -7,12 +7,13 @@
+
+ ####### Compiler, tools and options
+
+-CC = gcc
+-CFLAGS = -Wall -W -O2 -fno-strength-reduce
+-INCPATH = -I$(QTDIR)/include
+-LINK = gcc
++#CC = gcc
++#CFLAGS = -Wall -W -O2 -fno-strength-reduce
++QTDIR = $(X11BASE)
++INCPATH = -I$(X11BASE)/include/X11/qt
++LINK = $(CXX)
+ LFLAGS =
+-LIBS = -L$(QTDIR)/lib -lqt -L/usr/X11R6/lib -lX11
++LIBS = -L$(QTDIR)/lib -lqt -L$(X11BASE)/lib -lX11
+ MOC = moc
+
+ ####### Files
+@@ -115,16 +116,16 @@
+ .SUFFIXES: .cpp .cxx .cc .C .c
+
+ .cpp.o:
+- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
++ $(CXX) -c $(CFLAGS) $(INCPATH) -o $@ $<
+
+ .cxx.o:
+- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
++ $(CXX) -c $(CFLAGS) $(INCPATH) -o $@ $<
+
+ .cc.o:
+- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
++ $(CXX) -c $(CFLAGS) $(INCPATH) -o $@ $<
+
+ .C.o:
+- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
++ $(CXX) -c $(CFLAGS) $(INCPATH) -o $@ $<
+
+ .c.o:
+ $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<