Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 64e31b4

Browse files
committed
Always define stlib, since some platforms need it for building modules.
Should fix build failures on AIX.
1 parent 46e7637 commit 64e31b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile.shlib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 1998, Regents of the University of California
77
#
88
# IDENTIFICATION
9-
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.114 2008/04/07 14:15:58 petere Exp $
9+
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.115 2008/04/07 23:08:15 petere Exp $
1010
#
1111
#-------------------------------------------------------------------------
1212

@@ -94,13 +94,13 @@ endif
9494
# Testing the soname variable is a reliable way to determine whether a
9595
# linkable library is being built.
9696
soname = $(shlib_major)
97-
stlib = lib$(NAME).a
9897
else
9998
# Naming convention for dynamically loadable modules
10099
ifeq ($(enable_shared), yes)
101100
shlib = $(NAME)$(DLSUFFIX)
102101
endif
103102
endif
103+
stlib = lib$(NAME).a
104104

105105
ifndef soname
106106
# additional flags for backend modules

0 commit comments

Comments
 (0)