mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
fee8cf3706
1. Ports to older revisions of some Unix variants, e.g., BSD/OS 1.1, OSF1 V2.0, etc., contributed by Brian Ostrom <briano@netscape.com>. 2. QNX port, also contributed by Brian Ostrom. 3. New macro USE_MACH_DYLD to represent the dynamic library loading API of NEXTSTEP and Rhapsody. 4. On platforms whose socket address has the sa_len field, make a copy of the PRNetAddr argument for PR_Bind, PR_Connect, and PR_SendTo and set its sa_len before passing it to the system calls. This fix is suggested by Bert Driehuis <driehuis@playbeing.org>. 5. Removed the unused field _lockf64 of struct _MD_IOVector. Not every Unix platform has lockf, and the POSIX file locking API uses fcntl.
127 lines
2.9 KiB
Makefile
127 lines
2.9 KiB
Makefile
#
|
|
# The contents of this file are subject to the Netscape Public License
|
|
# Version 1.0 (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
|
|
|
|
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
|
|
|
|
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
|