]> git.pld-linux.org Git - packages/speech_tools.git/commitdiff
- updated for 1.2.3
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 18 Apr 2004 14:06:29 +0000 (14:06 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    speech_tools-termcap.patch -> 1.3

speech_tools-termcap.patch [new file with mode: 0644]

diff --git a/speech_tools-termcap.patch b/speech_tools-termcap.patch
new file mode 100644 (file)
index 0000000..0c9a9db
--- /dev/null
@@ -0,0 +1,21 @@
+--- speech_tools/configure.in.orig     2002-12-28 12:57:31.000000000 +0100
++++ speech_tools/configure.in  2004-04-18 16:13:01.671787272 +0200
+@@ -42,10 +42,14 @@
+ AC_C_BIGENDIAN
+-AC_CHECK_LIB(termcap, tputs, [TERMCAPLIB=-ltermcap], [TERMCAPLIB=-lncurses])
+-if test "$TERMCAPLIB" != "-ltermcap"; then
+-      AC_CHECK_LIB(ncurses, tputs, [TERMCAPLIB=-lncurses], [TERMCAPLIB=-lcurses])
+-fi
++TERMCAPLIB=
++AC_CHECK_LIB(tinfo, tputs, [TERMCAPLIB=-ltinfo], [
++  AC_CHECK_LIB(ncurses, tputs, [TERMCAPLIB=-lncurses], [
++    AC_CHECK_LIB(curses, tputs, [TERMCAPLIB=-lcurses], [
++      AC_CHECK_LIB(termcap, tputs, [TERMCAPLIB=-ltermcap])
++    ])
++  ])
++])
+ AC_SUBST(TERMCAPLIB)
+ dnl Which version of GCC do we have here
This page took 0.034406 seconds and 4 git commands to generate.