summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d1280a5)
raw | patch | inline | side by side (parent: d1280a5)
author | Bernd Zeimetz <bzed@debian.org> | |
Sun, 24 Feb 2008 19:24:07 +0000 (20:24 +0100) | ||
committer | Bernd Zeimetz <bzed@debian.org> | |
Sun, 24 Feb 2008 19:24:07 +0000 (20:24 +0100) |
bug is properly debugged, which will take some time (Closes: #447041).
debian/changelog | patch | blob | history | |
debian/rules | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index 6174cd35a1861024940931e31f4551443267abf2..09225480962beb860398b66e3a8906f587ceba85 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
David MartÃnez Moreno.
* debian/control:
- Removing the ttf-dejavu dependency from librrd2.
+ - Builds with -O2 segfault on arm, so disable it on arm for now until the
+ bug is properly debugged, which will take some time (Closes: #447041).
- -- Bernd Zeimetz <bzed@debian.org> Sun, 24 Feb 2008 16:25:05 +0100
+ -- Bernd Zeimetz <bzed@debian.org> Sun, 24 Feb 2008 17:40:39 +0100
rrdtool (1.2.26-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 679934a177982a95abddb270e9d14b421bd2454f..d3be3ee3ca30ff2cfec2770f585a4e22c9575a05 100755 (executable)
--- a/debian/rules
+++ b/debian/rules
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
+#don't optimize on arm for now - #447041
+ifneq ($(DEB_HOST_GNU_TYPE), arm)
CFLAGS += -O2
endif
+endif
LDFLAGS="-Wl,-z,defs"