From 907ba16bfabc4916e86a1bd3feee2ee8018384ad Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Fri, 27 Apr 2012 11:44:33 +0200 Subject: [PATCH] [lbtt] Remove a useless configure check. * configure.ac: Do not check for mkstemp(), it is not used. --- lbtt/ChangeLog | 4 ++++ lbtt/configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lbtt/ChangeLog b/lbtt/ChangeLog index 4a72b3b37..76a3abc88 100644 --- a/lbtt/ChangeLog +++ b/lbtt/ChangeLog @@ -1,3 +1,7 @@ +2012-04-27 Alexandre Duret-Lutz + + * configure.ac: Do not check for mkstemp(), it is not used. + 2010-04-07 Alexandre Duret-Lutz Accept W and M in lbtt-translate --spot. diff --git a/lbtt/configure.ac b/lbtt/configure.ac index 21cdee004..a07219d0e 100644 --- a/lbtt/configure.ac +++ b/lbtt/configure.ac @@ -145,7 +145,7 @@ AC_C_INLINE # Checks for library functions. AC_CHECK_FUNCS( - [strchr strtod strtol strtoul strerror mkdir mkstemp open read write close popen pclose pipe fork execvp getpgrp setpgid tcgetpgrp tcsetpgrp getpid waitpid alarm sigaction sigprocmask sigemptyset sigaddset times sysconf], + [strchr strtod strtol strtoul strerror mkdir open read write close popen pclose pipe fork execvp getpgrp setpgid tcgetpgrp tcsetpgrp getpid waitpid alarm sigaction sigprocmask sigemptyset sigaddset times sysconf], [], [AC_MSG_ERROR([missing one of the library functions required for compilation])]) AC_CHECK_FUNCS([strsignal isatty getopt_long])