[MPlayer-cvslog] CVS: main configure,1.1045,1.1046

Jindrich Makovicka CVS syncmail at mplayerhq.hu
Fri Aug 26 20:58:09 CEST 2005


CVS change done by Jindrich Makovicka CVS

Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv26594

Modified Files:
	configure 
Log Message:
more thorough aalib test (needed for --enable-static)

Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.1045
retrieving revision 1.1046
diff -u -r1.1045 -r1.1046
--- configure	19 Aug 2005 19:24:30 -0000	1.1045
+++ configure	26 Aug 2005 18:58:06 -0000	1.1046
@@ -3893,7 +3893,16 @@
 if test "$_aa" = auto ; then
   cat > $TMPC << EOF
 #include <aalib.h>
-int main(void) { (void) aa_init(0, 0, 0); return 0; }
+extern struct aa_hardware_params aa_defparams;
+extern struct aa_renderparams aa_defrenderparams;
+int main(void) {
+aa_context *c;
+aa_renderparams *p;
+(void) aa_init(0, 0, 0);
+c = aa_autoinit(&aa_defparams);
+p = aa_getrenderparams();
+aa_autoinitkbd(c,0);
+return 0; }
 EOF
   _aa=no
   if cc_check -laa ; then




More information about the MPlayer-cvslog mailing list