diff options
author | Peter Eisentraut | 2008-04-07 23:08:15 +0000 |
---|---|---|
committer | Peter Eisentraut | 2008-04-07 23:08:15 +0000 |
commit | 64e31b4f82a0370f6ed371c69b04d35f4c2ba010 (patch) | |
tree | 57b9f02b741cf701b7e723047ae02a067fc41743 /src | |
parent | 46e76373ec6036a0a53206ef0ea87df75d082c48 (diff) |
Always define stlib, since some platforms need it for building modules.
Should fix build failures on AIX.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.shlib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib index 316b9d16423..a7d679ee597 100644 --- a/src/Makefile.shlib +++ b/src/Makefile.shlib @@ -6,7 +6,7 @@ # Copyright (c) 1998, Regents of the University of California # # 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 # Testing the soname variable is a reliable way to determine whether a # linkable library is being built. soname = $(shlib_major) -stlib = lib$(NAME).a else # Naming convention for dynamically loadable modules ifeq ($(enable_shared), yes) shlib = $(NAME)$(DLSUFFIX) endif endif +stlib = lib$(NAME).a ifndef soname # additional flags for backend modules |