diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-02 10:15:29 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-02 10:15:29 +0000 |
commit | 4fd65aec913a1b99e8d748a7a82c150b8f7ee510 (patch) | |
tree | d34ac61e9cca0729320c0854c87a3163efd52836 /configure | |
parent | 131a18f68dc73f208bb76a944fc6d42c86cfad3b (diff) | |
download | skalibs-4fd65aec913a1b99e8d748a7a82c150b8f7ee510.tar.xz |
Remove the --enable-right-tz configure option.
Make it a run-time autodetection instead.
Update doc.
Thanks to Paul Jarc for the suggestion.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -41,7 +41,6 @@ skalibs options: --disable-ipv6 do not build IPv6 support [enabled] --enable-iopause-select prefer select() over poll() for iopause implementation [disabled] --enable-tai-clock assume the system clock is TAI-10 instead of UTC [disabled] - --enable-right-tz assume the timezone is Olson's right/ instead of posix/ [disabled] --enable-clock use clock_gettime() instead of gettimeofday() [disabled] --enable-monotonic count time with CLOCK_MONOTONIC instead of CLOCK_REALTIME --enable-force-devr assume /dev/random exists and is valid [autodetection takes time] @@ -187,7 +186,6 @@ egd= ipv6=true select=false taiclock=false -righttz=false clockrt=false clockmon=false forcedevr=false @@ -237,8 +235,6 @@ for arg ; do --disable-iopause-select|--enable-iopause-select=no) select=false ;; --enable-tai-clock|--enable-tai-clock=yes) taiclock=true ;; --disable-tai-clock|--enable-tai-clock=no) taiclock=false ;; - --enable-right-tz|--enable-right-tz=yes) righttz=true ;; - --disable-right-tz|--enable-right-tz=no) righttz=false ;; --enable-clock|--enable-clock=yes) clockrt=true ;; --disable-clock|--enable-clock=no) clockrt=false ;; --enable-monotonic|--enable-monotonic=yes) clockmon=true ;; @@ -562,11 +558,6 @@ if $taiclock ; then else echo "#undef ${package_macro_name}_FLAG_CLOCKISTAI" fi -if $righttz ; then - echo "#define ${package_macro_name}_FLAG_TZISRIGHT" -else - echo "#undef ${package_macro_name}_FLAG_TZISRIGHT" -fi if $clockrt ; then echo "#define ${package_macro_name}_FLAG_USERT" else |