* contrib/make_b32_all.bat
* contrib/make_gcc_all.sh
* contrib/make_vc_all.bat
+ contrib/hbsqlit2
+ contrib/hbsqlit2/Makefile
+ contrib/hbsqlit2/make_b32.bat
+ contrib/hbsqlit2/make_vc.bat
+ contrib/hbsqlit2/make_gcc.sh
+ contrib/hbsqlit2/common.mak
+ contrib/hbsqlit2/hbsqlit2.c
+ contrib/hbsqlit2/hbsqlit2.ch
+ contrib/hbsqlit2/LICENSE.txt
+ contrib/hbsqlit2/TODO.txt
+ contrib/hbsqlit2/readme.txt
+ contrib/hbsqlit2/attach.c
+ contrib/hbsqlit2/auth.c
+ contrib/hbsqlit2/btree.c
+ contrib/hbsqlit2/btree.h
+ contrib/hbsqlit2/btree_rb.c
+ contrib/hbsqlit2/build.c
+ contrib/hbsqlit2/config.h
+ contrib/hbsqlit2/copy.c
+ contrib/hbsqlit2/date.c
+ contrib/hbsqlit2/delete.c
+ contrib/hbsqlit2/encode.c
+ contrib/hbsqlit2/expr.c
+ contrib/hbsqlit2/func.c
+ contrib/hbsqlit2/hash.c
+ contrib/hbsqlit2/hash.h
+ contrib/hbsqlit2/insert.c
+ contrib/hbsqlit2/main.c
+ contrib/hbsqlit2/opcodes.c
+ contrib/hbsqlit2/opcodes.h
+ contrib/hbsqlit2/os.c
+ contrib/hbsqlit2/os.h
+ contrib/hbsqlit2/pager.c
+ contrib/hbsqlit2/pager.h
+ contrib/hbsqlit2/parse.c
+ contrib/hbsqlit2/parse.h
+ contrib/hbsqlit2/pragma.c
+ contrib/hbsqlit2/printf.c
+ contrib/hbsqlit2/random.c
+ contrib/hbsqlit2/select.c
+ contrib/hbsqlit2/sqlite.h
+ contrib/hbsqlit2/sqliteInt.h
+ contrib/hbsqlit2/table.c
+ contrib/hbsqlit2/tokenize.c
+ contrib/hbsqlit2/trigger.c
+ contrib/hbsqlit2/update.c
+ contrib/hbsqlit2/util.c
+ contrib/hbsqlit2/vacuum.c
+ contrib/hbsqlit2/vdbe.c
+ contrib/hbsqlit2/vdbe.h
+ contrib/hbsqlit2/vdbeaux.c
+ contrib/hbsqlit2/vdbeInt.h
+ contrib/hbsqlit2/where.c
+ contrib/hbsqlit2/tests/bld_b32.bat
+ contrib/hbsqlit2/tests/bld_vc.bat
+ contrib/hbsqlit2/tests/example.db
+ contrib/hbsqlit2/tests/hbsqlite.prg
+ Added hbsqlit2 SQLite 2.x interface library.
With kind permission from the author:
Alejandro de Gárate <alex_degarate/at/hotmail.com>
+ Some renames were done here too to better fit into
the contrib structure.
+ Added std make files.
+ Added to 'all' make files.
+ Added foreign SQLite 2.8.16 (final 2.x version)
source code to the repository.
Compiles with an okay amount of warnings under BCC but
doesn't compile in C++ mode in MSVC (due to missing
casts).
; NOTE: I've added this because this is the original
SQLite Harbour interface, clean and working
implementation, and SQLite 2 is incompatible
with 3, and some may need to access existing
2.x databases from Harbour.
72 lines
3.1 KiB
Batchfile
72 lines
3.1 KiB
Batchfile
@echo off
|
|
rem
|
|
rem $Id$
|
|
rem
|
|
|
|
rem *******************************************************
|
|
rem Bat file for creating (almost all) contrib libs
|
|
rem for Harbour Project for Microsoft Visual C/C++
|
|
rem *******************************************************
|
|
|
|
rem *******************************************************
|
|
rem Copyright 2007 Marek Paliwoda (mpaliwoda "at" interia "dot" pl)
|
|
rem See doc/license.txt for licensing terms.
|
|
rem *******************************************************
|
|
|
|
rem *******************************************************
|
|
rem The compilation is done in three steps. PLEASE DO NOT MODIFY IT
|
|
rem or you will break a Windows9x command.com line length limit !!!
|
|
rem *******************************************************
|
|
|
|
set HB_SHOW_ERRORS=no
|
|
|
|
rem *******************************************************
|
|
rem Creating a worker bat file ...
|
|
rem *******************************************************
|
|
|
|
set _HB_BATWORKER=_hbwrk_.bat
|
|
|
|
echo @echo off >%_HB_BATWORKER%
|
|
echo if %%1x == x goto EXIT >>%_HB_BATWORKER%
|
|
echo if not exist %%1\make_vc.bat goto EXIT >>%_HB_BATWORKER%
|
|
echo echo Entering: %%1 >>%_HB_BATWORKER%
|
|
echo cd %%1 >>%_HB_BATWORKER%
|
|
echo call make_vc.bat %%2 %%3 %%4 %%5 %%6 %%7 %%8 %%9 >>%_HB_BATWORKER%
|
|
echo cd .. >>%_HB_BATWORKER%
|
|
echo :EXIT >>%_HB_BATWORKER%
|
|
|
|
rem *******************************************************
|
|
rem Compiling contrib dirs ...
|
|
rem *******************************************************
|
|
|
|
set _HB_DIRS=rddado hbbmcdx hbbtree gtwvg hbct hbgt hbmisc hbnf
|
|
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %_HB_BATWORKER% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
|
|
|
|
set _HB_DIRS=hbmsql hbmzip hbole hbziparch hbodbc hbsqlit2 hbsqlit3
|
|
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %_HB_BATWORKER% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
|
|
|
|
set _HB_DIRS=hbtpathy hbtip hbvpdf hbw32 hbwhat32 xhb
|
|
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %_HB_BATWORKER% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
|
|
|
|
set _HB_DIRS=hbclipsm hbw32ddr
|
|
if not "%HB_DIR_APOLLO%" == "" set _HB_DIRS=%_HB_DIRS% hbapollo
|
|
if not "%HB_DIR_FIREBIRD%" == "" set _HB_DIRS=%_HB_DIRS% hbfbird
|
|
if not "%HB_DIR_FREEIMAGE%" == "" set _HB_DIRS=%_HB_DIRS% hbfimage
|
|
if not "%HB_DIR_GD%" == "" set _HB_DIRS=%_HB_DIRS% hbgd
|
|
if not "%HB_DIR_MYSQL%" == "" set _HB_DIRS=%_HB_DIRS% hbmysql
|
|
if not "%HB_DIR_PGSQL%" == "" set _HB_DIRS=%_HB_DIRS% hbpgsql
|
|
if not "%HB_DIR_ADS%" == "" set _HB_DIRS=%_HB_DIRS% rddads
|
|
if not "%HB_DIR_LIBHARU%" == "" set _HB_DIRS=%_HB_DIRS% hbhpdf
|
|
if not "%HB_DIR_CURL%" == "" set _HB_DIRS=%_HB_DIRS% hbcurl
|
|
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %_HB_BATWORKER% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
|
|
|
|
rem *******************************************************
|
|
rem Cleaning ...
|
|
rem *******************************************************
|
|
|
|
del %_HB_BATWORKER% > nul
|
|
|
|
set _HB_DIRS=
|
|
set _HB_BATWORKER=
|
|
set HB_SHOW_ERRORS=
|