cfengine/cfengine-3.10.0b1.patch
Klaus Kämpf 07c43c8818 - Update to 3.10.0 (beta1) - LTS until Dec 2019
See https://github.com/cfengine/core/blob/3.10.0b1/ChangeLog
  for full ChangeLog
  New features/additions:
  - All new features/additions for 3.8 and 3.9 are also included in 3.10.
  - Add: Classes body tailored for use with diff
  - New feature: Classes promise: allow classes without an expression to
    default to defined.
  - Support for custom ports and host names as policy hub (CFE-953)
  - Add: Definition of from_cfexecd for cf-execd initiated runs
    (CFE-2386)
  - Add < <= > >= operators to eval().
  - Add testing jUnit and TAP bundles and include them in stdlib.cf
  - New function isipinsubnet() (ENT-7949)
  - LogDebug(): implement module-based debug logging.
    Now most DEBUG messages are *not* printed even when "-d" is in
    use, but the specific debug module has to be enabled on the
    command line. For example to enable all log modules, run:
      cf-agent -d --log-modules=all
  - Add: edit_line contains_literal_string to stdlib
  - add variablesmatching_as_data() function paralleling variablesmatching()
    (Redmine #7885)
  - Allow specifying agent maxconnections via def.json (CFE-2461)
  - Add getuserinfo() function
  - Add body agent control select_end_match_eof option. (CFE-2390)

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/cfengine?expand=0&rev=146
2016-11-16 09:13:16 +00:00

24 lines
1.2 KiB
Diff

diff -ruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-cfengine-3.10.0b1/configure.ac ./configure.ac
--- ../orig-cfengine-3.10.0b1/configure.ac 2016-11-01 08:47:08.000000000 +0100
+++ ./configure.ac 2016-11-15 15:33:45.058052537 +0100
@@ -506,7 +506,7 @@
AC_CHECK_LIB(acl, acl_init,
[],
[if test "x$with_libacl" != xcheck; then AC_MSG_ERROR(Cannot find libacl library); fi])
- AC_CHECK_HEADERS([acl.h sys/acl.h acl/libacl.h],
+ AC_CHECK_HEADERS([sys/acl.h acl/libacl.h],
[libacl_header_found=yes],
[if test "x$with_libacl" != xcheck; then AC_MSG_ERROR(Cannot find libacl header files); fi])
])
diff -ruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-cfengine-3.10.0b1/libutils/platform.h ./libutils/platform.h
--- ../orig-cfengine-3.10.0b1/libutils/platform.h 2016-11-01 08:47:08.000000000 +0100
+++ ./libutils/platform.h 2016-11-15 15:49:14.789010435 +0100
@@ -75,6 +75,7 @@
#include <ctype.h>
#include <assert.h>
#include <stddef.h> /* offsetof, size_t */
+#include <time.h>
/* POSIX but available in all platforms. */
#include <strings.h>