mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 06:06:10 -04:00
* Switched off lots of debugging.
* Tweaks to the transfer rates. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@824 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
8d3bda4f76
commit
c60cf84e95
10 changed files with 44 additions and 17 deletions
|
@ -27,7 +27,7 @@ ifndef MAC_I386_BUILD
|
|||
endif
|
||||
|
||||
# flags for components....
|
||||
#PQI_USE_XPGP = 1
|
||||
PQI_USE_XPGP = 1
|
||||
#PQI_USE_PROXY = 1
|
||||
#PQI_USE_CHANNELS = 1
|
||||
#USE_FILELOOK = 1
|
||||
|
|
35
libretroshare/src/scripts/makeMacUniversalLibrary.sh
Executable file
35
libretroshare/src/scripts/makeMacUniversalLibrary.sh
Executable file
|
@ -0,0 +1,35 @@
|
|||
#
|
||||
## clean up all bits of libretroshare
|
||||
echo make clobber
|
||||
make clobber
|
||||
#
|
||||
## make the standard version (PPC)
|
||||
echo make
|
||||
make
|
||||
#
|
||||
LIB=libretroshare.a
|
||||
LIB_PPC=libretroshare_ppc.a
|
||||
LIB_X86=libretroshare_x86.a
|
||||
|
||||
MAC_SCRIPT="./scripts/config-macosx.mk"
|
||||
|
||||
echo cp lib/$LIB lib/$LIB_PPC
|
||||
cp lib/$LIB lib/$LIB_PPC
|
||||
|
||||
echo make clobber
|
||||
make clobber
|
||||
|
||||
echo make "MAC_I386_BUILD=1"
|
||||
make "MAC_I386_BUILD=1"
|
||||
|
||||
echo cp lib/$LIB lib/$LIB_X86
|
||||
cp lib/$LIB lib/$LIB_X86
|
||||
|
||||
# magic combine trick.
|
||||
echo cd lib
|
||||
cd lib
|
||||
|
||||
echo lipo -create libretroshare_*.a -output $LIB
|
||||
lipo -create libretroshare_*.a -output $LIB
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue