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

Modified Files:
      Tag: opengl
        configure.ac 
Log Message:
trying to check stuff in

Index: configure.ac
===================================================================
RCS file: /cvsroot/playerstage/code/stage/configure.ac,v
retrieving revision 1.13
retrieving revision 1.13.2.1
diff -C2 -d -r1.13 -r1.13.2.1
*** configure.ac        25 May 2006 21:35:01 -0000      1.13
--- configure.ac        14 Sep 2006 07:11:55 -0000      1.13.2.1
***************
*** 52,90 ****
  export PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
  
- dnl check for GTK stuff - we need it for the GUI
- PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4, ,
-  AC_MSG_WARN([A suitable GTK+ was not found. GTK+-2.4 or later is required. ])
- )
- 
-       
- dnl if GNOMECANVAS is requested and available, we use that for graphics
- AC_ARG_ENABLE(gnomecanvas,
-             AC_HELP_STRING([--enable-gnomecanvas],[Use GnomeCanvas if 
available *EXPERIMENTAL (rtv)*]),
-             [ if test "x$enableval" = "xyes"; then
-             PKG_CHECK_MODULES(GNOME, libgnomecanvas-2.0 >= 2.0,
-               gnome=true
-                 AC_DEFINE(INCLUDE_GNOME,1,[building GnomeCanvas components]),
-               AC_MSG_WARN([no suitable GnomeCanvas library was found. ])
-               )
-               AC_MSG_RESULT([GnomeCanvas graphics will be used.])
-               else
-                 gnome=false
-               AC_MSG_RESULT([GnomeCanvas graphics disabled by user])
-               fi ],
- )
- 
- AM_CONDITIONAL(GNOME, test x$gnome = xtrue)
- 
  dnl for libstageplugin, we need Player 2.0 or higher
  PKG_CHECK_MODULES( PLAYER, playercore >= 2.0.1,
   AC_DEFINE(INCLUDE_PLAYER,1,[building Player plugin])
!  have_player=yes
!  ,
   AC_MSG_WARN([No suitable Player installation detected.])
   have_player=no
  )
  
! AM_CONDITIONAL(HAVE_PLAYER, [test $have_player = yes])
  
  
  dnl for ptest, we need libplayerc
--- 52,79 ----
  export PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
  
  dnl for libstageplugin, we need Player 2.0 or higher
  PKG_CHECK_MODULES( PLAYER, playercore >= 2.0.1,
   AC_DEFINE(INCLUDE_PLAYER,1,[building Player plugin])
!  have_player=yes,
   AC_MSG_WARN([No suitable Player installation detected.])
   have_player=no
  )
  
! AM_CONDITIONAL(HAVE_PLAYER, [test $have_player=yes])
! 
! dnl check for glib
! dnl PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.4, ,
! dnl  AC_MSG_ERROR([A suitable GLib was not found. GLib-2.4 or later is 
required. ])
! dnl )
! 
! PKG_CHECK_MODULES(GUI, gtkglext-1.0 >= 1.0, , 
!  AC_MSG_ERROR([Required library GtkGLExt not found. Install it and try 
again.]) 
! )
  
+ dnl check for GTK - we need it for the GUI
+ dnl PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4, ,
+ dnl  AC_MSG_WARN([A suitable GTK+ was not found. GTK+-2.4 or later is 
required. ])
+ dnl )
+       
  
  dnl for ptest, we need libplayerc
***************
*** 119,127 ****
  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: $CC $CFLAGS])
! AC_MSG_RESULT([  C++ compiler: $CXX $CXXFLAGS])
  AC_MSG_RESULT([])
  
! if test "x$have_player" = "xyes"; then
    AC_MSG_RESULT([The Player plugin (libstageplugin) will be built using the 
following flags: ])
    AC_MSG_RESULT([  compiler: $PLAYER_CFLAGS])
--- 108,116 ----
  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: $CC $CFLAGS ])
! AC_MSG_RESULT([  C++ compiler: $CXX $CXXFLAGS ])
  AC_MSG_RESULT([])
  
! if test $have_player = yes; then
    AC_MSG_RESULT([The Player plugin (libstageplugin) will be built using the 
following flags: ])
    AC_MSG_RESULT([  compiler: $PLAYER_CFLAGS])


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Playerstage-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/playerstage-commit

Reply via email to