| [3170] | 1 | dnl Process this file with autoconf to produce a configure script.
|
|---|
| 2 | AC_INIT([GNU findutils], 4.3.2, [[email protected]])
|
|---|
| 3 | AM_INIT_AUTOMAKE
|
|---|
| 4 |
|
|---|
| 5 | AC_CONFIG_SRCDIR([find/pred.c])
|
|---|
| 6 | AC_CONFIG_HEADERS([config.h])
|
|---|
| 7 | AC_CANONICAL_HOST
|
|---|
| 8 | AC_CONFIG_MACRO_DIR(gnulib/m4)
|
|---|
| 9 |
|
|---|
| 10 | dnl Set of available languages.
|
|---|
| 11 | ALL_LINGUAS="be bg ca da de el eo es et fi fr ga gl hr hu id it ja ko lg ms nl pl pt pt_BR ro ru rw sk sl sr sv tr vi zh_CN zh_TW"
|
|---|
| 12 |
|
|---|
| 13 | AC_SUBST(INCLUDES)dnl
|
|---|
| 14 |
|
|---|
| 15 | dnl check for --with-fts
|
|---|
| 16 | FIND_WITH_FTS
|
|---|
| 17 |
|
|---|
| 18 | AC_ARG_ENABLE(id-cache,
|
|---|
| 19 | [ --enable-id-cache cache all UIDs & GIDs; avoid if using NIS or Hesiod],
|
|---|
| 20 | AC_DEFINE(CACHE_IDS, 1, [Define if you want find -nouser and -nogroup to make tables of
|
|---|
| 21 | used UIDs and GIDs at startup instead of using getpwuid or
|
|---|
| 22 | getgrgid when needed. Speeds up -nouser and -nogroup unless you
|
|---|
| 23 | are running NIS or Hesiod, which make password and group calls
|
|---|
| 24 | very expensive.]))
|
|---|
| 25 |
|
|---|
| 26 | AC_ARG_ENABLE(debug,
|
|---|
| 27 | AS_HELP_STRING(--enable-debug,Enable debugging output which is likely to be interesting to people debugging findutils),
|
|---|
| 28 | [ac_cv_debug=$enableval],[ac_cv_debug=no])
|
|---|
| 29 |
|
|---|
| |
|---|