projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
418c416
)
Irix linking fix from Yu Cao <
[email protected]
>
author
Tom Lane
<
[email protected]
>
Tue, 7 Sep 1999 18:11:35 +0000
(18:11 +0000)
committer
Tom Lane
<
[email protected]
>
Tue, 7 Sep 1999 18:11:35 +0000
(18:11 +0000)
src/interfaces/libpq++/Makefile.in
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/libpq++/Makefile.in
b/src/interfaces/libpq++/Makefile.in
index 1ee26bebe1d442acdd5ee5f4cc392ab21db31fcf..e4e92f6b53677f66aa8479514f94af4b5a55ee8f 100644
(file)
--- a/
src/interfaces/libpq++/Makefile.in
+++ b/
src/interfaces/libpq++/Makefile.in
@@
-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