mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
- fix detect gettimeofday - fix "unlink" and "string functions" in "sed" PR: 281190 Reported by: exp-run (antoine)
10 lines
435 B
Text
10 lines
435 B
Text
--- src/kmk/configure.in.orig 2017-07-18 19:08:54 UTC
|
|
+++ src/kmk/configure.in
|
|
@@ -134,6 +134,7 @@ AC_CACHE_CHECK([for standard gettimeofday], ac_cv_func
|
|
AC_CACHE_CHECK([for standard gettimeofday], ac_cv_func_gettimeofday,
|
|
[ac_cv_func_gettimeofday=no
|
|
AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <sys/time.h>
|
|
+#include <stdlib.h>
|
|
int main ()
|
|
{
|
|
struct timeval t; t.tv_sec = -1; t.tv_usec = -1;
|