summaryrefslogtreecommitdiff
path: root/buildtools/mktowscript
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-02-23 14:59:47 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:36 +1000
commit7e01efa80fc6262bf5558b213fa572f4253316dc (patch)
tree87e33c40e2717892aa6451b23ec9f1958501a941 /buildtools/mktowscript
parent9e79e14e1434dc2bf77eba7bfc79d816cd43cd11 (diff)
downloadsamba-7e01efa80fc6262bf5558b213fa572f4253316dc.tar.gz
samba-7e01efa80fc6262bf5558b213fa572f4253316dc.tar.bz2
samba-7e01efa80fc6262bf5558b213fa572f4253316dc.zip
build: improve the wscript generator
Diffstat (limited to 'buildtools/mktowscript')
-rw-r--r--buildtools/mktowscript/mklist.txt1
-rwxr-xr-xbuildtools/mktowscript/mktowscript.pl8
2 files changed, 9 insertions, 0 deletions
diff --git a/buildtools/mktowscript/mklist.txt b/buildtools/mktowscript/mklist.txt
index 3e0e1a1959..8a9a6c549a 100644
--- a/buildtools/mktowscript/mklist.txt
+++ b/buildtools/mktowscript/mklist.txt
@@ -1,4 +1,5 @@
source4/main.mk
+source4/lib/basic.mk
pidl/config.mk
nsswitch/config.mk
nsswitch/libwbclient/config.mk
diff --git a/buildtools/mktowscript/mktowscript.pl b/buildtools/mktowscript/mktowscript.pl
index 18c8779055..5dc4e1b944 100755
--- a/buildtools/mktowscript/mktowscript.pl
+++ b/buildtools/mktowscript/mktowscript.pl
@@ -34,6 +34,14 @@ sub strlist($)
$s =~ s/\$\(param_OBJ_FILES\)/..\/pyparam.c/g;
$s =~ s/\$\(libclisrcdir\)\///g;
+ # this one doesn't exist?
+ $s =~ s/LDAP_ENCODE//g;
+
+ # these need to use the library names
+ $s =~ s/LIBLDB/ldb/g;
+ $s =~ s/LIBTALLOC/talloc/g;
+ $s =~ s/LIBTEVENT/tevent/g;
+
return trim(join(' ', split(/\s+/, $s)));
}