diff options
author | Marco Scardovi <marco@scardovi.com> | 2022-01-16 18:37:34 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-01-17 16:07:53 +0100 |
commit | 3004e25a7e311de5ba3aba01b1d1cb289a48bc82 (patch) | |
tree | abca1b625e1986fc68dc19aea464a8760e12244e /sci-libs/silo | |
parent | sci-libs/silo: drop old version (diff) | |
download | gentoo-3004e25a7e311de5ba3aba01b1d1cb289a48bc82.tar.gz gentoo-3004e25a7e311de5ba3aba01b1d1cb289a48bc82.tar.bz2 gentoo-3004e25a7e311de5ba3aba01b1d1cb289a48bc82.zip |
sci-libs/silo: drop unused patch
The autoconf patch is required only by debian so we are
gonna drop it.
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco@scardovi.com>
Closes: https://github.com/gentoo/gentoo/pull/23742
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'sci-libs/silo')
-rw-r--r-- | sci-libs/silo/files/silo-4.11-autoreconf.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/sci-libs/silo/files/silo-4.11-autoreconf.patch b/sci-libs/silo/files/silo-4.11-autoreconf.patch deleted file mode 100644 index 371b346e921c..000000000000 --- a/sci-libs/silo/files/silo-4.11-autoreconf.patch +++ /dev/null @@ -1,35 +0,0 @@ -Author: Alastair McKinstry <mckinstry@debian.org> -Description: Fixes needed for autoreconf to work on Debian - When autoreconf is run, VL_LIB_READLINE is lost from aclocal, so included in config/ - Also include AX_CHECK_COMPLER_FLAG() which is not in autoconf (just autoconf-archive) - AX_CHECK_COMPILER_FLAGS() is obsolete -Last-Updated: 2021-01-14 -Forwarded: no -Link: https://sources.debian.org/patches/silo-llnl/4.11-2/autoreconf.patch/ - ---- a/configure.ac -+++ b/configure.ac -@@ -195,6 +195,8 @@ - dnl This allows multiple src-dir builds within one host. - AC_PREFIX_DEFAULT("SILO_TOP_SRC_DIR") - -+AC_PROG_F77 -+ - dnl - dnl Handle the python module right away to determine if we need shared libs. - dnl Ordinarily, we default to static libs -@@ -618,10 +620,10 @@ - # it is an argument to the -D argument. So, I think this is - # just totally bogus! - # Default to large file support --AX_CHECK_COMPILER_FLAGS("-D_LARGEFILE_SOURCE",CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE";) --AX_CHECK_COMPILER_FLAGS("-D_LARGEFILE64_SOURCE",CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE";) --AX_CHECK_COMPILER_FLAGS("-D_FILE_OFFSET_BITS=64",CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64";) --AX_CHECK_COMPILER_FLAGS("-Wdeclaration-after-statement",CFLAGS="$CFLAGS -Wdeclaration-after-statement";) -+AX_CHECK_COMPILE_FLAG("-D_LARGEFILE_SOURCE",CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE";) -+AX_CHECK_COMPILE_FLAG("-D_LARGEFILE64_SOURCE",CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE";) -+AX_CHECK_COMPILE_FLAG("-D_FILE_OFFSET_BITS=64",CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64";) -+AX_CHECK_COMPILE_FLAG("-Wdeclaration-after-statement",CFLAGS="$CFLAGS -Wdeclaration-after-statement";) - - # - # Note: regardless of what the stuff above regarding large file support |