Skip to content

Commit a52ce97

Browse files
committed
bpo-45723: Add helper macros and more caching to configure.ac
Almost all checks are now cached by AC_CACHE_CHECK(). Common patterns are replaced by helper macros. Variable names now use naming scheme ``ac_cv_func_$funcname``, ``ac_cv_lib_$library_$funcname``, or ``ac_cv_header_$headername_h``. ``SYS_SELECT_WITH_SYS_TIME`` is no longer used. ``uuid_create`` and ``uuid_enc_be`` are provided by libc on BSD. It is safe to use ``AC_CHECK_FUNCS`` here. Caching speeds up ./configure -C from ~ 4s to 2.6s on my system. Signed-off-by: Christian Heimes <[email protected]>
1 parent 9127520 commit a52ce97

File tree

4 files changed

+1315
-1014
lines changed

4 files changed

+1315
-1014
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
configure.ac now uses custom helper macros and ``AC_CACHE_CHECK`` to
2+
simplify and speed up configure runs.

0 commit comments

Comments
 (0)