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

Commit b2ec7f5

Browse files
committed
meson: Use consistent Meson option description formats
Author: Tristan Partin <tristan@neon.tech> Discussion: https://www.postgresql.org/message-id/flat/CSPIJVUDZFKX.3KHMOAVGF94RV%40c3po
1 parent 529449c commit b2ec7f5

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

meson_options.txt

+16-16
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
option('blocksize', type : 'combo',
66
choices : ['1', '2', '4', '8', '16', '32'],
77
value : '8',
8-
description: 'Set relation block size in kB')
8+
description: 'Relation block size, in kilobytes')
99

1010
option('wal_blocksize', type : 'combo',
1111
choices: ['1', '2', '4', '8', '16', '32', '64'],
@@ -41,16 +41,16 @@ option('cassert', type : 'boolean', value: false,
4141
description: 'Enable assertion checks (for debugging)')
4242

4343
option('tap_tests', type : 'feature', value : 'auto',
44-
description : 'Whether to enable tap tests')
44+
description : 'Enable TAP tests')
4545

4646
option('PG_TEST_EXTRA', type : 'string', value: '',
4747
description: 'Enable selected extra tests')
4848

4949
option('atomics', type : 'boolean', value: true,
50-
description: 'Whether to use atomic operations')
50+
description: 'Use atomic operations')
5151

5252
option('spinlocks', type : 'boolean', value: true,
53-
description: 'Whether to use spinlocks')
53+
description: 'Use spinlocks')
5454

5555

5656
# Compilation options
@@ -68,16 +68,16 @@ option('darwin_sysroot', type : 'string', value: '',
6868
description: 'Select a non-default sysroot path')
6969

7070
option('rpath', type : 'boolean', value: true,
71-
description: 'Whether to embed shared library search path in executables')
71+
description: 'Embed shared library search path in executables')
7272

7373

7474
# External dependencies
7575

7676
option('bonjour', type : 'feature', value: 'auto',
77-
description: 'Build with Bonjour support')
77+
description: 'Bonjour support')
7878

7979
option('bsd_auth', type : 'feature', value: 'auto',
80-
description: 'Build with BSD Authentication support')
80+
description: 'BSD Authentication support')
8181

8282
option('docs', type : 'feature', value: 'auto',
8383
description: 'Documentation in HTML and man page format')
@@ -110,7 +110,7 @@ option('libxslt', type : 'feature', value: 'auto',
110110
description: 'XSLT support in contrib/xml2')
111111

112112
option('llvm', type : 'feature', value: 'disabled',
113-
description: 'Whether to use llvm')
113+
description: 'LLVM support')
114114

115115
option('lz4', type : 'feature', value: 'auto',
116116
description: 'LZ4 support')
@@ -119,7 +119,7 @@ option('nls', type: 'feature', value: 'auto',
119119
description: 'Native language support')
120120

121121
option('pam', type : 'feature', value: 'auto',
122-
description: 'Build with PAM support')
122+
description: 'PAM support')
123123

124124
option('plperl', type : 'feature', value: 'auto',
125125
description: 'Build Perl modules (PL/Perl)')
@@ -128,33 +128,33 @@ option('plpython', type : 'feature', value: 'auto',
128128
description: 'Build Python modules (PL/Python)')
129129

130130
option('pltcl', type : 'feature', value: 'auto',
131-
description: 'Build with TCL support')
131+
description: 'Build with Tcl support (PL/Tcl)')
132132

133133
option('tcl_version', type : 'string', value : 'tcl',
134-
description: 'Specify TCL version')
134+
description: 'Tcl version')
135135

136136
option('readline', type : 'feature', value : 'auto',
137137
description: 'Use GNU Readline or BSD Libedit for editing')
138138

139139
option('selinux', type : 'feature', value : 'disabled',
140-
description: 'Build with SELinux support')
140+
description: 'SELinux support')
141141

142142
option('ssl', type : 'combo', choices : ['auto', 'none', 'openssl'],
143143
value : 'auto',
144144
description: 'Use LIB for SSL/TLS support (openssl)')
145145

146146
option('systemd', type : 'feature', value: 'auto',
147-
description: 'Build with systemd support')
147+
description: 'systemd support')
148148

149149
option('uuid', type : 'combo', choices : ['none', 'bsd', 'e2fs', 'ossp'],
150150
value : 'none',
151-
description: 'Build contrib/uuid-ossp using LIB')
151+
description: 'Use LIB for contrib/uuid-ossp support')
152152

153153
option('zlib', type : 'feature', value: 'auto',
154-
description: 'Whether to use zlib')
154+
description: 'Enable zlib')
155155

156156
option('zstd', type : 'feature', value: 'auto',
157-
description: 'Whether to use zstd')
157+
description: 'Enable zstd')
158158

159159

160160
# Programs

0 commit comments

Comments
 (0)