@@ -230,7 +230,7 @@ AC_SUBST(enable_coverage)
230230#
231231PGAC_ARG_BOOL(enable, dtrace, no,
232232 [build with DTrace support],
233- [AC_DEFINE([ENABLE_DTRACE], 1,
233+ [AC_DEFINE([ENABLE_DTRACE], 1,
234234 [Define to 1 to enable DTrace support. (--enable-dtrace)])
235235AC_CHECK_PROGS(DTRACE, dtrace)
236236if test -z "$DTRACE"; then
@@ -262,14 +262,14 @@ AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
262262 can set it bigger if you need bigger tuples (although TOAST should
263263 reduce the need to have large tuples, since fields can be spread
264264 across multiple tuples).
265-
265+
266266 BLCKSZ must be a power of 2. The maximum possible value of BLCKSZ
267267 is currently 2^15 (32768). This is determined by the 15-bit widths
268268 of the lp_off and lp_len fields in ItemIdData (see
269269 include/storage/itemid.h).
270-
270+
271271 Changing BLCKSZ requires an initdb.
272- ])
272+ ])
273273
274274#
275275# Relation segment size
@@ -288,7 +288,7 @@ AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
288288 RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
289289 Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
290290 relations bigger than that are divided into multiple files.
291-
291+
292292 RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
293293 This is often 2 GB or 4GB in a 32-bit operating system, unless you
294294 have large file support enabled. By default, we make the limit 1 GB
@@ -329,7 +329,7 @@ AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
329329 buffers, else direct I/O may fail.
330330
331331 Changing XLOG_BLCKSZ requires an initdb.
332- ])
332+ ])
333333
334334#
335335# WAL segment size
461461# enable profiling if --enable-profiling
462462if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
463463 if test "$GCC" = yes; then
464- AC_DEFINE([PROFILE_PID_DIR], 1,
464+ AC_DEFINE([PROFILE_PID_DIR], 1,
465465 [Define to 1 to allow profiling output to be saved separately for each process.])
466466 CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
467467 else
@@ -1141,7 +1141,7 @@ if test "$with_krb5" = yes; then
11411141 AC_MSG_CHECKING(for krb5_free_unparsed_name)
11421142 AC_TRY_LINK([#include <krb5.h>],
11431143 [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])
11451145AC_MSG_RESULT(yes)],
11461146 [AC_MSG_RESULT(no)])
11471147fi
@@ -1156,8 +1156,8 @@ AC_SYS_LARGEFILE
11561156AC_CHECK_SIZEOF([off_t])
11571157
11581158# 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.])
11611161fi
11621162
11631163
@@ -1228,8 +1228,8 @@ if test "$PORTNAME" = "win32"; then
12281228 #
12291229 # To properly translate all NLS languages strings, we must support the
12301230 # *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+ #
12331233 # libintl versions < 0.13 use the native *printf() functions, and Win32
12341234 # *printf() doesn't understand %$, so we must use our /port versions,
12351235 # which do understand %$. libintl versions >= 0.13 include their own
@@ -1590,7 +1590,7 @@ AC_CHECK_SIZEOF([size_t])
15901590AC_CHECK_SIZEOF([long])
15911591
15921592# 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])
15941594PGAC_ARG_BOOL(enable, float4-byval, yes, [disable float4 passed by value],
15951595 [AC_DEFINE([USE_FLOAT4_BYVAL], 1,
15961596 [Define to 1 if you want float4 values to be passed by value. (--enable-float4-byval)])
@@ -1858,7 +1858,7 @@ AC_CONFIG_LINKS([
18581858
18591859if test "$PORTNAME" = "win32"; then
18601860AC_CONFIG_COMMANDS([check_win32_symlinks],[
1861- # Links sometimes fail undetected on Mingw -
1861+ # Links sometimes fail undetected on Mingw -
18621862# so here we detect it and warn the user
18631863for FILE in $CONFIG_LINKS
18641864 do