Hey! While you're here, why not check out my open source endevours?

Fixing AX_UNPRECIOUS

There are quite a few references to an autoconf macro to "unprecious" a variable. However, the simplest substitution will not work with libtool, causing it to get stuck during autoreconf. Fixing this requires only attempting the substitution if _AC_PRECIOUS_VARS is actually set:

configure.ac

AC_DEFUN([AX_UNPRECIOUS], [
        m4_ifdef([_AC_PRECIOUS_VARS], [m4_define([_AC_PRECIOUS_VARS], m4_bpatsubst(_AC_PRECIOUS_VARS, [$1], []))])
])

Copyright 2023 Daniel M. WeeksLoaded in 0.00128 seconds using 2048 KB