mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-12 07:59:29 -05:00
Commented out 'Universal Binary' Options for the moment.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@412 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
6a4e3e51f5
commit
6370582c9d
@ -23,6 +23,7 @@ include $(RS_TOP_DIR)/scripts/checks.mk
|
||||
CC = g++
|
||||
RM = /bin/rm
|
||||
|
||||
# RANLIB = ranlib
|
||||
# Dummy ranlib -> can't do it until afterwards with universal binaries.
|
||||
RANLIB = ls -l
|
||||
|
||||
@ -31,8 +32,12 @@ LIBRS = $(LIBDIR)/libretroshare.a
|
||||
|
||||
# Unix: Linux/Cygwin
|
||||
INCLUDE = -I $(RS_TOP_DIR)
|
||||
CFLAGS = -arch ppc -arch i386 -Wall -g $(INCLUDE)
|
||||
CFLAGS = -Wall -g $(INCLUDE)
|
||||
|
||||
# This Line is for Universal BUILD.
|
||||
# CFLAGS = -arch ppc -arch i386 -Wall -g $(INCLUDE)
|
||||
|
||||
# This Line is for Universal BUILD for 10.4 + 10.5 (but unlikely to work unless Qt Libraries are build properly)
|
||||
# CFLAGS = -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc -Wall -g $(INCLUDE)
|
||||
|
||||
ifdef PQI_USE_XPGP
|
||||
@ -66,7 +71,12 @@ endif
|
||||
BIOCC = gcc
|
||||
|
||||
# MacOSX flags
|
||||
BIOCFLAGS = -arch ppc -arch i386 -I $(SSL_DIR)/include -DOPENSSL_SYSNAME_MACOSX -DOPENSSL_THREADS -D_REENTRANT -DOPENSSL_NO_KRB5 -O3 -fomit-frame-pointer -fno-common -DB_ENDIAN
|
||||
BIOCFLAGS = -I $(SSL_DIR)/include -DOPENSSL_SYSNAME_MACOSX -DOPENSSL_THREADS -D_REENTRANT -DOPENSSL_NO_KRB5 -O3 -fomit-frame-pointer -fno-common -DB_ENDIAN
|
||||
|
||||
# This is for the Universal Build...
|
||||
# but is unlikely to work... as options are PPC specific....
|
||||
#
|
||||
# BIOCFLAGS = -arch ppc -arch i386 -I $(SSL_DIR)/include -DOPENSSL_SYSNAME_MACOSX -DOPENSSL_THREADS -D_REENTRANT -DOPENSSL_NO_KRB5 -O3 -fomit-frame-pointer -fno-common -DB_ENDIAN
|
||||
|
||||
|
||||
#########################################################################
|
||||
@ -74,7 +84,9 @@ BIOCFLAGS = -arch ppc -arch i386 -I $(SSL_DIR)/include -DOPENSSL_SYSNAME_MACOSX
|
||||
#########################################################################
|
||||
|
||||
LIBS = -Wl,-search_paths_first
|
||||
LIBS += -arch ppc -arch i386
|
||||
|
||||
# for Univeral BUILD
|
||||
# LIBS += -arch ppc -arch i386
|
||||
|
||||
# LIBS += -Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386
|
||||
|
||||
|
@ -323,7 +323,9 @@ TRANSLATIONS += \
|
||||
}
|
||||
|
||||
macx {
|
||||
CONFIG += ppc x86
|
||||
# ENABLE THIS OPTION FOR Univeral Binary BUILD.
|
||||
# CONFIG += ppc x86
|
||||
|
||||
LIBS += -Wl,-search_paths_first
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user