Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1933ae6

Browse files
committed
Add PostgreSQL home page to --help output
Per emerging standard in GNU programs and elsewhere. Autoconf alreadyhas support for specifying a home page, so we can just that.Reviewed-by: Daniel Gustafsson <daniel@yesql.se>Discussion:https://www.postgresql.org/message-id/flat/8d389c5f-7fb5-8e48-9a4a-68cec44786fa%402ndquadrant.com
1 parent8649341 commit1933ae6

File tree

37 files changed

+53
-14
lines changed

37 files changed

+53
-14
lines changed

‎configure

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ PACKAGE_TARNAME='postgresql'
585585
PACKAGE_VERSION='13devel'
586586
PACKAGE_STRING='PostgreSQL 13devel'
587587
PACKAGE_BUGREPORT='pgsql-bugs@lists.postgresql.org'
588-
PACKAGE_URL=''
588+
PACKAGE_URL='https://www.postgresql.org/'
589589

590590
ac_unique_file="src/backend/access/common/heaptuple.c"
591591
ac_default_prefix=/usr/local/pgsql
@@ -1600,6 +1600,7 @@ Use these variables to override the choices made by `configure' or to help
16001600
it to find libraries and programs with nonstandard names/locations.
16011601

16021602
Report bugs to <pgsql-bugs@lists.postgresql.org>.
1603+
PostgreSQL home page: <https://www.postgresql.org/>.
16031604
_ACEOF
16041605
ac_status=$?
16051606
fi
@@ -19516,7 +19517,8 @@ $config_links
1951619517
Configuration commands:
1951719518
$config_commands
1951819519

19519-
Report bugs to <pgsql-bugs@lists.postgresql.org>."
19520+
Report bugs to <pgsql-bugs@lists.postgresql.org>.
19521+
PostgreSQL home page: <https://www.postgresql.org/>."
1952019522

1952119523
_ACEOF
1952219524
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1

‎configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl Read the Autoconf manual for details.
1717
dnl
1818
m4_pattern_forbid(^PGAC_)dnl to catch undefined macros
1919

20-
AC_INIT([PostgreSQL], [13devel], [pgsql-bugs@lists.postgresql.org])
20+
AC_INIT([PostgreSQL], [13devel], [pgsql-bugs@lists.postgresql.org], [], [https://www.postgresql.org/])
2121

2222
m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.69 is required.
2323
Untested combinations of 'autoconf' and PostgreSQL versions are not

‎contrib/oid2name/oid2name.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,9 @@ help(const char *progname)
219219
" -p, --port=PORT database server port number\n"
220220
" -U, --username=USERNAME connect as specified database user\n"
221221
"\nThe default action is to show all database OIDs.\n\n"
222-
"Report bugs to <%s>.\n",
223-
progname,progname,PACKAGE_BUGREPORT);
222+
"Report bugs to <%s>.\n"
223+
"%s home page: <%s>\n",
224+
progname,progname,PACKAGE_BUGREPORT,PACKAGE_NAME,PACKAGE_URL);
224225
}
225226

226227
/*

‎contrib/pg_standby/pg_standby.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,7 @@ usage(void)
613613
"e.g.\n"
614614
" restore_command = 'pg_standby /mnt/server/archiverdir %%f %%p %%r'\n");
615615
printf("\nReport bugs to <%s>.\n",PACKAGE_BUGREPORT);
616+
printf("%s home page: <%s>\n",PACKAGE_NAME,PACKAGE_URL);
616617
}
617618

618619
#ifndefWIN32

‎contrib/vacuumlo/vacuumlo.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ usage(const char *progname)
437437
printf(" -W, --password force password prompt\n");
438438
printf("\n");
439439
printf("Report bugs to <%s>.\n",PACKAGE_BUGREPORT);
440+
printf("%s home page: <%s>\n",PACKAGE_NAME,PACKAGE_URL);
440441
}
441442

442443

‎src/Makefile.global.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ VERSION = @PACKAGE_VERSION@
4040
MAJORVERSION = @PG_MAJORVERSION@
4141
VERSION_NUM = @PG_VERSION_NUM@
4242

43+
PACKAGE_URL = @PACKAGE_URL@
44+
4345
# Set top_srcdir, srcdir, and VPATH.
4446
ifdefPGXS
4547
top_srcdir =$(top_builddir)

‎src/Makefile.shlib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ endif # PORTNAME == cygwin || PORTNAME == win32
389389
%.pc: $(MAKEFILE_LIST)
390390
echo 'Name: lib$(NAME)' >$@
391391
echo 'Description: PostgreSQL lib$(NAME) library' >>$@
392-
echo 'Url:http://www.postgresql.org/' >>$@
392+
echo 'Url:$(PACKAGE_URL)' >>$@
393393
echo 'Version: $(VERSION)' >>$@
394394
echo 'Requires: ' >>$@
395395
echo 'Requires.private: $(PKG_CONFIG_REQUIRES_PRIVATE)' >>$@

‎src/backend/main/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ help(const char *progname)
360360
"configuration settings and how to set them on the command line or in\n"
361361
"the configuration file.\n\n"
362362
"Report bugs to <%s>.\n"),PACKAGE_BUGREPORT);
363+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
363364
}
364365

365366

‎src/bin/initdb/initdb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2323,6 +2323,7 @@ usage(const char *progname)
23232323
printf(_("\nIf the data directory is not specified, the environment variable PGDATA\n"
23242324
"is used.\n"));
23252325
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
2326+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
23262327
}
23272328

23282329
staticvoid

‎src/bin/pg_archivecleanup/pg_archivecleanup.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ usage(void)
270270
"e.g.\n"
271271
" pg_archivecleanup /mnt/server/archiverdir 000000010000000000000010.00000020.backup\n"));
272272
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
273+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
273274
}
274275

275276
/*------------ MAIN ----------------------------------------*/

‎src/bin/pg_basebackup/pg_basebackup.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ usage(void)
397397
printf(_(" -w, --no-password never prompt for password\n"));
398398
printf(_(" -W, --password force password prompt (should happen automatically)\n"));
399399
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
400+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
400401
}
401402

402403

‎src/bin/pg_basebackup/pg_receivewal.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ usage(void)
103103
printf(_(" --create-slot create a new replication slot (for the slot's name see --slot)\n"));
104104
printf(_(" --drop-slot drop the replication slot (for the slot's name see --slot)\n"));
105105
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
106+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
106107
}
107108

108109
staticbool

‎src/bin/pg_basebackup/pg_recvlogical.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ usage(void)
104104
printf(_(" -w, --no-password never prompt for password\n"));
105105
printf(_(" -W, --password force password prompt (should happen automatically)\n"));
106106
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
107+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
107108
}
108109

109110
/*

‎src/bin/pg_checksums/pg_checksums.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ usage(void)
8989
printf(_("\nIf no data directory (DATADIR) is specified, "
9090
"the environment variable PGDATA\nis used.\n\n"));
9191
printf(_("Report bugs to <%s>.\n"),PACKAGE_BUGREPORT);
92+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
9293
}
9394

9495
/*

‎src/bin/pg_config/pg_config.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ help(void)
103103
printf(_(" -?, --help show this help, then exit\n"));
104104
printf(_("\nWith no arguments, all known items are shown.\n\n"));
105105
printf(_("Report bugs to <%s>.\n"),PACKAGE_BUGREPORT);
106+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
106107
}
107108

108109
staticvoid

‎src/bin/pg_controldata/pg_controldata.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ usage(const char *progname)
4242
printf(_("\nIf no data directory (DATADIR) is specified, "
4343
"the environment variable PGDATA\nis used.\n\n"));
4444
printf(_("Report bugs to <%s>.\n"),PACKAGE_BUGREPORT);
45+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
4546
}
4647

4748

‎src/bin/pg_ctl/pg_ctl.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2096,6 +2096,7 @@ do_help(void)
20962096
#endif
20972097

20982098
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
2099+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
20992100
}
21002101

21012102

‎src/bin/pg_dump/pg_dump.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,6 +1048,7 @@ help(const char *progname)
10481048
printf(_("\nIf no database name is supplied, then the PGDATABASE environment\n"
10491049
"variable value is used.\n\n"));
10501050
printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
1051+
printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
10511052
}
10521053

10531054
static void

‎src/bin/pg_dump/pg_dumpall.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -671,6 +671,7 @@ help(void)
671671
printf(_("\nIf -f/--file is not used, then the SQL script will be written to the standard\n"
672672
"output.\n\n"));
673673
printf(_("Report bugs to <%s>.\n"),PACKAGE_BUGREPORT);
674+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
674675
}
675676

676677

‎src/bin/pg_dump/pg_restore.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,4 +520,5 @@ usage(const char *progname)
520520
"multiple times to select multiple objects.\n"));
521521
printf(_("\nIf no input file name is supplied, then standard input is used.\n\n"));
522522
printf(_("Report bugs to <%s>.\n"),PACKAGE_BUGREPORT);
523+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
523524
}

‎src/bin/pg_resetwal/pg_resetwal.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,4 +1224,5 @@ usage(void)
12241224
printf(_(" --wal-segsize=SIZE size of WAL segments, in megabytes\n"));
12251225
printf(_(" -?, --help show this help, then exit\n"));
12261226
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
1227+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
12271228
}

‎src/bin/pg_rewind/pg_rewind.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ usage(const char *progname)
8888
printf(_(" -V, --version output version information, then exit\n"));
8989
printf(_(" -?, --help show this help, then exit\n"));
9090
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
91+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
9192
}
9293

9394

‎src/bin/pg_upgrade/option.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ usage(void)
337337
" C:\\> pg_upgrade\n"));
338338
#endif
339339
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
340+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
340341
}
341342

342343

‎src/bin/pg_waldump/pg_waldump.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,7 @@ usage(void)
731731
" (optionally, show per-record statistics)\n"));
732732
printf(_(" -?, --help show this help, then exit\n"));
733733
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
734+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
734735
}
735736

736737
int

‎src/bin/pgbench/pgbench.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -681,8 +681,9 @@ usage(void)
681681
" -V, --version output version information, then exit\n"
682682
" -?, --help show this help, then exit\n"
683683
"\n"
684-
"Report bugs to <%s>.\n",
685-
progname,progname,PACKAGE_BUGREPORT);
684+
"Report bugs to <%s>.\n"
685+
"%s home page: <%s>\n",
686+
progname,progname,PACKAGE_BUGREPORT,PACKAGE_NAME,PACKAGE_URL);
686687
}
687688

688689
/* return whether str matches "^\s*[-+]?[0-9]+$" */

‎src/bin/psql/help.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ usage(unsigned short int pager)
145145
"commands) from within psql, or consult the psql section in the PostgreSQL\n"
146146
"documentation.\n\n"));
147147
fprintf(output,_("Report bugs to <%s>.\n"),PACKAGE_BUGREPORT);
148+
fprintf(output,_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
148149

149150
ClosePager(output);
150151
}

‎src/bin/scripts/clusterdb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,4 +292,5 @@ help(const char *progname)
292292
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
293293
printf(_("\nRead the description of the SQL command CLUSTER for details.\n"));
294294
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
295+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
295296
}

‎src/bin/scripts/createdb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,4 +278,5 @@ help(const char *progname)
278278
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
279279
printf(_("\nBy default, a database with the same name as the current user is created.\n"));
280280
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
281+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
281282
}

‎src/bin/scripts/createuser.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,4 +376,5 @@ help(const char *progname)
376376
printf(_(" -w, --no-password never prompt for password\n"));
377377
printf(_(" -W, --password force password prompt\n"));
378378
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
379+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
379380
}

‎src/bin/scripts/dropdb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,5 @@ help(const char *progname)
178178
printf(_(" -W, --password force password prompt\n"));
179179
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
180180
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
181+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
181182
}

‎src/bin/scripts/dropuser.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,5 @@ help(const char *progname)
176176
printf(_(" -w, --no-password never prompt for password\n"));
177177
printf(_(" -W, --password force password prompt\n"));
178178
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
179+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
179180
}

‎src/bin/scripts/pg_isready.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,4 +236,5 @@ help(const char *progname)
236236
printf(_(" -t, --timeout=SECS seconds to wait when attempting connection, 0 disables (default: %s)\n"),DEFAULT_CONNECT_TIMEOUT);
237237
printf(_(" -U, --username=USERNAME user name to connect as\n"));
238238
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
239+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
239240
}

‎src/bin/scripts/reindexdb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -775,4 +775,5 @@ help(const char *progname)
775775
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
776776
printf(_("\nRead the description of the SQL command REINDEX for details.\n"));
777777
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
778+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
778779
}

‎src/bin/scripts/vacuumdb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -950,4 +950,5 @@ help(const char *progname)
950950
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
951951
printf(_("\nRead the description of the SQL command VACUUM for details.\n"));
952952
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
953+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
953954
}

‎src/interfaces/ecpg/preproc/ecpg.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ help(const char *progname)
5959
printf(_("\nIf no output file is specified, the name is formed by adding .c to the\n"
6060
"input file name, after stripping off .pgc if present.\n"));
6161
printf(_("\nReport bugs to <%s>.\n"),PACKAGE_BUGREPORT);
62+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
6263
}
6364

6465
staticvoid

‎src/test/regress/pg_regress.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2072,6 +2072,7 @@ help(void)
20722072
printf(_("if the tests could not be run for some reason.\n"));
20732073
printf(_("\n"));
20742074
printf(_("Report bugs to <%s>.\n"),PACKAGE_BUGREPORT);
2075+
printf(_("%s home page: <%s>\n"),PACKAGE_NAME,PACKAGE_URL);
20752076
}
20762077

20772078
int

‎src/tools/msvc/Solution.pm

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,20 +146,26 @@ sub GenerateFiles
146146
{
147147
my$self =shift;
148148
my$bits =$self->{platform}eq'Win32' ? 32 : 64;
149+
my$ac_init_found = 0;
149150
my$package_name;
150151
my$package_version;
151152
my$package_bugreport;
153+
my$package_url;
152154

153155
# Parse configure.in to get version numbers
154156
open(my$c,'<',"configure.in")
155157
|| confess("Could not open configure.in for reading\n");
156158
while (<$c>)
157159
{
158-
if (/^AC_INIT\(\[([^\]]+)\],\[([^\]]+)\],\[([^\]]+)\]/)
160+
if (/^AC_INIT\(\[([^\]]+)\],\[([^\]]+)\],\[([^\]]+)\],\[([^\]]*)\],\[([^\]]+)\]/)
159161
{
162+
$ac_init_found = 1;
163+
160164
$package_name =$1;
161165
$package_version =$2;
162166
$package_bugreport =$3;
167+
#$package_tarname = $4;
168+
$package_url =$5;
163169

164170
if ($package_version !~/^(\d+)(?:\.(\d+))?/)
165171
{
@@ -171,10 +177,7 @@ sub GenerateFiles
171177
}
172178
close($c);
173179
confess"Unable to parse configure.in for all variables!"
174-
if ($package_nameeq''
175-
||$package_versioneq''
176-
||$self->{numver}eq''
177-
||$package_bugreporteq'');
180+
unless$ac_init_found;
178181

179182
if (IsNewer("src/include/pg_config_os.h","src/include/port/win32.h"))
180183
{
@@ -431,7 +434,7 @@ sub GenerateFiles
431434
PACKAGE_NAME=>qq{"$package_name"},
432435
PACKAGE_STRING=>qq{"$package_name$package_version"},
433436
PACKAGE_TARNAME=>lcqq{"$package_name"},
434-
PACKAGE_URL=>undef,
437+
PACKAGE_URL=>qq{"$package_url"},
435438
PACKAGE_VERSION=>qq{"$package_version"},
436439
PG_INT128_TYPE=>undef,
437440
PG_INT64_TYPE=>'long long int',

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp