diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-01-25 17:56:07 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-01-25 17:56:07 +0100 |
commit | 4530442dc257bbc66a5b67b1846d16c7d2f0093f (patch) | |
tree | 716dc3e64e93ed6618aa7c2626453762e5529f64 /dev-lang/ocaml/files | |
parent | net-libs/nghttp2: Removed old. (diff) | |
download | gentoo-4530442dc257bbc66a5b67b1846d16c7d2f0093f.tar.gz gentoo-4530442dc257bbc66a5b67b1846d16c7d2f0093f.tar.bz2 gentoo-4530442dc257bbc66a5b67b1846d16c7d2f0093f.zip |
dev-lang/ocaml: remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-lang/ocaml/files')
-rw-r--r-- | dev-lang/ocaml/files/ocaml-4.01.0-pkg-config-ncurses.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/dev-lang/ocaml/files/ocaml-4.01.0-pkg-config-ncurses.patch b/dev-lang/ocaml/files/ocaml-4.01.0-pkg-config-ncurses.patch deleted file mode 100644 index b9fa750ff07d..000000000000 --- a/dev-lang/ocaml/files/ocaml-4.01.0-pkg-config-ncurses.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- ocaml-4.01.0-orig/configure 2013-08-23 16:22:36.000000000 +1000 -+++ ocaml-4.01.0/configure 2014-01-18 20:06:50.669644267 +1100 -@@ -892,7 +892,11 @@ - # For the terminfo module - - if test "$withcurses" = "yes"; then -- for libs in "" "-lcurses" "-ltermcap" "-lcurses -ltermcap" "-lncurses"; do -+ ncurseslibs="" -+ if pkg-config --exists ncurses 2>/dev/null; then -+ ncurseslibs=`pkg-config --libs ncurses` -+ fi -+ for libs in "${ncurseslibs}" "-lcurses" "-ltermcap" "-lcurses -ltermcap" "-lncurses"; do - if sh ./hasgot $libs tgetent tgetstr tgetnum tputs; then - echo "termcap functions found (with libraries '$libs')" - echo "#define HAS_TERMCAP" >> s.h |