* contrib/hbtip/hbtipssl/Makefile
* contrib/hbtip/Makefile
+ Always create hbtipssl. (not just when
openssl is detected)
* config/detect.mk
* contrib/hbssl/hbssls/Makefile
* contrib/hbssl/Makefile
* Moved openssl detection from central (core) location
to hbssl lib.
! Fixed hbssl GNU Make files after recent change in
static/dynamic selection.
43 lines
593 B
Makefile
43 lines
593 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
vpath %.c ../
|
|
|
|
LIBNAME := hbssls
|
|
|
|
C_SOURCES := \
|
|
hbssl.c \
|
|
bio.c \
|
|
err.c \
|
|
evp.c \
|
|
evpciph.c \
|
|
evpenc.c \
|
|
evpmd.c \
|
|
evppkey.c \
|
|
pem.c \
|
|
rand.c \
|
|
ssl.c \
|
|
sslciph.c \
|
|
sslctx.c \
|
|
sslsess.c \
|
|
x509.c \
|
|
|
|
ifneq ($(HB_HAS_OPENSSL),)
|
|
|
|
HB_CFLAGS += $(foreach d,$(HB_HAS_OPENSSL),-I$(d))
|
|
|
|
HB_CFLAGS += -DHB_OPENSSL_STATIC
|
|
|
|
# Patent will expire in 2010/2011
|
|
HB_CFLAGS += -DOPENSSL_NO_IDEA
|
|
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
else
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|