rhdb-utils/pg_filedump-make.patch
cvsdist ff5cd5d8c0 auto-import changelog data from rhdb-utils-2.0-1.src.rpm
Thu May 29 2003 Andrew Overholt <overholt@redhat.com>
- Bump to version 2.0.
- Modify distribution.
- Increment Buildrequires to >= PostgreSQL 7.3
Wed Sep 11 2002 Andrew Overholt <overholt@redhat.com>
- Changed revision to 1.
Mon Jul 08 2002 Liam Stewart <liams@redhat.com>
- Updated summary and description.
Thu Jul 04 2002 Liam Stewart <liams@redhat.com>
- Updated Source0 entry.
Wed Jun 26 2002 Liam Stewart <liams@redhat.com>
- Group fix.
Mon Jun 24 2002 Liam Stewart <liams@redhat.com>
- Initial build.
2004-09-09 11:33:22 +00:00

28 lines
729 B
Diff

--- pg_filedump/Makefile.make Mon Jun 24 17:17:53 2002
+++ pg_filedump/Makefile Mon Jun 24 17:25:26 2002
@@ -3,13 +3,7 @@
CC=gcc
CFLAGS=-g -Wall -Wmissing-prototypes -Wmissing-declarations
-INCLUDE=/usr/include/pgsql
-
-# PGSQL MUST POINT TO pgsql SOURCE DIRECTORY
-PGSQL=../../../../postgres/pgsql
-
-CRC_SRC=${PGSQL}/src/backend/utils/hash
-CRC_INCLUDE=${PGSQL}/src
+INCLUDE=/usr/include/pgsql/server
all: pg_filedump
@@ -19,8 +13,8 @@
pg_filedump.o: pg_filedump.c
${CC} ${CFLAGS} -I${INCLUDE} pg_filedump.c -c
-pg_crc.o: ${CRC_SRC}/pg_crc.c
- ${CC} ${CFLAGS} -I${CRC_INCLUDE} -I${INCLUDE} ${CRC_SRC}/pg_crc.c -c
+pg_crc.o: pg_crc.c
+ ${CC} ${CFLAGS} -I${INCLUDE} pg_crc.c -c
clean:
rm -rf *.o pg_filedump