@@ -230,7 +230,7 @@ AC_SUBST(enable_coverage)
230
230
#
231
231
PGAC_ARG_BOOL(enable, dtrace, no,
232
232
[build with DTrace support],
233
- [AC_DEFINE([ENABLE_DTRACE], 1,
233
+ [AC_DEFINE([ENABLE_DTRACE], 1,
234
234
[Define to 1 to enable DTrace support. (--enable-dtrace)])
235
235
AC_CHECK_PROGS(DTRACE, dtrace)
236
236
if test -z "$DTRACE"; then
@@ -262,14 +262,14 @@ AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
262
262
can set it bigger if you need bigger tuples (although TOAST should
263
263
reduce the need to have large tuples, since fields can be spread
264
264
across multiple tuples).
265
-
265
+
266
266
BLCKSZ must be a power of 2. The maximum possible value of BLCKSZ
267
267
is currently 2^15 (32768). This is determined by the 15-bit widths
268
268
of the lp_off and lp_len fields in ItemIdData (see
269
269
include/storage/itemid.h).
270
-
270
+
271
271
Changing BLCKSZ requires an initdb.
272
- ])
272
+ ])
273
273
274
274
#
275
275
# Relation segment size
@@ -288,7 +288,7 @@ AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
288
288
RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
289
289
Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
290
290
relations bigger than that are divided into multiple files.
291
-
291
+
292
292
RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
293
293
This is often 2 GB or 4GB in a 32-bit operating system, unless you
294
294
have large file support enabled. By default, we make the limit 1 GB
@@ -329,7 +329,7 @@ AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
329
329
buffers, else direct I/O may fail.
330
330
331
331
Changing XLOG_BLCKSZ requires an initdb.
332
- ])
332
+ ])
333
333
334
334
#
335
335
# WAL segment size
461
461
# enable profiling if --enable-profiling
462
462
if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
463
463
if test "$GCC" = yes; then
464
- AC_DEFINE([PROFILE_PID_DIR], 1,
464
+ AC_DEFINE([PROFILE_PID_DIR], 1,
465
465
[Define to 1 to allow profiling output to be saved separately for each process.])
466
466
CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
467
467
else
@@ -1141,7 +1141,7 @@ if test "$with_krb5" = yes; then
1141
1141
AC_MSG_CHECKING(for krb5_free_unparsed_name)
1142
1142
AC_TRY_LINK([#include <krb5.h>],
1143
1143
[krb5_free_unparsed_name(NULL,NULL);],
1144
- [AC_DEFINE(HAVE_KRB5_FREE_UNPARSED_NAME, 1, [Define to 1 if you have krb5_free_unparsed_name])
1144
+ [AC_DEFINE(HAVE_KRB5_FREE_UNPARSED_NAME, 1, [Define to 1 if you have krb5_free_unparsed_name])
1145
1145
AC_MSG_RESULT(yes)],
1146
1146
[AC_MSG_RESULT(no)])
1147
1147
fi
@@ -1156,8 +1156,8 @@ AC_SYS_LARGEFILE
1156
1156
AC_CHECK_SIZEOF([off_t])
1157
1157
1158
1158
# If we don't have largefile support, can't handle segsize >= 2GB.
1159
- if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1160
- AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1159
+ if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1160
+ AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1161
1161
fi
1162
1162
1163
1163
@@ -1228,8 +1228,8 @@ if test "$PORTNAME" = "win32"; then
1228
1228
#
1229
1229
# To properly translate all NLS languages strings, we must support the
1230
1230
# *printf() %$ format, which allows *printf() arguments to be selected
1231
- # by position in the translated string.
1232
- #
1231
+ # by position in the translated string.
1232
+ #
1233
1233
# libintl versions < 0.13 use the native *printf() functions, and Win32
1234
1234
# *printf() doesn't understand %$, so we must use our /port versions,
1235
1235
# which do understand %$. libintl versions >= 0.13 include their own
@@ -1590,7 +1590,7 @@ AC_CHECK_SIZEOF([size_t])
1590
1590
AC_CHECK_SIZEOF([long])
1591
1591
1592
1592
# Decide whether float4 is passed by value: user-selectable, enabled by default
1593
- AC_MSG_CHECKING([whether to build with float4 passed by value])
1593
+ AC_MSG_CHECKING([whether to build with float4 passed by value])
1594
1594
PGAC_ARG_BOOL(enable, float4-byval, yes, [disable float4 passed by value],
1595
1595
[AC_DEFINE([USE_FLOAT4_BYVAL], 1,
1596
1596
[Define to 1 if you want float4 values to be passed by value. (--enable-float4-byval)])
@@ -1858,7 +1858,7 @@ AC_CONFIG_LINKS([
1858
1858
1859
1859
if test "$PORTNAME" = "win32"; then
1860
1860
AC_CONFIG_COMMANDS([check_win32_symlinks],[
1861
- # Links sometimes fail undetected on Mingw -
1861
+ # Links sometimes fail undetected on Mingw -
1862
1862
# so here we detect it and warn the user
1863
1863
for FILE in $CONFIG_LINKS
1864
1864
do
0 commit comments