aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--config.h4
-rw-r--r--debian/changelog6
-rw-r--r--debian/control2
-rw-r--r--intl.c2
-rw-r--r--intl.h2
6 files changed, 12 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 2168ea59..beacfbfb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
TARGET = GTK2
-GTK_LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0
+GTK_LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0
GTK_CFLAGS = -DXTHREADS -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
PACKAGE = hardinfo-0.3.7pre
# ----------------------------------------------------------------------------
diff --git a/config.h b/config.h
index 1fd2d479..2c73ca29 100644
--- a/config.h
+++ b/config.h
@@ -8,7 +8,7 @@
#define ENABLE_NLS
#define ARCH_i386
#define PLATFORM "Linux"
-#define KERNEL "2.6.8-2-686"
-#define HOSTNAME "alface"
+#define KERNEL "2.6.11-1-k7"
+#define HOSTNAME "comanche.hangar"
#endif /* __CONFIG_H__ */
diff --git a/debian/changelog b/debian/changelog
index e56d12bd..c16f396f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+hardinfo (0.3.7pre-2) unstable; urgency=low
+
+ * Fixed FTBFS (file intl.c updated). Thanks to Andreas Jochens. (Closes: #326033)
+
+ -- Agney Lopes Roth Ferraz <agney@users.sourceforge.net> Fri, 9 Sep 2005 18:30:09 -0300
+
hardinfo (0.3.7pre-1) unstable; urgency=low
* New upstream release. (Closes: #280694, #300114, #233033)
diff --git a/debian/control b/debian/control
index ada44e65..64600b2d 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: x11
Priority: optional
Maintainer: Agney Lopes Roth Ferraz <agney@users.sourceforge.net>
Build-Depends: debhelper (>> 4.0.0), libgtk2.0-dev, pciutils (>=1:2.1.11-10)
-Standards-Version: 3.6.1.0
+Standards-Version: 3.6.2.0
Package: hardinfo
Architecture: any
diff --git a/intl.c b/intl.c
index 82ac163f..986b3a48 100644
--- a/intl.c
+++ b/intl.c
@@ -45,7 +45,7 @@ void intl_init(void)
* but slower :P
*/
const gchar *
-intl_translate(const gchar * string, const gchar * source) __THROW
+intl_translate(const gchar * string, const gchar * source)
{
FILE *file;
gchar buffer[256], *keyname, *lang = NULL, *langenv = NULL;
diff --git a/intl.h b/intl.h
index 35684866..71e6b43b 100644
--- a/intl.h
+++ b/intl.h
@@ -4,7 +4,7 @@
#include "config.h"
void intl_init(void);
-const gchar *intl_translate(const gchar *string, const gchar *source) __THROW;
+const gchar *intl_translate(const gchar *string, const gchar *source);
#define _(x) (intl_translate(x, __FILE__))