Changeset 2968 in orxonox.OLD
- Timestamp:
- Nov 24, 2004, 1:48:50 AM (20 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/configure
r2925 r2968 3758 3758 #done before loop 3759 3759 3760 # checking gl header (has to be here because of a Linux error)3760 # checking gl header 3761 3761 # On IRIX 5.3, sys/types and inttypes.h are conflicting. 3762 3762 … … 4664 4664 Linux="yes" 4665 4665 4666 # checking gl header (has to be here because of a Linux error)4666 # checking gl header 4667 4667 4668 4668 for ac_header in GL/gl.h … … 5355 5355 fi 5356 5356 5357 ;; 5358 *) 5359 mingw="no" 5360 ;; 5361 esac 5362 echo "$as_me:$LINENO: result: $mingw" >&5 5363 echo "${ECHO_T}$mingw" >&6 5364 5365 5366 #### Checking for LIBraries. 5367 5368 # FIXME: Replace `main' with a function in `-lOSMesa': 5357 # FIXME: Replace `main' with a function in `-lOSMesa': 5369 5358 5370 5359 echo "$as_me:$LINENO: checking for main in -lOSMesa" >&5 … … 5435 5424 fi 5436 5425 5437 # FIXME: Replace `main' with a function in `-lX11':5426 # FIXME: Replace `main' with a function in `-lX11': 5438 5427 5439 5428 echo "$as_me:$LINENO: checking for main in -lX11" >&5 … … 5504 5493 fi 5505 5494 5506 # FIXME: Replace `main' with a function in `-lXt':5495 # FIXME: Replace `main' with a function in `-lXt': 5507 5496 5508 5497 echo "$as_me:$LINENO: checking for main in -lXt" >&5 … … 5573 5562 fi 5574 5563 5564 ;; 5565 *) 5566 mingw="no" 5567 ;; 5568 esac 5569 5570 5571 5575 5572 5576 5573 5577 5574 #checking for pthread libs 5578 echo "$as_me:$LINENO: checking for main in -lpthread" >&55575 echo "$as_me:$LINENO: checking for main in -lpthread" >&5 5579 5576 echo $ECHO_N "checking for main in -lpthread... $ECHO_C" >&6 5580 5577 if test "${ac_cv_lib_pthread_main+set}" = set; then … … 5638 5635 fi 5639 5636 5640 if test "$FOUND_pthread" = "yes" ; then5637 if test "$FOUND_pthread" = "yes" ; then 5641 5638 LIBS="$LIBS -lpthread" 5642 fi5639 fi 5643 5640 5644 5641 -
orxonox/trunk/configure.ac
r2925 r2968 150 150 fi 151 151 152 # FIXME: Replace `main' with a function in `-lOSMesa': 153 AC_CHECK_LIB([OSMesa], [main]) 154 # FIXME: Replace `main' with a function in `-lX11': 155 AC_CHECK_LIB([X11], [main]) 156 # FIXME: Replace `main' with a function in `-lXt': 157 AC_CHECK_LIB([Xt], [main]) 152 158 ;; 153 159 *) … … 155 161 ;; 156 162 esac 157 AC_MSG_RESULT([$mingw]) 163 158 164 AC_SUBST(MSBITFIELDS) 159 165 160 #### Checking for LIBraries.161 162 # FIXME: Replace `main' with a function in `-lOSMesa':163 AC_CHECK_LIB([OSMesa], [main])164 # FIXME: Replace `main' with a function in `-lX11':165 AC_CHECK_LIB([X11], [main])166 # FIXME: Replace `main' with a function in `-lXt':167 AC_CHECK_LIB([Xt], [main])168 166 169 167 170 168 #checking for pthread libs 171 AC_CHECK_LIB([pthread], [main], FOUND_pthread=yes)172 if test "$FOUND_pthread" = "yes" ; then169 AC_CHECK_LIB([pthread], [main], FOUND_pthread=yes) 170 if test "$FOUND_pthread" = "yes" ; then 173 171 LIBS="$LIBS -lpthread" 174 fi172 fi 175 173 176 174 … … 178 176 179 177 # FIXME: Replace `main' with a function in `-lm': 180 AC_CHECK_LIB([m], [main])178 AC_CHECK_LIB([m], [main]) 181 179 182 180 LIBS="$LIBS `pkg-config --libs gtk+-2.0`" -
orxonox/trunk/importer/framework.cc
r2966 r2968 128 128 { 129 129 rotAxis.normalize(); 130 printf ("rotAxis: %f, %f, %f\n", rotAxis.x, rotAxis.y, rotAxis.z, rotAngle);130 // printf ("rotAxis: %f, %f, %f\n", rotAxis.x, rotAxis.y, rotAxis.z, rotAngle); 131 131 132 132 rotAngle = angle_rad (p1, p2); -
orxonox/trunk/src/player.cc
r2816 r2968 26 26 { 27 27 28 obj = new Object (" reaphigh.obj");28 obj = new Object ("eagle.obj"); 29 29 /* 30 30 objectList = glGenLists(1); … … 108 108 109 109 glMatrixMode (GL_MODELVIEW); 110 glRotatef (-90, 0,1,0);110 // glRotatef (-90, 0,1,0); 111 111 obj->draw(); 112 112 // glCallList (objectList);
Note: See TracChangeset
for help on using the changeset viewer.