summaryrefslogtreecommitdiff
path: root/src/talloc/SConscript
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-08-13 13:53:04 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-08-13 13:53:04 +0100
commit1ca2945f84e9cb298a7d4ad4ec9a0578097c146d (patch)
treea4475b7cf8fa12f61da3892bde90e8274702c81c /src/talloc/SConscript
parente6032b1d961715f6dd848058023252e92c36fcde (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/SConscript20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/talloc/SConscript b/src/talloc/SConscript
new file mode 100644
index 0000000000..a4861a932e
--- /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')