Overview
| Comment: | Corrected disable-static |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
9ab52f4d92b380ed556b7d9819c5680c |
| User & Date: | rkeene on 2014-05-01 22:01:22.216 |
| Other Links: | manifest | tags |
Context
|
2014-05-01
| ||
| 22:10 | Updated to download "tcc" into "tcc" directory check-in: 9474ae442e user: rkeene tags: trunk | |
| 22:01 | Corrected disable-static check-in: 9ab52f4d92 user: rkeene tags: trunk | |
| 21:56 | Updated to generate files check-in: 4d5caafa3d user: rkeene tags: trunk | |
Changes
Modified configure.ac
from [e723d3203b]
to [4fb589986a].
1 2 3 4 5 6 7 8 9 10 11 12 13 | dnl Define ourselves AC_INIT(tcc4tcl, @@VERS@@) dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_GNU_SOURCE dnl Determine system information DC_CHK_OS_INFO dnl Determine if a shared or static build is requested | < > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
dnl Define ourselves
AC_INIT(tcc4tcl, @@VERS@@)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_GNU_SOURCE
dnl Determine system information
DC_CHK_OS_INFO
dnl Determine if a shared or static build is requested
AC_ARG_ENABLE([static], AS_HELP_STRING([--enable-static], [build static library instead of shared library]), [
if test "$enableval" = "no"; then
target=shared
else
target=static
fi
], [
target=shared
])
if test "${target}" = "shared"; then
dnl Determine how to make shared objects
DC_GET_SHOBJFLAGS
|
| ︙ | ︙ |