~gnu-psychosynth-team/psychosynth/trunk

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Juan Pedro Bolívar Puente
  • Date: 2012-01-27 12:52:38 UTC
  • Revision ID: raskolnikov@gnu.org-20120127125238-x53wt7jsb6hjczp3
Compilation works on Cegui 1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
286
286
   BUILD_PSYNTH3D=yes
287
287
   
288
288
   dnl Check OGRE
289
 
   PKG_CHECK_MODULES(OGRE, [OGRE >= 1.2], HAVE_OGRE=yes, BUILD_PSYNTH3D=no)
290
 
   
 
289
   PKG_CHECK_MODULES(OGRE, [OGRE >= 1.6], HAVE_OGRE=yes, BUILD_PSYNTH3D=no)
 
290
   OGRE_PLUGIN_DIR=`pkg-config --variable=plugindir OGRE`
 
291
   AC_SUBST(OGRE_PLUGIN_DIR)
 
292
 
291
293
   dnl Check CEGUI
292
 
   PKG_CHECK_MODULES(CEGUI, [CEGUI >= 0.5], HAVE_CEGUI=yes, BUILD_PSYNTH3D=no)
 
294
   PKG_CHECK_MODULES(CEGUI, [CEGUI >= 0.7], HAVE_CEGUI=yes, BUILD_PSYNTH3D=no)
293
295
      
294
296
   dnl Check CEGUI OGRE backend
295
 
   PKG_CHECK_MODULES(CEGUIOGRE, [CEGUI-OGRE >= 1.2], HAVE_CEGUIOGRE=yes, BUILD_PSYNTH3D=no)
296
 
      
 
297
   PKG_CHECK_MODULES(CEGUIOGRE, [CEGUI-OGRE >= 0.7], HAVE_CEGUIOGRE=yes, BUILD_PSYNTH3D=no)
 
298
   
297
299
   dnl Check OIS
298
300
   PKG_CHECK_MODULES(OIS, [OIS >= 1.0], HAVE_OIS=yes, BUILD_PSYNTH3D=no)
299
301
else
400
402
          data/Makefile
401
403
          data/desktop/Makefile
402
404
          data/gui3d/Makefile
 
405
          data/gui3d/plugins.cfg
403
406
          src/Makefile
404
407
          src/psynth/Makefile
405
408
          src/psynth/version.hpp
436
439
AC_MSG_RESULT([           > Ogre >= 1.6 not installed.]);
437
440
fi
438
441
if test "x$HAVE_CEGUI" != xyes; then
439
 
AC_MSG_RESULT([           > Cegui >= 0.5 not installed.]);
 
442
AC_MSG_RESULT([           > Cegui >= 0.7 not installed.]);
440
443
fi
441
444
if test "x$HAVE_CEGUIOGRE" != xyes; then
442
 
AC_MSG_RESULT([           > Cegui-Ogre >= 0.5 not installed.]);
 
445
AC_MSG_RESULT([           > Cegui-Ogre >= 0.7 not installed.]);
443
446
fi
444
447
if test "x$HAVE_OIS" != xyes; then
445
448
AC_MSG_RESULT([           > OIS >= 1.0 not installed.]);
502
505
       Includes: ................ $PACKAGE_INCLUDE_DIR
503
506
       Data: .................... $PACKAGE_DATA_DIR
504
507
 
 
508
       Prefix: .................. $prefix
 
509
       Exec. prefix: ............ $exec_prefix
 
510
 
505
511
     
506
512
    Type 'make' to compile.
507
513
    Then type 'make install' to install.