2010-07-29 17:31 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* utils/hbrun/hbrun.prg
  * utils/hbrun/hbrun.hbp
  * utils/hbrun/Makefile
    - Deleted "burn-in" trick to tell hbrun where to find the 
      Harbour include dirs. We need to find something universally 
      useful (portable).
This commit is contained in:
Viktor Szakats
2010-07-29 15:31:47 +00:00
parent ff1e787702
commit 642c252c54
4 changed files with 9 additions and 17 deletions

View File

@@ -16,6 +16,14 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-07-29 17:31 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbrun/hbrun.prg
* utils/hbrun/hbrun.hbp
* utils/hbrun/Makefile
- Deleted "burn-in" trick to tell hbrun where to find the
Harbour include dirs. We need to find something universally
useful (portable).
2010-07-29 15:46 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
- mpkg_rpm.sh
- mpkg_rpm_wce.sh

View File

@@ -16,8 +16,4 @@ PRG_MAIN := hbrun.prg
LIBS = hbcplr hbpp hbcommon $(HB_LIBS_MT_RDD)
ifneq ($(HB_INSTALL_INC),)
HB_PRGFLAGS += -D_HBRUN_HB_INSTALL_INC=[$(HB_INSTALL_INC)]
endif
include $(TOP)$(ROOT)config/bin.mk

View File

@@ -19,5 +19,3 @@ hbrun.prg
-icon={allwin}../../package/harb_win.ico
-icon={os2}../../package/harb_os2.ico
{HB_INSTALL_INC}"-prgflag=-D_HBRUN_HB_INSTALL_INC=${HB_INSTALL_INC}"

View File

@@ -86,17 +86,7 @@ STATIC s_cDirBase
/* ********************************************************************** */
PROCEDURE _APPMAIN( cFile, ... )
LOCAL cPath, cDir, cExt
#ifdef _HBRUN_HB_INSTALL_INC
cPath := _HBRUN_HB_INSTALL_INC
hb_FNameSplit( cPath, @cDir )
IF ! Empty( cDir ) .AND. Left( cDir, 1 ) $ hb_osPathDelimiters()
AADD( s_aIncDir, "-I" + cPath )
ENDIF
#else
HB_SYMBOL_UNUSED( cDir )
#endif
LOCAL cPath, cExt
cPath := getenv( "HB_INSTALL_INC" )
IF !EMPTY( cPath )