diff options
author | Peter Eisentraut | 2001-08-24 14:07:50 +0000 |
---|---|---|
committer | Peter Eisentraut | 2001-08-24 14:07:50 +0000 |
commit | 968d7733a19cda3db16947024bd335d877b3d9c3 (patch) | |
tree | a39593b292dbfcaad45924e9a20ae90300167524 /src/include/Makefile | |
parent | 7326e78c4249393359edce09f555aaa049be2a80 (diff) |
Rename config.h to pg_config.h and os.h to pg_config_os.h, fix a number of
places that were including the wrong files.
Diffstat (limited to 'src/include/Makefile')
-rw-r--r-- | src/include/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/Makefile b/src/include/Makefile index 7d8a3e5b7f5..a8aed3fdd70 100644 --- a/src/include/Makefile +++ b/src/include/Makefile @@ -6,7 +6,7 @@ # programming. 'make install-all-headers' installs the whole contents # of src/include. # -# $Header: /cvsroot/pgsql/src/include/Makefile,v 1.8 2001/03/01 16:17:53 petere Exp $ +# $Header: /cvsroot/pgsql/src/include/Makefile,v 1.9 2001/08/24 14:07:49 petere Exp $ # #------------------------------------------------------------------------- @@ -18,7 +18,7 @@ include $(top_builddir)/src/Makefile.global srcdir_headers := c.h postgres_ext.h postgres_fe.h \ libpq/pqcomm.h libpq/libpq-fs.h lib/dllist.h -builddir_headers := os.h config.h +builddir_headers := pg_config_os.h pg_config.h HEADERS = $(srcdir_headers) $(builddir_headers) @@ -91,4 +91,4 @@ clean: rm -f utils/fmgroids.h parser/parse.h distclean maintainer-clean: clean - rm -f config.h dynloader.h os.h stamp-h + rm -f pg_config.h dynloader.h pg_config_os.h stamp-h |