diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-03-09 11:42:58 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-03-09 11:42:58 +0000 |
commit | 6100210db96e8647c33b4bf67458ce55f28a53e1 (patch) | |
tree | 1ee6975361dba073536e2d6012dcd87d67ee9157 /source3/Makefile.in | |
parent | fe5801d065a140dc79bec3ff4c41024470ab5cfd (diff) | |
download | samba-6100210db96e8647c33b4bf67458ce55f28a53e1.tar.gz samba-6100210db96e8647c33b4bf67458ce55f28a53e1.tar.bz2 samba-6100210db96e8647c33b4bf67458ce55f28a53e1.zip |
Merge fixes and tests for jra's broken strstr_m() function from 3.0
STF rules! (Pity we don't use it for more stuff)
Andrew Bartlett
(This used to be commit a9363b45b0ef652a5fd621915fafb97ada0c7d5e)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 5792b00264..0008a85f75 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1218,6 +1218,9 @@ bin/tdbdump@EXEEXT@: $(TDBDUMP_OBJ) bin/.dummy bin/t_strcmp@EXEEXT@: bin/libbigballofmud.@SHLIBEXT@ torture/t_strcmp.o $(CC) $(FLAGS) -o $@ $(LIBS) torture/t_strcmp.o -L ./bin -lbigballofmud +bin/t_strstr@EXEEXT@: bin/libbigballofmud.@SHLIBEXT@ torture/t_strstr.o + $(CC) $(FLAGS) -o $@ $(LIBS) torture/t_strstr.o -L ./bin -lbigballofmud + bin/t_stringoverflow@EXEEXT@: bin/libbigballofmud.@SHLIBEXT@ torture/t_stringoverflow.o $(CC) $(FLAGS) -o $@ torture/t_stringoverflow.o -L./bin -lbigballofmud @@ -1511,4 +1514,4 @@ check: check-programs # These are called by the test suite and need to be built before # running it. For the time being we don't build all of BIN_PROGS, # because they're not all needed. -check-programs: bin/t_strcmp bin/t_push_ucs2 bin/smbcontrol bin/t_snprintf +check-programs: bin/t_strcmp bin/t_strstr bin/t_push_ucs2 bin/smbcontrol bin/t_snprintf |