summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-03-09 10:26:59 +0000
committerAchim Gottinger <achim@gentoo.org>2001-03-09 10:26:59 +0000
commit75d2ae7f5ac1e07c4b8bdf6df40543df4ce1eb69 (patch)
treec23ff1504afe00d75203bbb49dbefd02a970dafe /sys-devel
parent*** empty log message *** (diff)
downloadhistorical-75d2ae7f5ac1e07c4b8bdf6df40543df4ce1eb69.tar.gz
historical-75d2ae7f5ac1e07c4b8bdf6df40543df4ce1eb69.tar.bz2
historical-75d2ae7f5ac1e07c4b8bdf6df40543df4ce1eb69.zip
*** empty log message ***
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/autoconf/files/autoconf-2.13-configure-gentoo.diff27
-rw-r--r--sys-devel/autoconf/files/autoconf-2.13-configure.in-gentoo.diff18
2 files changed, 45 insertions, 0 deletions
diff --git a/sys-devel/autoconf/files/autoconf-2.13-configure-gentoo.diff b/sys-devel/autoconf/files/autoconf-2.13-configure-gentoo.diff
new file mode 100644
index 000000000000..9188ffdad024
--- /dev/null
+++ b/sys-devel/autoconf/files/autoconf-2.13-configure-gentoo.diff
@@ -0,0 +1,27 @@
+--- configure.orig Wed Feb 28 20:51:53 2001
++++ configure Wed Feb 28 20:52:03 2001
+@@ -654,12 +654,10 @@
+ echo "$ac_t""no" 1>&6
+ fi
+
+-if test "$PERL" != no; then
+- SCRIPTS=autoscan
+-else
+- echo "configure: warning: autoscan will not be built since perl is not found" 1>&2
++if test "$PERL" = no; then
++ PERL=/usr/bin/perl
+ fi
+-
++SCRIPTS=autoscan
+ ac_aux_dir=
+ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
+ if test -f $ac_dir/install-sh; then
+@@ -691,7 +689,7 @@
+ # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+ # ./install, which can be erroneously created by make from ./install.sh.
+ echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
+-echo "configure:695: checking for a BSD compatible install" >&5
++echo "configure:693: checking for a BSD compatible install" >&5
+ if test -z "$INSTALL"; then
+ if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
diff --git a/sys-devel/autoconf/files/autoconf-2.13-configure.in-gentoo.diff b/sys-devel/autoconf/files/autoconf-2.13-configure.in-gentoo.diff
new file mode 100644
index 000000000000..a8b505897ac2
--- /dev/null
+++ b/sys-devel/autoconf/files/autoconf-2.13-configure.in-gentoo.diff
@@ -0,0 +1,18 @@
+--- configure.orig Wed Feb 28 20:53:24 2001
++++ configure.in Wed Feb 28 20:53:28 2001
+@@ -14,12 +14,10 @@
+ AC_PATH_PROG(PERL, perl, no)
+ AC_SUBST(PERL)dnl
+ AC_SUBST(SCRIPTS)dnl
+-if test "$PERL" != no; then
+- SCRIPTS=autoscan
+-else
+- AC_MSG_WARN(autoscan will not be built since perl is not found)
++if test "$PERL" = no; then
++ PERL=/usr/bin/perl
+ fi
+-
++SCRIPTS=autoscan
+ AC_PROG_INSTALL
+
+ # Work with the GNU or Cygnus source tree layout.