mirror of
https://github.com/postgres/postgres.git
synced 2025-06-06 00:02:36 -04:00
Add complete setting of AROPT
This commit is contained in:
parent
763adb5235
commit
c5c8983ef7
@ -7,7 +7,7 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.49 1996/11/01 21:04:48 momjian Exp $
|
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.50 1996/11/02 09:49:57 bryanh Exp $
|
||||||
#
|
#
|
||||||
# NOTES
|
# NOTES
|
||||||
# This is seen by any Makefiles that include mk/postgres.mk. To
|
# This is seen by any Makefiles that include mk/postgres.mk. To
|
||||||
@ -234,6 +234,16 @@ X11_LIB = -lX11 -lsocket -lnsl
|
|||||||
|
|
||||||
YFLAGS = -d
|
YFLAGS = -d
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
# AR
|
||||||
|
|
||||||
|
ifneq (,$(findstring /$(PORTNAME)/, /BSD44_derived/bsdi/sparc/))
|
||||||
|
AROPT = cq
|
||||||
|
else
|
||||||
|
AROPT = crs
|
||||||
|
endif
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# Installation.
|
# Installation.
|
||||||
@ -301,8 +311,6 @@ CC= gcc
|
|||||||
INSTALL= /usr/bin/install
|
INSTALL= /usr/bin/install
|
||||||
RANLIB= /usr/bin/ranlib
|
RANLIB= /usr/bin/ranlib
|
||||||
|
|
||||||
AROPT = cq
|
|
||||||
|
|
||||||
# FreeBSD 2.1R with new Flex v2.5.2 in /usr/local
|
# FreeBSD 2.1R with new Flex v2.5.2 in /usr/local
|
||||||
LEX = flex
|
LEX = flex
|
||||||
LDADD+= -L/usr/local/lib -lfl
|
LDADD+= -L/usr/local/lib -lfl
|
||||||
@ -448,8 +456,6 @@ else
|
|||||||
LDADD_BE = -ldld -lcompat
|
LDADD_BE = -ldld -lcompat
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AROPT= cq
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# for postgres.user.mk
|
# for postgres.user.mk
|
||||||
#
|
#
|
||||||
@ -680,9 +686,6 @@ MK_PORT= sparc
|
|||||||
# cc won't work!
|
# cc won't work!
|
||||||
CC= gcc
|
CC= gcc
|
||||||
|
|
||||||
# the ar on SunOs is dumb, can't use the s option
|
|
||||||
AROPT= cq
|
|
||||||
|
|
||||||
INSTALL= /usr/bin/install
|
INSTALL= /usr/bin/install
|
||||||
RANLIB= /usr/bin/ranlib
|
RANLIB= /usr/bin/ranlib
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user