diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | config.h | 4 | ||||
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | debian/control | 2 | ||||
| -rw-r--r-- | intl.c | 2 | ||||
| -rw-r--r-- | intl.h | 2 | 
6 files changed, 12 insertions, 6 deletions
| @@ -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  # ---------------------------------------------------------------------------- @@ -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 @@ -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; @@ -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__)) | 
