pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/mawk/patches forgot to remove patches.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/784882a8e27a
branches:  trunk
changeset: 574594:784882a8e27a
user:      zafer <zafer%pkgsrc.org@localhost>
date:      Tue Apr 20 19:25:16 2010 +0000

description:
forgot to remove patches.

diffstat:

 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, 0 insertions(+), 173 deletions(-)

diffs (193 lines):

diff -r ecaf825ddcfd -r 784882a8e27a lang/mawk/patches/patch-aa
--- a/lang/mawk/patches/patch-aa        Tue Apr 20 19:23:14 2010 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r ecaf825ddcfd -r 784882a8e27a lang/mawk/patches/patch-ab
--- a/lang/mawk/patches/patch-ab        Tue Apr 20 19:23:14 2010 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 <errno.h>
-  
---- 204,210 ----
-  thing on bsd43_vax
-  */
-  
-! #if defined(BSD43_VAX) || defined(__vax__)
-  
-  #include <errno.h>
-  
diff -r ecaf825ddcfd -r 784882a8e27a lang/mawk/patches/patch-ac
--- a/lang/mawk/patches/patch-ac        Tue Apr 20 19:23:14 2010 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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@localhost)
- 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 -r ecaf825ddcfd -r 784882a8e27a lang/mawk/patches/patch-ad
--- a/lang/mawk/patches/patch-ad        Tue Apr 20 19:23:14 2010 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 <<EOF
- #include "confdefs.h"
- 
- int main() { return 0; }
-+double testval;
- int t() {
--log()
--; return 0; }
-+floor(testval);
-+return 0; }
- EOF
- if eval $ac_link; then
-   rm -rf conftest*
-@@ -549,18 +550,18 @@ if eval "test \"`echo '$ac_cv_lib_'m`\" 
- else
-   echo "$ac_t""no" 1>&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 <<EOF
- #line 558 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
--    which can conflict with char log(); below.  */
-+    which can conflict with char floor(); below.  */
- #include <assert.h>
- /* 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 -r ecaf825ddcfd -r 784882a8e27a lang/mawk/patches/patch-ae
--- a/lang/mawk/patches/patch-ae        Tue Apr 20 19:23:14 2010 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 */



Home | Main Index | Thread Index | Old Index