Files
harbour-core/harbour/contrib/hbssl/Makefile
Viktor Szakats 690dd4c849 2010-04-08 17:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbxbp/xbpgra.prg
    ! GraGetRGBIntensity() simplified, optimized and fix to work.

      I'm not XPP user, but returning permanent zero was
      probably not the goal. Pls test it.

  * src/rtl/hbhex.c
    * Minor formatting.

  * contrib/hbssl/Makefile
  * contrib/hbssl/hbssls/Makefile
    - Disabled IDEA subsystem wrappers. IDEA is patented yet, so 
      usually it's better to build OpenSSL without it.
2010-04-08 15:16:16 +00:00

54 lines
1.0 KiB
Makefile

#
# $Id$
#
ROOT := ../../
include $(TOP)$(ROOT)config/global.mk
LIBNAME := hbssl
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 \
PRG_HEADERS := \
hbssl.ch \
ifneq ($(HB_HAS_OPENSSL),)
HB_CFLAGS += $(foreach d,$(HB_HAS_OPENSSL),-I$(d))
ifeq ($(HB_PLATFORM),darwin)
HB_CFLAGS += -DOPENSSL_NO_SHA256 -DOPENSSL_NO_SHA512 -DOPENSSL_NO_CAMELLIA -DOPENSSL_NO_SEED -DOPENSSL_NO_DGRAM -DHB_OPENSSL_OLD_OSX_
endif
ifneq ($(filter $(HB_PLATFORM),win wce),)
HB_CFLAGS += -DOPENSSL_OPT_WINDLL
endif
# Patent will expire in 2010/2011
HB_CFLAGS += -DOPENSSL_NO_IDEA
include $(TOP)$(ROOT)config/header.mk
include $(TOP)$(ROOT)config/lib.mk
ifneq ($(filter $(HB_PLATFORM),win wce),)
DIRS += hbssls
include $(TOP)$(ROOT)config/dir.mk
endif
else
HB_SKIP_REASON := component not found
include $(TOP)$(ROOT)config/none.mk
endif