Commit 64e31b4f authored by Peter Eisentraut's avatar Peter Eisentraut

Always define stlib, since some platforms need it for building modules.

Should fix build failures on AIX.
parent 46e76373
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California # Copyright (c) 1998, Regents of the University of California
# #
# IDENTIFICATION # IDENTIFICATION
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.114 2008/04/07 14:15:58 petere Exp $ # $PostgreSQL: pgsql/src/Makefile.shlib,v 1.115 2008/04/07 23:08:15 petere Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -94,13 +94,13 @@ endif ...@@ -94,13 +94,13 @@ endif
# Testing the soname variable is a reliable way to determine whether a # Testing the soname variable is a reliable way to determine whether a
# linkable library is being built. # linkable library is being built.
soname = $(shlib_major) soname = $(shlib_major)
stlib = lib$(NAME).a
else else
# Naming convention for dynamically loadable modules # Naming convention for dynamically loadable modules
ifeq ($(enable_shared), yes) ifeq ($(enable_shared), yes)
shlib = $(NAME)$(DLSUFFIX) shlib = $(NAME)$(DLSUFFIX)
endif endif
endif endif
stlib = lib$(NAME).a
ifndef soname ifndef soname
# additional flags for backend modules # additional flags for backend modules
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment