summaryrefslogtreecommitdiff
path: root/sysutils/cfengine310/files/patch-m4-strndup.m4
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2016-12-29 07:11:50 +0000
committerCy Schubert <cy@FreeBSD.org>2016-12-29 07:11:50 +0000
commit5adedb838abb1b22586aa4a262b7050f424180d1 (patch)
tree460156fd66c29f732f74c210fc742879797c6e3a /sysutils/cfengine310/files/patch-m4-strndup.m4
parentUpgrade to laxstest - including phpmailer 5.2.20. (diff)
Welcome the new cfengine and cfengine-masterfiles 3.10.
Adjust the other cfengine and cfengine-masterfiles ports CONFLICTS to recognize the new cfengine sister ports. Add cfengine and cfengine-masterfiles 310 to their respective metaports.
Notes
Notes: svn path=/head/; revision=429872
Diffstat (limited to 'sysutils/cfengine310/files/patch-m4-strndup.m4')
-rw-r--r--sysutils/cfengine310/files/patch-m4-strndup.m454
1 files changed, 54 insertions, 0 deletions
diff --git a/sysutils/cfengine310/files/patch-m4-strndup.m4 b/sysutils/cfengine310/files/patch-m4-strndup.m4
new file mode 100644
index 000000000000..31e4b7e264de
--- /dev/null
+++ b/sysutils/cfengine310/files/patch-m4-strndup.m4
@@ -0,0 +1,54 @@
+--- /dev/null 2014-07-29 08:00:54.000000000 -0700
++++ m4/strndup.m4 2014-07-29 08:01:42.499328796 -0700
+@@ -0,0 +1,51 @@
++# strndup.m4 serial 21
++dnl Copyright (C) 2002-2003, 2005-2013 Free Software Foundation, Inc.
++dnl This file is free software; the Free Software Foundation
++dnl gives unlimited permission to copy and/or distribute it,
++dnl with or without modifications, as long as this notice is preserved.
++
++AC_DEFUN([cf3_FUNC_STRNDUP],
++[
++ AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
++ AC_CHECK_DECLS([strndup])
++ AC_REPLACE_FUNCS([strndup])
++ if test $ac_cv_have_decl_strndup = no; then
++ HAVE_DECL_STRNDUP=0
++ fi
++
++ if test $ac_cv_func_strndup = yes; then
++ HAVE_STRNDUP=1
++ # AIX 5.3 has a function that tries to copy the entire range specified
++ # by n, instead of just the length of src.
++ AC_CACHE_CHECK([for working strndup], [cf3_cv_func_strndup_works],
++ [AC_RUN_IFELSE([
++ AC_LANG_PROGRAM([[#include <string.h>
++ #include <stdlib.h>]], [[
++#if !HAVE_DECL_STRNDUP
++ extern
++ #ifdef __cplusplus
++ "C"
++ #endif
++ char *strndup (const char *, size_t);
++#endif
++ char *s;
++ // Will crash if strndup tries to traverse all 2GB.
++ s = strndup ("string", 2000000000);
++ return 0;]])],
++ [cf3_cv_func_strndup_works=yes],
++ [cf3_cv_func_strndup_works=no],
++ [
++changequote(,)dnl
++ case $host_os in
++ aix | aix[3-6]*) cf3_cv_func_strndup_works="guessing no";;
++ *) cf3_cv_func_strndup_works="guessing yes";;
++ esac
++changequote([,])dnl
++ ])])
++ case $cf3_cv_func_strndup_works in
++ *no) AC_LIBOBJ([strndup]) ;;
++ esac
++ else
++ HAVE_STRNDUP=0
++ fi
++])