diff options
Diffstat (limited to 'cipher')
-rw-r--r-- | cipher/ChangeLog | 5 | ||||
-rw-r--r-- | cipher/Makefile.am | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog index 944510a38..dd8c0b033 100644 --- a/cipher/ChangeLog +++ b/cipher/ChangeLog @@ -1,3 +1,8 @@ +Sat Sep 18 12:51:51 CEST 1999 Werner Koch <[email protected]> + + + * Makefile.am: Never compile mingw32 as module + Wed Sep 15 14:39:59 CEST 1999 Michael Roth <[email protected]> * des.c: Various speed improvements: One bit pre rotation diff --git a/cipher/Makefile.am b/cipher/Makefile.am index 3d9a5cb93..e68ee19fc 100644 --- a/cipher/Makefile.am +++ b/cipher/Makefile.am @@ -99,4 +99,9 @@ rndlinux: $(srcdir)/rndlinux.c rndegd: $(srcdir)/rndegd.c $(COMPILE) $(DYNLINK_MOD_CFLAGS) -o rndegd $(srcdir)/rndegd.c +# We need to have a better system for selection which modules +# to compile. For now this works. +rndw32: $(srcdir)/rndw32.c + echo "#!/bin/sh" >rndw32 + echo "Not usable as a module" >>rndw32 |