diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-12-03 17:35:05 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-12-03 17:35:05 +0000 |
commit | 5ada36c1e4d95098a3da010f1844fed16447ce7a (patch) | |
tree | 74708a70473166a6b31d0d85888bdf7a8b2586a4 | |
parent | 89ad160622e42266376406a2d760de86a95d7cca (diff) | |
download | postgresql-5ada36c1e4d95098a3da010f1844fed16447ce7a.tar.gz postgresql-5ada36c1e4d95098a3da010f1844fed16447ce7a.zip |
Rename libpq++.H to libpq++.h.
-rw-r--r-- | src/interfaces/libpq++/CHANGES | 2 | ||||
-rw-r--r-- | src/interfaces/libpq++/Makefile.in | 4 | ||||
-rw-r--r-- | src/interfaces/libpq++/libpq++.h (renamed from src/interfaces/libpq++/libpq++.H) | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/libpq++/CHANGES b/src/interfaces/libpq++/CHANGES index 45ce0d0ac1f..1f75e4d94a4 100644 --- a/src/interfaces/libpq++/CHANGES +++ b/src/interfaces/libpq++/CHANGES @@ -2,7 +2,7 @@ 5/18/1999 - vv --------- -* Rewrote libpq++.H +* Rewrote libpq++.h * Incremented shared library version to 3.0 * Cleaned up makefiles * Made examples use the installed versions of the library and header diff --git a/src/interfaces/libpq++/Makefile.in b/src/interfaces/libpq++/Makefile.in index cf4d35a81fd..f30156f2195 100644 --- a/src/interfaces/libpq++/Makefile.in +++ b/src/interfaces/libpq++/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.17 1999/09/07 18:10:49 tgl Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.18 1999/12/03 17:35:05 momjian Exp $ # #------------------------------------------------------------------------- @@ -75,7 +75,7 @@ install: install-headers install-lib $(install-shlib-dep) LIBPGXXDIR = libpq++ LIBPGXXHEADERDIR = $(HEADERDIR)/$(LIBPGXXDIR) -MAINHEADER = libpq++.H +MAINHEADER = libpq++.h LIBPGXXHEADERS = pgconnection.h \ pgdatabase.h \ pgtransdb.h \ diff --git a/src/interfaces/libpq++/libpq++.H b/src/interfaces/libpq++/libpq++.h index 13c4b7ffecf..5631ded2f77 100644 --- a/src/interfaces/libpq++/libpq++.H +++ b/src/interfaces/libpq++/libpq++.h @@ -1,7 +1,7 @@ /*------------------------------------------------------------------------- * - * libpq++.H + * libpq++.h * * * DESCRIPTION @@ -30,7 +30,7 @@ extern "C" { #include "libpq-fe.h" } -static char rcsid[] = "$Id: libpq++.H,v 1.7 1999/10/22 19:05:02 momjian Exp $"; +static char rcsid[] = "$Id: libpq++.h,v 1.3 1999/12/03 17:35:05 momjian Exp $"; // **************************************************************** |