2008-09-17 14:04 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* bin/hb-mkslib.sh
  * make_xmingwce.sh
  * make_gcc.sh
  * make_xmingw.sh
  * make_gnu.sh
  * make_tgz.sh
    + Added SunOS platform detection as an attempt to make 
      make_tgz.sh work on OpenSolaris.
    ; NOFIX: Still, when trying to use make_tgz.sh in OpenSolaris, 
             I'm getting these errors:
             ---
             ld: fatal: library -lharbour: not found
             ld: fatal: library -lncurses: not found
             ---
             gtar: wheel: %s: Invalid group
This commit is contained in:
Viktor Szakats
2008-09-17 12:11:41 +00:00
parent 7a29cb3007
commit f182ba5a3f
7 changed files with 38 additions and 15 deletions

View File

@@ -8,6 +8,23 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-17 14:04 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* bin/hb-mkslib.sh
* make_xmingwce.sh
* make_gcc.sh
* make_xmingw.sh
* make_gnu.sh
* make_tgz.sh
+ Added SunOS platform detection as an attempt to make
make_tgz.sh work on OpenSolaris.
; NOFIX: Still, when trying to use make_tgz.sh in OpenSolaris,
I'm getting these errors:
---
ld: fatal: library -lharbour: not found
ld: fatal: library -lncurses: not found
---
gtar: wheel: %s: Invalid group
2008-09-17 13:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* tests/memtst.prg
* tests/speedtst.prg

View File

@@ -25,11 +25,12 @@ fi
linker_options=""
case "$hb_arch" in
*windows*|*mingw32*|msys*) hb_arch="w32" ;;
*os/2*) hb_arch="os2" ;;
*dos) hb_arch="dos" ;;
*bsd) hb_arch="bsd" ;;
*darwin) hb_arch="darwin" ;;
*windows*|*mingw32*|msys*) hb_arch="w32" ;;
*os/2*) hb_arch="os2" ;;
*dos) hb_arch="dos" ;;
*bsd) hb_arch="bsd" ;;
*darwin) hb_arch="darwin" ;;
*SunOS) hb_arch="sunos" ;;
esac
case "$hb_arch" in

View File

@@ -20,6 +20,7 @@ if [ -z "$HB_ARCHITECTURE" ]; then
*dos) hb_arch="dos" ;;
*bsd) hb_arch="bsd" ;;
*darwin) hb_arch="darwin" ;;
*SunOS) hb_arch="sunos" ;;
esac
fi
export HB_ARCHITECTURE="$hb_arch"

View File

@@ -21,11 +21,12 @@ if [ -z "$HB_ARCHITECTURE" ]; then
else
hb_arch=`uname -s | tr -d "[-]" | tr '[A-Z]' '[a-z]' 2>/dev/null`
case "$hb_arch" in
*windows*|*mingw32*|msys*) hb_arch="w32" ;;
*os/2*) hb_arch="os2" ;;
*dos) hb_arch="dos" ;;
*bsd) hb_arch="bsd" ;;
*darwin) hb_arch="darwin" ;;
*windows*|*mingw32*|msys*) hb_arch="w32" ;;
*os/2*) hb_arch="os2" ;;
*dos) hb_arch="dos" ;;
*bsd) hb_arch="bsd" ;;
*darwin) hb_arch="darwin" ;;
*SunOS) hb_arch="sunos" ;;
esac
fi
export HB_ARCHITECTURE="$hb_arch"

View File

@@ -42,11 +42,12 @@ if [ -z "$HB_ARCHITECTURE" ]; then
else
hb_arch=`uname -s | tr -d "[-]" | tr '[A-Z]' '[a-z]' 2>/dev/null`
case "$hb_arch" in
*windows*|*mingw32*|msys*) hb_arch="w32" ;;
*os/2*) hb_arch="os2" ;;
*dos) hb_arch="dos" ;;
*bsd) hb_arch="bsd" ;;
*darwin) hb_arch="darwin" ;;
*windows*|*mingw32*|msys*) hb_arch="w32" ;;
*os/2*) hb_arch="os2" ;;
*dos) hb_arch="dos" ;;
*bsd) hb_arch="bsd" ;;
*darwin) hb_arch="darwin" ;;
*SunOS) hb_arch="sunos" ;;
esac
fi
export HB_ARCHITECTURE="$hb_arch"

View File

@@ -31,6 +31,7 @@ else
*dos) HB_HOST_ARCH="dos" ;;
*bsd) HB_HOST_ARCH="bsd" ;;
*darwin) HB_HOST_ARCH="darwin" ;;
*SunOS) HB_HOST_ARCH="sunos" ;;
esac
fi

View File

@@ -31,6 +31,7 @@ else
*dos) HB_HOST_ARCH="dos" ;;
*bsd) HB_HOST_ARCH="bsd" ;;
*darwin) HB_HOST_ARCH="darwin" ;;
*SunOS) HB_HOST_ARCH="sunos" ;;
esac
fi