comparison host/system.h @ 10:83d3eb580731

* Use a single Makefile
author cannam
date Thu, 06 Apr 2006 12:01:07 +0000
parents 8f10d35a4090
children ae3e47e76d2d
comparison
equal deleted inserted replaced
9:44113b1e296b 10:83d3eb580731
55 #define DLOPEN(a,b) dlopen((a).c_str(),(b)) 55 #define DLOPEN(a,b) dlopen((a).c_str(),(b))
56 #define DLSYM(a,b) dlsym((a),(b)) 56 #define DLSYM(a,b) dlsym((a),(b))
57 #define DLCLOSE(a) dlclose((a)) 57 #define DLCLOSE(a) dlclose((a))
58 #define DLERROR() dlerror() 58 #define DLERROR() dlerror()
59 59
60 #ifdef __APPLE__
61
62 #define PLUGIN_GLOB "*.dylib"
63
64 #else
65
60 #define PLUGIN_GLOB "*.so" 66 #define PLUGIN_GLOB "*.so"
67
68 #endif /* __APPLE__ */
69
70 #endif /* ! _WIN32 */
61 71
62 #endif 72 #endif
63 73
64 #endif
65