* harbour/include/hbexprop.h
* harbour/source/common/expropt1.c
+ added hb_compExprParamListLen()
* harbour/include/hbexpra.c
* harbour/include/hbexprb.c
* use hb_compExprParamListLen()
* harbour/include/hbexprc.c
* generate error message for syntax like:
o:var()++ or o:var()+=10
only:
o:var++ and o:var+=10
is supported, just like for @o:var
* harbour/include/hbapi.h
* harbour/source/common/hbstr.c
+ hb_numDecConv() used to convert double value to/from binary integer
fields with fixed number of decimal places
* harbour/common.mak
* harbour/include/hbapicdp.h
* harbour/source/codepage/Makefile
+ harbour/source/codepage/cptrdos.c
+ harbour/source/codepage/cptrwin.c
* harbour/source/lang/Makefile
+ harbour/source/lang/msgtrdos.c
+ harbour/source/lang/msgtrwin.c
+ added Turkish CPs and MSGs created by Bicahi Esgici
+ harbour/source/codepage/uc1254.c
+ harbour/source/codepage/uc857.c
+ added unicode tables for Turkish CPs
* harbour/source/rdd/dbf1.c
* harbour/source/rdd/workarea.c
+ added support for decimal places in binary integer fields ("I")
! fixed currency field decoding ("Y") - it's integer binary value
not IEEE758 double. Warning: on write the value is rounded not
truncated like in VFP.
76 lines
1.1 KiB
Makefile
76 lines
1.1 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
|
|
C_SOURCES=\
|
|
cpbg866.c \
|
|
cpbgiso.c \
|
|
cpbgwin.c \
|
|
cpcs852.c \
|
|
cpcsiso.c \
|
|
cpcskam.c \
|
|
cpcswin.c \
|
|
cpeldos.c \
|
|
cpelwin.c \
|
|
cpesdos.c \
|
|
cpeswin.c \
|
|
cpesmwi.c \
|
|
cpfrdos.c \
|
|
cpgedos.c \
|
|
cpgewin.c \
|
|
cphr1250.c \
|
|
cphr437.c \
|
|
cphr852.c \
|
|
cphu852.c \
|
|
cphuiso.c \
|
|
cphuwin.c \
|
|
cpit437.c \
|
|
cpit850.c \
|
|
cpitisb.c \
|
|
cpitiso.c \
|
|
cpltwin.c \
|
|
cppl852.c \
|
|
cppliso.c \
|
|
cpplmaz.c \
|
|
cpplwin.c \
|
|
cppt850.c \
|
|
cpptiso.c \
|
|
cpru866.c \
|
|
cprukoi.c \
|
|
cpruwin.c \
|
|
cpsl437.c \
|
|
cpsl852.c \
|
|
cpsliso.c \
|
|
cpslwin.c \
|
|
cpsrwin.c \
|
|
cptrdos.c \
|
|
cptrwin.c \
|
|
cpua866.c \
|
|
cpuakoi.c \
|
|
cpuawin.c \
|
|
uc1250.c \
|
|
uc1251.c \
|
|
uc1253.c \
|
|
uc1254.c \
|
|
uc1257.c \
|
|
uc737.c \
|
|
uc850.c \
|
|
uc852.c \
|
|
uc857.c \
|
|
uc866.c \
|
|
uc8859_1.c \
|
|
uc88591b.c \
|
|
uc8859_2.c \
|
|
uc8859_5.c \
|
|
uckam.c \
|
|
uckoi8.c \
|
|
uckoi8u.c \
|
|
ucmaz.c \
|
|
|
|
LIBNAME=codepage
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|