summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2022-06-10 13:45:39 -0400
committerMatt Turner <mattst88@gentoo.org>2022-06-10 14:07:52 -0400
commit8e43fa9fa8ac0537b6b4ea762122bcffc1db3e43 (patch)
tree3c5e6e49b07562377368d5317f6bfea0c6613e72 /dev-util/cscope/files
parentdev-libs/unibilium: Drop old versions (diff)
downloadgentoo-8e43fa9fa8ac0537b6b4ea762122bcffc1db3e43.tar.gz
gentoo-8e43fa9fa8ac0537b6b4ea762122bcffc1db3e43.tar.bz2
gentoo-8e43fa9fa8ac0537b6b4ea762122bcffc1db3e43.zip
dev-util/cscope: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-util/cscope/files')
-rw-r--r--dev-util/cscope/files/cscope-15.6-darwin.patch11
-rw-r--r--dev-util/cscope/files/cscope-15.8a-pkgconfig.patch28
2 files changed, 0 insertions, 39 deletions
diff --git a/dev-util/cscope/files/cscope-15.6-darwin.patch b/dev-util/cscope/files/cscope-15.6-darwin.patch
deleted file mode 100644
index e755f3257efd..000000000000
--- a/dev-util/cscope/files/cscope-15.6-darwin.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/constants.h
-+++ b/src/constants.h
-@@ -103,7 +103,7 @@
- #define INCLUDES 8
- #define FIELDS 9
-
--#if (BSD || V9) && !__NetBSD__ && !__FreeBSD__
-+#if (BSD || V9) && !__NetBSD__ && !__FreeBSD__ && !__MACH__
- # define TERMINFO 0 /* no terminfo curses */
- #else
- # define TERMINFO 1
diff --git a/dev-util/cscope/files/cscope-15.8a-pkgconfig.patch b/dev-util/cscope/files/cscope-15.8a-pkgconfig.patch
deleted file mode 100644
index 665b7169761e..000000000000
--- a/dev-util/cscope/files/cscope-15.8a-pkgconfig.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -22,6 +22,7 @@ if test "x$LEX" = "xlex" ; then AC_DEFINE(USING_LEX, 1,
- [Define this if the scanner is run through lex, not flex])
- fi
- AC_PROG_YACC
-+PKG_PROG_PKG_CONFIG
-
- dnl === BEGIN CURSES CHECK
- dnl Curses detection: Munged from Midnight Commander's configure.in
-@@ -363,7 +364,7 @@ dnl Check for a GNOME installation
- AC_DEFUN([AC_CHECK_GNOME],[
- has_gnome=false
- AC_CHECK_PROG(gnome1, gnome-config, true)
-- AC_CHECK_PROG(gnome2, pkg-config, true)
-+ AC_CHECK_PROG(gnome2, $PKG_CONFIG, true)
-
- if test x$gnome1 = xtrue; then
- has_gnome=true
-@@ -373,7 +374,7 @@ AC_DEFUN([AC_CHECK_GNOME],[
- has_gnome=true
- fi
-
-- AM_CONDITIONAL(USING_GNOME2, pkg-config --exists gtk+-2.0)
-+ AM_CONDITIONAL(USING_GNOME2, $PKG_CONFIG --exists gtk+-2.0)
- AM_CONDITIONAL(HAS_GNOME, test "$has_gnome" = true)
- AM_CONDITIONAL(GNOME_LINUX, test "$host_os" = Linux)
- ])