]> git.pld-linux.org Git - packages/autoconf.git/commitdiff
This commit was manufactured by cvs2git to create branch 'PLD_1_0_freez'. PLD_1_0_freez
authorcvs2git <feedback@pld-linux.org>
Sat, 4 Aug 2001 13:47:51 +0000 (13:47 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Sprout from master 2001-08-04 13:47:51 UTC Jakub Bogusz <qboosh@pld-linux.org> '- more fixes in info patch'
Delete:
    autoconf-pinard.patch
    autoconf.spec

autoconf-pinard.patch [deleted file]
autoconf.spec [deleted file]

diff --git a/autoconf-pinard.patch b/autoconf-pinard.patch
deleted file mode 100644 (file)
index 766899d..0000000
+++ /dev/null
@@ -1,243 +0,0 @@
---------------------------------------------------------------------
-> François Pinard mailto:pinard@iro.umontreal.ca
-> I have a collection of DOS-abling patches for Autoconf which came from
-> Eli, I think, and which you may fetch from:
->
->   http://www.iro.umontreal.ca/contrib/paxutils/dist/PATCHES-AC
->
-> if I'm not mistaken.  There are a few other mods not related to DOS ports.
---------------------------------------------------------------------
-> On Sun, 22 Nov 1998, Tim Rice(tim@trr.metro.net  wrote:
-> Here is a patch for Autoconf version 2.12 to address a couple of
-> issues on SVR4.2 machines.
->
-> It was failing the test for opendir() because opendir() is in libc
-> not in libdir. The patch now checks libc first then libdir.
->
-> It was failing on gethostbyname(). I added a third test for gethostbynane()
-> in libsocket.
->
---------------------------------------------------------------------
-1999-01-27
-       * acgeneral.m4: added support for DJGPP
-       - "test -f" should be replaced by "test -x" where the script
-       looks for an executable binary which will be called gcc.exe
-       etc. on DOS/Windows.  A simple test for $COMSPEC being not
-       defined is suggested as a means to determine which option is
-       required.  (You cannot use "test -x" on all systems because some
-       variants of Unix shell don't support -x.)
-
-       - File patterns used to distinguish between absolute and relative
-       file names need to be changed as follows:
-
-               /*)    -->  /*|[A-z]:/*)
-               [/$]*  -->  [/$]*/[A-z]:/*)
-
-       This is because absolute file names on DOS/Windows may include a
-       drive letter and a colon before the leading slash.  Note that the
-       lower-case `z' in [A-z] is intentional, since some network
-       clients allow filesystems to be identified by the six letters
-       between the uppercase `Z' and lowercase `a', and because the
-       drive letter can come in either letter-case.
-
-       - The line which computes ac_file_inputs by replacing the colon in
-       foo:foo.in needs its two Sed commands to be swapped, because
-       once you put in the $ac_given_srcdir part, the colon after the
-       drive letter in it will be replaced instead of the original
-       colon.
-       From Eli Zarestskii.
-
-       * acspecific.m4: check opendir in libc before -ldir
-       gethosbyname/connect check in -lsocket also
-       From Tim Rice.
-
-diff -ur ../autoconf-2.13.orig/acgeneral.m4 ./acgeneral.m4
---- ../autoconf-2.13.orig/acgeneral.m4 Tue Jan  5 08:27:37 1999
-+++ ./acgeneral.m4     Tue Feb  9 22:27:34 1999
-@@ -636,6 +636,9 @@
-   esac
- done
-+# Support of DJGPP port of bash.
-+if test -n "$COMSPEC$ComSpec"; then ac_x=-x; else ac_x=-f; fi
-+
- # NLS nuisances.
- # Only set these to C if already set.  These must not be set unconditionally
- # because not all systems understand e.g. LANG=C (notably SCO).
-@@ -1213,7 +1216,7 @@
- dnl AC_MSG_WARN(PROBLEM-DESCRIPTION)
- define(AC_MSG_WARN,
--[echo "configure: warning: $1" 1>&2])
-+[echo "configure: WARNING: $1" 1>&2])
- dnl AC_MSG_ERROR(ERROR-DESCRIPTION)
- define(AC_MSG_ERROR,
-@@ -1304,7 +1307,7 @@
- dnl AC_OBSOLETE(THIS-MACRO-NAME [, SUGGESTION])
- define(AC_OBSOLETE,
--[errprint(__file__:__line__: warning: [$1] is obsolete[$2]
-+[errprint(__file__:__line__: WARNING: [$1] is obsolete[$2]
- )])
-@@ -1330,7 +1333,7 @@
-   ac_dummy="ifelse([$5], , $PATH, [$5])"
-   for ac_dir in $ac_dummy; do
-     test -z "$ac_dir" && ac_dir=.
--    if test -f $ac_dir/$ac_word; then
-+    if test $ac_x $ac_dir/$ac_word; then
- ifelse([$6], , , dnl
- [      if test "[$ac_dir/$ac_word]" = "$6"; then
-         ac_prog_rejected=yes
-@@ -1384,7 +1387,9 @@
- AC_MSG_CHECKING([for $ac_word])
- AC_CACHE_VAL(ac_cv_path_$1,
- [case "[$]$1" in
--  /*)
-+changequote(, )dnl
-+  /*|[A-z]:/*)
-+changequote([, ])dnl
-   ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
-   ;;
-   ?:/*)                        
-@@ -1398,7 +1403,7 @@
-   ac_dummy="ifelse([$4], , $PATH, [$4])"
-   for ac_dir in $ac_dummy; do 
-     test -z "$ac_dir" && ac_dir=.
--    if test -f $ac_dir/$ac_word; then
-+    if test $ac_x $ac_dir/$ac_word; then
-       ac_cv_path_$1="$ac_dir/$ac_word"
-       break
-     fi
-@@ -1802,7 +1807,7 @@
- AC_DEFUN(AC_TRY_RUN,
- [if test "$cross_compiling" = yes; then
-   ifelse([$4], ,
--    [errprint(__file__:__line__: warning: [AC_TRY_RUN] called without default to allow cross compiling
-+    [errprint(__file__:__line__: WARNING: [AC_TRY_RUN] called without default to allow cross compiling
- )dnl
-   AC_MSG_ERROR(can not run test program while cross compiling)],
-   [$4])
-@@ -2267,7 +2272,10 @@
-   .)  srcdir=.
-       if test -z "$ac_dots"; then top_srcdir=.
-       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
--  /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
-+changequote(, )dnl
-+  /*|[A-z]:/*)
-+changequote([, ])dnl
-+    srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
-   *) # Relative path.
-     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
-     top_srcdir="$ac_dots$ac_given_srcdir" ;;
-@@ -2276,7 +2284,7 @@
- ifdef([AC_PROVIDE_AC_PROG_INSTALL],
- [  case "$ac_given_INSTALL" in
- changequote(, )dnl
--  [/$]*) INSTALL="$ac_given_INSTALL" ;;
-+  [/$]*|[A-z]:/*) INSTALL="$ac_given_INSTALL" ;;
- changequote([, ])dnl
-   *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
-   esac
-@@ -2291,7 +2299,7 @@
-   *) ac_comsub= ;;
-   esac
--  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
-+  ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%"`
-   sed -e "$ac_comsub
- s%@configure_input@%$configure_input%g
- s%@srcdir@%$srcdir%g
-@@ -2359,7 +2367,7 @@
-   echo creating $ac_file
-   rm -f conftest.frag conftest.in conftest.out
--  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
-+  ac_file_inputs=`echo $ac_file_in|sed -e "s%:% $ac_given_srcdir/%g" -e "s%^%$ac_given_srcdir/%"`
-   cat $ac_file_inputs > conftest.in
- EOF
-@@ -2483,7 +2491,7 @@
-   case "$srcdir" in
- changequote(, )dnl
--  [/$]*) ac_rel_source="$srcdir/$ac_source" ;;
-+  [/$]*|[A-z]:/*) ac_rel_source="$srcdir/$ac_source" ;;
- changequote([, ])dnl
-   *) ac_rel_source="$ac_dots$srcdir/$ac_source" ;;
-   esac
-@@ -2558,7 +2566,9 @@
-     case "$srcdir" in
-     .) # No --srcdir option.  We are building in place.
-       ac_sub_srcdir=$srcdir ;;
--    /*) # Absolute path.
-+changequote(, )dnl
-+    /*|[A-z]:/*) # Absolute path.
-+changequote([, ])dnl
-       ac_sub_srcdir=$srcdir/$ac_config_dir ;;
-     *) # Relative path.
-       ac_sub_srcdir=$ac_dots$srcdir/$ac_config_dir ;;
-@@ -2579,14 +2589,16 @@
-       # Make the cache file name correct relative to the subdirectory.
-       case "$cache_file" in
--      /*) ac_sub_cache_file=$cache_file ;;
-+changequote(, )dnl
-+      /*|[A-z]:/*) ac_sub_cache_file=$cache_file ;;
-+changequote([, ])dnl
-       *) # Relative path.
-         ac_sub_cache_file="$ac_dots$cache_file" ;;
-       esac
- ifdef([AC_PROVIDE_AC_PROG_INSTALL],
-       [  case "$ac_given_INSTALL" in
- changequote(, )dnl
--        [/$]*) INSTALL="$ac_given_INSTALL" ;;
-+        [/$]*|[A-z]:/*) INSTALL="$ac_given_INSTALL" ;;
- changequote([, ])dnl
-         *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
-         esac
-diff -ur ../autoconf-2.13.orig/acspecific.m4 ./acspecific.m4
---- ../autoconf-2.13.orig/acspecific.m4        Tue Jan  5 08:27:52 1999
-+++ ./acspecific.m4    Thu Jan 28 23:01:41 1999
-@@ -615,7 +615,7 @@
-       # Don't use installbsd from OSF since it installs stuff as root
-       # by default.
-       for ac_prog in ginstall scoinst install; do
--        if test -f $ac_dir/$ac_prog; then
-+        if test $ac_x $ac_dir/$ac_prog; then
-         if test $ac_prog = install &&
-             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
-           # AIX install.  It has an incompatible calling convention.
-@@ -765,7 +765,10 @@
-   [ac_header_dirent=$ac_hdr; break])
- # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
- if test $ac_header_dirent = dirent.h; then
--AC_CHECK_LIB(dir, opendir, LIBS="$LIBS -ldir")
-+AC_CHECK_FUNC(opendir)
-+if test $ac_cv_func_opendir = no; then
-+ AC_CHECK_LIB(dir, opendir, LIBS="$LIBS -ldir")
-+fi
- else
- AC_CHECK_LIB(x, opendir, LIBS="$LIBS -lx")
- fi
-@@ -2564,6 +2567,9 @@
-     AC_CHECK_FUNC(gethostbyname)
-     if test $ac_cv_func_gethostbyname = no; then
-       AC_CHECK_LIB(nsl, gethostbyname, X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl")
-+      if test $ac_cv_func_gethostbyname = no; then
-+        AC_CHECK_LIB(socket, gethostbyname, X_EXTRA_LIBS="$X_EXTRA_LIBS -lsocket -lnsl", , -lnsl)
-+      fi
-     fi
-     # lieder@skyler.mavd.honeywell.com says without -lsocket,
-@@ -2575,7 +2581,7 @@
-     # We assume that if connect needs -lnsl, so does gethostbyname.
-     AC_CHECK_FUNC(connect)
-     if test $ac_cv_func_connect = no; then
--      AC_CHECK_LIB(socket, connect, X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS", ,
-+      AC_CHECK_LIB(socket, connect, X_EXTRA_LIBS="-lsocket -lnsl $X_EXTRA_LIBS", ,
-       $X_EXTRA_LIBS)
-     fi
diff --git a/autoconf.spec b/autoconf.spec
deleted file mode 100644 (file)
index 2ba8d6d..0000000
+++ /dev/null
@@ -1,164 +0,0 @@
-Summary:       GNU autoconf - source configuration tools
-Summary(fr):   Un outil de GNU pour configurer automatiquement le code source
-Summary(de):   Ein GNU-Hilfsmittel für Quellencode automatisch konfigurieren
-Summary(es):   Una herramienta de GNU para automáticamente configurar código de fuente
-Summary(it):   Uno strumento di GNU per automaticamente la configurazione del codice sorgente
-Summary(pl):   GNU autoconf - narzêdzie do automatycznego konfigurowania ¼róde³
-Name:          autoconf
-Version:       2.52
-Release:       2
-License:       GPL
-Group:         Development/Building
-Group(de):     Entwicklung/Bauen
-Group(pl):     Programowanie/Budowanie
-Source0:       ftp://ftp.gnu.org/pub/gnu/autoconf/%{name}-%{version}.tar.gz
-Patch0:                %{name}-info.patch
-Patch1:                %{name}-mawk.patch
-Patch2:                %{name}-man.patch
-Patch3:                %{name}-fhs.patch
-Patch4:                %{name}-version.patch
-URL:           http://sourceware.cygnus.com/autoconf/
-Requires:      diffutils
-Requires:      /bin/awk
-Requires:      m4
-Requires:      mktemp
-Conflicts:     gettext < 0.10.38-3
-BuildRequires: m4
-BuildRequires: texinfo
-BuildConflicts:        m4 = 1.4o
-Buildarch:     noarch
-BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-
-%define                _libdir         %{_datadir}
-
-%description
-GNU's Autoconf is a tool for configuring source code and Makefiles.
-Using Autoconf, programmers can create portable and configurable
-packages, since the person building the package is allowed to specify
-various configuration options.
-
-You should install Autoconf if you are developing software and you'd
-like to use it to create shell scripts which will configure your
-source code packages. If you are installing Autoconf, you will also
-need to install the GNU m4 package.
-
-Note that the Autoconf package is not required for the end user who
-may be configuring software with an Autoconf-generated script;
-Autoconf is only required for the generation of the scripts, not their
-use.
-
-%description -l de
-GNU's Autoconf ist eines Hilfsmittels für das Konfigurieren des
-Quellencodes und der Makefiles. Mit Autoconf können Programmierer die
-beweglichen und konfigurierbaren Pakete erstellen, da der Person, die
-das Paket aufbaut, erlaubt wird, verschiedene Konfiguration Optionen
-zu spezifizieren.
-
-Sie sollten Autoconf installieren, wenn Sie Software entwickeln und
-Sie sie benutzen möchten, um Shellindexe zu erstellen, die Ihre
-Quellencodepakete konfigurieren. Wenn Sie Autoconf installieren,
-müssen Sie auch das Paket GNU m4 installieren.
-
-Beachten Sie, daß das Paket Autoconf nicht für den Endbenutzer
-angefordert wird, der Software mit einem Autoconf-festgelegten Index
-konfigurieren kann; Autoconf wird nur für das Erzeugung der Indexe,
-nicht ihr Gebrauch angefordert.
-
-%description -l es
-GNÚs Autoconf es una herramienta para configurar código y makefiles de
-fuente. Usando Autoconf, los programadores pueden crear los conjuntos
-portables y configurables, puesto que se permite a la persona que
-construye el conjunto especificar varias opciones de la configuración.
-
-Usted debe instalar Autoconf si usted está desarrollando software
-lógica y usted quisiera utilizarlo para crear los shell scriptes que
-configurarán sus conjuntos del código de fuente. Si usted está
-instalando Autoconf, usted también necesitará instalar el conjunto de
-GNU m4.
-
-Observe que el conjunto de Autoconf no está requerido para el
-utilizador del extremo que puede configurar software lógica con una
-escritura Autoconf-generada; Autoconf se requiere solamente para la
-generación de las escrituras, no su uso.
-
-%description -l fr
-GNU's Autoconf est un outil pour configurer le code source et les
-fichiers makefile. En utilisant Autoconf, les programmeurs peuvent
-créer les modules portatifs et configurables, puisqu'on permet à la la
-personne établissant le module d'indiquer de diverses options de
-configuration.
-
-Vous devriez installer Autoconf si vous développez le logiciel et vous
-voudriez l'employer pour créer les séquences type d'interpréteur de
-commandes interactif qui configureront vos modules de code source. Si
-vous installez Autoconf, vous devrez également installer le module de
-GNU m4.
-
-Notez que le module d'Autoconf n'est pas exigé pour l'utilisateur qui
-peut configurer le logiciel avec une séquence type Autoconf-produite;
-Autoconf est seulement exigé pour la génération des séquences type,
-non leur utilisation.
-
-%description -l it
-GNU's Autoconf è uno strumento per la configurazione il codice e dei
-makefiles sorgente. Usando Autoconf, i programmatori possono creare i
-pacchetti portatili e configurabili, poiché alla persona che sviluppa
-il pacchetto è permessa specificare le varie opzioni di
-configurazione.
-
-Dovreste installare Autoconf se state sviluppando il software e
-voleste usarli per creare gli scritti di coperture che configureranno
-i vostri pacchetti di codice sorgente. Se state installando Autoconf,
-egualmente dovrete installare il pacchetto di GNU m4.
-
-Si noti che il pacchetto di Autoconf non è richiesto per l'
-utilizzatore finale che può configurare il software con uno scritto
-Autoconf-generato; Autoconf è richiesto soltanto per la generazione
-degli scritti, il non loro uso.
-
-%description -l pl
-GNU autoconf jest narzêdziem wykorzystywanym do automatycznego
-konfigurowania kodów ¼ród³owych pakietów programów oraz do generowania
-na podstawie automatycznie rozpoznanego ¶rodowiska plików Makefile i
-innych zale¿nych od zawarto¶ci systemu, w którym ma przebiegaæ proces
-kompilacji. Pomaga programi¶cie w konfigurowaniu i tworzeniu
-opragramowania daj±cego siê przenie¶æ na ró¿ne platformy. Umo¿liwia
-wybór wielu opcji podczas procesu przygotowania do kompilacji.
-
-GNU autoconf nie jest generalnie potrzebny koñcowemu u¿ytkownikowi, a
-tylko podczas generowania samych skryptów autokonfiguracyjnych.
-
-%prep
-%setup -q
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
-
-%build
-%configure
-%{__make}
-
-%install
-rm -rf $RPM_BUILD_ROOT
-
-%{__make} install DESTDIR=$RPM_BUILD_ROOT
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%post
-[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
-
-%postun
-[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
-
-%files
-%defattr(644,root,root,755)
-%attr(755,root,root) %{_bindir}/*
-
-%{_infodir}/*.info*
-%{_mandir}/man1/*
-
-%{_libdir}/autoconf
This page took 0.167595 seconds and 4 git commands to generate.