mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-2403 Add configure option for tracing
X-SVN-Rev: 14119
This commit is contained in:
parent
d54d1b8804
commit
d685699946
2 changed files with 211 additions and 228 deletions
423
icu4c/source/configure
vendored
423
icu4c/source/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -4,7 +4,7 @@ dnl Copyright (c) 1999-2003, International Business Machines Corporation and
|
|||
dnl others. All Rights Reserved.
|
||||
dnl Stephen F. Booth, heavily modified by Yves and others
|
||||
|
||||
dnl $Id: configure.in,v 1.201 2003/12/03 17:33:41 grhoten-oss Exp $
|
||||
dnl $Id: configure.in,v 1.202 2003/12/13 00:10:45 grhoten-oss Exp $
|
||||
|
||||
dnl Process this file with autoconf to produce a configure script
|
||||
AC_INIT(common/unicode/utypes.h)
|
||||
|
@ -163,6 +163,20 @@ AC_ARG_ENABLE(renaming,
|
|||
AC_MSG_RESULT($enabled)
|
||||
AC_SUBST(U_DISABLE_RENAMING)
|
||||
|
||||
AC_MSG_CHECKING([whether to enable function and data tracing])
|
||||
enabled=yes
|
||||
U_ENABLE_TRACING=1
|
||||
AC_ARG_ENABLE(tracing,
|
||||
[ --enable-tracing enable function and data tracing [default=yes]],
|
||||
[ case "${enableval}" in
|
||||
yes|"") enabled=yes ;;
|
||||
no) enabled=no; U_ENABLE_TRACING=0 ;;
|
||||
*) ;;
|
||||
esac],
|
||||
)
|
||||
AC_MSG_RESULT($enabled)
|
||||
AC_SUBST(U_ENABLE_TRACING)
|
||||
|
||||
dnl Check whether to use the evil rpath or not
|
||||
AC_ARG_ENABLE(rpath,
|
||||
[ --enable-rpath use rpath when linking [default is only if necessary]],
|
||||
|
|
Loading…
Add table
Reference in a new issue