Changeset 241
- Timestamp:
- 10/15/05 14:48:19
- Files:
-
- openpgpsdk/trunk/Makefile (modified) (2 diffs)
- openpgpsdk/trunk/configure (modified) (1 diff)
- openpgpsdk/trunk/examples/Makefile.template (modified) (1 diff)
- openpgpsdk/trunk/examples/create-key.c (modified) (1 diff)
- openpgpsdk/trunk/examples/create-signed-key.c (modified) (1 diff)
- openpgpsdk/trunk/examples/packet-dump.c (modified) (1 diff)
- openpgpsdk/trunk/examples/verify.c (modified) (1 diff)
- openpgpsdk/trunk/examples/verify2.c (modified) (1 diff)
- openpgpsdk/trunk/include/openpgpsdk/Makefile (moved) (moved from openpgpsdk/trunk/include/Makefile) (1 diff)
- openpgpsdk/trunk/include/openpgpsdk/configure.h.template (moved) (moved from openpgpsdk/trunk/include/configure.h.template)
- openpgpsdk/trunk/include/openpgpsdk/create.h (moved) (moved from openpgpsdk/trunk/include/create.h)
- openpgpsdk/trunk/include/openpgpsdk/crypto.h (moved) (moved from openpgpsdk/trunk/include/crypto.h)
- openpgpsdk/trunk/include/openpgpsdk/errors.h (moved) (moved from openpgpsdk/trunk/include/ops_errors.h)
- openpgpsdk/trunk/include/openpgpsdk/keyring.h (moved) (moved from openpgpsdk/trunk/include/keyring.h)
- openpgpsdk/trunk/include/openpgpsdk/lists.h (moved) (moved from openpgpsdk/trunk/include/lists.h)
- openpgpsdk/trunk/include/openpgpsdk/memory.h (moved) (moved from openpgpsdk/trunk/include/memory.h)
- openpgpsdk/trunk/include/openpgpsdk/packet-parse.h (moved) (moved from openpgpsdk/trunk/include/packet-parse.h)
- openpgpsdk/trunk/include/openpgpsdk/packet-show.cast (moved) (moved from openpgpsdk/trunk/include/packet-show.cast)
- openpgpsdk/trunk/include/openpgpsdk/packet-show.h (moved) (moved from openpgpsdk/trunk/include/packet-show.h)
- openpgpsdk/trunk/include/openpgpsdk/packet.h (moved) (moved from openpgpsdk/trunk/include/packet.h) (1 diff)
- openpgpsdk/trunk/include/openpgpsdk/signature.h (moved) (moved from openpgpsdk/trunk/include/signature.h)
- openpgpsdk/trunk/include/openpgpsdk/types.h (moved) (moved from openpgpsdk/trunk/include/types.h)
- openpgpsdk/trunk/include/openpgpsdk/util.h (moved) (moved from openpgpsdk/trunk/include/util.h)
- openpgpsdk/trunk/include/openpgpsdk/validate.h (moved) (moved from openpgpsdk/trunk/include/validate.h)
- openpgpsdk/trunk/src/Makefile.template (modified) (2 diffs)
- openpgpsdk/trunk/src/accumulate.c (modified) (1 diff)
- openpgpsdk/trunk/src/armour.c (modified) (1 diff)
- openpgpsdk/trunk/src/create.c (modified) (1 diff)
- openpgpsdk/trunk/src/fingerprint.c (modified) (1 diff)
- openpgpsdk/trunk/src/hash.c (modified) (1 diff)
- openpgpsdk/trunk/src/keyring.c (modified) (2 diffs)
- openpgpsdk/trunk/src/keyring_local.h (moved) (moved from openpgpsdk/trunk/include/keyring_local.h)
- openpgpsdk/trunk/src/lists.c (modified) (1 diff)
- openpgpsdk/trunk/src/memory.c (modified) (1 diff)
- openpgpsdk/trunk/src/openssl_crypto.c (modified) (1 diff)
- openpgpsdk/trunk/src/ops_errors.c (modified) (1 diff)
- openpgpsdk/trunk/src/packet-parse.c (modified) (1 diff)
- openpgpsdk/trunk/src/packet-show.c (modified) (2 diffs)
- openpgpsdk/trunk/src/signature.c (modified) (1 diff)
- openpgpsdk/trunk/src/util.c (modified) (1 diff)
- openpgpsdk/trunk/src/validate.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/Makefile
r236 r241 7 7 SUBDIRS=src examples 8 8 9 all: Makefiles include/ configure.h headers default9 all: Makefiles include/openpgpsdk/configure.h headers default 10 10 11 11 headers: 12 cd include && make headers12 cd include/openpgpsdk && make headers 13 13 14 14 default: … … 17 17 done 18 18 19 include/ configure.h: include/configure.h.template configure20 echo re-run configure 19 include/openpgpsdk/configure.h: include/openpgpsdk/configure.h.template configure 20 echo re-run configure && exit 1 21 21 22 22 force_depend: openpgpsdk/trunk/configure
r193 r241 101 101 fileSubst('src/Makefile','#',''); 102 102 fileSubst('examples/Makefile','#',''); 103 fileSubst('include/ configure.h','/*','*/');103 fileSubst('include/openpgpsdk/configure.h','/*','*/'); 104 104 105 105 print "make clean\n"; openpgpsdk/trunk/examples/Makefile.template
r233 r241 39 39 rm -f TAGS 40 40 41 .depend: *.[ch] 42 $(CC) $(CFLAGS) -E -M M*.c > .depend41 .depend: *.[ch] ../include/openpgpsdk/*.h 42 $(CC) $(CFLAGS) -E -M *.c > .depend 43 43 44 44 force_depend: 45 $(CC) $(CFLAGS) -E -M M*.c > .depend45 $(CC) $(CFLAGS) -E -M *.c > .depend 46 46 47 47 Makefile: Makefile.template ../configure openpgpsdk/trunk/examples/create-key.c
r128 r241 1 #include "create.h"2 #include "util.h"1 #include <openpgpsdk/create.h> 2 #include <openpgpsdk/util.h> 3 3 #include <stdio.h> 4 4 openpgpsdk/trunk/examples/create-signed-key.c
r146 r241 1 #include "create.h"2 #include "util.h"3 #include "signature.h"4 #include "packet-parse.h"1 #include <openpgpsdk/create.h> 2 #include <openpgpsdk/util.h> 3 #include <openpgpsdk/signature.h> 4 #include <openpgpsdk/packet-parse.h> 5 5 #include <stdio.h> 6 6 #include <fcntl.h> openpgpsdk/trunk/examples/packet-dump.c
r240 r241 1 #include "packet.h" 2 #include "packet-parse.h" 3 #include "packet-show.h" 4 #include "configure.h" 5 #include "util.h" 6 #include "lists.h" 7 #include "ops_errors.h" 1 #include <openpgpsdk/packet.h> 2 #include <openpgpsdk/packet-parse.h> 3 #include <openpgpsdk/packet-show.h> 4 #include <openpgpsdk/configure.h> 5 #include <openpgpsdk/util.h> 6 #include <openpgpsdk/errors.h> 8 7 #include <openpgpsdk/armour.h> 9 #include "crypto.h"8 #include <openpgpsdk/crypto.h> 10 9 11 10 #include <unistd.h> openpgpsdk/trunk/examples/verify.c
r240 r241 1 #include "packet.h"2 #include "packet-parse.h"3 #include "util.h"1 #include <openpgpsdk/packet.h> 2 #include <openpgpsdk/packet-parse.h> 3 #include <openpgpsdk/util.h> 4 4 #include <openpgpsdk/accumulate.h> 5 #include "keyring.h"6 #include "validate.h"5 #include <openpgpsdk/keyring.h> 6 #include <openpgpsdk/validate.h> 7 7 #include <unistd.h> 8 8 #include <string.h> openpgpsdk/trunk/examples/verify2.c
r240 r241 1 #include "packet.h"2 #include "packet-parse.h"3 #include "util.h"1 #include <openpgpsdk/packet.h> 2 #include <openpgpsdk/packet-parse.h> 3 #include <openpgpsdk/util.h> 4 4 #include <openpgpsdk/accumulate.h> 5 #include "keyring.h" 6 #include "validate.h" 5 #include <openpgpsdk/keyring.h> 7 6 #include <openpgpsdk/armour.h> 8 #include "crypto.h"9 #include "signature.h"7 #include <openpgpsdk/crypto.h> 8 #include <openpgpsdk/signature.h> 10 9 #include <unistd.h> 11 10 #include <string.h> openpgpsdk/trunk/include/openpgpsdk/Makefile
r222 r241 2 2 3 3 top: 4 cd .. && make4 cd ../.. && make 5 5 6 6 headers: packet-show-cast.h 7 7 8 packet-show-cast.h: packet-show.cast ../ util/caster.pl9 ../ util/caster.pl packet-show.cast packet-show-cast.h8 packet-show-cast.h: packet-show.cast ../../util/caster.pl 9 ../../util/caster.pl packet-show.cast packet-show-cast.h openpgpsdk/trunk/include/openpgpsdk/packet.h
r238 r241 11 11 #include <openssl/bn.h> 12 12 #include "types.h" 13 #include " ops_errors.h"13 #include "errors.h" 14 14 15 15 /** General-use structure for variable-length data openpgpsdk/trunk/src/Makefile.template
r240 r241 14 14 15 15 headers: 16 cd ../include && make headers16 cd ../include/openpgpsdk && make headers 17 17 18 18 libops.a: $(LIBOBJS) … … 27 27 rm -f libops.a TAGS 28 28 29 .depend: *.[ch] 30 $(CC) $(CFLAGS) -E -M M*.c > .depend29 .depend: *.[ch] ../include/openpgpsdk/*.h 30 $(CC) $(CFLAGS) -E -M *.c > .depend 31 31 32 32 force_depend: headers 33 $(CC) $(CFLAGS) -E -M M*.c > .depend33 $(CC) $(CFLAGS) -E -M *.c > .depend 34 34 35 35 Makefile: Makefile.template ../configure openpgpsdk/trunk/src/accumulate.c
r240 r241 2 2 */ 3 3 4 #include "packet.h"5 #include "packet-parse.h"6 #include "util.h"7 #include "openpgpsdk/accumulate.h"4 #include <openpgpsdk/packet.h> 5 #include <openpgpsdk/packet-parse.h> 6 #include <openpgpsdk/util.h> 7 #include <openpgpsdk/accumulate.h> 8 8 #include "keyring_local.h" 9 #include "signature.h"9 #include <openpgpsdk/signature.h> 10 10 #include <assert.h> 11 11 #include <stdlib.h> openpgpsdk/trunk/src/armour.c
r240 r241 1 #include "configure.h"1 #include <openpgpsdk/configure.h> 2 2 #include <openpgpsdk/armour.h> 3 #include "util.h"4 #include "crypto.h"3 #include <openpgpsdk/util.h> 4 #include <openpgpsdk/crypto.h> 5 5 6 6 #include <string.h> openpgpsdk/trunk/src/create.c
r240 r241 2 2 */ 3 3 4 #include "create.h"5 #include "util.h"4 #include <openpgpsdk/create.h> 5 #include <openpgpsdk/util.h> 6 6 #include <string.h> 7 7 #include <assert.h> openpgpsdk/trunk/src/fingerprint.c
r240 r241 2 2 */ 3 3 4 #include "packet.h" 5 #include "crypto.h" 6 #include "memory.h" 7 #include "create.h" 4 #include <openpgpsdk/packet.h> 5 #include <openpgpsdk/crypto.h> 6 #include <openpgpsdk/create.h> 8 7 #include <assert.h> 9 8 #include <string.h> 10 9 11 #include "configure.h"10 #include <openpgpsdk/configure.h> 12 11 #ifdef HAVE_ALLOCA_H 13 12 # include <alloca.h> openpgpsdk/trunk/src/hash.c
r235 r241 2 2 */ 3 3 4 #include "crypto.h"4 #include <openpgpsdk/crypto.h> 5 5 #include <assert.h> 6 6 openpgpsdk/trunk/src/keyring.c
r237 r241 2 2 */ 3 3 4 #include "keyring.h"4 #include <openpgpsdk/keyring.h> 5 5 #include "keyring_local.h" 6 6 #include <stdlib.h> … … 57 57 { return &data->pkey; } 58 58 59 openpgpsdk/trunk/src/lists.c
r213 r241 5 5 */ 6 6 7 #include "lists.h"7 #include <openpgpsdk/lists.h> 8 8 9 9 #include <stdlib.h> openpgpsdk/trunk/src/memory.c
r240 r241 2 2 */ 3 3 4 #include "memory.h" 5 #include "create.h" 4 #include <openpgpsdk/create.h> 6 5 #include <stdlib.h> 7 6 #include <string.h> openpgpsdk/trunk/src/openssl_crypto.c
r237 r241 2 2 */ 3 3 4 #include "configure.h"5 #include "crypto.h"4 #include <openpgpsdk/configure.h> 5 #include <openpgpsdk/crypto.h> 6 6 #include <openssl/md5.h> 7 7 #include <openssl/sha.h> openpgpsdk/trunk/src/ops_errors.c
r211 r241 2 2 */ 3 3 4 #include "ops_errors.h"5 #include "util.h"4 #include <openpgpsdk/errors.h> 5 #include <openpgpsdk/util.h> 6 6 #include <stdlib.h> 7 7 openpgpsdk/trunk/src/packet-parse.c
r240 r241 4 4 5 5 6 #include "packet.h"7 #include "packet-parse.h"8 #include "util.h"6 #include <openpgpsdk/packet.h> 7 #include <openpgpsdk/packet-parse.h> 8 #include <openpgpsdk/util.h> 9 9 #include <openpgpsdk/compress.h> 10 #include "lists.h" 11 #include "ops_errors.h" 10 #include <openpgpsdk/errors.h> 12 11 13 12 #include <assert.h> openpgpsdk/trunk/src/packet-show.c
r237 r241 5 5 */ 6 6 7 #include "configure.h"7 #include <openpgpsdk/configure.h> 8 8 9 9 #include <stdlib.h> 10 10 #include <string.h> 11 11 12 #include "packet-show.h"13 #include < util.h>12 #include <openpgpsdk/packet-show.h> 13 #include <openpgpsdk/util.h> 14 14 15 15 /* … … 198 198 }; 199 199 200 #include "packet-show-cast.h"200 #include <openpgpsdk/packet-show-cast.h> 201 201 202 202 /* openpgpsdk/trunk/src/signature.c
r240 r241 2 2 */ 3 3 4 #include "signature.h" 5 #include "crypto.h" 6 #include "memory.h" 7 #include "create.h" 4 #include <openpgpsdk/signature.h> 5 #include <openpgpsdk/crypto.h> 6 #include <openpgpsdk/create.h> 8 7 #include <assert.h> 9 8 #include <string.h> openpgpsdk/trunk/src/util.c
r222 r241 2 2 */ 3 3 4 #include "util.h"5 #include "packet-parse.h"6 #include "crypto.h"7 #include "create.h"4 #include <openpgpsdk/util.h> 5 #include <openpgpsdk/packet-parse.h> 6 #include <openpgpsdk/crypto.h> 7 #include <openpgpsdk/create.h> 8 8 #include <stdio.h> 9 9 #include <assert.h> openpgpsdk/trunk/src/validate.c
r184 r241 1 #include "packet-parse.h"2 #include "keyring.h"1 #include <openpgpsdk/packet-parse.h> 2 #include <openpgpsdk/keyring.h> 3 3 #include "keyring_local.h" 4 #include "util.h"5 #include "signature.h"4 #include <openpgpsdk/util.h> 5 #include <openpgpsdk/signature.h> 6 6 #include <assert.h> 7 7 #include <string.h>
