2008-07-02 21:26 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/make_xmingwce.sh
* harbour/bin/hb-mkslib.sh
* harbour/make_tgz.sh
+ added Darwin and OS2 to architecure autodetection.
This commit is contained in:
@@ -8,6 +8,12 @@
|
||||
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2008-07-02 21:26 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/make_xmingwce.sh
|
||||
* harbour/bin/hb-mkslib.sh
|
||||
* harbour/make_tgz.sh
|
||||
+ added Darwin and OS2 to architecure autodetection.
|
||||
|
||||
2008-07-02 20:56 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
|
||||
* make_gcc.sh
|
||||
* make_gnu.sh
|
||||
|
||||
@@ -24,13 +24,16 @@ fi
|
||||
|
||||
case "$hb_arch" in
|
||||
*windows*|*mingw32*|msys*) hb_arch="w32" ;;
|
||||
*dos) hb_arch="dos" ;;
|
||||
*bsd) hb_arch="bsd" ;;
|
||||
*os/2*) hb_arch="os2" ;;
|
||||
*dos) hb_arch="dos" ;;
|
||||
*bsd) hb_arch="bsd" ;;
|
||||
*darwin) hb_arch="darwin" ;;
|
||||
esac
|
||||
|
||||
case "$hb_arch" in
|
||||
darwin) SLIB_EXT=".dylib" ;;
|
||||
w32) SLIB_EXT=".dll" ;;
|
||||
os2) SLIB_EXT=".dll" ;;
|
||||
hpux) SLIB_EXT=".sl" ;;
|
||||
*) SLIB_EXT=".so" ;;
|
||||
esac
|
||||
|
||||
@@ -22,6 +22,7 @@ if [ -z "$HB_ARCHITECTURE" ]; then
|
||||
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" ;;
|
||||
|
||||
@@ -41,8 +41,10 @@ if [ -z "$HB_ARCHITECTURE" ]; then
|
||||
hb_arch=`uname -s | tr -d "[-]" | tr '[A-Z]' '[a-z]' 2>/dev/null`
|
||||
case "$hb_arch" in
|
||||
*windows*|*mingw32*|msys*) hb_arch="w32" ;;
|
||||
*dos) hb_arch="dos" ;;
|
||||
*bsd) hb_arch="bsd" ;;
|
||||
*os/2*) hb_arch="os2" ;;
|
||||
*dos) hb_arch="dos" ;;
|
||||
*bsd) hb_arch="bsd" ;;
|
||||
*darwin) hb_arch="darwin" ;;
|
||||
esac
|
||||
fi
|
||||
export HB_ARCHITECTURE="$hb_arch"
|
||||
|
||||
@@ -26,8 +26,9 @@ else
|
||||
HB_HOST_CC="gcc"
|
||||
case "$HB_HOST_ARCH" in
|
||||
*windows*|*mingw32*|msys*) HB_HOST_ARCH="w32"; HB_HOST_CC="mingw32" ;;
|
||||
*dos) HB_HOST_ARCH="dos" ;;
|
||||
*bsd) HB_HOST_ARCH="bsd" ;;
|
||||
*dos) HB_HOST_ARCH="dos" ;;
|
||||
*bsd) HB_HOST_ARCH="bsd" ;;
|
||||
*darwin) HB_HOST_ARCH="darwin" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user