[MPlayer-cvslog] r27286 - trunk/configure

diego subversion at mplayerhq.hu
Tue Jul 15 11:17:07 CEST 2008


Author: diego
Date: Tue Jul 15 11:17:07 2008
New Revision: 27286

Log:
Fix tgetent call in termcap configure test.


Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Tue Jul 15 11:17:07 2008
@@ -3285,8 +3285,9 @@ fi #if sunos
 echocheck "termcap"
 if test "$_termcap" = auto ; then
   cat > $TMPC <<EOF
+#include <stddef.h>
 #include <term.h>
-int main(void) { tgetent(); return 0; }
+int main(void) { tgetent(NULL, NULL); return 0; }
 EOF
   _termcap=no
   for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do



More information about the MPlayer-cvslog mailing list