summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle McMartin <kyle@treachery.i.cabal.ca>2007-11-26 17:11:47 -0500
committerKyle McMartin <kyle@treachery.i.cabal.ca>2007-11-26 17:11:47 -0500
commit5ccf69248e4668e2fb443ffe6b50b690536bc7d2 (patch)
tree0104ab794f03760daf23cdcf9cf254882726b3e2
parent6dc6123ab30b4ee68bfc459ff2dd4cbdd5612c2f (diff)
downloadpalo-5ccf69248e4668e2fb443ffe6b50b690536bc7d2.tar.gz
fix irritating ftbfs on ia64 which wants __attribute_* macros
defined.
-rw-r--r--debian/changelog5
-rw-r--r--lib/common.h1
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index e51d6be..fe562fc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,7 +4,10 @@ palo (1.16) UNRELEASED; urgency=low
* Increase allowed size from 20MB to 800MB when creating lifimage files
to be netbooted.
- -- Kyle McMartin <kyle@debian.org> Tue, 20 Jun 2006 15:12:19 -0400
+ [ Kyle McMartin ]
+ * Fix FTBFS on ia64... useful macros were undefined in userspace.
+
+ -- Kyle McMartin <kyle@debian.org> Mon, 26 Nov 2007 17:09:38 -0500
palo (1.15) unstable; urgency=low
diff --git a/lib/common.h b/lib/common.h
index 8fbd0f8..b1c2675 100644
--- a/lib/common.h
+++ b/lib/common.h
@@ -10,6 +10,7 @@
#define __KERNEL_STRICT_NAMES /* fixes build on SUSE 10 (kernel 2.6.1[2|3]) */
+#include <sys/cdefs.h> /* useful macros */
#include <stdarg.h>
#include <byteswap.h>
#include <asm/byteorder.h>