Check-in [f2b1c00980]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fixed issue where LIBS were not deleted by the makefile's "clean" target
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: f2b1c00980834d3cd77c9e9209305b37661e9284
User & Date: rkeene 2006-01-18 08:09:48
Context
2006-01-23
09:57
Fixed authentication bug, where upon sucessful authentication the client was still rejected. Lots of work on backuppcd-client: It now stores the incoming data in an appropriate formatted directory structure; It can now check to see if a file exists before fetching it Created a backuppc-passwd program to accept a plaintext password as an argument and produce the SHA1 hash on stdout. Moved the "sha1sum" function to sha1.c and renamed it "SHA1sum" Minor fixes to link.h, win32.h Minor changes to file_sync.c: changed upper limit of internal write buffer to (INT_MAX-1); a bit of work on the weird collection of functions to write data to the network Added extra debug information to libbackuppcd.c (CHECKPOINT's everywhere.) Only attempt to set file permissions if the "preserve" flag is set in bpc_copyfile() Forced "RDIFF" check to fail in bpc_copyfile, so full copies will be made instead of attempting and failing diffs (RDIFF not implemented yet.) Fixed typo in documentation Moved backuppcd.pdf into doc/ upon tarball building. Added "attrib" file format description check-in: 9663631eed user: rkeene tags: trunk
2006-01-18
08:09
Fixed issue where LIBS were not deleted by the makefile's "clean" target check-in: f2b1c00980 user: rkeene tags: trunk
2006-01-12
00:01
Added authentication subsystem and updated example configuration file to reflect this change. Integrated authentication subsystem into backuppcd check-in: e944300f69 user: rkeene tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to Makefile.in.

50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
	-$(CC) $(CFLAGS) $(CPPFLAGS) -I.. -MM tools/*.c >> Makefile.dep
	-@test -s Makefile.dep || cp Makefile.dep.dist Makefile.dep

-include Makefile.dep

.PHONY: clean distclean install
clean:
	rm -f tools/*.o *.o $(BINS) *~

distclean: clean
	rm -f Makefile config.h config.status config.log Makefile.dep

install: all
	-$(INSTALL) -d $(bindir)
	-$(INSTALL) -d $(libdir)







|







50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
	-$(CC) $(CFLAGS) $(CPPFLAGS) -I.. -MM tools/*.c >> Makefile.dep
	-@test -s Makefile.dep || cp Makefile.dep.dist Makefile.dep

-include Makefile.dep

.PHONY: clean distclean install
clean:
	rm -f tools/*.o *.o $(BINS) $(LIBS) *~

distclean: clean
	rm -f Makefile config.h config.status config.log Makefile.dep

install: all
	-$(INSTALL) -d $(bindir)
	-$(INSTALL) -d $(libdir)