From: Robin Dunn Date: Wed, 21 Jan 2004 23:05:25 +0000 (+0000) Subject: Typos fixed and further clarification of the Python situation on Panther X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d1a6e2b7a103d761fbc15e0e9c1c20ab53a849d9 Typos fixed and further clarification of the Python situation on Panther git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25284 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/docs/BUILD.txt b/wxPython/docs/BUILD.txt index fb78c5c483..abf49a4be6 100644 --- a/wxPython/docs/BUILD.txt +++ b/wxPython/docs/BUILD.txt @@ -321,7 +321,7 @@ here. There is a copy of my build scripts in wxWindows\wxPython\distrib\msw in the wx package and you'll have to run python_d.exe to use them. The debug and hybrid(release) versions can coexist. - When the setuyp.py command is done you should have fully populated + When the setup.py command is done you should have fully populated wxPython and wx packages locally in wxWindows/wxPython/wxPython and wxWindows/wxPython/wx, with all the extension modules (*.pyd files) located in the wx package. diff --git a/wxPython/docs/INSTALL.txt b/wxPython/docs/INSTALL.txt index c66ade427b..ff48bd6e30 100644 --- a/wxPython/docs/INSTALL.txt +++ b/wxPython/docs/INSTALL.txt @@ -86,12 +86,12 @@ Installing wxPython on OS X is nearly the same as the Unix instructions above, except for a few small, but important details: 1. The --enable-rpath configure option is not needed since the path to - the wxWindows dynlibs will automatically be encoded into the + the wxWindows dylibs will automatically be encoded into the extension modules when they are built. If you end up moving the wxWindows dynlibs to some other location (such as inside the .app - bundle of your applicaiton, for distribution to other users,) then + bundle of your applicaiton for distribution to other users,) then you will need to set DYLD_LIBRARY_PATH to this location so the - dynlibs can be found at runtime. + dylibs can be found at runtime. 2. Depending on the version of OS X Python may be installed in different locations. On 10.2 (Jaguar) you need to download and @@ -99,9 +99,14 @@ instructions above, except for a few small, but important details: Python Framework will then be installed in /Library/Frameworks. On 10.3 (Panther) Apple supplies the Python Framework as part of the OS install, but it will be located in /System/Library/Frameworks - instead. To complicate things further, the Jaguar version, or a - custom build you do yourself will end up in /Library/Frameworks - even on Panther... + instead. However, on Panther the site-pacakges dir is sym-linked + to /Library/Python/2.3 so the wxPython pacakges will end up there, + although they will still be visible from site-packages. If you are + building distributions of wxPython to be installed on other + machines be careful to install to /Library/Python/2.3. To + complicate things further, the Jaguar version, or a custom build + you do yourself will end up in /Library/Frameworks even on + Panther... 3. You need to use pythonw at the command line or PythonLauncher app to run wxPython apps, otherwise the app will not be able to fully