summaryrefslogtreecommitdiffstats
path: root/source/iniparser_build
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-06-03 15:51:09 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:05 -0500
commit43d390d1863e7d8c1cb7c47f2272ee78661c352a (patch)
tree245760f8609921ecc62d825ad7cba08aec60d139 /source/iniparser_build
parent40dcccfcf91737ba658fd9e733a431001649d255 (diff)
downloadsamba-43d390d1863e7d8c1cb7c47f2272ee78661c352a.tar.gz
samba-43d390d1863e7d8c1cb7c47f2272ee78661c352a.tar.xz
samba-43d390d1863e7d8c1cb7c47f2272ee78661c352a.zip
r23314: For some systems it's needed to inject replace.h into
the iniparser source code, I do it in a way we can still have a unmodified copy of iniparser in source/iniparser/ and have the wrapper stuff in source/iniparser_build/. If the build-farm is happy with this I'll merge it to 3_0_26 tomorrow... metze
Diffstat (limited to 'source/iniparser_build')
-rw-r--r--source/iniparser_build/dictionary.c7
-rw-r--r--source/iniparser_build/iniparser.c7
-rw-r--r--source/iniparser_build/strlib.c7
3 files changed, 21 insertions, 0 deletions
diff --git a/source/iniparser_build/dictionary.c b/source/iniparser_build/dictionary.c
new file mode 100644
index 00000000000..de98a4523f0
--- /dev/null
+++ b/source/iniparser_build/dictionary.c
@@ -0,0 +1,7 @@
+/*
+ for someplatforms it's needed to inject replace.h into
+ the iniparser source code
+ --metze
+*/
+#include "lib/replace/replace.h"
+#include "iniparser/src/dictionary.c"
diff --git a/source/iniparser_build/iniparser.c b/source/iniparser_build/iniparser.c
new file mode 100644
index 00000000000..4974f373ee5
--- /dev/null
+++ b/source/iniparser_build/iniparser.c
@@ -0,0 +1,7 @@
+/*
+ for someplatforms it's needed to inject replace.h into
+ the iniparser source code
+ --metze
+*/
+#include "lib/replace/replace.h"
+#include "iniparser/src/iniparser.c"
diff --git a/source/iniparser_build/strlib.c b/source/iniparser_build/strlib.c
new file mode 100644
index 00000000000..685ec8e04db
--- /dev/null
+++ b/source/iniparser_build/strlib.c
@@ -0,0 +1,7 @@
+/*
+ for someplatforms it's needed to inject replace.h into
+ the iniparser source code
+ --metze
+*/
+#include "lib/replace/replace.h"
+#include "iniparser/src/strlib.c"