* common.mak
* include/hbextern.ch
* source/rdd/Makefile
+ source/rdd/rddinfo.c
* source/rdd/dbcmd.c
+ source/rdd/dbdrop.c
+ source/rdd/dbcmd53.c
+ source/rdd/dbexists.c
+ source/rdd/fieldhb.c
! Moved away C53 functions to a separate file.
+ Added HB_RDDGETTEMPALIAS() as a documented version
of the long existing __RDDGETTEMPALIAS(). The latter
name still kept for compatibility.
! Moved away non-namespace conformant HB_EXTENSIONs
to separate files to cause less harm form those not
wanting these or already using these names in app
code.
+ Added HB_RDDINFO() namespace conformant version of
the RDDINFO() Harbour extension. RDDINFO() still works
but it's now defined in a separate file to cause less
potential harm.
- Removed HB_EXTENSION guards from around DBDROP(), DBEXISTS(),
RDDINFO(), FIELDLEN(), FIELDDEC(), FIELDTYPE() non namespace
conformant Harbour extensions.
; Przemek: I'm sorry you didn't bother to answer, so I
just can hope these address the problems you were having.
* source/rdd/sdf1.c
* source/rdd/delim1.c
! Removed two __XHARBOUR__ guards, by making the guarded
code the default. We have SET EOL support in Harbour now,
so this seems okey. If not, tell.
; TOFIX: We still have __XHARBOUR__ #defines in pp/ppcore.c
and debug/debugger.prg.
* include/hbsetup.ch
! HB_EXTENSION turned off.
57 lines
744 B
Makefile
57 lines
744 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
C_SOURCES=\
|
|
dbcmd.c \
|
|
dbcmd53.c \
|
|
dbcmdx.c \
|
|
dbdrop.c \
|
|
dbexists.c \
|
|
fieldhb.c \
|
|
workarea.c \
|
|
wacore.c \
|
|
wafunc.c \
|
|
dbf1.c \
|
|
dbnubs.c \
|
|
dbsql.c \
|
|
delim1.c \
|
|
sdf1.c \
|
|
rddinfo.c \
|
|
hbdbsort.c \
|
|
|
|
PRG_SOURCES=\
|
|
dbdelim.prg \
|
|
dbfuncs.prg \
|
|
dbfuncsx.prg \
|
|
dbjoin.prg \
|
|
dbjoinx.prg \
|
|
dblist.prg \
|
|
dblistx.prg \
|
|
dbsdf.prg \
|
|
dbsort.prg \
|
|
dbsortx.prg \
|
|
dbstrux.prg \
|
|
dbstruxx.prg \
|
|
dbtotal.prg \
|
|
dbtotalx.prg \
|
|
dbupdat.prg \
|
|
dbupdatx.prg \
|
|
rddord.prg \
|
|
rddsys.prg \
|
|
|
|
ifeq ($(HB_MT),MT)
|
|
MT_LIBNAME=rddmt
|
|
endif
|
|
|
|
LIBNAME=rdd
|
|
|
|
|
|
# The list of all valid DB drivers is defined in config/global.cf.
|
|
DIRS=nulsys $(HB_DB_DRIVERS)
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
include $(TOP)$(ROOT)config/dir.cf
|