mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 17:30:20 +01:00
util: Define common dynamic library extensions.
This commit is contained in:
parent
b2a615e3cd
commit
88b2d8f796
1 changed files with 12 additions and 0 deletions
|
|
@ -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;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue