diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-03-10 06:35:23 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-03-10 06:35:23 +0000 |
commit | f078732dfdc79dc32b83a4a9f6e3fc41eec50691 (patch) | |
tree | 95c3ac00b5a406976cb98e0b7de5f1d509c19b6e /emulators/dlx/files | |
parent | Build now with full Gnome support (diff) |
Fix plist and take the opportunity to make the port respect CFLAGS
Notes
Notes:
svn path=/head/; revision=39386
Diffstat (limited to 'emulators/dlx/files')
-rw-r--r-- | emulators/dlx/files/patch-aa | 16 | ||||
-rw-r--r-- | emulators/dlx/files/patch-ac | 10 | ||||
-rw-r--r-- | emulators/dlx/files/patch-ba | 13 |
3 files changed, 31 insertions, 8 deletions
diff --git a/emulators/dlx/files/patch-aa b/emulators/dlx/files/patch-aa index 8f892449f2d0..9cddf90b31fe 100644 --- a/emulators/dlx/files/patch-aa +++ b/emulators/dlx/files/patch-aa @@ -1,8 +1,14 @@ ---- dlxsim/Makefile.orig Sat Dec 26 13:14:21 1998 -+++ dlxsim/Makefile Sat Dec 26 13:14:41 1998 -@@ -11,7 +11,7 @@ - CC = cc - CFLAGS = -g -I. -Itcl +--- dlxsim/Makefile.orig Tue Dec 18 12:26:43 1990 ++++ dlxsim/Makefile Fri Mar 9 22:23:17 2001 +@@ -7,11 +7,10 @@ + LIBS = tcl/tcl.a + #LIBS = tcl/tcl.a -lBSD + +-CC = gcc +-CC = cc +-CFLAGS = -g -I. -Itcl ++CC ?= cc ++CFLAGS += -g -I. -Itcl DEST = /tmp_mnt/home/ginger/pnh/bly/bin/$(MACHINE)/ -DEST = ../bin +DEST = ../bin/ diff --git a/emulators/dlx/files/patch-ac b/emulators/dlx/files/patch-ac index bba57c63aba5..6a0e92fa9f4b 100644 --- a/emulators/dlx/files/patch-ac +++ b/emulators/dlx/files/patch-ac @@ -1,6 +1,12 @@ --- dlxsim/tcl/Makefile.orig Tue Dec 18 12:24:38 1990 -+++ dlxsim/tcl/Makefile Sat Dec 26 13:11:18 1998 -@@ -13,9 +13,8 @@ ++++ dlxsim/tcl/Makefile Fri Mar 9 22:26:53 2001 +@@ -8,14 +8,13 @@ + #LIBS = -lBSD + + #CFLAGS = -I. -DTCL_VERSION=\"2.1\" -DSUN +-CFLAGS = -I. -DTCL_VERSION=\"2.1\" ++CFLAGS += -I. -DTCL_VERSION=\"2.1\" + OBJS = glob.o tclBasic.o tclCmdAH.o tclCmdIZ.o tclExpr.o \ tclGlob.o tclProc.o tclUtil.o diff --git a/emulators/dlx/files/patch-ba b/emulators/dlx/files/patch-ba index 844395d7565c..bcb442591ab8 100644 --- a/emulators/dlx/files/patch-ba +++ b/emulators/dlx/files/patch-ba @@ -1,5 +1,16 @@ --- gcc/Makefile.orig Tue Aug 14 12:29:46 1990 -+++ gcc/Makefile Sat Dec 26 13:49:36 1998 ++++ gcc/Makefile Fri Mar 9 22:25:52 2001 +@@ -21,8 +21,8 @@ + # Variables that exist for you to override. + # See below for how to change them for certain systems. + +-CFLAGS = -g $(XCFLAGS) +-CC = cc ++CFLAGS += -g $(XCFLAGS) ++CC ?= cc + BISON = bison + BISONFLAGS = -v + AR = ar @@ -45,9 +45,11 @@ # Directory where sources are, from where we are. srcdir = . |