diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ba9e15de07..43f1f6356d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,33 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-16 18:48 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + - contrib/hbct/tests/hbmk.bat + - contrib/hbcurl/tests/hbmk.bat + + contrib/hbcurl/tests/hbcurl.hbp + - contrib/hbclipsm/tests/hbmk.bat + + contrib/hbclipsm/tests/hbclipsm.hbp + - contrib/hbcrypt/tests/hbmk.bat + + contrib/hbcrypt/tests/hbcrypt.hbp + - contrib/examples/pp/hbmk.bat + + contrib/examples/pp/pp.hbm + - contrib/examples/guestbk/hbmk.bat + + contrib/examples/guestbk/guestbk.hbm + - contrib/examples/pe/hbmk.bat + + contrib/examples/pe/pe.hbm + - contrib/examples/hbsqlit2/tests/hbmk.bat + + contrib/examples/hbsqlit2/tests/hbsqlit2.hbp + - contrib/examples/hscript/hbmk.bat + + contrib/examples/hscript/hscript.hbm + - utils/hbdoc/hbmk.bat + + utils/hbdoc/hbdoc.hbm + * Converted some DOS/WIN batch files to platform + independent .hbm/.hbp files. + ; Please test them. + + * ChangeLog + + Marked DBCREATETEMP() as DONE. + 2009-02-16 18:30 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * include/hbextern.ch + Added HB_DBCREATETEMP() @@ -32,8 +59,8 @@ * harbour/source/rdd/dbcmd.c + added .prg function to create temporary files: - dbCreateTemp( , , , ; - , ) -> + hb_dbCreateTemp( , , , ; + , ) -> Not all RDDs have to support it. It's verified by support for DBI_ISTEMPORARY dbInfo() action. @@ -4699,11 +4726,12 @@ GETE[NV](), HB_GETENV(), __RUN(), HB_RUN(), HB_ARGSTRING(), HB_CMDLINE(). - ; TODO: dbCreateTemp( , , , , ) -> + ; TODO: hb_dbCreateTemp( , , , ) -> Generates and opens a new dbf with a temporary filename in exclusive mode, deletes it automatically when closed. All indexes created for this table, should ideally have the temporary flag on, so those get deleted too, when closed. + [DONE] ; TOFIX: hb_regex*() functions will not honor Harbour CP setting, when case insensitivity is selected. diff --git a/harbour/contrib/examples/guestbk/guestbk.hbm b/harbour/contrib/examples/guestbk/guestbk.hbm new file mode 100644 index 0000000000..2d3586cd1e --- /dev/null +++ b/harbour/contrib/examples/guestbk/guestbk.hbm @@ -0,0 +1,5 @@ +# +# $Id$ +# + +guestbk.prg inifiles.prg testcgi.prg diff --git a/harbour/contrib/examples/guestbk/hbmk.bat b/harbour/contrib/examples/guestbk/hbmk.bat deleted file mode 100644 index 40e7d24b25..0000000000 --- a/harbour/contrib/examples/guestbk/hbmk.bat +++ /dev/null @@ -1,5 +0,0 @@ -@rem -@rem $Id$ -@rem - -@..\..\..\bin\hbmk %* guestbk.prg inifiles.prg testcgi.prg diff --git a/harbour/contrib/examples/hbsqlit2/tests/hbmk.bat b/harbour/contrib/examples/hbsqlit2/tests/hbmk.bat deleted file mode 100644 index 6fb2725daf..0000000000 --- a/harbour/contrib/examples/hbsqlit2/tests/hbmk.bat +++ /dev/null @@ -1,7 +0,0 @@ -@rem -@rem $Id$ -@rem - -@set HB_USER_LIBS=hbsqlit2.lib sqlite2.lib - -@..\..\..\..\bin\hbmk %* diff --git a/harbour/contrib/examples/hbsqlit2/tests/hbsqlit2.hbp b/harbour/contrib/examples/hbsqlit2/tests/hbsqlit2.hbp new file mode 100644 index 0000000000..d81c98a9a3 --- /dev/null +++ b/harbour/contrib/examples/hbsqlit2/tests/hbsqlit2.hbp @@ -0,0 +1,5 @@ +# +# $Id$ +# + +libs=hbsqlit2 sqlite2 diff --git a/harbour/contrib/examples/hscript/hbmk.bat b/harbour/contrib/examples/hscript/hbmk.bat deleted file mode 100644 index cee99c432d..0000000000 --- a/harbour/contrib/examples/hscript/hbmk.bat +++ /dev/null @@ -1,7 +0,0 @@ -@rem -@rem $Id$ -@rem - -@set HB_USER_LIBS=hbnf.lib - -@..\..\..\bin\hbmk %* hscript.prg diff --git a/harbour/contrib/examples/hscript/hscript.hbm b/harbour/contrib/examples/hscript/hscript.hbm new file mode 100644 index 0000000000..fbe7df444d --- /dev/null +++ b/harbour/contrib/examples/hscript/hscript.hbm @@ -0,0 +1,5 @@ +# +# $Id$ +# + +hscript.prg -lhbnf diff --git a/harbour/contrib/examples/pe/hbmk.bat b/harbour/contrib/examples/pe/hbmk.bat deleted file mode 100644 index d2a74f4eab..0000000000 --- a/harbour/contrib/examples/pe/hbmk.bat +++ /dev/null @@ -1,5 +0,0 @@ -@rem -@rem $Id$ -@rem - -@..\..\..\bin\hbmk %* pe.prg editorhi.prg editorlo.c diff --git a/harbour/contrib/examples/pe/pe.hbm b/harbour/contrib/examples/pe/pe.hbm new file mode 100644 index 0000000000..02c52e7115 --- /dev/null +++ b/harbour/contrib/examples/pe/pe.hbm @@ -0,0 +1,5 @@ +# +# $Id$ +# + +pe.prg editorhi.prg editorlo.c diff --git a/harbour/contrib/examples/pp/hbmk.bat b/harbour/contrib/examples/pp/hbmk.bat deleted file mode 100644 index fc91513ed5..0000000000 --- a/harbour/contrib/examples/pp/hbmk.bat +++ /dev/null @@ -1,5 +0,0 @@ -@rem -@rem $Id$ -@rem - -@..\..\..\bin\hbmk %* pp.c hbppcomp.c hbppcore.c hbpptbl.c hbpragma.c diff --git a/harbour/contrib/examples/pp/pp.hbm b/harbour/contrib/examples/pp/pp.hbm new file mode 100644 index 0000000000..5cfe74b4fa --- /dev/null +++ b/harbour/contrib/examples/pp/pp.hbm @@ -0,0 +1,5 @@ +# +# $Id$ +# + +pp.c hbppcomp.c hbppcore.c hbpptbl.c hbpragma.c diff --git a/harbour/contrib/hbclipsm/tests/hbclipsm.hbp b/harbour/contrib/hbclipsm/tests/hbclipsm.hbp new file mode 100644 index 0000000000..5c69edd259 --- /dev/null +++ b/harbour/contrib/hbclipsm/tests/hbclipsm.hbp @@ -0,0 +1,5 @@ +# +# $Id$ +# + +libs=hbclipsm diff --git a/harbour/contrib/hbclipsm/tests/hbmk.bat b/harbour/contrib/hbclipsm/tests/hbmk.bat deleted file mode 100644 index a9cc2df030..0000000000 --- a/harbour/contrib/hbclipsm/tests/hbmk.bat +++ /dev/null @@ -1,7 +0,0 @@ -@rem -@rem $Id$ -@rem - -@set HB_USER_LIBS=hbclipsm.lib - -@..\..\..\bin\hbmk %* diff --git a/harbour/contrib/hbcrypt/tests/hbcrypt.hbp b/harbour/contrib/hbcrypt/tests/hbcrypt.hbp new file mode 100644 index 0000000000..a224628080 --- /dev/null +++ b/harbour/contrib/hbcrypt/tests/hbcrypt.hbp @@ -0,0 +1,5 @@ +# +# $Id$ +# + +libs=hbcrypt diff --git a/harbour/contrib/hbcrypt/tests/hbmk.bat b/harbour/contrib/hbcrypt/tests/hbmk.bat deleted file mode 100644 index 8b252c3e20..0000000000 --- a/harbour/contrib/hbcrypt/tests/hbmk.bat +++ /dev/null @@ -1,7 +0,0 @@ -@rem -@rem $Id$ -@rem - -@set HB_USER_LIBS=hbcrypt.lib - -@..\..\..\bin\hbmk %* diff --git a/harbour/contrib/hbct/tests/hbct.hbp b/harbour/contrib/hbct/tests/hbct.hbp index 571e0bd406..e95d25fef2 100644 --- a/harbour/contrib/hbct/tests/hbct.hbp +++ b/harbour/contrib/hbct/tests/hbct.hbp @@ -1,5 +1,5 @@ -# -# $Id$ -# - -libs=hbct +# +# $Id$ +# + +libs=hbct diff --git a/harbour/contrib/hbct/tests/hbmk.bat b/harbour/contrib/hbct/tests/hbmk.bat deleted file mode 100644 index fe61927507..0000000000 --- a/harbour/contrib/hbct/tests/hbmk.bat +++ /dev/null @@ -1,7 +0,0 @@ -@rem -@rem $Id$ -@rem - -@set HB_USER_LIBS=hbct.lib - -@..\..\..\bin\hbmk %* diff --git a/harbour/contrib/hbcurl/tests/hbcurl.hbp b/harbour/contrib/hbcurl/tests/hbcurl.hbp new file mode 100644 index 0000000000..2f166e9b77 --- /dev/null +++ b/harbour/contrib/hbcurl/tests/hbcurl.hbp @@ -0,0 +1,5 @@ +# +# $Id$ +# + +libs=hbcurl libcurl diff --git a/harbour/contrib/hbcurl/tests/hbmk.bat b/harbour/contrib/hbcurl/tests/hbmk.bat deleted file mode 100644 index 996ed7e117..0000000000 --- a/harbour/contrib/hbcurl/tests/hbmk.bat +++ /dev/null @@ -1,7 +0,0 @@ -@rem -@rem $Id$ -@rem - -@set HB_USER_LIBS=hbcurl.lib libcurl.lib - -@..\..\..\bin\hbmk %* diff --git a/harbour/utils/hbdoc/hbdoc.hbm b/harbour/utils/hbdoc/hbdoc.hbm new file mode 100644 index 0000000000..3644ff1e69 --- /dev/null +++ b/harbour/utils/hbdoc/hbdoc.hbm @@ -0,0 +1,5 @@ +# +# $Id$ +# + +hbdoc.prg ft_funcs.prg genasc.prg genchm.prg genhpc.prg genhtm.prg genng.prg genos2.prg genpdf1.prg genrtf.prg gentrf.prg hbdfrdln.c diff --git a/harbour/utils/hbdoc/hbmk.bat b/harbour/utils/hbdoc/hbmk.bat deleted file mode 100644 index 08987a9a61..0000000000 --- a/harbour/utils/hbdoc/hbmk.bat +++ /dev/null @@ -1,5 +0,0 @@ -@rem -@rem $Id$ -@rem - -@..\..\bin\hbmk hbdoc.prg ft_funcs.prg genasc.prg genchm.prg genhpc.prg genhtm.prg genng.prg genos2.prg genpdf1.prg genrtf.prg gentrf.prg hbdfrdln.c