diff options
author | José Fonseca <[email protected]> | 2010-08-13 13:53:04 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-08-13 13:53:04 +0100 |
commit | 1ca2945f84e9cb298a7d4ad4ec9a0578097c146d (patch) | |
tree | a4475b7cf8fa12f61da3892bde90e8274702c81c /src/talloc/SConscript | |
parent | e6032b1d961715f6dd848058023252e92c36fcde (diff) |
talloc: Make it compile with MSVC, MinGW, and Xcode/gcc4.0.
Based on Aras Pranckevičius' patch.
Diffstat (limited to 'src/talloc/SConscript')
-rw-r--r-- | src/talloc/SConscript | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/talloc/SConscript b/src/talloc/SConscript new file mode 100644 index 00000000000..a4861a932e5 --- /dev/null +++ b/src/talloc/SConscript @@ -0,0 +1,20 @@ +Import('*') + +if env['platform'] != 'windows': + Return() + +env = env.Clone() + +talloc = env.SharedLibrary( + target = 'talloc', + source = ['talloc.c', 'talloc.def'], +) + +env.InstallSharedLibrary(talloc) + +if env['platform'] != 'windows': + talloc = env.FindIxes(talloc, 'LIBPREFIX', 'LIBSUFFIX') +else: + talloc = env.FindIxes(talloc, 'SHLIBPREFIX', 'SHLIBSUFFIX') + +Export('talloc') |