| 1 |
Index: xorg/configure.ac
|
| 2 |
===================================================================
|
| 3 |
RCS file: /cvs/xorg/xserver/xorg/configure.ac,v
|
| 4 |
retrieving revision 1.61
|
| 5 |
diff -u -b -B -r1.61 configure.ac
|
| 6 |
--- xorg/configure.ac 22 Aug 2005 09:15:20 -0000 1.61
|
| 7 |
+++ xorg/configure.ac 22 Aug 2005 16:21:26 -0000
|
| 8 |
@@ -538,8 +538,9 @@
|
| 9 |
dnl Xnest DDX
|
| 10 |
|
| 11 |
AC_MSG_CHECKING([whether to build Xnest DDX])
|
| 12 |
+PKG_CHECK_MODULES(XNESTMODULES, [xfont xext x11], [have_xnest=yes], [have_xnest=no])
|
| 13 |
if test "x$XNEST" = xauto; then
|
| 14 |
- PKG_CHECK_MODULES(XNESTMODULES, [xfont xext x11], [XNEST=yes], [XNEST=no])
|
| 15 |
+ XNEST="$have_xnest"
|
| 16 |
fi
|
| 17 |
AC_MSG_RESULT([$XNEST])
|
| 18 |
AM_CONDITIONAL(XNEST, [test "x$XNEST" = xyes])
|