Switch to unified view

a/src/configure b/src/configure
...
...
1357
  --disable-xattr         Enable fetching metadata from file extended
1357
  --disable-xattr         Enable fetching metadata from file extended
1358
                          attributes. This is only useful if some application
1358
                          attributes. This is only useful if some application
1359
                          creates them on (part of) your data set. You also
1359
                          creates them on (part of) your data set. You also
1360
                          need to set up appropriate mappings in the
1360
                          need to set up appropriate mappings in the
1361
                          configuration.
1361
                          configuration.
1362
  --enable-idxthreads     Enable multithread indexing. This can somewhat boost
1362
  --disable-idxthreads    Disable multithread indexing.
1363
                          indexing performance.
1364
  --enable-camelcase      Enable splitting camelCase words. This is not
1363
  --enable-camelcase      Enable splitting camelCase words. This is not
1365
                          enabled by default as this makes phrase matches more
1364
                          enabled by default as this makes phrase matches more
1366
                          difficult: you need to use matching case in the
1365
                          difficult: you need to use matching case in the
1367
                          phrase query to get a match. Ie querying for "MySQL
1366
                          phrase query to get a match. Ie querying for "MySQL
1368
                          manual" and "my sql manual" are the same, but not
1367
                          manual" and "my sql manual" are the same, but not
...
...
4339
   else
4338
   else
4340
    as_fn_error $? "fam library not found" "$LINENO" 5
4339
    as_fn_error $? "fam library not found" "$LINENO" 5
4341
   fi
4340
   fi
4342
fi
4341
fi
4343
4342
4344
# Enable use of file extended attributes.  Not by default as extended
4343
# Disable use of file extended attributes. With xattrs disabled we can use
4345
# attributes are little used for now, and looking for them is not
4344
# mtime instead of ctime to look for file mods. Default is enabled.
4346
# completely trivial: we have to use ctime instead of mtime to detect
4347
# changes.
4348
# Check whether --enable-xattr was given.
4345
# Check whether --enable-xattr was given.
4349
if test "${enable_xattr+set}" = set; then :
4346
if test "${enable_xattr+set}" = set; then :
4350
  enableval=$enable_xattr; xattrEnabled=$enableval
4347
  enableval=$enable_xattr; xattrEnabled=$enableval
4351
else
4348
else
4352
  xattrEnabled=yes
4349
  xattrEnabled=yes
...
...
4365
# resources used).
4362
# resources used).
4366
# Check whether --enable-idxthreads was given.
4363
# Check whether --enable-idxthreads was given.
4367
if test "${enable_idxthreads+set}" = set; then :
4364
if test "${enable_idxthreads+set}" = set; then :
4368
  enableval=$enable_idxthreads; idxthreadsEnabled=$enableval
4365
  enableval=$enable_idxthreads; idxthreadsEnabled=$enableval
4369
else
4366
else
4370
  idxthreadsEnabled=no
4367
  idxthreadsEnabled=yes
4371
fi
4368
fi
4372
4369
4373
4370
4374
if test X$idxthreadsEnabled = Xyes ; then
4371
if test X$idxthreadsEnabled = Xyes ; then
4375
4372