1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

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
This commit is contained in:
Stefan Metzmacher 2007-06-03 15:51:09 +00:00 committed by Gerald (Jerry) Carter
parent 40dcccfcf9
commit 43d390d186
4 changed files with 23 additions and 2 deletions

View File

@ -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)

View File

@ -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"

View File

@ -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"

View File

@ -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"