Daemon News Ezine BSD News BSD Mall BSD Support Forum BSD Advocacy BSD Updates

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Minor build patch



Hello

To get things started here is a small patch to make binup actually build
against recent postgresql.

-- 
Simon L. Nielsen
Index: server/Makefile
===================================================================
RCS file: /home/mirror/freebsd/ncvs/projects/binup/server/Makefile,v
retrieving revision 1.7
diff -u -d -r1.7 Makefile
--- server/Makefile	19 Dec 2000 12:36:30 -0000	1.7
+++ server/Makefile	22 Dec 2002 17:07:12 -0000
@@ -3,6 +3,8 @@
 #
 # Murray Stokely
 #
+# $FreeBSD
+#
 
 CC      = gcc
 CFLAGS  = -g -Wall -I../common/
@@ -27,8 +29,8 @@
 MYSQLOBJS = mysql.o
 
 ## PostgreSQL Support
-PGSQLLIBS = -L/usr/local/pgsql/lib -lpq
-PGSQLINCS = -I/usr/local/pgsql/include
+PGSQLLIBS = -L/usr/local/lib -lpq
+PGSQLINCS = -I/usr/local/include
 PGSQLOBJS = pgsql.o
 
 .if defined(WITH_PGSQL) || exists(/usr/local/pgsql/)