- Timestamp:
- Jun 10, 2007, 9:20:42 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/dev-lang/python/configure.in
r3369 r3391 184 184 atheos*) MACHDEP="atheos";; 185 185 irix646) MACHDEP="irix6";; 186 os2*| emx*) MACHDEP="emx";;186 os2*|OS/2*|emx*) MACHDEP="emx";; 187 187 188 188 '') MACHDEP="unknown";; … … 489 489 gcc) CC="$CC -D_HAVE_BSDI";; 490 490 esac;; 491 os2*|emx*)491 OS/2*|os2*|emx*) 492 492 CC="$CC -DPYOS_OS2=1 -DPYCC_GCC=1" 493 493 ;; … … 537 537 AC_SUBST(INSTSONAME) 538 538 AC_SUBST(RUNSHARED) 539 AC_SUBST(CONDENSED_VERSION) 539 540 LDLIBRARY="$LIBRARY" 540 541 BLDLIBRARY='$(LDLIBRARY)' … … 543 544 LDLIBRARYDIR='' 544 545 RUNSHARED='' 546 CONDENSED_VERSION='' 545 547 546 548 # LINKCC is the command that links the python executable -- default is $(CC). … … 576 578 then 577 579 case $ac_sys_system in 578 CYGWIN* | atheos* | os2* |emx*)580 CYGWIN* | atheos* | *OS/2* | *emx*) 579 581 enable_shared="yes";; 580 582 *) … … 670 672 RUNSHARED=DLL_PATH=`pwd`:${DLL_PATH:-/atheos/sys/libs:/atheos/autolnk/lib} 671 673 ;; 672 os2*|emx*)674 OS/2*|os2*|emx*) 673 675 LDLIBRARY='python$(VERSION)_dll.a' 674 676 BLDLIBRARY='-L. -lpython$(VERSION)' 675 RUNSHARED=BEGINLIBPATH=" `pwd`;$BEGINLIBPATH"677 RUNSHARED=BEGINLIBPATH="'`pwd`;$BEGINLIBPATH'" 676 678 CONDENSED_VERSION=`echo "$(VERSION)" | tr -d .,"` 677 679 DLLLIBRARY='python$(CONDENSED_VERSION).dll' … … 718 720 BeOS*) LN="ln -s";; 719 721 CYGWIN*) LN="ln -s";; 720 os2*|emx*) LN="ln -s";;722 OS/2*|os2*|emx*) LN="ln -s";; 721 723 atheos*) LN="ln -s";; 722 724 *) LN=ln;; … … 1421 1423 ;; 1422 1424 CYGWIN*) SO=.dll;; 1423 os2*|emx*) SO=.dll;;1425 OS/2*|os2*|emx*) SO=.dll;; 1424 1426 *) SO=.so;; 1425 1427 esac … … 1546 1548 CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";; 1547 1549 atheos*) LDSHARED="gcc -shared";; 1550 OS/2*|os2*|emx*) LDSHARED="gcc -Zdll -Zomf";; 1548 1551 *) LDSHARED="ld";; 1549 1552 esac
Note:
See TracChangeset
for help on using the changeset viewer.