Differences From Artifact [a80328f0ef]:
- File configure.ac — part of check-in [6fe1f8ccea] at 2019-01-23 06:53:46 on branch trunk — Remove possible OpenMP flag that conflicts with output (user: rkeene, size: 5784) [annotate] [blame] [check-ins using]
To Artifact [61d8a5ac92]:
- File configure.ac — part of check-in [92769ff244] at 2019-01-23 07:06:08 on branch trunk — Hard code file extension for static targets to ".a" (user: rkeene, size: 5841) [annotate] [blame] [check-ins using]
︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | + + | if test "$TCLEXT_BUILD" != 'static'; then dnl Determine how to make shared objects DC_GET_SHOBJFLAGS EXTENSION_TARGET="nano.${SHOBJEXT}" else dnl Hard-code the archive extension to be .a AREXT='a' AC_CHECK_TOOL([AR], [ar], [false]) AC_CHECK_TOOL([RANLIB], [ranlib], [:]) EXTENSION_TARGET="nano.${AREXT}" fi AC_SUBST(EXTENSION_TARGET) AC_SUBST(TCLEXT_BUILD) |
︙ |