From ec2eff6ede6363a8434b656205fb7d4c64ec83ac Mon Sep 17 00:00:00 2001 From: zafer Date: Tue, 20 Apr 2010 19:25:16 +0000 Subject: forgot to remove patches. --- lang/mawk/patches/patch-aa | 41 ------------------------ lang/mawk/patches/patch-ab | 22 ------------- lang/mawk/patches/patch-ac | 18 ----------- lang/mawk/patches/patch-ad | 80 ---------------------------------------------- lang/mawk/patches/patch-ae | 12 ------- 5 files changed, 173 deletions(-) delete mode 100644 lang/mawk/patches/patch-aa delete mode 100644 lang/mawk/patches/patch-ab delete mode 100644 lang/mawk/patches/patch-ac delete mode 100644 lang/mawk/patches/patch-ad delete mode 100644 lang/mawk/patches/patch-ae (limited to 'lang/mawk') diff --git a/lang/mawk/patches/patch-aa b/lang/mawk/patches/patch-aa deleted file mode 100644 index 610be89731a..00000000000 --- a/lang/mawk/patches/patch-aa +++ /dev/null @@ -1,41 +0,0 @@ -$NetBSD: patch-aa,v 1.5 2007/08/20 21:42:26 agc Exp $ - ---- Makefile.in.orig 1996-01-31 21:05:40.000000000 -0800 -+++ Makefile.in -@@ -11,10 +11,11 @@ - - YACC = @YACC@ - -+prefix = ${PREFIX} - # where to put mawk --BINDIR = @BINDIR@ -+BINDIR = $(prefix)/bin - # where to put the man pages --MANDIR = @MANDIR@ -+MANDIR = $(prefix)/${PKGMANDIR}/man1 - MANEXT = @MANEXT@ - ####################################### - -@@ -32,6 +33,7 @@ - rexp/rexp3.c - - -+all: mawk_and_test - mawk_and_test : mawk mawk_test fpe_test - - mawk : $(O) rexp/.done -@@ -74,10 +76,10 @@ - - MAWKMAN = $(MANDIR)/mawk.$(MANEXT) - install : mawk -- cp mawk $(BINDIR) -- chmod 0755 $(BINDIR)/mawk -- cp man/mawk.1 $(MAWKMAN) -- chmod 0644 $(MAWKMAN) -+ ${BSD_INSTALL_PROGRAM_DIR} ${DESTDIR}${BINDIR} -+ ${BSD_INSTALL_PROGRAM} mawk ${DESTDIR}$(BINDIR) -+ ${BSD_INSTALL_MAN_DIR} ${DESTDIR}${MANDIR} -+ ${BSD_INSTALL_MAN} man/mawk.1 ${DESTDIR}$(MAWKMAN) - - clean : - rm -f *.o rexp/*.o rexp/.done test/mawk core test/core mawk diff --git a/lang/mawk/patches/patch-ab b/lang/mawk/patches/patch-ab deleted file mode 100644 index 305cf19f6ad..00000000000 --- a/lang/mawk/patches/patch-ab +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2002/04/06 14:02:56 mrg Exp $ - - -*** matherr.c.orig Mon Sep 2 02:54:35 1996 ---- matherr.c Sat Apr 6 23:55:20 2002 -*************** -*** 204,210 **** - thing on bsd43_vax - */ - -! #ifdef BSD43_VAX - - #include - ---- 204,210 ---- - thing on bsd43_vax - */ - -! #if defined(BSD43_VAX) || defined(__vax__) - - #include - diff --git a/lang/mawk/patches/patch-ac b/lang/mawk/patches/patch-ac deleted file mode 100644 index 89c2bcdd081..00000000000 --- a/lang/mawk/patches/patch-ac +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2003/09/30 21:47:14 seb Exp $ - ---- mawk.ac.m4.orig 1996-09-04 23:40:34.000000000 +0000 -+++ mawk.ac.m4 -@@ -46,10 +46,10 @@ define(MIKE, brennan@whidbey.com) - dnl - define(LOOK_FOR_MATH_LIBRARY,[ - if test "${MATHLIB+set}" != set ; then --AC_CHECK_LIB(m,log,[MATHLIB=-lm ; LIBS="$LIBS -lm"], -+AC_CHECK_LIB(m,floor,[MATHLIB=-lm ; LIBS="$LIBS -lm"], - [# maybe don't need separate math library --AC_CHECK_FUNC(log, log=yes) --if test "$log$" = yes -+AC_CHECK_FUNC(floor, floor=yes) -+if test "$floor$" = yes - then - MATHLIB='' # evidently don't need one - else diff --git a/lang/mawk/patches/patch-ad b/lang/mawk/patches/patch-ad deleted file mode 100644 index 40e9bda0e3f..00000000000 --- a/lang/mawk/patches/patch-ad +++ /dev/null @@ -1,80 +0,0 @@ -$NetBSD: patch-ad,v 1.3 2005/12/23 15:36:25 joerg Exp $ - ---- configure.orig 1996-09-04 23:43:01.000000000 +0000 -+++ configure -@@ -528,9 +528,10 @@ cat > conftest.$ac_ext <&6 - # maybe don't need separate math library --echo $ac_n "checking for log""... $ac_c" 1>&6 --if eval "test \"`echo '$''{'ac_cv_func_log'+set}'`\" = set"; then -+echo $ac_n "checking for floor""... $ac_c" 1>&6 -+if eval "test \"`echo '$''{'ac_cv_func_floor'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 - else - cat > conftest.$ac_ext < - /* Override any gcc2 internal prototype to avoid an error. */ --char log(); -+char floor(); - - int main() { return 0; } - int t() { -@@ -568,32 +569,32 @@ int t() { - /* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ --#if defined (__stub_log) || defined (__stub___log) -+#if defined (__stub_floor) || defined (__stub___floor) - choke me - #else --log(); -+floor(); - #endif - - ; return 0; } - EOF - if eval $ac_link; then - rm -rf conftest* -- eval "ac_cv_func_log=yes" -+ eval "ac_cv_func_floor=yes" - else - rm -rf conftest* -- eval "ac_cv_func_log=no" -+ eval "ac_cv_func_floor=no" - fi - rm -f conftest* - - fi --if eval "test \"`echo '$ac_cv_func_'log`\" = yes"; then -+if eval "test \"`echo '$ac_cv_func_'floor`\" = yes"; then - echo "$ac_t""yes" 1>&6 -- log=yes -+ floor=yes - else - echo "$ac_t""no" 1>&6 - fi - --if test "$log$" = yes -+if test "$floor" = yes - then - MATHLIB='' # evidently don't need one - else diff --git a/lang/mawk/patches/patch-ae b/lang/mawk/patches/patch-ae deleted file mode 100644 index 57acaa7e289..00000000000 --- a/lang/mawk/patches/patch-ae +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2005/01/21 12:55:11 tv Exp $ - ---- fin.h.orig 2005-01-21 07:53:29.000000000 -0500 -+++ fin.h -@@ -52,5 +52,7 @@ unsigned PROTO ( fillbuff, (int, char *, - extern FIN *main_fin ; /* for the main input stream */ - void PROTO( open_main, (void) ) ; - -+#if MSDOS - void PROTO(setmode, (int,int)) ; -+#endif - #endif /* FIN_H */ -- cgit v1.2.3