Changeset 7187 in orxonox.OLD for branches/shared_lib/src
- Timestamp:
- Feb 22, 2006, 2:49:47 AM (19 years ago)
- Location:
- branches/shared_lib/src
- Files:
-
- 1 deleted
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/shared_lib/src/lib/BuildLibs.am
r7178 r7187 15 15 $(LIB_PREFIX)/parser/tinyxml/libtinyxml.a \ 16 16 $(LIB_PREFIX)/parser/ini_parser/libIniParser.a \ 17 $(LIB_PREFIX)/libltdl/libltdl.a \ 17 18 $(LIB_PREFIX)/shell/libORXshell.a \ 18 19 $(LIB_PREFIX)/math/libORXmath.a -
branches/shared_lib/src/lib/Makefile.am
r7165 r7187 48 48 shell \ 49 49 gui \ 50 libltdl \ 50 51 . -
branches/shared_lib/src/orxonox.cc
r7181 r7187 54 54 55 55 #include "load_param_description.h" 56 #include "dynamic_loader.h" 56 57 57 58 #include "network_manager.h" … … 290 291 } 291 292 292 #include "dynamic_loader.h"293 #include <dlfcn.h>294 295 293 /** 296 294 * initializes and loads resource files -
branches/shared_lib/src/util/Makefile.am
r7174 r7187 3 3 4 4 noinst_LIBRARIES = libORXutils.a 5 6 INCLUDES = $(LTDLINCL) 5 7 6 8 -
branches/shared_lib/src/util/loading/dynamic_loader.h
r7175 r7187 8 8 9 9 #include "factory.h" 10 #include <ltdl.h>10 #include "lib/libltdl/ltdl.h" 11 11 12 12 #include <string> -
branches/shared_lib/src/util/loading/resource_manager.cc
r7174 r7187 1049 1049 { 1050 1050 char cwd[1024]; 1051 char* err no= getcwd(cwd, 1024);1052 if (err no== 0)1051 char* errorCode = getcwd(cwd, 1024); 1052 if (errorCode == 0) 1053 1053 return NULL; 1054 1054
Note: See TracChangeset
for help on using the changeset viewer.