2007-07-13 12:22:34 +00:00
|
|
|
# ltrace
|
2011-05-08 17:02:44 +00:00
|
|
|
|
|
|
|
## depends on ! BACKEND
|
|
|
|
##
|
|
|
|
## select LIBELF_TARGET
|
|
|
|
##
|
|
|
|
## help ltrace is a program that simply runs the specified command until it exits.
|
|
|
|
## help It intercepts and records the dynamic library calls which are called by
|
|
|
|
## help the executed process and the signals which are received by that process.
|
|
|
|
## help It can also intercept and print the system calls executed by the program.
|
2007-07-13 12:22:34 +00:00
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "ltrace version"
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_BELOW
|
2007-07-13 12:22:34 +00:00
|
|
|
|
2014-02-19 21:36:03 +00:00
|
|
|
config LTRACE_V_0_7_3
|
|
|
|
bool
|
|
|
|
prompt "0.7.3"
|
|
|
|
|
2010-01-03 15:46:58 +00:00
|
|
|
config LTRACE_V_0_5_3
|
|
|
|
bool
|
2017-01-22 23:50:18 +00:00
|
|
|
prompt "0.5.3 (OBSOLETE)"
|
|
|
|
depends on OBSOLETE
|
2017-01-23 20:29:44 +00:00
|
|
|
select LTRACE_0_5_3_CONFIGURE
|
2008-11-04 18:52:59 +00:00
|
|
|
|
2007-07-13 12:22:34 +00:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config LTRACE_VERSION
|
|
|
|
string
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
2014-02-19 21:36:03 +00:00
|
|
|
default "0.7.3" if LTRACE_V_0_7_3
|
2010-01-03 15:46:58 +00:00
|
|
|
default "0.5.3" if LTRACE_V_0_5_3
|
|
|
|
|
2017-01-23 20:29:44 +00:00
|
|
|
# Ltrace 0.5.3 had a unique hand-crafted configure script that has to be
|
|
|
|
# run differently from any preceding or following releases. This serves
|
|
|
|
# as a reminder to remove that code once 0.5.3 support is dropped.
|
|
|
|
config LTRACE_0_5_3_CONFIGURE
|
2010-01-03 15:46:58 +00:00
|
|
|
bool
|