diff options
-rw-r--r-- | cipher/ChangeLog | 5 | ||||
-rw-r--r-- | cipher/Makefile.am | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog index e66d0a28..e1ff958b 100644 --- a/cipher/ChangeLog +++ b/cipher/ChangeLog @@ -1,3 +1,8 @@ +2003-06-09 Moritz Schulte <moritz@g10code.com> + + * Makefile.am: Removed rules serpent, since that is not commited + yet. + 2003-06-08 Moritz Schulte <moritz@g10code.com> * pubkey.c (gcry_pk_encrypt): Improve calculation for size of the diff --git a/cipher/Makefile.am b/cipher/Makefile.am index 06c2807d..0be560c0 100644 --- a/cipher/Makefile.am +++ b/cipher/Makefile.am @@ -44,9 +44,6 @@ endif if USE_TWOFISH tmp_twofish = twofish.c endif -if USE_SERPENT - tmp_serpent = serpent.c -endif ciphers = \ $(tmp_arcfour) \ @@ -54,8 +51,7 @@ $(tmp_blowfish) \ $(tmp_cast5) \ $(tmp_des) \ $(tmp_aes) \ -$(tmp_twofish) \ -$(tmp_serpent) +$(tmp_twofish) if USE_DSA tmp_dsa = dsa.c |