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.000000000 +0200
+++ configure.ac        2006-05-12 16:59:45.000000000 +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]

Reply via email to