summaryrefslogtreecommitdiff
path: root/src/Makefile.shlib
diff options
context:
space:
mode:
authorThomas G. Lockhart1998-10-28 06:49:10 +0000
committerThomas G. Lockhart1998-10-28 06:49:10 +0000
commit20a034d5bdef8a773e8429c257f4543cf4036a41 (patch)
tree803f302fb1a4d29a7ba5de8f994988e3529bd7d9 /src/Makefile.shlib
parentf5bd98c67d99c56f72500b3e54175f5a873ab60e (diff)
Include appropriate flags for resolved shared library LDFLAGS_ODBC
to allow ODBC library to be linked.
Diffstat (limited to 'src/Makefile.shlib')
-rw-r--r--src/Makefile.shlib3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib
index d1557f0128b..838f880469d 100644
--- a/src/Makefile.shlib
+++ b/src/Makefile.shlib
@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.1 1998/10/19 00:00:40 tgl Exp $
+# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.2 1998/10/28 06:49:04 thomas Exp $
#
#-------------------------------------------------------------------------
@@ -95,6 +95,7 @@ ifeq ($(PORTNAME), linux)
install-shlib-dep := install-shlib
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
LDFLAGS_SL := -shared -soname $(shlib)
+ LDFLAGS_ODBC := -Bsymbolic -lc -lm
CFLAGS += $(CFLAGS_SL)
endif