summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-05-01 13:39:35 +0100
committerSam James <sam@gentoo.org>2023-05-01 13:48:45 +0100
commitdfdbad3541a49c0b4515cdb6d761361b2ee2f66b (patch)
tree6f99d8333545a2cdecc2a9ebbb065b2eb1f29523 /net-analyzer/cacti-spine/files
parentnet-analyzer/bwm-ng: drop 0.6.2 (diff)
downloadgentoo-dfdbad3541a49c0b4515cdb6d761361b2ee2f66b.tar.gz
gentoo-dfdbad3541a49c0b4515cdb6d761361b2ee2f66b.tar.bz2
gentoo-dfdbad3541a49c0b4515cdb6d761361b2ee2f66b.zip
net-analyzer/cacti-spine: drop 1.2.17, 1.2.19
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/cacti-spine/files')
-rw-r--r--net-analyzer/cacti-spine/files/cacti-spine-1.2.19-configure.ac-fix-bashisms.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/net-analyzer/cacti-spine/files/cacti-spine-1.2.19-configure.ac-fix-bashisms.patch b/net-analyzer/cacti-spine/files/cacti-spine-1.2.19-configure.ac-fix-bashisms.patch
deleted file mode 100644
index 53a220fbf0de..000000000000
--- a/net-analyzer/cacti-spine/files/cacti-spine-1.2.19-configure.ac-fix-bashisms.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-https://github.com/Cacti/spine/pull/245
-
-From: Sam James <sam@gentoo.org>
-Date: Fri, 10 Dec 2021 03:42:21 +0000
-Subject: [PATCH] configure.ac: fix bashisms
-
-configure needs to work with a POSIX-compliant shell so we need
-to avoid bashisms like '=='. This fixes configure with e.g. /bin/sh
-provided by dash.
-
-Signed-off-by: Sam James <sam@gentoo.org>
---- a/configure.ac
-+++ b/configure.ac
-@@ -260,7 +260,7 @@ fi
- CFLAGS="-I$MYSQL_INC_DIR $CFLAGS"
-
- unamestr=$(uname)
--if test $unamestr == 'OpenBSD'; then
-+if test $unamestr = 'OpenBSD'; then
- AC_CHECK_LIB(mysqlclient, mysql_init,
- [ LIBS="-lmysqlclient -lm $LIBS"
- AC_DEFINE(HAVE_MYSQL, 1, MySQL Client API)
-@@ -285,8 +285,8 @@ else
- if test -f $MYSQL_LIB_DIR/libmysqlclient_r.a -o -f $MYSQL_LIB_DIR/libmysqlclient_r.$ShLib ; then
- LIBS="-lmysqlclient_r -lm -ldl $LIBS"
- else
-- if test "$HAVE_MYSQL" == "yes"; then
-- if test $unamestr == 'OpenBSD'; then
-+ if test "$HAVE_MYSQL" = "yes"; then
-+ if test $unamestr = 'OpenBSD'; then
- LIBS="-lmysqlclient -lm $LIBS"
- else
- LIBS="-lmysqlclient -lm -ldl $LIBS"