diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-03-11 19:13:43 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-03-11 19:13:43 +0000 |
commit | caad817d1c250017b3f456417ecf14fa7ad083e6 (patch) | |
tree | 44f4ef99879fb3a48e81c3878667f181356fbab9 /src/interfaces/ecpg/compatlib | |
parent | 3bc6bdf322ea625c23b15caa97daba6f43cfcc7f (diff) | |
download | postgresql-caad817d1c250017b3f456417ecf14fa7ad083e6.tar.gz postgresql-caad817d1c250017b3f456417ecf14fa7ad083e6.zip |
Add fprintf() custom version to libpgport.
Document use of macros for pg_printf functions.
Bump major versions of all interfaces to handle movement of get_progname
from libpq to libpgport in 8.0, and probably other libpgport changes in 8.1.
Diffstat (limited to 'src/interfaces/ecpg/compatlib')
-rw-r--r-- | src/interfaces/ecpg/compatlib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/compatlib/Makefile b/src/interfaces/ecpg/compatlib/Makefile index 45f945281bc..c838c159e1a 100644 --- a/src/interfaces/ecpg/compatlib/Makefile +++ b/src/interfaces/ecpg/compatlib/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.19 2005/01/18 05:00:15 momjian Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.20 2005/03/11 19:13:42 momjian Exp $ # #------------------------------------------------------------------------- @@ -13,8 +13,8 @@ top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global NAME= ecpg_compat -SO_MAJOR_VERSION= 1 -SO_MINOR_VERSION= 2 +SO_MAJOR_VERSION= 2 +SO_MINOR_VERSION= 0 DLTYPE= library override CPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include -I$(libpq_srcdir) \ |