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.
This commit is contained in:
parent
36546ffbef
commit
1cba4036b6
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2015-09-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* config.make.in (enable-timezone-tools): New variable.
|
||||||
|
* configure.ac (AC_ARG_ENABLE(timezone-tools)): New configure flag.
|
||||||
|
(enable_timezone_tools): Export to generated files.
|
||||||
|
* configure: Regenerate.
|
||||||
|
* INSTALL: Regenerate.
|
||||||
|
* manual/install.texi (--disable-timezone-tools): Document new flag.
|
||||||
|
* timezone/Makefile (install-sbin, install-bin-script): Wrap in a
|
||||||
|
ifeq ($(enable-timezone-tools),yes) check.
|
||||||
|
|
||||||
2015-09-18 Joseph Myers <joseph@codesourcery.com>
|
2015-09-18 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* timezone/Makefile: Revert previous change.
|
* timezone/Makefile: Revert previous change.
|
||||||
|
11
INSTALL
11
INSTALL
@ -127,6 +127,17 @@ will be used, and CFLAGS sets optimization options for the compiler.
|
|||||||
library. This option hardcodes the newly built C library path in
|
library. This option hardcodes the newly built C library path in
|
||||||
dynamic tests so that they can be invoked directly.
|
dynamic tests so that they can be invoked directly.
|
||||||
|
|
||||||
|
'--disable-timezone-tools'
|
||||||
|
By default, timezone related utilities ('zic', 'zdump', and
|
||||||
|
'tzselect') are installed with glibc. If you are building these
|
||||||
|
independently (e.g. by using the 'tzcode' package), then this
|
||||||
|
option will allow disabling the install of these too.
|
||||||
|
|
||||||
|
Note that you need to make sure the external tools are kept in sync
|
||||||
|
with the versions that the GNU C Library expects as the data
|
||||||
|
formats may change over time. Consult the 'timezone' subdirectory
|
||||||
|
for more details.
|
||||||
|
|
||||||
'--enable-lock-elision=yes'
|
'--enable-lock-elision=yes'
|
||||||
Enable lock elision for pthread mutexes by default.
|
Enable lock elision for pthread mutexes by default.
|
||||||
|
|
||||||
|
@ -52,6 +52,7 @@ have-z-execstack = @libc_cv_z_execstack@
|
|||||||
have-Bgroup = @libc_cv_Bgroup@
|
have-Bgroup = @libc_cv_Bgroup@
|
||||||
have-protected-data = @libc_cv_protected_data@
|
have-protected-data = @libc_cv_protected_data@
|
||||||
with-fp = @with_fp@
|
with-fp = @with_fp@
|
||||||
|
enable-timezone-tools = @enable_timezone_tools@
|
||||||
old-glibc-headers = @old_glibc_headers@
|
old-glibc-headers = @old_glibc_headers@
|
||||||
unwind-find-fde = @libc_cv_gcc_unwind_find_fde@
|
unwind-find-fde = @libc_cv_gcc_unwind_find_fde@
|
||||||
have-forced-unwind = @libc_cv_forced_unwind@
|
have-forced-unwind = @libc_cv_forced_unwind@
|
||||||
|
13
configure
vendored
13
configure
vendored
@ -676,6 +676,7 @@ force_install
|
|||||||
bindnow
|
bindnow
|
||||||
enable_lock_elision
|
enable_lock_elision
|
||||||
hardcoded_path_in_tests
|
hardcoded_path_in_tests
|
||||||
|
enable_timezone_tools
|
||||||
use_default_link
|
use_default_link
|
||||||
sysheaders
|
sysheaders
|
||||||
with_fp
|
with_fp
|
||||||
@ -759,6 +760,7 @@ with_default_link
|
|||||||
enable_sanity_checks
|
enable_sanity_checks
|
||||||
enable_shared
|
enable_shared
|
||||||
enable_profile
|
enable_profile
|
||||||
|
enable_timezone_tools
|
||||||
enable_hardcoded_path_in_tests
|
enable_hardcoded_path_in_tests
|
||||||
enable_stackguard_randomization
|
enable_stackguard_randomization
|
||||||
enable_lock_elision
|
enable_lock_elision
|
||||||
@ -1411,6 +1413,9 @@ Optional Features:
|
|||||||
in special situations) [default=yes]
|
in special situations) [default=yes]
|
||||||
--enable-shared build shared library [default=yes if GNU ld]
|
--enable-shared build shared library [default=yes if GNU ld]
|
||||||
--enable-profile build profiled library [default=no]
|
--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
|
--enable-hardcoded-path-in-tests
|
||||||
hardcode newly built glibc path in tests
|
hardcode newly built glibc path in tests
|
||||||
[default=no]
|
[default=no]
|
||||||
@ -3548,6 +3553,14 @@ else
|
|||||||
profile=no
|
profile=no
|
||||||
fi
|
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.
|
# Check whether --enable-hardcoded-path-in-tests was given.
|
||||||
if test "${enable_hardcoded_path_in_tests+set}" = set; then :
|
if test "${enable_hardcoded_path_in_tests+set}" = set; then :
|
||||||
|
@ -159,6 +159,12 @@ AC_ARG_ENABLE([profile],
|
|||||||
[build profiled library @<:@default=no@:>@]),
|
[build profiled library @<:@default=no@:>@]),
|
||||||
[profile=$enableval],
|
[profile=$enableval],
|
||||||
[profile=no])
|
[profile=no])
|
||||||
|
AC_ARG_ENABLE([timezone-tools],
|
||||||
|
AC_HELP_STRING([--disable-timezone-tools],
|
||||||
|
[do not install timezone tools (if using external ones) @<:@default=install@:>@]),
|
||||||
|
[enable_timezone_tools=$enableval],
|
||||||
|
[enable_timezone_tools=yes])
|
||||||
|
AC_SUBST(enable_timezone_tools)
|
||||||
|
|
||||||
AC_ARG_ENABLE([hardcoded-path-in-tests],
|
AC_ARG_ENABLE([hardcoded-path-in-tests],
|
||||||
AC_HELP_STRING([--enable-hardcoded-path-in-tests],
|
AC_HELP_STRING([--enable-hardcoded-path-in-tests],
|
||||||
|
@ -157,6 +157,16 @@ By default, dynamic tests are linked to run with the installed C library.
|
|||||||
This option hardcodes the newly built C library path in dynamic tests
|
This option hardcodes the newly built C library path in dynamic tests
|
||||||
so that they can be invoked directly.
|
so that they can be invoked directly.
|
||||||
|
|
||||||
|
@item --disable-timezone-tools
|
||||||
|
By default, timezone related utilities (@command{zic}, @command{zdump},
|
||||||
|
and @command{tzselect}) are installed with glibc. If you are building
|
||||||
|
these independently (e.g. by using the @samp{tzcode} package), then this
|
||||||
|
option will allow disabling the install of these too.
|
||||||
|
|
||||||
|
Note that you need to make sure the external tools are kept in sync with
|
||||||
|
the versions that @theglibc{} expects as the data formats may change over
|
||||||
|
time. Consult the @file{timezone} subdirectory for more details.
|
||||||
|
|
||||||
@item --enable-lock-elision=yes
|
@item --enable-lock-elision=yes
|
||||||
Enable lock elision for pthread mutexes by default.
|
Enable lock elision for pthread mutexes by default.
|
||||||
|
|
||||||
|
@ -27,15 +27,17 @@ extra-objs := scheck.o ialloc.o
|
|||||||
others := zdump zic
|
others := zdump zic
|
||||||
tests := test-tz tst-timezone tst-tzset
|
tests := test-tz tst-timezone tst-tzset
|
||||||
|
|
||||||
install-sbin := zic zdump
|
|
||||||
|
|
||||||
generated-dirs += testdata
|
generated-dirs += testdata
|
||||||
|
|
||||||
install-bin-script = tzselect
|
|
||||||
generated += tzselect
|
generated += tzselect
|
||||||
|
|
||||||
testdata = $(objpfx)testdata
|
testdata = $(objpfx)testdata
|
||||||
|
|
||||||
|
ifeq ($(enable-timezone-tools),yes)
|
||||||
|
install-sbin := zic zdump
|
||||||
|
install-bin-script = tzselect
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(run-built-tests),yes)
|
ifeq ($(run-built-tests),yes)
|
||||||
# List zones generated by separate commands running zic on the host.
|
# List zones generated by separate commands running zic on the host.
|
||||||
# Each such zic run counts as a separate test.
|
# Each such zic run counts as a separate test.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user