summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2004-02-05 09:38:33 +0000
committerBastien Nocera <hadess@src.gnome.org>2004-02-05 09:38:33 +0000
commitbc33931195a08d46a2d5393d963b4b1fa2d307f7 (patch)
tree5655bebe3a575058e8f321b170b826aec0335325 /configure.in
parent2ed0b7125ab3d3b5c0a86399dda482c1f5b8a32d (diff)
downloadtotem-bc33931195a08d46a2d5393d963b4b1fa2d307f7.tar.gz
simple fix for older autoconfs, patch by Harsh Jaitly <hjaitly@novell.com>
2004-02-05 Bastien Nocera <hadess@hadess.net> * configure.in: simple fix for older autoconfs, patch by Harsh Jaitly <hjaitly@novell.com> (Closes: #131709)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 8a6ec95b3..c3dfaba89 100644
--- a/configure.in
+++ b/configure.in
@@ -190,7 +190,7 @@ AC_CHECK_LIB(Xtst, XTestFakeKeyEvent,
XTEST_LIBS="-lX11 -lXtst -L$x_libraries"
AC_DEFINE(HAVE_XTEST, 1, [defined if you have XTest library]),
,
- "-L$x_libraries")
+ -L$x_libraries)
AC_SUBST(XTEST_LIBS)
have_randr=no
@@ -200,7 +200,7 @@ AC_CHECK_LIB(Xrandr, XRRUpdateConfiguration,
RANDR_LIBS="-lX11 -lXrandr -lXrender"
AC_DEFINE(HAVE_RANDR, 1, Have the Xrandr extension library),
:, [#include <X11/Xlib.h>])], : ,
- "-L$x_libraries -lXrandr -lXrender")
+ -L$x_libraries -lXrandr -lXrender)
AM_CONDITIONAL(HAVE_RANDR, [test $have_randr = yes])
AC_SUBST(RANDR_LIBS)