Changeset 3400


Ignore:
Timestamp:
Jun 11, 2007, 12:20:33 AM (18 years ago)
Author:
bird
Message:

emx -> os2emx.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/dev-lang/python/configure.in

    r3391 r3400  
    184184        atheos*) MACHDEP="atheos";;
    185185        irix646) MACHDEP="irix6";;
    186         os2*|OS/2*|emx*) MACHDEP="emx";;
     186        os2*|OS/2*|emx*) MACHDEP="os2emx";;
    187187
    188188        '')     MACHDEP="unknown";;
     
    489489    gcc) CC="$CC -D_HAVE_BSDI";;
    490490    esac;;
    491 OS/2*|os2*|emx*)
     491OS/2*|os2*|*emx*)
    492492    CC="$CC -DPYOS_OS2=1 -DPYCC_GCC=1"
    493493    ;;
     
    578578then
    579579  case $ac_sys_system in
    580   CYGWIN* | atheos* | *OS/2* | *emx*)
     580  CYGWIN* | atheos* | *OS/2* | *emx* | *os2*)
    581581    enable_shared="yes";;
    582582  *)
     
    672672          RUNSHARED=DLL_PATH=`pwd`:${DLL_PATH:-/atheos/sys/libs:/atheos/autolnk/lib}
    673673          ;;
    674     OS/2*|os2*|emx*)
     674    OS/2*|os2*|*emx*)
    675675      LDLIBRARY='python$(VERSION)_dll.a'
    676676          BLDLIBRARY='-L. -lpython$(VERSION)'
    677677          RUNSHARED=BEGINLIBPATH="'`pwd`;$BEGINLIBPATH'"
    678       CONDENSED_VERSION=`echo "$(VERSION)" | tr -d .,"`
     678      CONDENSED_VERSION=`echo "${VERSION}" | tr -d .,"`
    679679      DLLLIBRARY='python$(CONDENSED_VERSION).dll'
    680680          ;;
     
    720720                BeOS*) LN="ln -s";;
    721721                CYGWIN*) LN="ln -s";;
    722                 OS/2*|os2*|emx*) LN="ln -s";;
     722                OS/2*|os2*|*emx*) LN="ln -s";;
    723723                atheos*) LN="ln -s";;
    724724                *) LN=ln;;
     
    14231423                ;;
    14241424        CYGWIN*)   SO=.dll;;
    1425         OS/2*|os2*|emx*) SO=.dll;;
     1425        OS/2*|os2*|*emx*) SO=.dll;;
    14261426        *)         SO=.so;;
    14271427        esac
     
    15481548        CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
    15491549        atheos*) LDSHARED="gcc -shared";;
    1550         OS/2*|os2*|emx*) LDSHARED="gcc -Zdll -Zomf";;
     1550        OS/2*|os2*|*emx*) LDSHARED="gcc -Zdll -Zomf";;
    15511551        *)      LDSHARED="ld";;
    15521552        esac
     
    34193419if test ! -f Modules/Setup
    34203420then
    3421         if test "$MACHDEP" = "emx"; then
     3421        if test "$MACHDEP" = "os2emx"; then
    34223422        cp $srcdir/PC/os2emx/Setup.os2emx Modules/Setup
    34233423    else
Note: See TracChangeset for help on using the changeset viewer.