2009-10-09 16:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
- source
+ src
* src/Makefile
* src/dynlib/mt/Makefile
* src/dynlib/Makefile
* INSTALL
* Makefile
* ChangeLog
* harbour.spec
* mpkg_tgz.sh
* Renamed 'source' dir to 'src' to move closer to other FOSS
projects. It's also easier to type, plus it has the side
effect that some cmdlines will be shorter in the
build process.
This commit is contained in:
@@ -17,6 +17,22 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2009-10-09 16:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
- source
|
||||
+ src
|
||||
* src/Makefile
|
||||
* src/dynlib/mt/Makefile
|
||||
* src/dynlib/Makefile
|
||||
* INSTALL
|
||||
* Makefile
|
||||
* ChangeLog
|
||||
* harbour.spec
|
||||
* mpkg_tgz.sh
|
||||
* Renamed 'source' dir to 'src' to move closer to other FOSS
|
||||
projects. It's also easier to type, plus it has the side
|
||||
effect that some cmdlines will be shorter in the
|
||||
build process.
|
||||
|
||||
2009-10-09 10:13 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/source/compiler/hbmain.c
|
||||
! fixed unnecessary hb_xfree() call when given @<name>.clp file
|
||||
@@ -47,7 +63,7 @@
|
||||
|
||||
* contrib/hbsqlit3/hbsqlit3.ch
|
||||
* Formatting.
|
||||
; TOFIX: ? What is the meaning of this snipped in the header:
|
||||
; TOFIX: ? What is the meaning of this snippet in the header:
|
||||
---
|
||||
#ifdef SQLITE_TEXT
|
||||
#undef SQLITE_TEXT
|
||||
|
||||
@@ -195,7 +195,7 @@ HARBOUR
|
||||
you want to [re]build. When starting GNU Make, all components
|
||||
under that dir will be built:
|
||||
|
||||
cd source/rtl
|
||||
cd src/rtl
|
||||
<make> [clean] [install]
|
||||
|
||||
|
||||
@@ -1035,7 +1035,7 @@ HARBOUR
|
||||
'hbmk2 -shared hello.prg'
|
||||
- To build an application out of all .prg and .c sources residing
|
||||
in 'source' subdir:
|
||||
'hbmk2 -omyapp source/*.prg source/*.c'
|
||||
'hbmk2 -omyapp src/*.prg src/*.c'
|
||||
|
||||
Examples to build a Harbour static library:
|
||||
|
||||
|
||||
@@ -9,24 +9,24 @@ include $(ROOT)config/global.mk
|
||||
ifeq ($(HB_BUILD_PARTS),compiler)
|
||||
|
||||
DIRS := \
|
||||
source \
|
||||
utils{source} \
|
||||
src \
|
||||
utils{src} \
|
||||
|
||||
else
|
||||
|
||||
ifeq ($(HB_BUILD_PARTS),lib)
|
||||
HB_UTIL_DIR :=
|
||||
else
|
||||
HB_UTIL_DIR := utils{source}
|
||||
HB_UTIL_DIR := utils{src}
|
||||
endif
|
||||
|
||||
DIRS := \
|
||||
doc \
|
||||
include \
|
||||
external \
|
||||
source{external} \
|
||||
src{external} \
|
||||
$(HB_UTIL_DIR) \
|
||||
contrib{source} \
|
||||
contrib{src} \
|
||||
|
||||
endif
|
||||
|
||||
|
||||
@@ -401,7 +401,7 @@ mkdir -p $HB_INST_PKGPREF%{_mandir}/man1
|
||||
install -m644 doc/man/*.1* $HB_INST_PKGPREF%{_mandir}/man1/
|
||||
|
||||
mkdir -p $HB_INST_PKGPREF$HB_ETC_INSTALL
|
||||
install -m644 source/rtl/gtcrs/hb-charmap.def $HB_INST_PKGPREF$HB_ETC_INSTALL/hb-charmap.def
|
||||
install -m644 src/rtl/gtcrs/hb-charmap.def $HB_INST_PKGPREF$HB_ETC_INSTALL/hb-charmap.def
|
||||
cat > $HB_INST_PKGPREF$HB_ETC_INSTALL/harbour.cfg <<EOF
|
||||
CC=gcc
|
||||
CFLAGS=-c -I$HB_INC_INSTALL
|
||||
|
||||
@@ -118,7 +118,7 @@ $MAKE install "$@" || exit
|
||||
if [ "${hb_sysdir}" = "yes" ]; then
|
||||
|
||||
mkdir -p $HB_INST_PKGPREF$ETC/harbour
|
||||
cp -f source/rtl/gtcrs/hb-charmap.def $HB_INST_PKGPREF$ETC/harbour/hb-charmap.def
|
||||
cp -f src/rtl/gtcrs/hb-charmap.def $HB_INST_PKGPREF$ETC/harbour/hb-charmap.def
|
||||
chmod 644 $HB_INST_PKGPREF$ETC/harbour/hb-charmap.def
|
||||
|
||||
cat > $HB_INST_PKGPREF$ETC/harbour/harbour.cfg <<EOF
|
||||
|
||||
@@ -20,48 +20,48 @@ else
|
||||
ifneq ($(HB_BUILD_DLL),no)
|
||||
|
||||
DYNDIRLIST_BASE := \
|
||||
source/common \
|
||||
source/pp \
|
||||
source/rtl \
|
||||
source/macro \
|
||||
source/lang \
|
||||
source/codepage \
|
||||
source/hbextern \
|
||||
source/rdd \
|
||||
source/rdd/dbfntx \
|
||||
source/rdd/dbfnsx \
|
||||
source/rdd/dbfcdx \
|
||||
source/rdd/dbffpt \
|
||||
source/rdd/hbsix \
|
||||
source/rdd/hsx \
|
||||
source/rdd/usrrdd \
|
||||
source/rtl/gtcgi \
|
||||
source/rtl/gtpca \
|
||||
source/rtl/gtstd
|
||||
src/common \
|
||||
src/pp \
|
||||
src/rtl \
|
||||
src/macro \
|
||||
src/lang \
|
||||
src/codepage \
|
||||
src/hbextern \
|
||||
src/rdd \
|
||||
src/rdd/dbfntx \
|
||||
src/rdd/dbfnsx \
|
||||
src/rdd/dbfcdx \
|
||||
src/rdd/dbffpt \
|
||||
src/rdd/hbsix \
|
||||
src/rdd/hsx \
|
||||
src/rdd/usrrdd \
|
||||
src/rtl/gtcgi \
|
||||
src/rtl/gtpca \
|
||||
src/rtl/gtstd
|
||||
|
||||
ifeq ($(HB_PLATFORM),dos)
|
||||
DYNDIRLIST_BASE += source/rtl/gtdos
|
||||
DYNDIRLIST_BASE += src/rtl/gtdos
|
||||
endif
|
||||
ifeq ($(HB_PLATFORM),os2)
|
||||
DYNDIRLIST_BASE += source/rtl/gtos2
|
||||
DYNDIRLIST_BASE += src/rtl/gtos2
|
||||
endif
|
||||
ifeq ($(HB_PLATFORM),wce)
|
||||
DYNDIRLIST_BASE += source/rtl/gtwvt source/rtl/gtgui
|
||||
DYNDIRLIST_BASE += src/rtl/gtwvt src/rtl/gtgui
|
||||
endif
|
||||
ifeq ($(HB_PLATFORM),win)
|
||||
DYNDIRLIST_BASE += source/rtl/gtwvt source/rtl/gtgui source/rtl/gtwin
|
||||
DYNDIRLIST_BASE += src/rtl/gtwvt src/rtl/gtgui src/rtl/gtwin
|
||||
endif
|
||||
ifneq ($(HB_PLATFORM_UNIX),)
|
||||
DYNDIRLIST_BASE += source/rtl/gttrm
|
||||
DYNDIRLIST_BASE += source/rtl/gtcrs
|
||||
DYNDIRLIST_BASE += source/rtl/gtsln
|
||||
DYNDIRLIST_BASE += source/rtl/gtxwc
|
||||
DYNDIRLIST_BASE += src/rtl/gttrm
|
||||
DYNDIRLIST_BASE += src/rtl/gtcrs
|
||||
DYNDIRLIST_BASE += src/rtl/gtsln
|
||||
DYNDIRLIST_BASE += src/rtl/gtxwc
|
||||
endif
|
||||
ifeq ($(HB_COMPILER),watcom)
|
||||
DYNDIRLIST_BASE += source/vm/maindllh
|
||||
DYNDIRLIST_BASE += src/vm/maindllh
|
||||
endif
|
||||
ifeq ($(HB_COMPILER),xcc)
|
||||
DYNDIRLIST_BASE += source/vm/maindllh
|
||||
DYNDIRLIST_BASE += src/vm/maindllh
|
||||
endif
|
||||
|
||||
ifneq ($(HB_HAS_PCRE_LOCAL),)
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user