summaryrefslogtreecommitdiff
path: root/lang/wamcc/files/patch-ac
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-03-23 20:53:42 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-03-23 20:53:42 +0000
commit5e535e782212b88c5653bcdf5b479068766cccd3 (patch)
tree383e4760b87c61a4d7ed195e85cffa507c0ebb80 /lang/wamcc/files/patch-ac
parent- Actually, klamav doesn't install docs, it just installs kde stuffs on (diff)
2009-03-22 emulators/dlx: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 java/javel: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 java/guavac: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 graphics/xrml: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 graphics/renderpark: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 games/jumpnbump: tcl8.0 support is going to be dropped 2009-03-17 irc/blackened: Broken and abandonware 2009-03-22 devel/libg++: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 devel/freescope: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 misc/menushki: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 misc/vbidecode: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 lang/wamcc: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 multimedia/mpegedit: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 mail/dkimap4: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 net-mgmt/oproute: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 x11/tkgoodstuff: tcl8.0 support is going to be dropped 2009-02-11 x11-toolkits/inti: not maintain by upstream for more than five years and no port depend on this
Notes
Notes: svn path=/head/; revision=230793
Diffstat (limited to 'lang/wamcc/files/patch-ac')
-rw-r--r--lang/wamcc/files/patch-ac67
1 files changed, 0 insertions, 67 deletions
diff --git a/lang/wamcc/files/patch-ac b/lang/wamcc/files/patch-ac
deleted file mode 100644
index 632ef7ab686f..000000000000
--- a/lang/wamcc/files/patch-ac
+++ /dev/null
@@ -1,67 +0,0 @@
---- src/Makefile.orig Wed Jan 29 12:37:54 1997
-+++ src/Makefile Wed Jun 4 11:02:44 2003
-@@ -10,13 +10,13 @@
- COMPILER = wamcc
- INCPATH = `pwd`
- LIBPATH = `pwd`
--CC = gcc
-+CC ?= gcc
- WCC = w_$(CC)
-
-
- # other local variables
-
--CFLAGS = -O2
-+#CFLAGS = -O2
- CFLAGINLIN= -finline-functions
- LFLAGS =
- BMF = bmf_$(COMPILER)
-@@ -49,22 +49,22 @@
-
-
- machine.o: machine.h archi.h wam_engine.h machine.c
-- $(WCC) $(CFLAGS) -c machine.c
-+ ./$(WCC) $(CFLAGS) -c machine.c
-
- wam_engine.o: machine.h archi.h wam_engine.h atom_pred.h wam_engine.c
-- $(WCC) $(CFLAGS) -c wam_engine.c
-+ ./$(WCC) $(CFLAGS) -c wam_engine.c
-
- wam_engine_pp.o: machine.h archi.h wam_engine.h atom_pred.h wam_engine.c
-- $(WCC) $(CFLAGS) -DWAM_PROFILE -c -o wam_engine_pp.o wam_engine.c
-+ ./$(WCC) $(CFLAGS) -DWAM_PROFILE -c -o wam_engine_pp.o wam_engine.c
-
- atom_pred.o: machine.h archi.h wam_engine.h atom_pred.h atom_pred.c
-- $(WCC) $(CFLAGS) -c atom_pred.c
-+ ./$(WCC) $(CFLAGS) -c atom_pred.c
-
- debugger.o: machine.h archi.h wam_engine.h atom_pred.h debugger.c
-- $(WCC) $(CFLAGS) -c debugger.c
-+ ./$(WCC) $(CFLAGS) -c debugger.c
-
- hash.o: machine.h hash.c
-- $(WCC) $(CFLAGS) -c hash.c
-+ ./$(WCC) $(CFLAGS) -c hash.c
-
-
-
-@@ -79,7 +79,7 @@
-
-
- $(WCC): configure archi.def
-- configure
-+ ./configure
- chmod a+x $(WCC)
-
- $(BMF): bmf.c
-@@ -95,8 +95,8 @@
- $(CC) $(CFLAGS) $(LFLAGS) -o pl2hex pl2hex.c
-
- $(COMPILER):
-- $(WCC) $(CFLAGS) -c wamcc*.c
-- $(WCC) $(CFLAGS) $(LFLAGS) -s -o $(COMPILER) wamcc*.o -l$(COMPILER)
-+ ./$(WCC) $(CFLAGS) -c wamcc*.c
-+ ./$(WCC) $(CFLAGS) $(LFLAGS) -s -o $(COMPILER) wamcc*.o -l$(COMPILER)
-
-
-