diff options
author | José Fonseca <[email protected]> | 2009-12-23 13:23:39 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-12-23 16:38:50 +0000 |
commit | 88b2d8f796a23e8bb783076eaba711d89757a69e (patch) | |
tree | 5efb73fe365344d2320ef05293a3ff31ed050ea5 | |
parent | b2a615e3cdd0b48f985a9405cd90bdb3e841eeef (diff) |
util: Define common dynamic library extensions.
-rw-r--r-- | src/gallium/auxiliary/util/u_dl.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_dl.h b/src/gallium/auxiliary/util/u_dl.h index 018b38543b0..85296c58af6 100644 --- a/src/gallium/auxiliary/util/u_dl.h +++ b/src/gallium/auxiliary/util/u_dl.h @@ -30,6 +30,18 @@ #define U_DL_H_ +#include "pipe/p_config.h" + + +#if defined(PIPE_OS_WINDOWS) +# define UTIL_DL_EXT ".dll" +#elif defined(PIPE_OS_APPLE) +# define UTIL_DL_EXT ".dylib" +#else +# define UTIL_DL_EXT ".so" +#endif + + struct util_dl_library; |