* harbour/contrib/hbzlib/ioapi.c
* harbour/contrib/hbzlib/zip.c
* harbour/contrib/hbzlib/unzip.c
* harbour/contrib/hbzlib/crypt.h
* harbour/contrib/hbzlib/hbzlib.c
* harbour/contrib/hbzlib/hbmzip.c
* casting for C++ compilation
* changed function declaration for C++ compilation
* removed #include "errno.h" - some platforms do not have it
* updated WIN32 API for WinCE and UNICODE builds
* use localtime_r() only for Linux builds - TODO: create our own
API for it and remove all #if... from core code so we will have
it only in one place easy to update for different platforms
* harbour/contrib/hbzlib/common.mak
* replaced TABs with SPACEs
* harbour/harbour-ce-spec
* harbour/harbour-w32-spec
* harbour/harbour.spec
* harbour/bin/hb-func.sh
* harbour/contrib/Makefile
+ added hbzlib to contrib libraries compiled by default
74 lines
674 B
Makefile
74 lines
674 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
DIRS=\
|
|
hbbtree \
|
|
hbct \
|
|
hbgt \
|
|
hbmisc \
|
|
hbnf \
|
|
hbclipsm \
|
|
hbzlib \
|
|
xhb \
|
|
# examples \
|
|
|
|
|
|
ifneq ($(HB_ARCHITECTURE),dos)
|
|
|
|
DIRS +=\
|
|
hbbmcdx \
|
|
|
|
endif
|
|
|
|
ifeq ($(HB_ARCHITECTURE),w32)
|
|
|
|
DIRS +=\
|
|
hbrddads \
|
|
hbgtwvg \
|
|
|
|
ifneq ($(HB_COMPILER),rsxnt)
|
|
|
|
DIRS +=\
|
|
hbw32 \
|
|
hbodbc \
|
|
hbrddado \
|
|
|
|
endif
|
|
|
|
else
|
|
ifeq ($(HB_COMPILER),icc)
|
|
|
|
DIRS +=\
|
|
hbgf/os2pm \
|
|
|
|
else
|
|
ifeq ($(HB_ARCHITECTURE),os2)
|
|
|
|
DIRS +=\
|
|
hbgf/os2pm \
|
|
|
|
else
|
|
ifeq ($(HB_ARCHITECTURE),linux)
|
|
|
|
DIRS +=\
|
|
hbrddads \
|
|
hbodbc \
|
|
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(HB_ARCHITECTURE),dos)
|
|
DIRS += hbtip
|
|
endif
|
|
|
|
ifneq ($(HB_CONTRIBLIBS),)
|
|
DIRS += $(HB_CONTRIBLIBS)
|
|
endif
|
|
|
|
include $(ROOT)config/dir.cf
|