From: Jan Rękorajski Date: Sat, 27 May 2017 19:39:10 +0000 (+0200) Subject: - fix build on x32 X-Git-Tag: auto/th/lxc-2.0.8-2 X-Git-Url: https://git.pld-linux.org/?p=packages%2Flxc.git;a=commitdiff_plain;h=216742c - fix build on x32 - rel 2 --- diff --git a/lxc.spec b/lxc.spec index 1e04ee6..47880ce 100644 --- a/lxc.spec +++ b/lxc.spec @@ -14,7 +14,7 @@ Summary: Linux Containers userspace tools Summary(pl.UTF-8): Narzędzia do kontenerów linuksowych (LXC) Name: lxc Version: 2.0.8 -Release: 1 +Release: 2 License: LGPL v2.1+ Group: Applications/System Source0: https://linuxcontainers.org/downloads/lxc/%{name}-%{version}.tar.gz @@ -25,6 +25,7 @@ Source2: %{name}_macvlan.sysconfig Source3: %{name}_macvlan Patch0: %{name}-pld.patch Patch1: %{name}-net.patch +Patch2: x32.patch URL: https://www.linuxcontainers.org/ BuildRequires: autoconf >= 2.50 BuildRequires: automake @@ -160,6 +161,7 @@ bashowe uzupełnianie nazw dla LXC. %setup -q %patch0 -p0 %patch1 -p1 +%patch2 -p1 cp -p %{SOURCE1} templates/lxc-pld.in diff --git a/x32.patch b/x32.patch new file mode 100644 index 0000000..fd93b54 --- /dev/null +++ b/x32.patch @@ -0,0 +1,14 @@ +--- lxc-2.0.8/src/lxc/log.c~ 2017-05-11 19:23:06.000000000 +0200 ++++ lxc-2.0.8/src/lxc/log.c 2017-05-27 21:36:35.137755023 +0200 +@@ -154,7 +154,11 @@ + seconds = (time->tv_sec - d_in_s - h_in_s - (minutes * 60)); + + /* Make string from nanoseconds. */ ++#ifdef __ILP32__ ++ ret = snprintf(nanosec, LXC_NUMSTRLEN64, "%lld", time->tv_nsec); ++#else + ret = snprintf(nanosec, LXC_NUMSTRLEN64, "%ld", time->tv_nsec); ++#endif + if (ret < 0 || ret >= LXC_NUMSTRLEN64) + return -1; +