diff options
Diffstat (limited to 'community/autoconf2.13')
-rw-r--r-- | community/autoconf2.13/APKBUILD | 42 | ||||
-rw-r--r-- | community/autoconf2.13/getloadavg.patch | 36 |
2 files changed, 0 insertions, 78 deletions
diff --git a/community/autoconf2.13/APKBUILD b/community/autoconf2.13/APKBUILD deleted file mode 100644 index d3b3ca73bf..0000000000 --- a/community/autoconf2.13/APKBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: -pkgname=autoconf2.13 -pkgver=2.13 -pkgrel=1 -pkgdesc="A GNU tool for automatically configuring source code" -arch="noarch" -license="GPL-2.0" -url="https://www.gnu.org/software/autoconf" -depends="m4 perl" -checkdepends="dejagnu flex gfortran" -source="ftp://ftp.gnu.org/pub/gnu/autoconf/autoconf-${pkgver}.tar.gz - getloadavg.patch - " -subpackages="$pkgname-doc" - -builddir="$srcdir"/autoconf-$pkgver -prepare() { - default_prepare - update_config_sub # Required for AC_F77_LIBRARY_LDFLAGS -} - -build() { - cd "$builddir" - M4=/usr/bin/m4 ./configure --prefix=/usr --program-suffix=-2.13 - make -} - -check() { - cd "$builddir" - F77=gfortran make check -} - -package() { - cd "$builddir" - make prefix="$pkgdir/usr" infodir="$pkgdir/usr/share/info" install - - rm -f "$pkgdir"/usr/share/info/dir - rm -f "$pkgdir"/usr/share/info/standards.info -} - -sha512sums="602584f4c77b7a554aaa068eda5409b68eb0b3229e9c224bffb91c83c4314d25de15bd560a323626ff78f6df339c79e1ef8938c54b78ecadf4dc75c5241290ad autoconf-2.13.tar.gz -483d0ba23c90e41c746868ea57436033930906f306b86de5e23284a60da069f4203d478615d653b8acee7226d9b02427be42a9764ff82710019de485e5f26d1b getloadavg.patch" diff --git a/community/autoconf2.13/getloadavg.patch b/community/autoconf2.13/getloadavg.patch deleted file mode 100644 index 46f26d692f..0000000000 --- a/community/autoconf2.13/getloadavg.patch +++ /dev/null @@ -1,36 +0,0 @@ -From debian/patches/other-debian.patch. - -autoconf (2.13-24) unstable; urgency=low - * Fix test for getloadavg (Bug#84170). - -- Ben Pfaff <blp@gnu.org> Wed, 31 Jan 2001 19:12:03 -0500 - ---- autoconf-2.13/acspecific.m4 -+++ autoconf-2.13/acspecific.m4 -@@ -1477,14 +1477,19 @@ AC_SUBST(ALLOCA)dnl - AC_DEFUN(AC_FUNC_GETLOADAVG, - [ac_have_func=no # yes means we've found a way to get the load average. - --# Some systems with -lutil have (and need) -lkvm as well, some do not. --# On Solaris, -lkvm requires nlist from -lelf, so check that first --# to get the right answer into the cache. --AC_CHECK_LIB(elf, elf_begin, LIBS="-lelf $LIBS") --AC_CHECK_LIB(kvm, kvm_open, LIBS="-lkvm $LIBS") --# Check for the 4.4BSD definition of getloadavg. --AC_CHECK_LIB(util, getloadavg, -- [LIBS="-lutil $LIBS" ac_have_func=yes ac_cv_func_getloadavg_setgid=yes]) -+# Some systems have getloadavg without any extra libraries. -+AC_CHECK_FUNC(getloadavg, [ac_have_func=yes]) -+ -+if test $ac_have_func = no; then -+ # Some systems with -lutil have (and need) -lkvm as well, some do not. -+ # On Solaris, -lkvm requires nlist from -lelf, so check that first -+ # to get the right answer into the cache. -+ AC_CHECK_LIB(elf, elf_begin, LIBS="-lelf $LIBS") -+ AC_CHECK_LIB(kvm, kvm_open, LIBS="-lkvm $LIBS") -+ # Check for the 4.4BSD definition of getloadavg. -+ AC_CHECK_LIB(util, getloadavg, -+ [LIBS="-lutil $LIBS" ac_have_func=yes ac_cv_func_getloadavg_setgid=yes]) -+fi - - if test $ac_have_func = no; then - # There is a commonly available library for RS/6000 AIX. |