summaryrefslogtreecommitdiff
path: root/media-sound/sooperlooper/files/sooperlooper-1.7.3-tinfo.patch
blob: 82694f463839e7f1b806eac83551ff96e783bc96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
https://bugs.gentoo.org/683738

Thanks-to: Jeroen Roovers <jer@gentoo.org>

--- a/configure.ac
+++ b/configure.ac
@@ -214,10 +216,11 @@
     AC_SUBST(LOSC_CFLAGS)
 
     dnl curses
-    AC_CHECK_LIB(ncurses,initscr,have_ncurses=yes,[AC_MSG_WARN([******** you don't have the ncurses library correctly installed])])
-
-    NCURSES_LIBS=-lncurses
-    AC_SUBST(NCURSES_LIBS)
+    PKG_CHECK_MODULES([NCURSES], [ncurses], [have_ncurses=yes],
+		      AC_CHECK_LIB(ncurses, initscr, have_ncurses=yes,
+		    		   [AC_MSG_WARN([******** you don't have the ncurses library correctly installed])]
+		    		  )
+		     )
 
     dnl sigc++
     PKG_CHECK_MODULES(SIGCPP, sigc++-2.0 >= 2.2.10)