From db3818c2fa8893bb67ab69706716257d90cc08cd Mon Sep 17 00:00:00 2001 From: Tomaz Zupan Date: Fri, 26 Apr 2002 19:48:11 +0000 Subject: [PATCH] 2002-04-26 21:45 UTC+0100 Tomaz Zupan --- harbour/ChangeLog | 4 ++++ harbour/bin/bld.sh | 11 +++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index de4c47ea69..3170eca795 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ * source/rtl/dummy.prg + and BrowseText() then this are not Handle by TMemoEditor:Edit() method + +2002-04-27 19:15 UTC-0300 Horacio Roldan + * 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 diff --git a/harbour/bin/bld.sh b/harbour/bin/bld.sh index 89f434f429..780c6bcded 100644 --- a/harbour/bin/bld.sh +++ b/harbour/bin/bld.sh @@ -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