[patch] wine doesn't build with autoconf 2.5x

Bernhard Rosenkraenzer bero at redhat.de
Sun Jan 6 06:00:15 CST 2002


Missing brackets in ncurses check - patch attached.

LLaP
bero

-- 
This message is provided to you under the terms outlined at
http://www.bero.org/terms.html
-------------- next part --------------
--- wine/configure.in.ac250	Sun Jan  6 12:17:47 2002
+++ wine/configure.in	Sun Jan  6 12:44:57 2002
@@ -343,13 +343,13 @@
 if test "$CURSES" = "yes"
 then
     AC_CHECK_HEADERS(ncurses.h,
-        AC_CHECK_LIB(ncurses,waddch,
+        [AC_CHECK_LIB(ncurses,waddch,
             [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)])
              CURSESLIBS="-lncurses"],
              [AC_CHECK_HEADERS(curses.h,
                  [AC_CHECK_LIB(curses,waddch,
                      [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)])
-                      CURSESLIBS="-lcurses"])])]))
+                      CURSESLIBS="-lcurses"])])])])
     saved_libs="$LIBS"
     LIBS="$CURSESLIBS $LIBS"
     AC_CHECK_FUNCS(getbkgd resizeterm)


More information about the wine-patches mailing list