Changeset 424
- Timestamp:
- 10/13/08 21:44:47 (1 year ago)
- Files:
-
- trunk/uploadr/README.osx (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/uploadr/README.osx
r383 r424 40 40 41 41 The Mozilla tools require the IDL library: 42 $ sudo port install libidl 42 $ sudo port install libidl (sudo /opt/local/bin/port install libidl) 43 43 44 44 … … 50 50 51 51 For Intel Mac: 52 http://www.oxymoronical.com/view/1114 52 http://developer.mozilla.org/en/docs/Gecko_SDK#Downloading 53 was http://www.oxymoronical.com/view/1114 53 54 54 55 Place the SDK(s) appropriately: … … 56 57 UPLOADR/MacUploadr.app/Contents/Resources/gecko-sdk.ppc (PPC Mac) 57 58 58 These SDKs are from the Gecko 1.8 series and so are only safe to use59 These SDKs are from the Gecko 1.8/1.9 series and so are only safe to use 59 60 if the XPCOM components use only frozen interfaces. Fortunately, 60 61 Uploadr currently falls into this category. … … 91 92 Download GraphicsMagick source (try and stick with 1.1.10): 92 93 ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.1/GraphicsMagick-1.1.10.tar.bz2 94 95 jde - trying 1.2.5 (ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.2/GraphicsMagick-1.2.5.tar.bz2) to match WINDOWS 93 96 94 97 Configure and install GraphicsMagick: … … 126 129 $ sudo port install libiconv 127 130 $ sudo port install expat 128 $ sudo port install xml2 131 $ sudo port install xml2 (jde - does not exist: so libxml2?) 129 132 $ ./configure --prefix=/opt/local --disable-shared --with-expat=/opt/local 130 133 $ make && sudo make install … … 150 153 $ make && sudo make install 151 154 155 jde : encountered: 156 > make(6189) malloc: *** vm_allocate(size=4272951296) failed (error 157 > code=3) 158 > make(6189) malloc: *** error: can't allocate region 159 > make(6189) malloc: *** set a breakpoint in szone_error to debug 160 > make: *** virtual memory exhausted. Stop. 161 > 162 163 $ which make 164 /usr/bin/make 165 $ make --version 166 GNU Make 3.80 167 168 port install gmake 169 $ which gmake 170 /opt/local/bin/gmake 171 $ gmake --version 172 GNU Make 3.81 173 174 and used gmake instead of make 152 175 153 176 … … 161 184 Use the Makefile in: 162 185 UPLOADR/MacUploadr.app/Contents/Resources/components/ 186 187 http://developer.mozilla.org/en/docs/Gecko_SDK#Issues_with_the_OS_X_SDK 163 188 164 189 Running `make ppc gm ; make ppc key` will build the PPC binaries as … … 177 202 Launch Uploadr from Terminal to get debug windows: 178 203 $ chmod a+w MacUploadr.app/Contents/MacOS/xulrunner 204 $ chmod a+x MacUploadr.app/Contents/MacOS/xulrunner 179 205 $ MacUploadr.app/Contents/MacOS/xulrunner -jsconsole 180 206