2009-08-20 11:47 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/config/bsd/gcc.mk
  * harbour/config/darwin/gcc.mk
  * harbour/config/hpux/gcc.mk
  * harbour/config/dos/djgpp.mk
  * harbour/config/win/mingw.mk
  * harbour/config/linux/gcc.mk
  * harbour/config/linux/icc.mk
  * harbour/config/linux/sunpro.mk
  * harbour/config/os2/gcc.mk
  * harbour/config/sunos/gcc.mk
  * harbour/config/sunos/sunpro.mk
    ! replaced wrongly used 'findstring' functions with 'filter' functions.
      Now findstring is used only in places where we are looking for
      substrings not whole words.

  * harbour/source/rdd/wacore.c
    ! fixed typo in comment (by Phil Krylov borrowed from xHarbour)

  * harbour/ChangeLog
    ! fixed my typo in Latin translation of Phil Krylov family
      name - sorry Phil.
This commit is contained in:
Przemyslaw Czerpak
2009-08-20 09:47:56 +00:00
parent a1a747b798
commit 5323a87636
13 changed files with 64 additions and 41 deletions

View File

@@ -17,6 +17,29 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-08-20 11:47 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/config/bsd/gcc.mk
* harbour/config/darwin/gcc.mk
* harbour/config/hpux/gcc.mk
* harbour/config/dos/djgpp.mk
* harbour/config/win/mingw.mk
* harbour/config/linux/gcc.mk
* harbour/config/linux/icc.mk
* harbour/config/linux/sunpro.mk
* harbour/config/os2/gcc.mk
* harbour/config/sunos/gcc.mk
* harbour/config/sunos/sunpro.mk
! replaced wrongly used 'findstring' functions with 'filter' functions.
Now findstring is used only in places where we are looking for
substrings not whole words.
* harbour/source/rdd/wacore.c
! fixed typo in comment (by Phil Krylov borrowed from xHarbour)
* harbour/ChangeLog
! fixed my typo in Latin translation of Phil Krylov family
name - sorry Phil.
2009-08-20 11:09 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
* config/wce/msvcarm.mk
@@ -70931,7 +70954,7 @@
* use hb_fsNameConv() instead of hb_fileNameConv()
* harbour/source/debug/dbgentry.c
+ added modifications by Phil Krylow borowed from xHarbour for
+ added modifications by Phil Krylov borowed from xHarbour for
supporting :: in command line expressions
* harbour/source/rdd/dbfntx/dbfntx1.c
@@ -73526,7 +73549,7 @@
2007-05-28 09:50 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/make_xmingw.sh
* harbour/source/pp/Makefile
* recent xHarbour fixes for MinGW Linux->W32 cross build by Phil Krylow
* recent xHarbour fixes for MinGW Linux->W32 cross build by Phil Krylov
with small modifications
* harbour/config/rules.cf

View File

@@ -38,22 +38,22 @@ LD_OUT := -o
LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := ncurses
endif
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
LDLIBS += -l$(HB_CRS_LIB)
endif
ifneq ($(findstring gtsln, $(LIBS)),)
ifneq ($(filter gtsln, $(LIBS)),)
LDLIBS += -lslang
# In BSD, slang still needs curses :(
ifeq ($(findstring gtcrs, $(LIBS)),)
ifeq ($(filter gtcrs, $(LIBS)),)
LDLIBS += -l$(HB_CRS_LIB)
endif
endif
ifneq ($(findstring gtxwc, $(LIBS)),)
ifneq ($(filter gtxwc, $(LIBS)),)
LDLIBS += -lX11
#LIBPATHS += -L/usr/X11R6/lib64
LIBPATHS += -L/usr/X11R6/lib

View File

@@ -51,22 +51,22 @@ LD_OUT := -o$(subst x,x, )
LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := ncurses
endif
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
LDLIBS += -l$(HB_CRS_LIB)
endif
ifneq ($(findstring gtsln, $(LIBS)),)
ifneq ($(filter gtsln, $(LIBS)),)
LDLIBS += -lslang
# In BSD, slang still needs curses :(
ifeq ($(findstring gtcrs, $(LIBS)),)
ifeq ($(filter gtcrs, $(LIBS)),)
LDLIBS += -l$(HB_CRS_LIB)
endif
endif
ifneq ($(findstring gtxwc, $(LIBS)),)
ifneq ($(filter gtxwc, $(LIBS)),)
LDLIBS += -lX11
#LIBPATHS += -L/usr/X11R6/lib64
LIBPATHS += -L/usr/X11R6/lib

View File

@@ -39,12 +39,12 @@ LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := pdcurses
endif
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
LDLIBS += -l$(HB_CRS_LIB)
endif
endif

View File

