summaryrefslogtreecommitdiff
path: root/devel/autoconf257/files
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2001-12-23 06:50:33 +0000
committerWill Andrews <will@FreeBSD.org>2001-12-23 06:50:33 +0000
commita1aa37ae617a5874f00e8e47290e1b33427864ab (patch)
treed8021a9f000e65919da6cde02e0e11e495932401 /devel/autoconf257/files
parentGive maintainership to submitter. (diff)
Upgrade to 2.52; this should solve some problems when mixing ac 2.13* and
am 1.5. Ports which require 2.13/1.4 will be modified to use the ac213 and am14 ports. PR: 29069 Submitted by: pat Approved by: sobomax, ade, steve (contingent upon me fixing every problem that crops up)
Diffstat (limited to 'devel/autoconf257/files')
-rw-r--r--devel/autoconf257/files/patch-aa23
-rw-r--r--devel/autoconf257/files/patch-ab10
-rw-r--r--devel/autoconf257/files/patch-ac17
-rw-r--r--devel/autoconf257/files/patch-ad26
-rw-r--r--devel/autoconf257/files/patch-ae11
-rw-r--r--devel/autoconf257/files/patch-af20
-rw-r--r--devel/autoconf257/files/patch-ag11
7 files changed, 0 insertions, 118 deletions
diff --git a/devel/autoconf257/files/patch-aa b/devel/autoconf257/files/patch-aa
deleted file mode 100644
index eefb2438ca51..000000000000
--- a/devel/autoconf257/files/patch-aa
+++ /dev/null
@@ -1,23 +0,0 @@
---- Makefile.in.orig Tue Jan 5 08:27:16 1999
-+++ Makefile.in Sat Jan 23 23:29:33 1999
-@@ -141,7 +141,7 @@
-
- install: all $(M4FILES) acconfig.h installdirs install-info
- for p in $(ASCRIPTS); do \
-- $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
-+ $(INSTALL) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
- done
- for i in $(M4FROZEN); do \
- $(INSTALL_DATA) $$i $(acdatadir)/$$i; \
-@@ -150,9 +150,9 @@
- $(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
- done
- -if test -f autoscan; then \
-- $(INSTALL_PROGRAM) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \
-+ $(INSTALL) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \
- for i in acfunctions acheaders acidentifiers acprograms \
-- acmakevars; do \
-+ acmakevars config.guess config.sub; do \
- $(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
- done; \
- else :; fi
diff --git a/devel/autoconf257/files/patch-ab b/devel/autoconf257/files/patch-ab
deleted file mode 100644
index d15dbdf44250..000000000000
--- a/devel/autoconf257/files/patch-ab
+++ /dev/null
@@ -1,10 +0,0 @@
---- autoconf.texi.orig Tue Jan 5 08:28:37 1999
-+++ autoconf.texi Sat Jan 23 23:34:43 1999
-@@ -4,6 +4,7 @@
- @settitle Autoconf
- @c For double-sided printing, uncomment:
- @c @setchapternewpage odd
-+@dircategory Programming & development tools
- @c %**end of header
-
- @set EDITION 2.13
diff --git a/devel/autoconf257/files/patch-ac b/devel/autoconf257/files/patch-ac
deleted file mode 100644
index cfeaeef83ba2..000000000000
--- a/devel/autoconf257/files/patch-ac
+++ /dev/null
@@ -1,17 +0,0 @@
---- standards.texi.orig Tue Jan 5 08:29:22 1999
-+++ standards.texi Sat Jan 23 23:36:36 1999
-@@ -4,12 +4,13 @@
- @settitle GNU Coding Standards
- @c This date is automagically updated when you save this file:
- @set lastupdate August 26, 1998
-+@dircategory Programming & development tools
- @c %**end of header
-
- @ifinfo
- @format
- START-INFO-DIR-ENTRY
--* Standards: (standards). GNU coding standards.
-+* Standards: (standards). GNU coding standards.
- END-INFO-DIR-ENTRY
- @end format
- @end ifinfo
diff --git a/devel/autoconf257/files/patch-ad b/devel/autoconf257/files/patch-ad
deleted file mode 100644
index 20401d060f61..000000000000
--- a/devel/autoconf257/files/patch-ad
+++ /dev/null
@@ -1,26 +0,0 @@
---- autoconf.sh.orig Tue Jan 5 07:27:53 1999
-+++ autoconf.sh Thu May 31 15:56:39 2001
-@@ -47,3 +47,2 @@
- : ${TMPDIR=/tmp}
--tmpout=${TMPDIR}/acout.$$
- localdir=
-@@ -97,5 +96,8 @@
-
-+tmpout=`mktemp ${TMPDIR}/acout.XXXXXXXXXX` || exit 1
-+tmpin=`mktemp ${TMPDIR}/acin.XXXXXXXXXX` || { rm -f $tmpout; exit 1; }
-+
- trap 'rm -f $tmpin $tmpout; exit 1' 1 2 15
-
--tmpin=${TMPDIR}/acin.$$ # Always set this, to avoid bogus errors from some rm's.
-+# Always set this, to avoid bogus errors from some rm's.
- if test z$infile = z-; then
-@@ -120,3 +122,3 @@
- *traditional*) ;;
--*) echo Autoconf requires GNU m4 1.1 or later >&2; rm -f $tmpin; exit 1 ;;
-+*) echo Autoconf requires GNU m4 1.1 or later >&2; rm -f $tmpin $tmpout; exit 1 ;;
- esac
-@@ -156,3 +158,3 @@
-
--rm -f $tmpout
-+rm -f $tmpin $tmpout
-
diff --git a/devel/autoconf257/files/patch-ae b/devel/autoconf257/files/patch-ae
deleted file mode 100644
index 87e6102e3ba9..000000000000
--- a/devel/autoconf257/files/patch-ae
+++ /dev/null
@@ -1,11 +0,0 @@
---- autoheader.sh.orig Mon Nov 22 21:50:45 1999
-+++ autoheader.sh Mon Nov 22 21:52:02 1999
-@@ -194,7 +194,7 @@
- # Some fgrep's have limits on the number of lines that can be in the
- # pattern on the command line, so use a temporary file containing the
- # pattern.
-- (fgrep_tmp=${TMPDIR-/tmp}/autoh$$
-+ (fgrep_tmp=`mktemp ${TMPDIR-/tmp}/autoh.XXXXXXXXXX` || exit 1
- trap "rm -f $fgrep_tmp; exit 1" 1 2 15
- cat > $fgrep_tmp <<EOF
- $syms
diff --git a/devel/autoconf257/files/patch-af b/devel/autoconf257/files/patch-af
deleted file mode 100644
index d40bc0ee9e7a..000000000000
--- a/devel/autoconf257/files/patch-af
+++ /dev/null
@@ -1,20 +0,0 @@
---- autoupdate.sh.orig Mon Nov 22 21:52:26 1999
-+++ autoupdate.sh Mon Nov 22 21:54:30 1999
-@@ -26,7 +26,7 @@
- Usage: autoupdate [-h] [--help] [-m dir] [--macrodir=dir]
- [--version] [template-file]"
-
--sedtmp=/tmp/acups.$$
-+sedtmp=`mktemp ${TMPDIR-/tmp}/acups.XXXXXXXXXX` || exit 1
- # For debugging.
- #sedtmp=/tmp/acups
- show_version=no
-@@ -66,7 +66,7 @@
-
- : ${SIMPLE_BACKUP_SUFFIX='~'}
-
--tmpout=acupo.$$
-+tmpout=`mktemp acupo.XXXXXXXXXX` || { rm -f $sedtmp; exit 1; }
- trap 'rm -f $sedtmp $tmpout; exit 1' 1 2 15
- case $# in
- 0) infile=configure.in; out="> $tmpout"
diff --git a/devel/autoconf257/files/patch-ag b/devel/autoconf257/files/patch-ag
deleted file mode 100644
index 0ab4f683e3de..000000000000
--- a/devel/autoconf257/files/patch-ag
+++ /dev/null
@@ -1,11 +0,0 @@
---- acspecific.m4.orig Sun Aug 13 19:42:57 2000
-+++ acspecific.m4 Sun Aug 13 19:43:24 2000
-@@ -2659,7 +2659,7 @@
- if AC_TRY_EVAL(ac_link); then
- for file in conftest.*; do
- case $file in
-- *.c | *.o | *.obj | *.ilk | *.pdb) ;;
-+ *.c | *.C | *.o | *.obj | *.ilk | *.pdb) ;;
- *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
- esac
- done