- Timestamp:
- Jul 23, 2006, 2:41:44 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/acinclude.m4
r8844 r9391 282 282 [LUA_LIBS="${LUA_LIBS} -l${LAST_FOUND_LIB}" AX_CHECK_REQUIRED_HEADER_LIB([lualib.h], [lualib lualib50], [luaopen_base], 283 283 dnl liblualib found 284 [LUA_LIBS="${LUA_LIBS} -l${LAST_FOUND_LIB}"], ,285 [http://www.lua.org],, [ ${LUA_LIBS} -ldl -lm])],284 [LUA_LIBS="${LUA_LIBS} -l${LAST_FOUND_LIB}"], [LUA_LIBS="${LUA_LIBS} -llualib"], 285 [http://www.lua.org],, [-llua ${LUA_LIBS} -ldl -lm])], 286 286 dnl liblua not found (download it) 287 287 [AX_GET_INSTALL_NECESSARY_LIB([http://switch.dl.sourceforge.net/sourceforge/gtksql], [lua-5.0.tar.gz], [lua-5.0], [extern_libs/], [include/*.h lib/*.a]) -
trunk/configure.ac
r9237 r9391 28 28 ## AUTOCONF INIT PHASE ## 29 29 ######################### 30 AC_PREREQ(2.5 9)30 AC_PREREQ(2.56) 31 31 AC_INIT([orxonox], [0.3.5_alpha], [orxonox-dev at mail.datacore.ch]) 32 32 … … 604 604 AM_CONDITIONAL(HAVE_CURL, test "x$have_curl" = "xyes") 605 605 606 607 AX_CHECK_REQUIRED_HEADER_LIB([zlib.h], [z], [zlibVersion],,, [http://www.zlib.net]) 608 AX_CHECK_REQUIRED_HEADER_LIB([math.h], [m], [sqrt]) 609 610 606 611 #-----# 607 612 # LUA # … … 619 624 fi 620 625 fi 621 622 # FIXME: Replace `main' with a function in `-lm':623 AX_CHECK_REQUIRED_HEADER_LIB([math.h], [m], [sqrt])624 AX_CHECK_REQUIRED_HEADER_LIB([zlib.h], [z], [zlibVersion],,, [http://www.zlib.net])625 626 626 627 # Checks for header files. -
trunk/src/lib/graphics/importer/md3/md3_animation_cfg.cc
r8724 r9391 87 87 88 88 // parse file 89 while( (read = getline(&cLine, &len, pFile)) != -1) { /*( !this->dataStream.eof()) {*/ 89 /// @FIXME FIXME bensch took this out, cause: not portable 90 // while( (read = getline(&cLine, &len, pFile)) != -1) { /*( !this->dataStream.eof()) {*/ 91 /* 90 92 std::string line(cLine); 91 93 … … 175 177 this->putAnimation(animation); 176 178 } 177 179 } 178 180 } 181 */ 179 182 } 180 183
Note: See TracChangeset
for help on using the changeset viewer.