1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 04:20:27 +01:00

configure: fixed incorrect variable name that prevented --disable-xdnd to work

The name of the variable used in the AM_CONDITIONAL check was not aligned
with the name used at the other places of the file, which made the test
always succeed, making the conditional always enabled, causing an
unnecessary file to be included if user asked to disable the feature,
feature which was still not enabled.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
Rodolfo García Peñas (kix)
2015-06-28 17:09:11 +02:00
committed by Carlos R. Mafra
parent b6f48ee9b8
commit e545b2abf9

View File

@@ -534,7 +534,7 @@ AS_IF([test "x$enable_xdnd" = "xyes"],
[supported_core="$supported_core XDnD" [supported_core="$supported_core XDnD"
AC_DEFINE([USE_DOCK_XDND], [1], [whether Drag-and-Drop on the dock should be enabled])], AC_DEFINE([USE_DOCK_XDND], [1], [whether Drag-and-Drop on the dock should be enabled])],
[unsupported="$unsupported XDnd"]) [unsupported="$unsupported XDnd"])
AM_CONDITIONAL([USE_DOCK_XDND], [test "x$enable_dock_xdnd" != "xno"]) AM_CONDITIONAL([USE_DOCK_XDND], [test "x$enable_xdnd" != "xno"])
dnl Support for ICCCM 2.0 Window Manager replacement dnl Support for ICCCM 2.0 Window Manager replacement