@@ -44,18 +44,18 @@ LD_OUT := -o
LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := ncurses
endif
LDLIBS += -l$(HB_CRS_LIB)
endif
ifneq ($(findstring gtsln, $(LIBS)),)
ifneq ($(filter gtsln, $(LIBS)),)
LDLIBS += -lslang
endif
ifneq ($(findstring gtxwc, $(LIBS)),)
ifneq ($(filter gtxwc, $(LIBS)),)
LDLIBS += -lX11
#LIBPATHS += -L/usr/X11R6/lib64
LIBPATHS += -L/usr/X11R6/lib

View File

@@ -42,18 +42,18 @@ LD_OUT := -o
LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := ncurses
endif
LDLIBS += -l$(HB_CRS_LIB)
endif
ifneq ($(findstring gtsln, $(LIBS)),)
ifneq ($(filter gtsln, $(LIBS)),)
LDLIBS += -lslang
endif
ifneq ($(findstring gtxwc, $(LIBS)),)
ifneq ($(filter gtxwc, $(LIBS)),)
LDLIBS += -lX11
#LIBPATHS += -L/usr/X11R6/lib64
LIBPATHS += -L/usr/X11R6/lib

View File

@@ -47,18 +47,18 @@ LD_OUT := -o
LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := ncurses
endif
LDLIBS += -l$(HB_CRS_LIB)
endif
ifneq ($(findstring gtsln, $(LIBS)),)
ifneq ($(filter gtsln, $(LIBS)),)
LDLIBS += -lslang
endif
ifneq ($(findstring gtxwc, $(LIBS)),)
ifneq ($(filter gtxwc, $(LIBS)),)
LDLIBS += -lX11
#LIBPATHS += -L/usr/X11R6/lib64
LIBPATHS += -L/usr/X11R6/lib

View File

@@ -65,18 +65,18 @@ LD_OUT := -o$(subst x,x, )
LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := ncurses
endif
LDLIBS += -l$(HB_CRS_LIB)
endif
ifneq ($(findstring gtsln, $(LIBS)),)
ifneq ($(filter gtsln, $(LIBS)),)
LDLIBS += -lslang
endif
ifneq ($(findstring gtxwc, $(LIBS)),)
ifneq ($(filter gtxwc, $(LIBS)),)
LDLIBS += -lX11
LIBPATHS += -L/usr/X11R6/lib
endif

View File

@@ -46,7 +46,7 @@ LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
# Add the specified GT driver library
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
ifeq ($(C_MAIN),)
ifeq ($(filter os2pm,$(HB_GT_LIB)),os2pm)
# Special handling for PM mode

View File

@@ -42,18 +42,18 @@ LD_OUT := -o
LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := curses
endif
LDLIBS += -l$(HB_CRS_LIB)
endif
ifneq ($(findstring gtsln, $(LIBS)),)
ifneq ($(filter gtsln, $(LIBS)),)
LDLIBS += -lslang
endif
ifneq ($(findstring gtxwc, $(LIBS)),)
ifneq ($(filter gtxwc, $(LIBS)),)
LDLIBS += -lX11
#LIBPATHS += -L/usr/X11R6/lib64
LIBPATHS += -L/usr/X11R6/lib

View File

@@ -71,18 +71,18 @@ LD_OUT := -o$(subst x,x, )
LIBPATHS := -L$(LIB_DIR)
LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
ifneq ($(findstring hbrtl, $(LIBS)),)
ifneq ($(filter hbrtl, $(LIBS)),)
# Add the specified GT driver library
ifneq ($(findstring gtcrs, $(LIBS)),)
ifneq ($(filter gtcrs, $(LIBS)),)
ifeq ($(HB_CRS_LIB),)
HB_CRS_LIB := curses
endif
LDLIBS += -l$(HB_CRS_LIB)
endif
ifneq ($(findstring gtsln, $(LIBS)),)
ifneq ($(filter gtsln, $(LIBS)),)
LDLIBS += -lslang
endif
ifneq ($(findstring gtxwc, $(LIBS)),)
ifneq ($(filter gtxwc, $(LIBS)),)
LDLIBS += -lX11
LIBPATHS += -L/usr/X11R6/lib
endif

View File

@@ -44,7 +44,7 @@ LDLIBS := $(foreach lib,$(LIBS) $(SYSLIBS),-l$(lib))
# Add the standard C main() entry
ifeq ($(HB_MAIN),std)
ifeq ($(findstring hbvm,$(LIBS)),hbvm)
ifeq ($(filter hbrtl,$(LIBS)),hbrtl)
LDLIBS += -lhbmainstd
endif
endif

View File

@@ -189,7 +189,7 @@ HB_ERRCODE hb_rddSelectFirstAvailable( void )
}
/*
* Creare and insert the new WorkArea node
* Create and insert the new WorkArea node
*/
USHORT hb_rddInsertAreaNode( const char *szDriver )
{