- Timestamp:
- Sep 27, 2005, 7:21:38 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r5265 r5270 324 324 echo "GLU library not found." 325 325 echo "please install the GLU library, that should come with openGL, which can be found at http://www.opengl.org" 326 echo "------------------" 327 exit -1 328 fi 329 330 # checking glew header 331 AC_CHECK_HEADERS(GL/glew.h ,, 332 [AC_MSG_ERROR([cannot find opengl extension wrangler headers]) ]) 333 # checking for Windows glew library 334 AC_CHECK_LIB([glew32], [main], [AC_CHECK_LIB([glew32s], [main], FOUND_glew32=yes)] ) 335 if test x$FOUND_glew32 = xyes ; then 336 LIBS="$LIBS -lglew32 -lglew32s" 337 else 338 echo "------------------" 339 echo "opengl extension wrangler not found." 340 echo "please install the glew package which can be found at http://glew.sourceforge.net" 326 341 echo "------------------" 327 342 exit -1 -
trunk/src/lib/util/helper_functions.cc
r5207 r5270 43 43 int result = strtol(INT, &endPtr, 10); 44 44 45 if ( endPtr >= INT && endPtr < INT + str nlen(INT, 10))45 if ( endPtr >= INT && endPtr < INT + strlen(INT)) 46 46 return defaultValue; 47 47 else
Note: See TracChangeset
for help on using the changeset viewer.