- Timestamp:
- Mar 31, 2005, 10:59:41 PM (20 years ago)
- Location:
- orxonox/branches/textEngine
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/textEngine/configure.ac
r3702 r3703 213 213 echo "mingw-WINDOWS detected" 214 214 215 CPPFLAGS="-I/usr/include/SDL -I/mingw/include/SDL" 216 215 217 mingw="yes" 216 218 MSBITFIELDS="-mms-bitfields" … … 257 259 fi 258 260 # checking for SDL-headers 259 AC_CHECK_HEADERS([SDL /SDL.h] ,,261 AC_CHECK_HEADERS([SDL.h] ,, 260 262 [AC_MSG_ERROR([cannot find SDL headers]) ]) 261 263 -
orxonox/branches/textEngine/src/lib/util/resource_manager.cc
r3681 r3703 396 396 struct stat status; 397 397 stat(directoryName, &status); 398 if (status.st_mode & (S_IFDIR | S_IFLNK)) 398 if (status.st_mode & (S_IFDIR 399 #ifndef __WIN32__ 400 | S_IFLNK 401 #endif 402 )) 399 403 return true; 400 404 else … … 411 415 struct stat status; 412 416 stat(fileName, &status); 413 if (status.st_mode & (S_IFREG | S_IFLNK)) 417 if (status.st_mode & (S_IFREG 418 #ifndef __WIN32__ 419 | S_IFLNK 420 #endif 421 )) 414 422 return true; 415 423 else -
orxonox/branches/textEngine/src/orxonox.cc
r3693 r3703 339 339 } 340 340 341 #ifndef __WIN32__ 341 342 342 343 #include "list.h" … … 732 733 733 734 } 735 736 #else /* __WIN32__ */ 737 int startBenchmarks() 738 { 739 PRINTF(1)("Not supported in WIN32 yet\n"); 740 } 741 #endif
Note: See TracChangeset
for help on using the changeset viewer.