Update of /cvsroot/playerstage/code/stage
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4664

Modified Files:
      Tag: opengl
        configure.ac 
Log Message:
fixing up autoconf

Index: configure.ac
===================================================================
RCS file: /cvsroot/playerstage/code/stage/configure.ac,v
retrieving revision 1.13.2.4
retrieving revision 1.13.2.5
diff -C2 -d -r1.13.2.4 -r1.13.2.5
*** configure.ac        4 Oct 2007 01:17:02 -0000       1.13.2.4
--- configure.ac        22 Nov 2007 01:42:48 -0000      1.13.2.5
***************
*** 50,53 ****
--- 50,69 ----
  fi
  
+ dnl ==== GRAPHICS FILES ====
+ 
+ PKG_CHECK_MODULES(PIXBUF, gdk-pixbuf-2.0 >= 1.0, , 
+   AC_MSG_ERROR([Required library gdk-pixbuf-2.0 not found. Install it and try 
again.]) 
+ )
+ 
+ dnl ==== FLTK GUI ====
+ 
+ AC_CHECK_PROGS(HAVE_FLTK_CONFIG, fltk-config, "")
+ if test -n "$HAVE_FLTK_CONFIG"; then
+   AC_SUBST(FLTK_CFLAGS,"`fltk-config --use-gl --cxxflags`")
+   AC_SUBST(FLTK_LIBS,"`fltk-config --use-gl --ldflags`")
+ else
+  AC_MSG_ERROR(Could not find fltk-config. Check that FLTK is installed.)
+ fi
+ 
  dnl ==== PLAYER ====
  
***************
*** 72,83 ****
  dnl )
  
- dnl ==== GUI/GRAPHICS ====
- 
- dnl GTK+ with OpenGL: gtkglext brings in all dependencies on GTK,
- dnl glib, etc. Almost too easy!
- PKG_CHECK_MODULES(GUI, gtkglext-1.0 >= 1.0, , 
-  AC_MSG_ERROR([Required library GtkGLExt not found. Install it and try 
again.]) 
- )
- 
  dnl ==== FINISH UP =====
  
--- 88,91 ----
***************
*** 97,101 ****
  AC_MSG_RESULT([])
  AC_MSG_RESULT([Stage will be built for a $host system, with the following 
tools and options:])
! AC_MSG_RESULT([  C++ compiler: $CXX $CXXFLAGS ])
  AC_MSG_RESULT([])
  
--- 105,109 ----
  AC_MSG_RESULT([])
  AC_MSG_RESULT([Stage will be built for a $host system, with the following 
tools and options:])
! AC_MSG_RESULT([  C++ compiler: $CXX $CXXFLAGS $PIXBUF_CFLAGS $FLTK_CFLAGS ])
  AC_MSG_RESULT([])
  


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Playerstage-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/playerstage-commit

Reply via email to