From 6772f43bd8a922eea0b9c67031460416ae4afb43 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 11 Sep 2001 23:27:10 +0000 Subject: [PATCH] Link ODBC driver with -lnsl and -lsocket, for Solaris. reported by Bob Deblier (bob@virtualunlimited.com) --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index dfef728..2d9a1e6 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -2,7 +2,7 @@ # # GNUMakefile for psqlodbc (Postgres ODBC driver) # -# $Header: /home/heikki/psqlodbc-cvs-copy/psqlodbc/Attic/GNUmakefile,v 1.18 2001/08/27 00:38:55 petere Exp $ +# $Header: /home/heikki/psqlodbc-cvs-copy/psqlodbc/Attic/GNUmakefile,v 1.19 2001/09/11 23:27:10 petere Exp $ # #------------------------------------------------------------------------- @@ -27,7 +27,7 @@ ifdef MULTIBYTE OBJS += multibyte.o endif -SHLIB_LINK = $(filter -lm, $(LIBS)) +SHLIB_LINK = $(filter -lm -lnsl -lsocket, $(LIBS)) all: all-lib -- 2.39.5