1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-03 09:13:20 +03:00

Irix linking fix from Yu Cao <yucao@falcon.kla-tencor.com>

This commit is contained in:
Tom Lane
1999-09-07 18:11:35 +00:00
parent 60c3ccffbe
commit 63858aaf26

View File

@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.16 1999/07/08 03:30:16 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.16.2.1 1999/09/07 18:11:35 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -48,6 +48,15 @@ else
SHLIB_LINK= -L../libpq -lpq
endif
# For CC on IRIX, must use CC as linker/archiver of C++ libraries
ifeq ($(PORTNAME), irix5)
ifeq ($(CXX), CC)
AR = CC
AROPT = -ar -o
LD = CC
endif
endif
# Shared library stuff, also default 'all' target
include $(SRCDIR)/Makefile.shlib