* source/common/hbver.c
! Version detection fixed for __DMC__
[TOMERGE 1.0.1]
* contrib/mtpl_gcc.mak
% One unnecessary C -I option deleted.
[TOMERGE 1.0.1]
- contrib/hbsqlit2
+ contrib/examples/hbsqlit2
* doc/whatsnew.txt
* Moved hbsqlit2 to examples.
[TOMERGE 1.0.1]
* contrib/examples/hbsqlit2/Makefile
* contrib/examples/hbsqlit2/make_b32.bat
* contrib/examples/hbsqlit2/make_gcc.sh
* contrib/examples/hbsqlit2/make_vc.bat
* contrib/examples/hbsqlit2/common.mak
* contrib/examples/hbsqlit2/tests/bld_b32.bat
* contrib/examples/hbsqlit2/tests/bld_vc.bat
* Modified make files to work from the new location.
* Location of sqlite2 headers can be specified by HB_INC_SQLITE2.
; Notice that sqlite2 lib itself should now be build separately.
[TOMERGE 1.0.1]
32 lines
765 B
Bash
Executable File
32 lines
765 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
if [ "${HB_INC_SQLITE2}" = "" ]
|
|
then
|
|
echo "---------------------------------------------------------------"
|
|
echo "IMPORTANT: You will need SQLite 2.8.16 package package installed and this"
|
|
echo " envvar to be set to successfully build this library:"
|
|
echo " export HB_INC_SQLITE2=C:/sqlite2"
|
|
echo " or"
|
|
echo " export HB_INC_SQLITE2=/usr/include/sqlite2"
|
|
echo "---------------------------------------------------------------"
|
|
exit 1
|
|
fi
|
|
|
|
export HB_ROOT=../../..
|
|
export HB_MAKEFILE=../../mtpl_gcc.mak
|
|
|
|
export CFLAGS=""
|
|
for I in ${HB_INC_SQLITE2}; do
|
|
CFLAGS="${CFLAGS} -I${I}"
|
|
done
|
|
../mtpl_gcc.sh $1 $2 $3 $4 $5 $6 $7 $8 $9
|
|
|
|
unset CFLAGS
|
|
|
|
unset HB_ROOT
|
|
unset HB_MAKEFILE
|