summaryrefslogtreecommitdiff
path: root/math/octave-forge/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'math/octave-forge/patches/patch-ab')
-rw-r--r--math/octave-forge/patches/patch-ab24
1 files changed, 24 insertions, 0 deletions
diff --git a/math/octave-forge/patches/patch-ab b/math/octave-forge/patches/patch-ab
new file mode 100644
index 00000000000..cc2ba382780
--- /dev/null
+++ b/math/octave-forge/patches/patch-ab
@@ -0,0 +1,24 @@
+$NetBSD: patch-ab,v 1.1.1.1 2004/08/14 13:29:56 dmcmahill Exp $
+
+--- main/miscellaneous/configure.add.orig Sun Dec 14 04:00:04 2003
++++ main/miscellaneous/configure.add
+@@ -45,14 +45,14 @@ else
+ AC_CHECK_HEADER(termcap.h, have_termcap=yes, have_termcap=no)
+ ;;
+ esac
+- if test $have_term = yes; then
+- MISCDEFS="$MISCDEFS -DUSE_TERM -DHAVE_TERM_H"
+- STATUS=yes
+- AC_CHECK_LIB(termcap, tgetnum, HAVE_LIB_TERMCAP=yes)
+- elif test $have_termcap = yes; then
++ if test $have_termcap = yes; then
+ MISCDEFS="$MISCDEFS -DUSE_TERM -DHAVE_TERMCAP_H"
+ AC_CHECK_LIB(termcap, tgetnum, HAVE_LIB_TERMCAP=yes)
+ STATUS=yes
++ elif test $have_term = yes; then
++ MISCDEFS="$MISCDEFS -DUSE_TERM -DHAVE_TERM_H"
++ STATUS=yes
++ AC_CHECK_LIB(termcap, tgetnum, HAVE_LIB_TERMCAP=yes)
+ else
+ STATUS=no
+ fi