Overview
| Comment: | Hard code file extension for static targets to ".a" |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
92769ff244431a99875e181a679c0651 |
| User & Date: | rkeene on 2019-01-23 07:06:08.648 |
| Other Links: | manifest | tags |
Context
|
2019-01-23
| ||
| 07:21 | Better win32 support check-in: 58cfb962c2 user: rkeene tags: trunk | |
| 07:06 | Hard code file extension for static targets to ".a" check-in: 92769ff244 user: rkeene tags: trunk | |
| 06:53 | Remove possible OpenMP flag that conflicts with output check-in: 6fe1f8ccea user: rkeene tags: trunk | |
Changes
Modified configure.ac
from [a80328f0ef]
to [61d8a5ac92].
| ︙ | ︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
if test "$TCLEXT_BUILD" != 'static'; then
dnl Determine how to make shared objects
DC_GET_SHOBJFLAGS
EXTENSION_TARGET="nano.${SHOBJEXT}"
else
AC_CHECK_TOOL([AR], [ar], [false])
AC_CHECK_TOOL([RANLIB], [ranlib], [:])
EXTENSION_TARGET="nano.${AREXT}"
fi
AC_SUBST(EXTENSION_TARGET)
AC_SUBST(TCLEXT_BUILD)
| > > | 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)
|
| ︙ | ︙ |