File: libxp-configure.patch

package info (click to toggle)
whitedune 0.30.10-2.2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid
  • size: 42,004 kB
  • sloc: cpp: 116,017; ansic: 79,688; java: 20,101; sh: 3,248; yacc: 2,902; makefile: 1,717; lex: 848; awk: 363; perl: 270; objc: 143; lisp: 112; python: 22
file content (18 lines) | stat: -rw-r--r-- 549 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Do not depend on libxp
Author: Philippe Coval <rzr@gna.org>
Bug-Debian: http://bugs.debian.org/623652

--- whitedune-0.30.10.orig/configure.in
+++ whitedune-0.30.10/configure.in
@@ -910,7 +910,10 @@ AC_CHECK_LIB(X11, XCreateWindow)
 AC_CHECK_LIB(Xmu, XmuLookupStandardColormap)
 AC_CHECK_LIB(Xt, XtCreateWidget)
 AC_CHECK_LIB(Xext, XShmQueryVersion)
-AC_HAVE_LIBRARY(Xp)
+
+dnl http://bugs.debian.org/623652
+dnl AC_HAVE_LIBRARY(Xp)
+
 AC_CHECK_LIB(Xm, XmCreateMainWindow , , MOTIF_ERROR=1)
 if test "X_$MOTIF_ERROR" = "X_1" ; then
 [