aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-11-06 22:18:10 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-11-06 22:18:10 +0000
commit306c44eeadc9e33f415ff011f254b0527edfa88d (patch)
treed9f6a2d9250f4d169af38fae8b9af349bbd88f34 /src
parent6f2f1690156d4815a40977f900f098af4f745086 (diff)
downloadpostgresql-306c44eeadc9e33f415ff011f254b0527edfa88d.tar.gz
postgresql-306c44eeadc9e33f415ff011f254b0527edfa88d.zip
Add -V option to backend, to show version, since --version doesn't seem
to work everywhere. Also, on FreeBSD you need to set the optreset variable to 1 before parsing the command line a second time with getopt().
Diffstat (limited to 'src')
-rw-r--r--src/backend/postmaster/postmaster.c15
-rw-r--r--src/backend/tcop/postgres.c10
-rw-r--r--src/bin/initdb/initdb.sh8
-rw-r--r--src/include/config.h.in4
4 files changed, 25 insertions, 12 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 060b0e5ef40..192e5205a14 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.178 2000/11/04 12:43:23 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.179 2000/11/06 22:18:06 petere Exp $
*
* NOTES
*
@@ -57,7 +57,7 @@
#endif
#ifdef HAVE_GETOPT_H
-#include "getopt.h"
+#include <getopt.h>
#endif
#include "catalog/pg_database.h"
@@ -372,7 +372,7 @@ PostmasterMain(int argc, char *argv[])
* will occur.
*/
opterr = 1;
- while ((opt = getopt(argc, argv, "A:a:B:b:D:d:Film:MN:no:p:Ss-:?")) != EOF)
+ while ((opt = getopt(argc, argv, "A:a:B:b:D:d:Film:MN:no:p:SsV-:?")) != EOF)
{
switch(opt)
{
@@ -380,6 +380,10 @@ PostmasterMain(int argc, char *argv[])
potential_DataDir = optarg;
break;
+ case 'V':
+ puts("postmaster (PostgreSQL) " PG_VERSION);
+ exit(0);
+
case '-':
{
char *name, *value;
@@ -421,7 +425,10 @@ PostmasterMain(int argc, char *argv[])
IgnoreSystemIndexes(false);
optind = 1; /* start over */
- while ((opt = getopt(argc, argv, "A:a:B:b:D:d:Film:MN:no:p:Ss-:?")) != EOF)
+#ifdef HAVE_INT_OPTRESET
+ optreset = 1;
+#endif
+ while ((opt = getopt(argc, argv, "A:a:B:b:D:d:Film:MN:no:p:SsV-:?")) != EOF)
{
switch (opt)
{
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 29192686e6c..3a6cc57d3d8 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.185 2000/11/04 12:43:24 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.186 2000/11/06 22:18:08 petere Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -1112,7 +1112,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha
optind = 1; /* reset after postmaster's usage */
- while ((flag = getopt(argc, argv, "A:B:CD:d:Eef:FiLNOPo:p:S:st:v:W:x:-:?")) != EOF)
+ while ((flag = getopt(argc, argv, "A:B:CD:d:Eef:FiLNOPo:p:S:st:v:VW:x:-:?")) != EOF)
switch (flag)
{
case 'A':
@@ -1338,6 +1338,10 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha
FrontendProtocol = (ProtocolVersion) atoi(optarg);
break;
+ case 'V':
+ puts("postgres (PostgreSQL) " PG_VERSION);
+ exit(0);
+
case 'W':
/* ----------------
* wait N seconds to allow attach from a debugger
@@ -1635,7 +1639,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface ");
- puts("$Revision: 1.185 $ $Date: 2000/11/04 12:43:24 $\n");
+ puts("$Revision: 1.186 $ $Date: 2000/11/06 22:18:08 $\n");
}
/*
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh
index 1410ba6bc6e..c938310c438 100644
--- a/src/bin/initdb/initdb.sh
+++ b/src/bin/initdb/initdb.sh
@@ -23,7 +23,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.110 2000/11/04 12:47:48 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.111 2000/11/06 22:18:09 petere Exp $
#
#-------------------------------------------------------------------------
@@ -109,11 +109,11 @@ fi
if [ x"$self_path" != x"" ] \
&& [ -x "$self_path/postgres" ] \
- && [ x"`$self_path/postgres --version 2>/dev/null`" = x"postgres (PostgreSQL) $VERSION" ]
+ && [ x"`$self_path/postgres -V 2>/dev/null`" = x"postgres (PostgreSQL) $VERSION" ]
then
PGPATH=$self_path
elif [ -x "$bindir/postgres" ]; then
- if [ x"`$bindir/postgres --version 2>/dev/null`" = x"postgres (PostgreSQL) $VERSION" ]
+ if [ x"`$bindir/postgres -V 2>/dev/null`" = x"postgres (PostgreSQL) $VERSION" ]
then
PGPATH=$bindir
else
@@ -186,7 +186,7 @@ do
usage=t
break
;;
- --version)
+ --version|-V)
echo "initdb (PostgreSQL) $VERSION"
exit 0
;;
diff --git a/src/include/config.h.in b/src/include/config.h.in
index c3d5b663485..b066daed7bd 100644
--- a/src/include/config.h.in
+++ b/src/include/config.h.in
@@ -8,7 +8,7 @@
* or in config.h afterwards. Of course, if you edit config.h, then your
* changes will be overwritten the next time you run configure.
*
- * $Id: config.h.in,v 1.146 2000/11/03 18:43:52 petere Exp $
+ * $Id: config.h.in,v 1.147 2000/11/06 22:18:10 petere Exp $
*/
#ifndef CONFIG_H
@@ -604,6 +604,8 @@ extern void srandom(unsigned int seed);
/* Define if a system lib (-ldl) has dlopen() (needed for AIX) */
#undef HAVE_DLOPEN
+/* Define if you have the optreset variable */
+#undef HAVE_INT_OPTRESET
/*
*------------------------------------------------------------------------