* doc/whatsnew.txt
* bin/hb-mkslib.sh
! Changed the way harbour.dylib is created on Darwin systems
to support universal builds. Please review and test.
! Fixed generating links for .dylibs on Darwin.
! Removed one excessive 'cd "${OTMPDIR}"' command.
(I hope this is right)
! Removed previously added $(L_USR) from Darwin dynamic
lib creation command line, as the L_USR "-arch" flags
(and probably others) cannot work here.
; TOFIX: 'ld: library not found for -lharbour' is still
present.
* include/hbsetup.h
+ Added autodetection for HB_OS_DARWIN (based on __APPLE__).
* config/darwin/gcc.cf
! Not forcing HB_OS_DARWIN from the command-line,
we're relying on the autodetection.
* source/rtl/hbzlib.c
* include/hbextern.ch
* doc/whatsnew.txt
* Harbour level functions renamed:
HB_COMPRESS -> HB_ZCOMPRESS
HB_COMPRESSBOUND -> HB_ZCOMPRESSBOUND
HB_UNCOMPRESS -> HB_ZUNCOMPRESS
HB_UNCOMPRESSLEN -> HB_ZUNCOMPRESSLEN
This is to avoid collision with xhb functions
with similar name but different parameter list.
Please modify your programs to use the new interface.
INCOMPATIBLE.
* utils/hbextern/hbextern.prg
* Disabled scanning C HB_FUNC functions in .prg files.
* Minor formatting.
* include/hbapigt.h
! Minor cosmetic.
* source/vm/runner.c
* include/hbextern.ch
* doc/whatsnew.txt
* contrib/examples/hscript/hscript.prg
* utils/hbrun/hbrun.prg
* Harbour level functions renamed:
__HRBRUN -> HB_HRBRUN
__HRBLOAD -> HB_HRBLOAD
__HRBDO -> HB_HRBDO
__HRBUNLOAD -> HB_HRBUNLOAD
__HRBGETFU -> HB_HRBGETSYMBOL
__HRBDOFU -> HB_HRBDOSYMBOL
.hrb API functions moved to the documented namespace.
Old function names still function, but are deprecated.
Please modify your programs to use the new interface.
; NOTE: HB_DBG_*() function should I believe correctly
named as __DBG*(), as they are indeed internal
functions, not meant to guaranteed for final apps.
We should do this cleanup in the future.
* tests/Makefile
- tests/spawn.prg
- tests/spawn2.prg
! Removed two obsolete tests.
215 lines
2.9 KiB
Makefile
215 lines
2.9 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ifeq ($(HB_MAIN),)
|
|
HB_MAIN = std
|
|
endif
|
|
|
|
ROOT = ../
|
|
|
|
LIBS=\
|
|
hbdebug \
|
|
hbvm \
|
|
hbrtl \
|
|
hblang \
|
|
hbrdd \
|
|
hbrtl \
|
|
hbvm \
|
|
hbmacro \
|
|
hbpp \
|
|
hbcommon \
|
|
hbpcre \
|
|
|
|
ifeq ($(PM),)
|
|
PM := $(pm)
|
|
endif
|
|
|
|
ifeq ($(PM),) # PM not defined = build all files
|
|
|
|
PRG_SOURCES=\
|
|
ac_test.prg \
|
|
adirtest.prg \
|
|
ainstest.prg \
|
|
and_or.prg \
|
|
array16.prg \
|
|
arrayidx.prg \
|
|
arrays.prg \
|
|
arreval.prg \
|
|
arrindex.prg \
|
|
atest.prg \
|
|
begin.prg \
|
|
box.prg \
|
|
boxtest.prg \
|
|
byref.prg \
|
|
calling.prg \
|
|
cdow.prg \
|
|
clasname.prg \
|
|
classch.prg \
|
|
classes.prg \
|
|
clsdata.prg \
|
|
cmphello.prg \
|
|
codebl.prg \
|
|
codebloc.prg \
|
|
comments.prg \
|
|
curdirt.prg \
|
|
cursrtst.prg \
|
|
dates.prg \
|
|
dates2.prg \
|
|
dates3.prg \
|
|
db_brows.prg \
|
|
dbevalts.prg \
|
|
delimtst.prg \
|
|
devtest.prg \
|
|
dirtest.prg \
|
|
disptest.prg \
|
|
docase.prg \
|
|
dosshell.prg \
|
|
dynsym.prg \
|
|
exittest.prg \
|
|
fib.prg \
|
|
fornext.prg \
|
|
fortest.prg \
|
|
fsplit.prg \
|
|
hello.prg \
|
|
ifelse.prg \
|
|
ifinline.prg \
|
|
initexit.prg \
|
|
inkeytst.prg \
|
|
inline.prg \
|
|
iotest.prg \
|
|
iotest2.prg \
|
|
langapi.prg \
|
|
lnlenli2.prg \
|
|
longdev.prg \
|
|
longstr.prg \
|
|
longstr2.prg \
|
|
memfile.prg \
|
|
memory.prg \
|
|
memvar.prg \
|
|
menutest.prg \
|
|
mousetst.prg \
|
|
multiarg.prg \
|
|
nums.prg \
|
|
objects.prg \
|
|
omacro.prg \
|
|
onidle.prg \
|
|
os.prg \
|
|
output.prg \
|
|
overload.prg \
|
|
parexpr.prg \
|
|
parseini.prg \
|
|
passref.prg \
|
|
procline.prg \
|
|
procname.prg \
|
|
readhrb.prg \
|
|
recursiv.prg \
|
|
returns.prg \
|
|
rto_get.prg \
|
|
rto_tb.prg \
|
|
round.prg \
|
|
say.prg \
|
|
scroll.prg \
|
|
sdf_test.prg \
|
|
seconds.prg \
|
|
setkeys.prg \
|
|
set_num.prg \
|
|
set_test.prg \
|
|
sound.prg \
|
|
statinit.prg \
|
|
statfun.prg \
|
|
statics.prg \
|
|
strdelim.prg \
|
|
symbolt.prg \
|
|
t1.prg \
|
|
test_all.prg \
|
|
testbrdb.prg \
|
|
testbrw.prg \
|
|
testcdx.prg \
|
|
testcgi.prg \
|
|
testdbf.prg \
|
|
testdecl.prg \
|
|
testerro.prg \
|
|
testfor.prg \
|
|
testhtml.prg \
|
|
testid.prg \
|
|
testinc.prg \
|
|
testmem.prg \
|
|
testntx.prg \
|
|
testpre.prg \
|
|
testprof.prg \
|
|
testrdd.prg \
|
|
testread.prg \
|
|
teststr.prg \
|
|
testvars.prg \
|
|
testwarn.prg \
|
|
tstalias.prg \
|
|
tstasort.prg \
|
|
tstcolor.prg \
|
|
tstdbi.prg \
|
|
tstdspac.prg \
|
|
varparam.prg \
|
|
version.prg \
|
|
vmasort.prg \
|
|
while.prg \
|
|
newrdd.prg \
|
|
|
|
PRG_HEADERS=\
|
|
db_brows.ch \
|
|
cgi.ch \
|
|
keywords.ch \
|
|
test.ch \
|
|
|
|
BAD_PRG_SOURCES=\
|
|
alias.prg \
|
|
clasinit.prg \
|
|
dates4.prg \
|
|
debugtst.prg \
|
|
dupvars.prg \
|
|
dynobj.prg \
|
|
extend1.prg \
|
|
funcarr.prg \
|
|
inherit.prg \
|
|
inifiles.prg \
|
|
keywords.prg \
|
|
linecont.prg \
|
|
lnlenli1.prg \
|
|
mathtest.prg \
|
|
objarr.prg \
|
|
objasign.prg \
|
|
rtfclass.prg \
|
|
statics1.prg \
|
|
statics2.prg \
|
|
stripem.prg \
|
|
test.prg \
|
|
test10.prg \
|
|
testgt.prg \
|
|
testpp.prg \
|
|
testtok.prg \
|
|
tstprag.prg \
|
|
vec1.prg \
|
|
|
|
C_SOURCES=\
|
|
|
|
C_HEADERS=\
|
|
|
|
BAD_C_SOURCES=\
|
|
extend2.c \
|
|
|
|
include $(TOP)$(ROOT)config/test.cf
|
|
|
|
else #PM defined = build specified file
|
|
|
|
ifneq ($(findstring .prg,$(PM)),)
|
|
PRG_MAIN := $(PM)
|
|
else
|
|
ifneq ($(findstring .PRG,$(PM)),)
|
|
PRG_MAIN := $(PM)
|
|
else
|
|
PRG_MAIN := $(PM).prg
|
|
endif
|
|
endif
|
|
include $(TOP)$(ROOT)config/bin.cf
|
|
|
|
endif
|