* include/hbthread.h
* src/vm/fm.c
! Tweaks to allow msvcarm 2003 build.
* src/vm/maindllp/dllpcode.c
* src/vm/maindllh.c
! Deleted (AFAIK unnecessary) HB_EXPORT to make msvcarm 2003 happy.
* src/common/hbgete.c
* src/rtl/net.c
! Fixed missing #include hbwince.h.
* external/sqlite3/Makefile
- Disabled for msvcarm 2003.
* contrib/gtalleg/Makefile
- Disabled for msvcarm.
* contrib/hbodbc/Makefile
* contrib/rddsql/sddodbc/Makefile
! Do not force sql.h header for msvcarm 2003.
* contrib/rddbmcdx/hbbmcdx.h
! Fixed HB_EXTERN placement to make msvcarm 2003 happy.
* contrib/hbct/ctnet.c
* contrib/xhb/hbsyslog.c
* contrib/xhb/hbserv.c
* contrib/hbtpathy/tpwin.c
* contrib/hbnf/getenvrn.c
* contrib/hbwin/wapi_winuser.c
* contrib/hbwin/olecore.c
* contrib/hbwin/win_dlg.c
! Fixed to make them compile on msvcarm 2003.
* config/wce/msvcarm.mk
* utils/hbmk2/hbmk2.prg
! Fixed warning option for msvcarm 2003.
* utils/hbmk2/hbmk2.prg
! Fixed type causing RTE with msvcarm targets.
; NOTE: hbcurl doesn't build with msvcarm 2003, so either
don't enable it, or experiment with HB_USER_CFLAGS=-U_WIN32_WCE
hack. The problem lies somewhere in libcurl headers,
not Harbour code.
39 lines
771 B
Makefile
39 lines
771 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := sddodbc
|
|
|
|
C_SOURCES := \
|
|
odbcdd.c \
|
|
|
|
ifneq ($(filter $(HB_PLATFORM),win wce),)
|
|
HB_INC_ODBC := force
|
|
ifeq ($(HB_COMPILER),msvcarm)
|
|
ifneq ($(filter $(HB_COMPILER_VER),600 700 710),)
|
|
HB_INC_ODBC :=
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
_DET_DSP_NAME := odbc
|
|
_DET_VAR_INC_ := HB_INC_ODBC
|
|
_DET_VAR_HAS_ := HB_HAS_ODBC
|
|
_DET_FLT_PLAT := !dos !os2
|
|
_DET_FLT_COMP := !rsxnt
|
|
_DET_INC_DEFP := /usr/include /usr/local/include
|
|
_DET_INC_HEAD := /sql.h
|
|
include $(TOP)$(ROOT)config/detfun.mk
|
|
|
|
ifneq ($(HB_HAS_ODBC),)
|
|
HB_CFLAGS += $(foreach d,$(HB_HAS_ODBC),-I$(d))
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
else
|
|
HB_SKIP_REASON := $(_DET_RES_TEXT)
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|