diffstat for systemd-215 systemd-215 changelog | 6 ++ control | 3 - patches/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch | 11 +++++ patches/0002_add_missing_clock_definitions.patch | 22 ++++++++++ patches/0003_do_not_use_clock_adjtime.patch | 13 +++++ patches/series | 5 ++ 6 files changed, 59 insertions(+), 1 deletion(-) diff -Nru systemd-215/debian/changelog systemd-215/debian/changelog --- systemd-215/debian/changelog 2014-12-05 09:01:35.000000000 +0000 +++ systemd-215/debian/changelog 2015-01-04 21:13:10.000000000 +0000 @@ -1,3 +1,9 @@ +systemd (215-8.1) unstable; urgency=low + + * Sync'd with Debian systemd_215-8 + + -- Alan Baghumian Sun, 04 Jan 2015 13:13:10 -0800 + systemd (215-8) unstable; urgency=medium [ Didier Roche ] diff -Nru systemd-215/debian/control systemd-215/debian/control --- systemd-215/debian/control 2014-12-05 09:01:35.000000000 +0000 +++ systemd-215/debian/control 2014-12-29 20:18:31.000000000 +0000 @@ -37,7 +37,8 @@ gobject-introspection (>= 1.31.1), python3-all-dev, python3-lxml, - libglib2.0-doc + libglib2.0-doc, + binutils-gold Package: systemd Architecture: linux-any diff -Nru systemd-215/debian/patches/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch systemd-215/debian/patches/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch --- systemd-215/debian/patches/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch 1970-01-01 00:00:00.000000000 +0000 +++ systemd-215/debian/patches/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch 2014-12-29 20:17:12.000000000 +0000 @@ -0,0 +1,11 @@ +diff -urN systemd-215.orig/src/shared/util.h systemd-215/src/shared/util.h +--- systemd-215.orig/src/shared/util.h 2014-12-29 17:52:09.769197195 +0000 ++++ systemd-215/src/shared/util.h 2014-12-29 17:53:33.585194860 +0000 +@@ -84,6 +84,7 @@ + #endif + + #include "macro.h" ++#include "missing.h" + #include "time-util.h" + + /* What is interpreted as whitespace? */ diff -Nru systemd-215/debian/patches/0002_add_missing_clock_definitions.patch systemd-215/debian/patches/0002_add_missing_clock_definitions.patch --- systemd-215/debian/patches/0002_add_missing_clock_definitions.patch 1970-01-01 00:00:00.000000000 +0000 +++ systemd-215/debian/patches/0002_add_missing_clock_definitions.patch 2014-12-29 20:17:12.000000000 +0000 @@ -0,0 +1,22 @@ +diff -urN systemd-215.orig/src/shared/missing.h systemd-215/src/shared/missing.h +--- systemd-215.orig/src/shared/missing.h 2014-12-29 18:11:10.981164794 +0000 ++++ systemd-215/src/shared/missing.h 2014-12-29 18:14:40.269159280 +0000 +@@ -96,6 +96,18 @@ + #define SOL_NETLINK 270 + #endif + ++#ifndef CLOCK_BOOTTIME ++# define CLOCK_BOOTTIME 7 ++#endif ++ ++#ifndef CLOCK_REALTIME_ALARM ++# define CLOCK_REALTIME_ALARM 8 ++#endif ++ ++#ifndef CLOCK_BOOTTIME_ALARM ++# define CLOCK_BOOTTIME_ALARM 9 ++#endif ++ + #if !HAVE_DECL_PIVOT_ROOT + static inline int pivot_root(const char *new_root, const char *put_old) { + return syscall(SYS_pivot_root, new_root, put_old); diff -Nru systemd-215/debian/patches/0003_do_not_use_clock_adjtime.patch systemd-215/debian/patches/0003_do_not_use_clock_adjtime.patch --- systemd-215/debian/patches/0003_do_not_use_clock_adjtime.patch 1970-01-01 00:00:00.000000000 +0000 +++ systemd-215/debian/patches/0003_do_not_use_clock_adjtime.patch 2014-12-29 20:17:12.000000000 +0000 @@ -0,0 +1,13 @@ +diff -urN systemd-215.orig/src/timesync/timesyncd.c systemd-215/src/timesync/timesyncd.c +--- systemd-215.orig/src/timesync/timesyncd.c 2014-12-29 20:08:25.372965074 +0000 ++++ systemd-215/src/timesync/timesyncd.c 2014-12-29 20:10:40.260961146 +0000 +@@ -424,7 +424,8 @@ + break; + } + +- r = clock_adjtime(CLOCK_REALTIME, &tmx); ++ //r = clock_adjtime(CLOCK_REALTIME, &tmx); ++ r = adjtimex(&tmx); + if (r < 0) + return r; + diff -Nru systemd-215/debian/patches/series systemd-215/debian/patches/series --- systemd-215/debian/patches/series 2014-12-05 09:01:35.000000000 +0000 +++ systemd-215/debian/patches/series 2014-12-29 20:17:12.000000000 +0000 @@ -173,3 +173,8 @@ Prefer-etc-X11-default-display-manager-if-present.patch core-Fix-bind-error-message.patch core-Make-binding-notify-private-dbus-socket-more-ro.patch + +## Parsix +0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch +0002_add_missing_clock_definitions.patch +0003_do_not_use_clock_adjtime.patch