Bug#365147: xbubble: Patch for this problem

2006-05-12 Thread Martin Quinson
Fixed in 0.5.11.2 upstream, released 5 minutes ago.

Thanks for the patch, I didn't find the time to investigate the issue.

Bye, Mt.

On Fri, May 12, 2006 at 05:03:00PM +0200, Bas Wijnen wrote:
> Package: xbubble
> Followup-For: Bug #365147
> 
> Here's a patch which fixes the problem.  autoconf must be rerun after
> patching before building the package.
> 
> The problem was that with the new X, the libraries don't need any flags
> anymore, so x_libraries was empty.
> 
> --- configure.ac.orig 2006-05-12 16:59:22.0 +0200
> +++ configure.ac  2006-05-12 16:59:45.0 +0200
> @@ -28,7 +28,9 @@ fi
>  if test x"$x_includes" != x; then
>CPPFLAGS="$CPPFLAGS -I$x_includes"
>  fi
> -LIBS="-L$x_libraries $LIBS"
> +if test x"$x_libraries" != x; then
> +  LIBS="-L$x_libraries $LIBS"
> +fi
>  AC_CHECK_LIB(X11, XOpenDisplay,,[AC_MSG_ERROR([cannot find libX11 !])])
> 
> -- System Information:
> Debian Release: testing/unstable
>   APT prefers unstable
>   APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
> Architecture: i386 (i686)
> Shell:  /bin/sh linked to /bin/bash
> Kernel: Linux 2.6.11
> Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
> 
> 
> 

-- 
The only stupid question is the unasked one.


signature.asc
Description: Digital signature


Bug#365147: xbubble: Patch for this problem

2006-05-12 Thread Bas Wijnen
Package: xbubble
Followup-For: Bug #365147

Here's a patch which fixes the problem.  autoconf must be rerun after
patching before building the package.

The problem was that with the new X, the libraries don't need any flags
anymore, so x_libraries was empty.

--- configure.ac.orig   2006-05-12 16:59:22.0 +0200
+++ configure.ac2006-05-12 16:59:45.0 +0200
@@ -28,7 +28,9 @@ fi
 if test x"$x_includes" != x; then
   CPPFLAGS="$CPPFLAGS -I$x_includes"
 fi
-LIBS="-L$x_libraries $LIBS"
+if test x"$x_libraries" != x; then
+  LIBS="-L$x_libraries $LIBS"
+fi
 AC_CHECK_LIB(X11, XOpenDisplay,,[AC_MSG_ERROR([cannot find libX11 !])])

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]