Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c090b05

Browse files
committed
I'm quite fond of doing VPATH builds, i.e. building outside the source
tree. This also catches lots of little Makefile bugs, so here's a small patch for one of them (replacing an explicit reference to thread.c with a reference to it as the first prerequsite of the rule makes make look for it in the place where it was found (the source tree) rather than in the build tree. (using GNU make 3.79.1) John Gray
1 parent 9234591 commit c090b05

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

doc/TODO

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TODO list for PostgreSQL
22
========================
3-
Last updated: Mon Aug 11 18:39:47 EDT 2003
3+
Last updated: Tue Aug 12 18:04:15 EDT 2003
44

55
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
66

@@ -60,6 +60,9 @@ Administration
6060
* Allow logging of only data definition(DDL), or DDL and modification statements
6161
* Allow log lines to include session-level information, like database and user
6262
* Allow server log information to be output as INSERT statements
63+
* Prevent default re-use of sysids for dropped users and groups
64+
* Prevent dropping user that still owns objects, or auto-drop the objects
65+
6366

6467

6568
Data Types
@@ -476,7 +479,7 @@ Source Code
476479
* Acquire lock on a relation before building a relcache entry for it
477480
* Research interaction of setitimer() and sleep() used by statement_timeout
478481
* Add checks for fclose() failure
479-
* Change CVS $Id: TODO,v 1.1114 2003/08/11 22:39:48 momjian Exp $ to $PostgreSQL: pgsql/doc/TODO,v 1.1114 2003/08/11 22:39:48 momjian Exp $
482+
* Change CVS $Id: TODO,v 1.1115 2003/08/13 03:12:04 momjian Exp $ to $PostgreSQL: pgsql/doc/TODO,v 1.1115 2003/08/13 03:12:04 momjian Exp $
480483
* Exit postmaster if postgresql.conf can not be opened
481484
* Rename /scripts directory because they are all C programs now
482485
* Allow the regression tests to start postmaster with -i so the tests

src/port/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# with broken/missing library files.
88

99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/port/Makefile,v 1.5 2003/08/08 02:55:08 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/port/Makefile,v 1.6 2003/08/13 03:12:04 momjian Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -23,7 +23,7 @@ libpgport.a: $(LIBOBJS)
2323
$(AR) crs $@ $^
2424

2525
thread.o: thread.c
26-
$(CC) $(CFLAGS) $(CPPFLAGS) $(THREAD_CFLAGS) -c thread.c
26+
$(CC) $(CFLAGS) $(CPPFLAGS) $(THREAD_CFLAGS) -c $<
2727

2828
clean distclean maintainer-clean:
2929
rm -f libpgport.a $(LIBOBJS)

0 commit comments

Comments
 (0)