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

Commit 69b7651

Browse files
committed
Fix broken PG_VERSION_STR.
1 parent 60dcf1c commit 69b7651

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2784,7 +2784,7 @@ else
27842784
fi
27852785
27862786
cat >>confdefs.h <<_ACEOF
2787-
#define PG_VERSION_STR "PostgreSQL $VERSION on $host, compiled by $cc_string"
2787+
#define PG_VERSION_STR "PostgreSQL $PACKAGE_VERSION on $host, compiled by $cc_string"
27882788
_ACEOF
27892789
27902790

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
dnl $Header: /cvsroot/pgsql/configure.in,v 1.173 2002/03/30 00:59:52 petere Exp $
2+
dnl $Header: /cvsroot/pgsql/configure.in,v 1.174 2002/04/01 01:11:00 tgl Exp $
33

44
dnl Developers, please strive to achieve this order:
55
dnl
@@ -299,7 +299,7 @@ if test x"$GCC" = x"yes" ; then
299299
else
300300
cc_string=$CC
301301
fi
302-
AC_DEFINE_UNQUOTED(PG_VERSION_STR, ["PostgreSQL $VERSION on $host, compiled by $cc_string"], [A canonical string containing the version number, platform, and C compiler])
302+
AC_DEFINE_UNQUOTED(PG_VERSION_STR, ["PostgreSQL $PACKAGE_VERSION on $host, compiled by $cc_string"], [A canonical string containing the version number, platform, and C compiler])
303303

304304

305305
#

0 commit comments

Comments
 (0)