mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
387b7bae6a
* PGP version compiling / running on OSX now. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1268 b45a01b8-16f6-495d-af2f-9b41ad6348cc
153 lines
3.5 KiB
Makefile
153 lines
3.5 KiB
Makefile
|
|
ifneq ($(OS),MacOSX)
|
|
dummy:
|
|
echo "ERROR MacOSX configuration file included, but (OS != MacOSX)
|
|
|
|
endif
|
|
|
|
############ LINUX CONFIGURATION ########################
|
|
|
|
|
|
# FLAGS to decide if we want i386 Build or ppc Build
|
|
#
|
|
#
|
|
|
|
# PPC is default
|
|
# Could define both for combined compilation...
|
|
# except might not work for bio_tou.c file!
|
|
#
|
|
# MAC_I386_BUILD = 1
|
|
# MAC_PPC_BUILD = 1
|
|
|
|
#MAC_I386_BUILD = 1
|
|
#MAC_PPC_BUILD = 1
|
|
|
|
ifndef MAC_I386_BUILD
|
|
MAC_PPC_BUILD = 1
|
|
endif
|
|
|
|
# flags for components....
|
|
#PQI_USE_SSLONLY = 1
|
|
#PQI_USE_XPGP = 1
|
|
|
|
#PQI_USE_PROXY = 1
|
|
#PQI_USE_CHANNELS = 1
|
|
#USE_FILELOOK = 1
|
|
|
|
SSL_DIR=../../../../../src/openssl-0.9.7g-xpgp-0.1c
|
|
UPNPC_DIR=../../../../../src/miniupnpc-1.0
|
|
|
|
include $(RS_TOP_DIR)/scripts/checks.mk
|
|
|
|
############ ENFORCE DIRECTORY NAMING ########################
|
|
|
|
CC = g++
|
|
RM = /bin/rm
|
|
|
|
RANLIB = ranlib
|
|
|
|
# Dummy ranlib -> can't do it until afterwards with universal binaries.
|
|
# RANLIB = ls -l
|
|
|
|
LIBDIR = $(RS_TOP_DIR)/lib
|
|
LIBRS = $(LIBDIR)/libretroshare.a
|
|
|
|
OPT_DIR = /opt/local
|
|
OPT_INCLUDE = $(OPT_DIR)/include
|
|
OPT_LIBS = $(OPT_DIR)/lib
|
|
|
|
INCLUDE = -I $(RS_TOP_DIR) -I $(OPT_INCLUDE)
|
|
#CFLAGS = -Wall -O3
|
|
CFLAGS = -Wall -g
|
|
|
|
# Flags for architecture builds.
|
|
ifdef MAC_I386_BUILD
|
|
CFLAGS += -arch i386
|
|
endif
|
|
|
|
ifdef MAC_PPC_BUILD
|
|
CFLAGS += -arch ppc
|
|
endif
|
|
|
|
CFLAGS += $(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
|
|
|
|
ifdef PQI_USE_XPGP
|
|
INCLUDE += -I $(SSL_DIR)/include
|
|
CFLAGS += -DPQI_USE_XPGP
|
|
endif
|
|
|
|
ifdef PQI_USE_SSLONLY
|
|
CFLAGS += -DPQI_USE_SSLONLY
|
|
endif
|
|
|
|
ifdef PQI_USE_PROXY
|
|
CFLAGS += -DPQI_USE_PROXY
|
|
endif
|
|
|
|
ifdef PQI_USE_CHANNELS
|
|
CFLAGS += -DPQI_USE_CHANNELS
|
|
endif
|
|
|
|
ifdef USE_FILELOOK
|
|
CFLAGS += -DUSE_FILELOOK
|
|
endif
|
|
|
|
|
|
# RSCFLAGS = -Wall -O3 $(INCLUDE)
|
|
|
|
#########################################################################
|
|
# OS Compile Options
|
|
#########################################################################
|
|
|
|
# For the SSL BIO compilation. (Copied from OpenSSL compilation flags)
|
|
BIOCC = gcc
|
|
|
|
|
|
# Flags for architecture builds.
|
|
ifdef MAC_I386_BUILD
|
|
BIOCFLAGS = -arch i386 -I $(SSL_DIR)/include -DOPENSSL_SYSNAME_MACOSX -DOPENSSL_THREADS -D_REENTRANT -DOPENSSL_NO_KRB5 -O3 -fomit-frame-pointer -fno-common
|
|
endif
|
|
|
|
ifdef MAC_PPC_BUILD
|
|
BIOCFLAGS = -arch ppc -I $(SSL_DIR)/include -DOPENSSL_SYSNAME_MACOSX -DOPENSSL_THREADS -D_REENTRANT -DOPENSSL_NO_KRB5 -O3 -fomit-frame-pointer -fno-common -DB_ENDIAN
|
|
endif
|
|
|
|
|
|
|
|
# MacOSX flags
|
|
# 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
|
|
|
|
|
|
#########################################################################
|
|
# OS specific Linking.
|
|
#########################################################################
|
|
|
|
LIBS = -Wl,-search_paths_first
|
|
|
|
# for Univeral BUILD
|
|
# LIBS += -arch ppc -arch i386
|
|
# LIBS += -Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386
|
|
|
|
LIBS += -L$(LIBDIR) -lretroshare
|
|
ifdef PQI_USE_XPGP
|
|
LIBS += -L$(SSL_DIR)
|
|
endif
|
|
LIBS += -lssl -lcrypto -lpthread
|
|
LIBS += -L$(OPT_LIBS)
|
|
LIBS += -lgpgme -lgpg-error
|
|
LIBS += -L$(UPNPC_DIR) -lminiupnpc
|
|
LIBS += $(XLIB) -ldl -lz
|
|
|
|
RSLIBS = $(LIBS)
|
|
|
|
|