2009-08-11 00:45 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* source/rdd/Makefile
  * config/global.cf
  * config/bin.cf
    * Simple rename of two internal vars:
        HB_DB_DRIVERS -> HB_RDD_LIBS
        HB_DB_DIRS    -> HB_RDD_DIRS
    + Added some names to non-standard build configuration setting
      collection.
This commit is contained in:
Viktor Szakats
2009-08-10 22:45:34 +00:00
parent b41df4d1ad
commit 97e239dc73
4 changed files with 18 additions and 7 deletions

View File

@@ -17,6 +17,16 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-08-11 00:45 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/rdd/Makefile
* config/global.cf
* config/bin.cf
* Simple rename of two internal vars:
HB_DB_DRIVERS -> HB_RDD_LIBS
HB_DB_DIRS -> HB_RDD_DIRS
+ Added some names to non-standard build configuration setting
collection.
2009-08-11 00:41 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/bin.cf
* Minor formatting to liblist template.

View File

@@ -36,7 +36,7 @@ ifeq ($(findstring -DHB_EXT_ZLIB, $(HB_USER_CFLAGS)),)
endif
# Create a few common core lib lists
_HB_RDD := hbrdd $(HB_DB_DRIVERS)
_HB_RDD := hbrdd $(HB_RDD_LIBS)
_HB_VM := hbvm
HB_LIBS_ST_RDD := $(HB_LIBS_TPL)
_HB_VM := hbvmmt

View File

@@ -175,7 +175,8 @@ ifeq ($(HB_CONFIG_SHOWN),)
ifneq ($(MAKE_381),)
# Some additional ones to be given a standard name:
# HB_HOST_BUILD, HB_XBUILD, HB_WITHOUT_*, HB_REBUILD_PARSER
# HB_HOST_BUILD, HB_XBUILD, HB_WITHOUT_*, HB_REBUILD_PARSER, HB_DB_DRVEXT
# HB_COMMERCE, HB_CRS_LIB
ifeq ($(HB_DYNLIB),yes)
$(info ! Dynamic library creation phase)
@@ -635,7 +636,7 @@ HB_GT_LIBS := \
gtstd \
# Names of valid RDD libraries
HB_DB_DRIVERS := \
HB_RDD_LIBS := \
rddntx \
rddnsx \
rddcdx \
@@ -646,7 +647,7 @@ HB_DB_DRIVERS := \
hbuddall \
# Names of valid RDD subdirectories
HB_DB_DIRS := \
HB_RDD_DIRS := \
dbfntx \
dbfnsx \
dbfcdx \
@@ -657,8 +658,8 @@ HB_DB_DIRS := \
usrrdd/rdds \
ifneq ($(HB_DB_DRVEXT),)
HB_DB_DRIVERS += $(HB_DB_DRVEXT)
HB_DB_DIRS += $(HB_DB_DRVEXT)
HB_RDD_LIBS += $(HB_DB_DRVEXT)
HB_RDD_DIRS += $(HB_DB_DRVEXT)
endif
ifneq ($(HB_INSTALL_PREFIX),)

View File

@@ -56,7 +56,7 @@ PRG_SOURCES := \
LIBNAME := hbrdd
# The list of all valid DB drivers is defined in config/global.cf.
DIRS = nulsys $(HB_DB_DIRS)
DIRS = nulsys $(HB_RDD_DIRS)
include $(TOP)$(ROOT)config/lib.cf
include $(TOP)$(ROOT)config/dir.cf