Changeset 4556 in orxonox.OLD for orxonox/trunk/configure
- Timestamp:
- Jun 8, 2005, 2:35:10 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/configure
r4531 r4556 3942 3942 3943 3943 if test x$DEBUG = xno; then 3944 3945 3946 3944 echo "no" 3945 echo " -> Setting debuglevel to 4. (orxonox is still in Development. It really is needed." 3946 DEBUG=4 3947 3947 elif test x$DEBUG = xyes; then 3948 3949 3950 3951 else 3952 3948 echo "yes" 3949 echo " -> Setting debuglevel to 4. HARD DEBUG MODE!!." 3950 DEBUG=4 3951 else 3952 echo "yes: setting debuglevel to to $DEBUG" 3953 3953 fi 3954 3954 … … 3973 3973 3974 3974 if test x$MODULAR_DEBUG = xno; then 3975 3975 echo "no" 3976 3976 elif test x$MODULAR_DEBUG = xyes; then 3977 3977 echo "yes" 3978 3978 3979 3979 cat >>confdefs.h <<_ACEOF … … 4285 4285 4286 4286 # checking gl header 4287 4287 #done before loop 4288 4288 4289 4289 # checking gl header … … 4580 4580 4581 4581 if test x$FOUND_opengl32 = xyes ; then 4582 4582 LIBS="$LIBS -lopengl32" 4583 4583 else 4584 4585 4586 4587 4588 4584 echo "------------------" 4585 echo "opengl not found." 4586 echo "please install the opengl package which can be found at http://www.opengl.org" 4587 echo "------------------" 4588 exit -1 4589 4589 fi 4590 4590 … … 4809 4809 4810 4810 if test x$FOUND_glu32 = xyes ; then 4811 4811 LIBS="$LIBS -lGLU32" 4812 4812 else 4813 4814 4815 4816 4817 4813 echo "------------------" 4814 echo "GLU library not found." 4815 echo "please install the GLU library, that should come with openGL, which can be found at http://www.opengl.org" 4816 echo "------------------" 4817 exit -1 4818 4818 fi 4819 4819 … … 4882 4882 4883 4883 if test x$FOUND_mingw32 = xyes; then 4884 4884 LIBS="$LIBS -lmingw32" 4885 4885 fi 4886 4886 # checking for SDL-headers … … 5423 5423 LIBS="$LIBS -lGL" 5424 5424 else 5425 5426 5427 5428 5429 5425 echo "------------------" 5426 echo "opengl not found." 5427 echo "please install the opengl package which can be found at http://www.opengl.org" 5428 echo "------------------" 5429 exit -1 5430 5430 fi 5431 5431 … … 5657 5657 LIBS="$LIBS -lGLU" 5658 5658 else 5659 5660 5661 5662 5663 5659 echo "------------------" 5660 echo "GLU library not found." 5661 echo "please install the GLU library, that should come with openGL, which can be found at http://www.opengl.org" 5662 echo "------------------" 5663 exit -1 5664 5664 fi 5665 5665 … … 5888 5888 echo "------------------" 5889 5889 echo "SDL library not found." 5890 5890 echo "please install the SDL library, which can be found at http://www.libsdl.org" 5891 5891 echo "------------------" 5892 5892 exit -1 … … 6481 6481 echo "------------------" 6482 6482 echo "openal library not found." 6483 6483 echo "please install the openal library, which can be found at http://www.openal.org" 6484 6484 echo "------------------" 6485 6485 exit -1 … … 6712 6712 echo "------------------" 6713 6713 echo "ogg library not found." 6714 6714 echo "please install the ogg library, which can be found at http://www.xiph.org/ogg/vorbis/index.html" 6715 6715 echo "------------------" 6716 6716 exit -1 … … 6788 6788 echo "------------------" 6789 6789 echo "vorbis library not found." 6790 6790 echo "please install the vorbis library, which can be found at http://www.xiph.org/ogg/vorbis/index.html" 6791 6791 echo "------------------" 6792 6792 exit -1 … … 7019 7019 echo "------------------" 7020 7020 echo "vorbisfile library not found." 7021 7021 echo "please install the vorbisfile library, which can be found at http://www.xiph.org/ogg/vorbis/index.html" 7022 7022 echo "------------------" 7023 7023 exit -1 … … 7251 7251 echo "------------------" 7252 7252 echo "SDL_ttf library not found." 7253 7253 echo "please install the SDL_ttf library, which can be found at http://www.libsdl.org/projects/SDL_ttf/" 7254 7254 echo "------------------" 7255 7255 exit -1 … … 7490 7490 #-----# 7491 7491 if test x$def_gtk = xyes; then 7492 7493 7492 #PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.0.3 gthread-2.0 >= 2.0.3, have_gtk2=yes, have_gtk2=no) 7493 echo "$as_me:$LINENO: checking for gtk2.0" >&5 7494 7494 echo $ECHO_N "checking for gtk2.0... $ECHO_C" >&6 7495 7496 7497 7498 7499 7495 if `$PKG_CONFIG --exists gtk+-2.0`; then 7496 echo "yes" 7497 have_gtk2=yes 7498 GTK2_LIBS=`$PKG_CONFIG --libs gtk+-2.0` 7499 GTK2_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0` 7500 7500 7501 7501 cat >>confdefs.h <<_ACEOF … … 7503 7503 _ACEOF 7504 7504 7505 7506 7507 7508 7509 7510 7511 7505 if test $DEBUG -ge 3; then 7506 echo "cflags: $GTK2_CFLAGS" 7507 echo "libs: $GTK2_LIBS" 7508 fi 7509 else 7510 echo "no" 7511 fi 7512 7512 7513 7513 fi
Note: See TracChangeset
for help on using the changeset viewer.