diff options
author | Richard Levitte <levitte@openssl.org> | 2004-01-23 16:49:39 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2004-01-23 16:49:39 +0000 |
commit | 2bff903483e5d330e06cd1c6e9a120c5dcfb7912 (patch) | |
tree | bea00dc09b8185458483a0d6de392db11653dc2b /crypto/rc2 | |
parent | c4fd5d764d4cc2bd12c487967a3b06f2ab7020ad (diff) | |
download | openssl-new-2bff903483e5d330e06cd1c6e9a120c5dcfb7912.tar.gz |
This branch hasn't been updated with changes from HEAD for a looooong time...
Here goes.
Diffstat (limited to 'crypto/rc2')
-rw-r--r-- | crypto/rc2/Makefile.ssl | 2 | ||||
-rw-r--r-- | crypto/rc2/rc2speed.c | 3 | ||||
-rw-r--r-- | crypto/rc2/rc2test.c | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/crypto/rc2/Makefile.ssl b/crypto/rc2/Makefile.ssl index aa73dea5b6..98d5960d5d 100644 --- a/crypto/rc2/Makefile.ssl +++ b/crypto/rc2/Makefile.ssl @@ -47,7 +47,7 @@ files: $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO links: - @$(TOP)/util/point.sh Makefile.ssl Makefile + @sh $(TOP)/util/point.sh Makefile.ssl Makefile @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) diff --git a/crypto/rc2/rc2speed.c b/crypto/rc2/rc2speed.c index 47d34b444e..b16e6e2ed1 100644 --- a/crypto/rc2/rc2speed.c +++ b/crypto/rc2/rc2speed.c @@ -69,7 +69,10 @@ #include OPENSSL_UNISTD_IO OPENSSL_DECLARE_EXIT +#ifndef OPENSSL_SYS_NETWARE #include <signal.h> +#endif + #ifndef _IRIX #include <time.h> #endif diff --git a/crypto/rc2/rc2test.c b/crypto/rc2/rc2test.c index b67bafb49f..0e117436bb 100644 --- a/crypto/rc2/rc2test.c +++ b/crypto/rc2/rc2test.c @@ -205,6 +205,9 @@ int main(int argc, char *argv[]) printf("ok\n"); #endif +#ifdef OPENSSL_SYS_NETWARE + if (err) printf("ERROR: %d\n", err); +#endif EXIT(err); return(err); } |