diff options
author | Peter Eisentraut | 2008-04-07 23:08:15 +0000 |
---|---|---|
committer | Peter Eisentraut | 2008-04-07 23:08:15 +0000 |
commit | 05b2a07d28f84974c9a3adfa1e8e68775739c69b (patch) | |
tree | ab97435141af20d7ba9c3b1dd1a69b6589b4b104 | |
parent | 36f19543a2f366a85e56400cdac65f6f170fdf39 (diff) |
Always define stlib, since some platforms need it for building modules.
Should fix build failures on AIX.
-rw-r--r-- | src/Makefile.shlib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib index 75b2494837..8e336f9bdf 100644 --- a/src/Makefile.shlib +++ b/src/Makefile.shlib @@ -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 |