From 1a9fbbfaaf6f53dfe281955a91870e781ef7efb2 Mon Sep 17 00:00:00 2001 From: tedu <> Date: Sun, 25 May 2014 17:29:51 +0000 Subject: define LIBRESSL_INTERNAL, and use it to hide the bad stuff from ourselves ok beck --- src/lib/libcrypto/crypto.h | 3 ++- src/lib/libcrypto/crypto/Makefile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto') diff --git a/src/lib/libcrypto/crypto.h b/src/lib/libcrypto/crypto.h index 67bb46c7e5..9307687b27 100644 --- a/src/lib/libcrypto/crypto.h +++ b/src/lib/libcrypto/crypto.h @@ -316,7 +316,6 @@ DECLARE_STACK_OF(CRYPTO_EX_DATA_FUNCS) * via CRYPTO_ex_data_new_class). */ #define CRYPTO_EX_INDEX_USER 100 - /* This is the default callbacks, but we can have others as well: * this is needed in Win32 where the application malloc and the * library malloc may not be the same. @@ -471,12 +470,14 @@ void CRYPTO_get_mem_debug_functions( void (**r)(void *, void *, int, const char *, int, int), void (**f)(void *, int), void (**so)(long), long (**go)(void)); +#ifndef LIBRESSL_INTERNAL void *CRYPTO_malloc_locked(int num, const char *file, int line); void CRYPTO_free_locked(void *ptr); void *CRYPTO_malloc(int num, const char *file, int line); char *CRYPTO_strdup(const char *str, const char *file, int line); void CRYPTO_free(void *ptr); void *CRYPTO_realloc(void *addr, int num, const char *file, int line); +#endif void *CRYPTO_realloc_clean(void *addr, int old_num, int num, const char *file, int line); void *CRYPTO_remalloc(void *addr, int num, const char *file, int line); diff --git a/src/lib/libcrypto/crypto/Makefile b/src/lib/libcrypto/crypto/Makefile index 258f998fbc..9acf6701c5 100644 --- a/src/lib/libcrypto/crypto/Makefile +++ b/src/lib/libcrypto/crypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.36 2014/05/16 14:24:36 jsing Exp $ +# $OpenBSD: Makefile,v 1.37 2014/05/25 17:29:51 tedu Exp $ LIB= crypto @@ -16,6 +16,7 @@ CFLAGS+= -DDSO_DLFCN -DHAVE_DLFCN_H PICFLAG=-fPIC .endif +CFLAGS+= -DLIBRESSL_INTERNAL CFLAGS+= -DTERMIOS # Hardware engines CFLAGS+= -DOPENSSL_NO_HW_PADLOCK # XXX enable this? -- cgit v1.2.3-55-g6feb