diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-09-18 14:00:05 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-09-18 19:39:46 -0400 |
commit | 1cba4036b6f5e798114c7cc77c788839c89e3b3c (patch) | |
tree | 7c399ad0e7a357d82cc5aeec35e03c4419c2ada9 /configure | |
parent | 36546ffbef5d4f5ea0f5d5c8e3fe5a5c9a34ea47 (diff) | |
download | glibc-1cba4036b6f5e798114c7cc77c788839c89e3b3c.tar.gz glibc-1cba4036b6f5e798114c7cc77c788839c89e3b3c.tar.xz glibc-1cba4036b6f5e798114c7cc77c788839c89e3b3c.zip |
timezone: add a configure flag to disable program install
Some distros build+install the timezone tools (zic/zdump/tzselect) outside of glibc and use the upstream package directly. Add a configure flag to glibc so they can disable install of those tools. This allows tests to run & pass regardless of the configure flag. Only the install of them is impacted.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure b/configure index 45cc7cba2b..fe402ea05b 100755 --- a/configure +++ b/configure @@ -676,6 +676,7 @@ force_install bindnow enable_lock_elision hardcoded_path_in_tests +enable_timezone_tools use_default_link sysheaders with_fp @@ -759,6 +760,7 @@ with_default_link enable_sanity_checks enable_shared enable_profile +enable_timezone_tools enable_hardcoded_path_in_tests enable_stackguard_randomization enable_lock_elision @@ -1411,6 +1413,9 @@ Optional Features: in special situations) [default=yes] --enable-shared build shared library [default=yes if GNU ld] --enable-profile build profiled library [default=no] + --disable-timezone-tools + do not install timezone tools (if using external + ones) [default=install] --enable-hardcoded-path-in-tests hardcode newly built glibc path in tests [default=no] @@ -3548,6 +3553,14 @@ else profile=no fi +# Check whether --enable-timezone-tools was given. +if test "${enable_timezone_tools+set}" = set; then : + enableval=$enable_timezone_tools; enable_timezone_tools=$enableval +else + enable_timezone_tools=yes +fi + + # Check whether --enable-hardcoded-path-in-tests was given. if test "${enable_hardcoded_path_in_tests+set}" = set; then : |