mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
139 lines
3.1 KiB
Makefile
139 lines
3.1 KiB
Makefile
#
|
|
# The contents of this file are subject to the Netscape Public License
|
|
# Version 1.1 (the "NPL"); you may not use this file except in
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
# http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
# for the specific language governing rights and limitations under the
|
|
# NPL.
|
|
#
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
# Reserved.
|
|
#
|
|
|
|
#
|
|
# Config stuff for AIX.
|
|
#
|
|
|
|
include $(MOD_DEPTH)/config/UNIX.mk
|
|
|
|
#
|
|
# XXX
|
|
# Temporary define for the Client; to be removed when binary release is used
|
|
#
|
|
ifdef MOZILLA_CLIENT
|
|
ifneq ($(USE_PTHREADS),1)
|
|
CLASSIC_NSPR = 1
|
|
endif
|
|
endif
|
|
|
|
#
|
|
# There are three implementation strategies available on AIX:
|
|
# pthreads, classic, and pthreads-user.
|
|
#
|
|
# On AIX 3.2, classic nspr is the default (and only) implementation
|
|
# strategy. On AIX 4.1 and later, the default is pthreads.
|
|
#
|
|
ifeq ($(OS_RELEASE),3.2)
|
|
CLASSIC_NSPR = 1
|
|
endif
|
|
|
|
ifeq ($(CLASSIC_NSPR),1)
|
|
PTHREADS_USER =
|
|
USE_PTHREADS =
|
|
IMPL_STRATEGY = _EMU
|
|
DEFINES += -D_PR_LOCAL_THREADS_ONLY
|
|
else
|
|
ifeq ($(PTHREADS_USER),1)
|
|
USE_PTHREADS =
|
|
IMPL_STRATEGY = _PTH_USER
|
|
else
|
|
USE_PTHREADS = 1
|
|
IMPL_STRATEGY = _PTH
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(CLASSIC_NSPR),1)
|
|
CC = xlC
|
|
CCC = xlC
|
|
else
|
|
CC = xlC_r
|
|
CCC = xlC_r
|
|
endif
|
|
OS_CFLAGS = -qro -qroconst
|
|
ifeq ($(USE_64),1)
|
|
OBJECT_MODE = 64
|
|
export OBJECT_MODE
|
|
COMPILER_TAG = _64
|
|
else
|
|
COMPILER_TAG = _32
|
|
endif
|
|
|
|
CPU_ARCH = rs6000
|
|
|
|
RANLIB = ranlib
|
|
|
|
OS_CFLAGS += -DAIX -DSYSV
|
|
ifeq ($(CC),xlC_r)
|
|
OS_CFLAGS += -qarch=com
|
|
endif
|
|
|
|
ifneq ($(OS_RELEASE),3.2)
|
|
OS_CFLAGS += -DAIX_HAVE_ATOMIC_OP_H -DAIX_TIMERS
|
|
endif
|
|
|
|
ifeq (,$(filter-out 3.2 4.1,$(OS_RELEASE)))
|
|
ifndef USE_PTHREADS
|
|
OS_CFLAGS += -DAIX_RENAME_SELECT
|
|
endif
|
|
endif
|
|
|
|
ifeq (,$(filter-out 3.2 4.1,$(OS_RELEASE)))
|
|
OS_CFLAGS += -D_PR_NO_LARGE_FILES
|
|
else
|
|
OS_CFLAGS += -D_PR_HAVE_OFF64_T
|
|
endif
|
|
|
|
ifeq ($(OS_RELEASE),4.1)
|
|
OS_CFLAGS += -DAIX4_1
|
|
else
|
|
DSO_LDOPTS = -brtl -bM:SRE -bnoentry -bexpall
|
|
MKSHLIB = $(LD) $(DSO_LDOPTS)
|
|
ifeq ($(OS_RELEASE),4.3)
|
|
OS_CFLAGS += -DAIX4_3
|
|
endif
|
|
endif
|
|
|
|
# Have the socklen_t data type
|
|
ifeq ($(OS_RELEASE),4.3)
|
|
OS_CFLAGS += -DHAVE_SOCKLEN_T
|
|
endif
|
|
|
|
ifeq (,$(filter-out 4.2 4.3,$(OS_RELEASE)))
|
|
# On these OS revisions, localtime_r() is declared if _THREAD_SAFE
|
|
# is defined.
|
|
ifneq ($(CLASSIC_NSPR),1)
|
|
OS_CFLAGS += -DHAVE_POINTER_LOCALTIME_R
|
|
endif
|
|
endif
|
|
|
|
#
|
|
# Special link info for constructing AIX programs. On AIX we have to
|
|
# statically link programs that use NSPR into a single .o, rewriting the
|
|
# calls to select to call "aix". Once that is done we then can
|
|
# link that .o with a .o built in nspr which implements the system call.
|
|
#
|
|
ifneq (,$(filter-out 3.2 4.1,$(OS_RELEASE)))
|
|
AIX_LINK_OPTS = -brtl -bnso -berok
|
|
else
|
|
AIX_LINK_OPTS = -bnso -berok
|
|
#AIX_LINK_OPTS = -bnso -berok -brename:.select,.wrap_select -brename:.poll,.wrap_poll -bI:/usr/lib/syscalls.exp
|
|
endif
|
|
|
|
AIX_WRAP = $(DIST)/lib/aixwrap.o
|
|
AIX_TMP = $(OBJDIR)/_aix_tmp.o
|