]> granicus.if.org Git - postgresql/commitdiff
I'm quite fond of doing VPATH builds, i.e. building outside the source
authorBruce Momjian <bruce@momjian.us>
Wed, 13 Aug 2003 03:12:04 +0000 (03:12 +0000)
committerBruce Momjian <bruce@momjian.us>
Wed, 13 Aug 2003 03:12:04 +0000 (03:12 +0000)
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

doc/TODO
src/port/Makefile

index f95e3cc6ea54fbf3f137e094c604990d9e6943a8..d2b7b40a9f4d40198cb351d2215a19db52328ef6 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,6 +1,6 @@
 TODO list for PostgreSQL
 ========================
-Last updated:          Mon Aug 11 18:39:47 EDT 2003
+Last updated:          Tue Aug 12 18:04:15 EDT 2003
 
 Current maintainer:    Bruce Momjian (pgman@candle.pha.pa.us)
 
@@ -60,6 +60,9 @@ Administration
 * Allow logging of only data definition(DDL), or DDL and modification statements
 * Allow log lines to include session-level information, like database and user
 * Allow server log information to be output as INSERT statements
+* Prevent default re-use of sysids for dropped users and groups
+* Prevent dropping user that still owns objects, or auto-drop the objects
+
 
 
 Data Types
@@ -476,7 +479,7 @@ Source Code
 * Acquire lock on a relation before building a relcache entry for it
 * Research interaction of setitimer() and sleep() used by statement_timeout
 * Add checks for fclose() failure
-* 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 $
+* 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 $
 * Exit postmaster if postgresql.conf can not be opened
 * Rename /scripts directory because they are all C programs now
 * Allow the regression tests to start postmaster with -i so the tests
index 653f5b3b833b0be4ba1c55f27281be527e3274a8..740c58657eda0735c164fcae5bcfee6ca21e5895 100644 (file)
@@ -7,7 +7,7 @@
 # with broken/missing library files.
 
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/port/Makefile,v 1.5 2003/08/08 02:55:08 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/port/Makefile,v 1.6 2003/08/13 03:12:04 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -23,7 +23,7 @@ libpgport.a: $(LIBOBJS)
        $(AR) crs $@ $^
 
 thread.o: thread.c
-       $(CC) $(CFLAGS) $(CPPFLAGS) $(THREAD_CFLAGS) -c thread.c
+       $(CC) $(CFLAGS) $(CPPFLAGS) $(THREAD_CFLAGS) -c $<
 
 clean distclean maintainer-clean:
        rm -f libpgport.a $(LIBOBJS)