1998-04-21 21:21:53 +04:00
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape Public License
|
1999-04-22 01:40:44 +04:00
|
|
|
# Version 1.1 (the "NPL"); you may not use this file except in
|
1998-04-21 21:21:53 +04:00
|
|
|
# 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 FreeBSD
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(MOD_DEPTH)/config/UNIX.mk
|
|
|
|
|
|
|
|
CC = gcc
|
|
|
|
CCC = g++
|
|
|
|
RANLIB = ranlib
|
|
|
|
|
1999-03-23 07:09:23 +03:00
|
|
|
ifeq ($(OS_TEST),alpha)
|
|
|
|
CPU_ARCH = alpha
|
|
|
|
else
|
1998-04-21 21:21:53 +04:00
|
|
|
OS_REL_CFLAGS = -mno-486 -Di386
|
|
|
|
CPU_ARCH = x86
|
1999-03-23 07:09:23 +03:00
|
|
|
endif
|
|
|
|
CPU_ARCH_TAG = _$(CPU_ARCH)
|
1998-04-21 21:21:53 +04:00
|
|
|
|
1999-03-23 08:50:11 +03:00
|
|
|
OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe $(THREAD_FLAG) -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK
|
1998-04-21 21:21:53 +04:00
|
|
|
|
|
|
|
ifeq ($(USE_PTHREADS),1)
|
1998-09-26 00:34:39 +04:00
|
|
|
IMPL_STRATEGY = _PTH
|
1999-03-23 18:18:27 +03:00
|
|
|
DEFINES += -D_THREAD_SAFE
|
1999-03-23 08:50:11 +03:00
|
|
|
THREAD_FLAG += -pthread
|
1998-04-21 21:21:53 +04:00
|
|
|
else
|
1998-09-26 00:34:39 +04:00
|
|
|
IMPL_STRATEGY = _EMU
|
1998-04-21 21:21:53 +04:00
|
|
|
DEFINES += -D_PR_LOCAL_THREADS_ONLY
|
|
|
|
endif
|
|
|
|
|
|
|
|
ARCH = freebsd
|
|
|
|
|
1998-11-19 01:51:51 +03:00
|
|
|
MOZ_OBJFORMAT := $(shell test -x /usr/bin/objformat && /usr/bin/objformat || echo aout)
|
|
|
|
|
|
|
|
ifeq ($(MOZ_OBJFORMAT),elf)
|
|
|
|
DLL_SUFFIX = so
|
|
|
|
else
|
1998-08-11 03:42:03 +04:00
|
|
|
DLL_SUFFIX = so.1.0
|
1998-11-19 01:51:51 +03:00
|
|
|
endif
|
1998-08-11 03:42:03 +04:00
|
|
|
|
1998-04-21 21:21:53 +04:00
|
|
|
DSO_CFLAGS = -fPIC
|
|
|
|
DSO_LDOPTS = -Bshareable
|
|
|
|
DSO_LDFLAGS =
|
|
|
|
|
|
|
|
MKSHLIB = $(LD) $(DSO_LDOPTS)
|
|
|
|
|
|
|
|
G++INCLUDES = -I/usr/include/g++
|