Changes between Version 10 and Version 11 of Python_SIP/Build_Install


Ignore:
Timestamp:
Jul 24, 2008 1:11:06 PM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Python_SIP/Build_Install

    v10 v11  
    1515==== Requirements ==== 
    1616 
     17 1. The [http://www.pjsip.org/using.htm#gnu_req usual requirements to build PJSIP], e.g. {{{make}}}, {{{gcc}}}, and {{{binutils}}}. 
    1718 1. '''Python''': this normally should have been installed on every Linux. 
    1819 1. '''Python development package''', to build the C extension. This might be called {{{python-devel}}} (e.g. on Fedora) or {{{python2.4-dev}}} or {{{python2.5-dev}}} (e.g. on Ubuntu). 
     
    3536 }}} 
    3637 
    37 === Microsoft Windows === 
     38=== Microsoft Windows with Visual Studio === 
    3839 
    3940==== Requirements ==== 
    4041 
     42 1. The usual [http://www.pjsip.org/using.htm#vs_req PJSIP requirements for Windows], e.g. Visual Studio along with Platform SDK and DirectX SDK. 
    4143 1. '''Python SDK''': I personally use [ftp://ftp.activestate.com/ActivePython/windows/2.4/ ActivePython-2.4.3-12] distribution from [http://www.activestate.com ActiveState], since it has a matching debug package. 
    42  1. '''Visual Studio''': for building the C extension. 
    4344 1. '''Optional: debug package''': the debug package is useful if you want to debug the C extension. You can download it from ftp://ftp.activestate.com/ActivePython/etc/ 
    4445 
    45 ==== Building the Module with Visual Studio ==== 
     46==== Building the Modules ==== 
    4647 
    4748'''Step 1: Building the C Extension''': 
     
    6465 }}} 
    6566 
    66 ==== Building the Module with MinGW ==== 
     67=== Microsoft Windows with MinGW === 
    6768 
    68 Adamczak Krzysztof suggested this on PJSIP mailing list to build the extensions with MinGW: 
     69I did not try this myself since I use Visual Studio, but Adamczak Krzysztof suggested this on PJSIP mailing list to build the extensions with MinGW: 
    6970 
    7071 {{{ 
    7172  python setup.py build_ext --compiler=mingw32 install 
    7273 }}} 
     74 
    7375 
    7476