]> git.pld-linux.org Git - packages/drizzle.git/blob - drizzle-ncurses.patch
04f11dd5239b5e8d3043f743f45e9ef0bdb02175
[packages/drizzle.git] / drizzle-ncurses.patch
1 --- drizzle/configure.ac~       2008-12-02 01:00:23.000000000 +0200
2 +++ drizzle/configure.ac        2008-12-02 02:33:32.150538753 +0200
3 @@ -602,7 +602,12 @@
4  #--------------------------------------------------------------------
5  
6  
7 -SEARCH_FOR_LIB(ncurses, tgetent, ncurses/ncurses.h, AC_MSG_ERROR(Couldn't find ncurses)) 
8 +SEARCH_FOR_LIB(ncurses, tgetent, ncurses/ncurses.h, [
9 +       SEARCH_FOR_LIB(tinfo, tgetent, ncurses/ncurses.h,
10 +               AC_MSG_ERROR([Couldn't find ncurses])
11 +       )
12 +       ]
13 +)
14  
15  #--------------------------------------------------------------------
16  # Check for libreadline or compatible (libedit on Mac OS X)
17 --- drizzle/m4/search_for_lib.m4~       2008-12-01 23:04:08.000000000 +0200
18 +++ drizzle/m4/search_for_lib.m4        2008-12-02 02:33:04.107962733 +0200
19 @@ -73,7 +73,7 @@
20    ])
21    AS_IF([test AS_VAR_GET([have_lib]) = no],[
22      AC_MSG_WARN([$3 or lib$1.a not found. Try installing $1 developement packages])
23 -    [$4]
24 +    $4
25    ])
26    AC_SUBST(libs_var)
27    AC_SUBST(cflags_var)
This page took 0.094405 seconds and 2 git commands to generate.