[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r4191: this is how I build the bundle (vidalia/trunk/pkg/osx)



Author: phobos
Date: 2009-12-22 16:32:47 -0500 (Tue, 22 Dec 2009)
New Revision: 4191

Modified:
   vidalia/trunk/pkg/osx/build-bundle.txt
Log:
this is how I build the bundle


Modified: vidalia/trunk/pkg/osx/build-bundle.txt
===================================================================
--- vidalia/trunk/pkg/osx/build-bundle.txt	2009-12-22 21:28:48 UTC (rev 4190)
+++ vidalia/trunk/pkg/osx/build-bundle.txt	2009-12-22 21:32:47 UTC (rev 4191)
@@ -5,7 +5,9 @@
    http://www.monkey.org/~provos/libevent/
 
 2. Configure libevent with the following:
-   ./configure --enable-static --disable-shared
+CFLAGS="-O -g -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386" \
+LDFLAGS="-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk" \
+./configure --enable-static --disable-shared --disable-dependency-tracking
 
 3. Build and install libevent as follows:
    make && make install
@@ -57,9 +59,11 @@
    to specify it in Step 12.
 
 10. Configure Tor with the following:
-   ./configure --prefix=/Applications/Vidalia.app \
-               --bindir=/Applications/Vidalia.app/Contents/MacOS \
-               --sysconfdir=/Applications/Vidalia.app/Contents/Resources
+CFLAGS="-O -g -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386" \
+LDFLAGS="-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk" \
+CONFDIR=/Applications/Vidalia.app \
+./configure --prefix=/Applications/Vidalia.app --bindir=/Applications/Vidalia.app \
+--sysconfdir=/Library --disable-dependency-tracking   
 
 11. Build Tor by running 'make'. You do NOT need to run 'make install'
 afterwards.
@@ -70,7 +74,7 @@
 
       export MACOSX_DEPLOYMENT_TARGET=10.4
       mkdir build && cd build
-      cmake -DOSX_FAT_BINARY=1 \
+      cmake -DOSX_TIGER_COMPAT=1 \
             -DTOR_SOURCE_DIR=<path-to-tor> \
             -DPOLIPO_SOURCE_DIR=<path-to-polipo> \
             -DTORBUTTON_XPI=<path-torbutton.xpi> ..