summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/Makefile.in4
-rw-r--r--source3/iniparser_build/dictionary.c7
-rw-r--r--source3/iniparser_build/iniparser.c7
-rw-r--r--source3/iniparser_build/strlib.c7
4 files changed, 23 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 0479b85e1a..db62d436eb 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -902,8 +902,8 @@ SMB_KRB5_LOCATOR_OBJ = $(SMB_KRB5_LOCATOR_OBJ1) $(PARAM_OBJ) $(LIB_NONSMBD_OBJ)
POPT_OBJ=popt/findme.o popt/popt.o popt/poptconfig.o \
popt/popthelp.o popt/poptparse.o
-INIPARSER_OBJ = iniparser/src/iniparser.o iniparser/src/dictionary.o \
- iniparser/src/strlib.o
+INIPARSER_OBJ = iniparser_build/iniparser.o iniparser_build/dictionary.o \
+ iniparser_build/strlib.o
TDBBACKUP_OBJ = lib/tdb/tools/tdbbackup.o $(LIBREPLACE_OBJ) \
$(TDBBASE_OBJ) $(SOCKET_WRAPPER_OBJ)
diff --git a/source3/iniparser_build/dictionary.c b/source3/iniparser_build/dictionary.c
new file mode 100644
index 0000000000..de98a4523f
--- /dev/null
+++ b/source3/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/source3/iniparser_build/iniparser.c b/source3/iniparser_build/iniparser.c
new file mode 100644
index 0000000000..4974f373ee
--- /dev/null
+++ b/source3/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/source3/iniparser_build/strlib.c b/source3/iniparser_build/strlib.c
new file mode 100644
index 0000000000..685ec8e04d
--- /dev/null
+++ b/source3/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"