From 966d2ae8e9d135da8296780069afb1b3490dfc01 Mon Sep 17 00:00:00 2001 From: Brian Carrier <carrier@sleuthkit.org> Date: Fri, 22 Nov 2013 15:11:57 -0500 Subject: [PATCH] Fixed #260 with checks for strlcpy and strlcat --- configure.ac | 2 ++ tsk/tsk_config.h.in | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/configure.ac b/configure.ac index ba65c1650..6faa2706d 100644 --- a/configure.ac +++ b/configure.ac @@ -75,6 +75,8 @@ AC_FUNC_UTIME_NULL AC_FUNC_VPRINTF dnl AC_CHECK_FUNCS([dup2 gethostname isascii iswprint memset munmap regcomp select setlocale strcasecmp strchr strdup strerror strndup strrchr strtol strtoul strtoull utime wcwidth]) AC_CHECK_FUNCS([ishexnumber err errx warn warnx vasprintf getrusage]) +AC_CHECK_FUNCS([strlcpy strlcat]) + AX_PTHREAD([ AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]) CLIBS="$PTHREAD_LIBS $LIBS" diff --git a/tsk/tsk_config.h.in b/tsk/tsk_config.h.in index d9d4e9891..f3773331c 100644 --- a/tsk/tsk_config.h.in +++ b/tsk/tsk_config.h.in @@ -109,6 +109,12 @@ /* Define to 1 if you have the <string.h> header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strlcat' function. */ +#undef HAVE_STRLCAT + +/* Define to 1 if you have the `strlcpy' function. */ +#undef HAVE_STRLCPY + /* Define to 1 if you have the <sys/param.h> header file. */ #undef HAVE_SYS_PARAM_H -- GitLab