fix build on big-endians
This commit is contained in:
parent
fe60eaca57
commit
125ea38040
13
systemd-38-big-endian.patch
Normal file
13
systemd-38-big-endian.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c
|
||||||
|
index 5e1fd47..baf51db 100644
|
||||||
|
--- a/src/journal/sd-journal.c
|
||||||
|
+++ b/src/journal/sd-journal.c
|
||||||
|
@@ -66,7 +66,7 @@ static void init_location(Location *l, JournalFile *f, Object *o) {
|
||||||
|
l->seqnum_id = f->header->seqnum_id;
|
||||||
|
l->realtime = le64toh(o->entry.realtime);
|
||||||
|
l->monotonic = le64toh(o->entry.monotonic);
|
||||||
|
- l->boot_id = le64toh(o->entry.boot_id);
|
||||||
|
+ l->boot_id = o->entry.boot_id;
|
||||||
|
l->xor_hash = le64toh(o->entry.xor_hash);
|
||||||
|
|
||||||
|
l->seqnum_set = l->realtime_set = l->monotonic_set = l->xor_hash_set = true;
|
@ -2,7 +2,7 @@ Name: systemd
|
|||||||
Url: http://www.freedesktop.org/wiki/Software/systemd
|
Url: http://www.freedesktop.org/wiki/Software/systemd
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
Version: 38
|
Version: 38
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Summary: A System and Service Manager
|
Summary: A System and Service Manager
|
||||||
@ -49,6 +49,8 @@ Source2: systemd-sysv-convert
|
|||||||
Source3: udlfb.conf
|
Source3: udlfb.conf
|
||||||
# Stop-gap, just to ensure things work fine with rsyslog without having to change the package right-away
|
# Stop-gap, just to ensure things work fine with rsyslog without having to change the package right-away
|
||||||
Source4: listen.conf
|
Source4: listen.conf
|
||||||
|
# fix build on big-endians (commit ce3fd7e7)
|
||||||
|
Patch0: %{name}-38-big-endian.patch
|
||||||
|
|
||||||
# For sysvinit tools
|
# For sysvinit tools
|
||||||
Obsoletes: SysVinit < 2.86-24, sysvinit < 2.86-24
|
Obsoletes: SysVinit < 2.86-24, sysvinit < 2.86-24
|
||||||
@ -111,6 +113,7 @@ SysV compatibility tools for systemd
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p1 -b .big-endian
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --with-rootprefix= --with-distro=fedora --with-rootlibdir=/%{_lib}
|
%configure --with-rootprefix= --with-distro=fedora --with-rootlibdir=/%{_lib}
|
||||||
@ -381,6 +384,9 @@ fi
|
|||||||
%{_bindir}/systemd-sysv-convert
|
%{_bindir}/systemd-sysv-convert
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jan 21 2012 Dan Horák <dan[at]danny.cz> - 38-4
|
||||||
|
- fix build on big-endians
|
||||||
|
|
||||||
* Wed Jan 11 2012 Lennart Poettering <lpoetter@redhat.com> - 38-3
|
* Wed Jan 11 2012 Lennart Poettering <lpoetter@redhat.com> - 38-3
|
||||||
- Disable building of gtk tools for now
|
- Disable building of gtk tools for now
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user