2002-04-26 21:45 UTC+0100 Tomaz Zupan <tomaz.zupan@orpo.si>

This commit is contained in:
Tomaz Zupan
2002-04-26 19:48:11 +00:00
parent 8390f7d222
commit db3818c2fa
2 changed files with 13 additions and 2 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
* source/rtl/dummy.prg
and BrowseText() then this are not Handle by TMemoEditor:Edit() method
2002-04-27 19:15 UTC-0300 Horacio Roldan <harbour_ar@yahoo.com.ar>
* include/hbapirdd.h
* source/rdd/dbcmd.c
+ added functions ordKeyAdd and ordKeyDel (need support from each RDD)
! fixed compatibility issue: ordListAdd(nil) is valid in Clipper

View File

@@ -129,11 +129,18 @@ else
fi
elif [ "$HB_ARCHITECTURE" = "linux" ]; then
if [ "$HB_GT_LIB" = "gtcrs" ]; then
export HB_SCREEN_LIB="-lncurses"
fi
if [ "$HB_GT_LIB" = "gtsln" ]; then
export HB_SCREEN_LIB="-lslang"
fi
if [ -z "$HB_GT_LIB" ]; then HB_GT_LIB=gtstd; fi
if [ "$HB_COMPILER" = "gcc" ]; then
gcc $1.c -o$1 $CFLAGS -I$HB_INC_INSTALL -L$HB_LIB_INSTALL -ldebug -lvm -lrtl -llang -lrdd -lrtl -lvm -lmacro -lpp -lcommon -lnulsys -ldbfntx -ldbfcdx -l$HB_GT_LIB -lm
gcc $1.c -o$1 $CFLAGS -I$HB_INC_INSTALL -L$HB_LIB_INSTALL -ldebug -lvm -lrtl -llang -lrdd -lrtl -lvm -lmacro -lpp -lcommon -lnulsys -ldbfntx -ldbfcdx -l$HB_GT_LIB $HB_SCREEN_LIB -lm
else
echo Error: HB_COMPILER value is unsupported.
fi