diff options
author | 2009-01-09 12:13:50 +0000 | |
---|---|---|
committer | 2009-01-09 12:13:50 +0000 | |
commit | 82a8dcafbb30bde31cbded094521103bf43ceb41 (patch) | |
tree | 8859b263d86cce51b675cde925c3270362dc661e /lib/libcrypto/pqueue | |
parent | Explain that any check pattern will work. (diff) | |
download | wireguard-openbsd-82a8dcafbb30bde31cbded094521103bf43ceb41.tar.xz wireguard-openbsd-82a8dcafbb30bde31cbded094521103bf43ceb41.zip |
import openssl-0.9.8j
Diffstat (limited to 'lib/libcrypto/pqueue')
-rw-r--r-- | lib/libcrypto/pqueue/Makefile | 2 | ||||
-rw-r--r-- | lib/libcrypto/pqueue/pq_compat.h | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/libcrypto/pqueue/Makefile b/lib/libcrypto/pqueue/Makefile index d0c39d25cef..36bfc349aab 100644 --- a/lib/libcrypto/pqueue/Makefile +++ b/lib/libcrypto/pqueue/Makefile @@ -33,7 +33,7 @@ top: all: lib lib: $(LIBOBJ) - $(AR) $(LIB) $(LIBOBJ) + $(ARX) $(LIB) $(LIBOBJ) $(RANLIB) $(LIB) || echo Never mind. @touch lib diff --git a/lib/libcrypto/pqueue/pq_compat.h b/lib/libcrypto/pqueue/pq_compat.h index fd365788822..7b2c32725cd 100644 --- a/lib/libcrypto/pqueue/pq_compat.h +++ b/lib/libcrypto/pqueue/pq_compat.h @@ -57,6 +57,9 @@ * */ +#ifndef HEADER_PQ_COMPAT_H +#define HEADER_PQ_COMPAT_H + #include <openssl/opensslconf.h> #include <openssl/bn.h> @@ -145,3 +148,5 @@ *(x) |= mask; \ } while(0) #endif /* OPENSSL_SYS_VMS */ + +#endif |