2009-06-11 21:01 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* source/rtl/gtdos/Makefile
  * source/rtl/gtwin/Makefile
  * source/rtl/gtos2/Makefile
  * source/rtl/gtgui/Makefile
  * source/rtl/gtwvt/Makefile
    + Added architecture protection.
      Just a step to make them all self detecting.

  * mpkg_win.nsi
    * Updated links installed.

  * examples/superlib/readme.txt
  * examples/dbu/readme.txt
  * examples/rl/readme.txt
    ! Fixed my typo in hbformat cmdline.
This commit is contained in:
Viktor Szakats
2009-06-11 19:05:34 +00:00
parent 0c5fc764f2
commit 4b17624bbf
10 changed files with 83 additions and 20 deletions

View File

@@ -17,13 +17,30 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-11 21:01 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/rtl/gtdos/Makefile
* source/rtl/gtwin/Makefile
* source/rtl/gtos2/Makefile
* source/rtl/gtgui/Makefile
* source/rtl/gtwvt/Makefile
+ Added architecture protection.
Just a step to make them all self detecting.
* mpkg_win.nsi
* Updated links installed.
* examples/superlib/readme.txt
* examples/dbu/readme.txt
* examples/rl/readme.txt
! Fixed my typo in hbformat cmdline.
2009-06-11 22:57 UTC+0300 Alexander Kresin <alex at belacy.belgorod.su>
* source/debug/tbrwtext.prg
! Bug fixed in Search() method.
2009-06-11 17:46 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* INSTALL
- Deleted link to clc newgroup.
- Deleted link to clc newsgroup.
* contrib/hbsqlit3/hbsqlit3.c
+ Now all Harbour callable functions are always defined

View File

@@ -7,7 +7,7 @@
2.) *nix users will need convert original filenames to lowercase
and EOLs to native format, using this command:
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpace=no *.prg
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no *.prg
3.) Apply supplied patch to the source using GNU Patch:

View File

@@ -7,7 +7,7 @@
2.) *nix users will need convert original filenames to lowercase
and EOLs to native format, using this command:
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpace=no *.prg
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no *.prg
3.) Apply supplied patch to the source using GNU Patch:
patch -N -i rl.dif

View File

@@ -9,7 +9,7 @@
3.) *nix users will need convert original filenames to lowercase
and EOLs to native format, using this command:
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpace=no *.prg
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no *.prg
4.) Apply supplied patch to the source using GNU Patch:
patch -N -i hbsuper.dif

View File

@@ -126,12 +126,12 @@ Section "Start Menu and Desktop icons" hb_shortcuts
CreateShortCut "$SMPROGRAMS\Harbour Project\Harbour Project.lnk" "$INSTDIR" "" "$INSTDIR" 0
CreateShortCut "$SMPROGRAMS\Harbour Project\hbrun.lnk" "$INSTDIR\bin\hbrun.exe" "-v" "$INSTDIR\bin\hbrun.exe" 0
CreateDirectory "$SMPROGRAMS\Harbour Project\Links"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Home.url" "InternetShortcut" "URL" "http://www.harbour-project.org/"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Mailing lists.url" "InternetShortcut" "URL" "http://www.harbour-project.org/mailing.html"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Developers' mail archives.url" "InternetShortcut" "URL" "http://lists.harbour-project.org/pipermail/harbour/"
; WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Users' mail archives.url" "InternetShortcut" "URL" "http://lists.harbour-project.org/pipermail/harbour-users/"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Sourceforge page.url" "InternetShortcut" "URL" "http://sourceforge.net/projects/harbour-project/"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Development timeline.url" "InternetShortcut" "URL" "http://apps.sourceforge.net/trac/harbour-project/timeline"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Homepage.url" "InternetShortcut" "URL" "http://www.harbour-project.org/"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\User Forums.url" "InternetShortcut" "URL" "http://apps.sourceforge.net/phpbb/harbour-project/"
; WriteINIStr "$SMPROGRAMS\Harbour Project\Links\User Newsgroup.url" "InternetShortcut" "URL" "http://groups.google.com/group/comp.lang.clipper/"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Sourceforge Page.url" "InternetShortcut" "URL" "http://sourceforge.net/projects/harbour-project/"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Developers' Mail Archives.url" "InternetShortcut" "URL" "http://lists.harbour-project.org/pipermail/harbour/"
WriteINIStr "$SMPROGRAMS\Harbour Project\Links\Development Timeline.url" "InternetShortcut" "URL" "http://apps.sourceforge.net/trac/harbour-project/timeline"
SectionEnd

View File

@@ -4,9 +4,15 @@
ROOT = ../../../
LIBNAME=gtdos
ifeq ($(HB_ARCHITECTURE),dos)
C_SOURCES=\
gtdos.c \
LIBNAME=gtdos
include $(TOP)$(ROOT)config/lib.cf
else
include $(TOP)$(ROOT)config/none.cf
endif

View File

@@ -4,9 +4,23 @@
ROOT = ../../../
LIBNAME=gtgui
HB_WITH_GTGUI=no
ifeq ($(HB_ARCHITECTURE),win)
HB_WITH_GTGUI=yes
endif
ifeq ($(HB_ARCHITECTURE),wce)
HB_WITH_GTGUI=yes
endif
ifeq ($(HB_WITH_GTGUI),yes)
C_SOURCES=\
gtgui.c \
LIBNAME=gtgui
include $(TOP)$(ROOT)config/lib.cf
else
include $(TOP)$(ROOT)config/none.cf
endif

View File

@@ -4,9 +4,15 @@
ROOT = ../../../
LIBNAME=gtos2
ifeq ($(HB_ARCHITECTURE),os2)
C_SOURCES=\
gtos2.c \
LIBNAME=gtos2
include $(TOP)$(ROOT)config/lib.cf
else
include $(TOP)$(ROOT)config/none.cf
endif

View File

@@ -4,9 +4,15 @@
ROOT = ../../../
LIBNAME=gtwin
ifeq ($(HB_ARCHITECTURE),win)
C_SOURCES=\
gtwin.c \
LIBNAME=gtwin
include $(TOP)$(ROOT)config/lib.cf
else
include $(TOP)$(ROOT)config/none.cf
endif

View File

@@ -4,9 +4,23 @@
ROOT = ../../../
LIBNAME=gtwvt
HB_WITH_GTWVT=no
ifeq ($(HB_ARCHITECTURE),win)
HB_WITH_GTWVT=yes
endif
ifeq ($(HB_ARCHITECTURE),wce)
HB_WITH_GTWVT=yes
endif
ifeq ($(HB_WITH_GTWVT),yes)
C_SOURCES=\
gtwvt.c \
LIBNAME=gtwvt
include $(TOP)$(ROOT)config/lib.cf
else
include $(TOP)$(ROOT)config/none.cf
endif