⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aix.mk

📁 Netscape NSPR库源码
💻 MK
字号:
# # The contents of this file are subject to the Mozilla Public# License Version 1.1 (the "License"); you may not use this file# except in compliance with the License. You may obtain a copy of# the License at http://www.mozilla.org/MPL/# # Software distributed under the License is distributed on an "AS# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or# implied. See the License for the specific language governing# rights and limitations under the License.# # The Original Code is the Netscape Portable Runtime (NSPR).# # The Initial Developer of the Original Code is Netscape# Communications Corporation.  Portions created by Netscape are # Copyright (C) 1998-2000 Netscape Communications Corporation.  All# Rights Reserved.# # Contributor(s):# # Alternatively, the contents of this file may be used under the# terms of the GNU General Public License Version 2 or later (the# "GPL"), in which case the provisions of the GPL are applicable # instead of those above.  If you wish to allow use of your # version of this file only under the terms of the GPL and not to# allow others to use your version of this file under the MPL,# indicate your decision by deleting the provisions above and# replace them with the notice and other provisions required by# the GPL.  If you do not delete the provisions above, a recipient# may use your version of this file under either the MPL or the# GPL.# ## 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_CLIENTifneq ($(USE_PTHREADS),1)CLASSIC_NSPR = 1endifendif## 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 = 1endififeq ($(CLASSIC_NSPR),1)	PTHREADS_USER =	USE_PTHREADS =	IMPL_STRATEGY = _EMU	DEFINES += -D_PR_LOCAL_THREADS_ONLYelseifeq ($(PTHREADS_USER),1)	USE_PTHREADS =	IMPL_STRATEGY = _PTH_USERelse	USE_PTHREADS = 1	IMPL_STRATEGY = _PTHendifendif# IPv6 support part of the standard AIX 4.3 release.ifneq (,$(filter-out 3.2 4.1 4.2,$(OS_RELEASE)))USE_IPV6 = 1endififeq ($(CLASSIC_NSPR),1)CC		= xlCCCC		= xlCelseCC		= xlC_rCCC		= xlC_rendifOS_CFLAGS	= -qro -qroconstifeq ($(USE_64),1)OBJECT_MODE	= 64export OBJECT_MODECOMPILER_TAG	= _64elseCOMPILER_TAG	= _32endifCPU_ARCH	= rs6000RANLIB		= ranlibOS_CFLAGS 	+= -DAIX -DSYSVifeq ($(CC),xlC_r)OS_CFLAGS 	+= -qarch=comendififneq ($(OS_RELEASE),3.2)OS_CFLAGS	+= -DAIX_HAVE_ATOMIC_OP_H -DAIX_TIMERSendififeq (,$(filter-out 3.2 4.1,$(OS_RELEASE)))ifndef USE_PTHREADSOS_CFLAGS	+= -DAIX_RENAME_SELECTendifendififeq (,$(filter-out 3.2 4.1,$(OS_RELEASE)))OS_CFLAGS	+= -D_PR_NO_LARGE_FILESelseOS_CFLAGS	+= -D_PR_HAVE_OFF64_Tendififeq ($(OS_RELEASE),4.1)OS_CFLAGS	+= -DAIX4_1elseDSO_LDOPTS	= -brtl -bM:SRE -bnoentry -bexpallMKSHLIB		= $(LD) $(DSO_LDOPTS)ifeq ($(OS_RELEASE),4.3)OS_CFLAGS	+= -DAIX4_3endifendif# Have the socklen_t data typeifeq ($(OS_RELEASE),4.3)OS_CFLAGS	+= -DHAVE_SOCKLEN_Tendififneq (,$(filter-out 3.2 4.1 4.2,$(OS_RELEASE)))OS_CFLAGS	+= -DHAVE_FCNTL_FILE_LOCKINGendififeq (,$(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_Rendifendififeq (,$(filter-out 4.3,$(OS_RELEASE)))# On these OS revisions, gethostbyXXX() returns result in thread# specific storage.ifeq ($(USE_PTHREADS),1)OS_CFLAGS	+= -D_PR_HAVE_THREADSAFE_GETHOSTendifendif## 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 -berokelseAIX_LINK_OPTS	= -bnso -berok#AIX_LINK_OPTS	= -bnso -berok -brename:.select,.wrap_select -brename:.poll,.wrap_poll -bI:/usr/lib/syscalls.expendifAIX_WRAP	= $(DIST)/lib/aixwrap.oAIX_TMP		= $(OBJDIR)/_aix_tmp.o

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -