summaryrefslogtreecommitdiff
path: root/lang/wamcc/files/patch-af
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-af
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-af')
-rw-r--r--lang/wamcc/files/patch-af48
1 files changed, 0 insertions, 48 deletions
diff --git a/lang/wamcc/files/patch-af b/lang/wamcc/files/patch-af
deleted file mode 100644
index 232358f3b4f1..000000000000
--- a/lang/wamcc/files/patch-af
+++ /dev/null
@@ -1,48 +0,0 @@
---- src/machine.h.orig Mon Oct 23 03:59:26 1995
-+++ src/machine.h Sat Mar 31 02:57:59 2001
-@@ -33,6 +33,16 @@
- # define M_MACHINE "dec_alpha"
- # define M_dec_alpha
-
-+# elif defined(__FreeBSD__) && defined(__i386__)
-+
-+ #define M_MACHINE "i386_freebsd"
-+ #define M_i386_freebsd
-+
-+# elif defined(__FreeBSD__) && defined(__alpha__)
-+
-+ #define M_MACHINE "alpha_freebsd"
-+ #define M_alpha_freebsd
-+
- # elif defined(__linux__) && !defined(__ELF__)
-
- # define M_MACHINE "pc_linux_a_out"
-@@ -101,7 +111,8 @@
- /*---------------------------------*/
-
- #if defined(M_sony_news) || defined(M_dec_ultrix) || defined(M_dec_alpha) ||\
-- defined(M_pc_linux_elf)
-+ defined(M_pc_linux_elf) || defined(M_i386_freebsd) ||\
-+ defined(M_alpha_freebsd)
-
- # define M_Asm_Symbol1(name) #name
- # define M_Asm_Symbol(name) M_Asm_Symbol1(name)
-@@ -122,7 +133,8 @@
-
-
- #if defined(M_sparc) || defined(M_dec_ultrix) || defined(M_sony_news) || \
-- defined(M_NeXT_hppa) || defined(M_dec_alpha)
-+ defined(M_NeXT_hppa) || defined(M_dec_alpha) || defined(M_i386_freebsd) ||\
-+ defined(M_alpha_freebsd)
-
- # define M_Save_Control_Info
- # define M_Restore_Control_Info
-@@ -145,7 +157,7 @@
-
-
- #if defined(M_sparc) || defined(M_dec_ultrix) || defined(M_sony_news) || \
-- defined(M_NeXT_hppa)
-+ defined(M_NeXT_hppa) || defined(M_i386_freebsd) || defined(M_alpha_freebsd)
-
- # define M_Direct_Goto(lab) {lab(); return;}
- # define M_Indirect_Goto(p_lab) {(* ((void (*)()) p_lab))();return;}