diff options
author | Julien Cristau <jcristau@debian.org> | 2011-09-24 19:18:56 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2011-09-24 19:18:56 +0200 |
commit | 29972ebbb2409bcba87637069a7ad9a958b3325d (patch) | |
tree | 51771b3c28312b3b9e2b0465393fc375d768666d | |
parent | 3ea70059805b3ebc795f797b5880b90b6b3a9235 (diff) |
Link sxpm against -lX11
It calls various Xlib functions so should link with -lX11 directly.
Signed-off-by: Julien Cristau <jcristau@debian.org>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5577803..00a4c8f 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,7 @@ AC_CHECK_FUNCS([strlcat]) # Obtain compiler/linker options for dependencies PKG_CHECK_MODULES(XPM, xproto x11) -PKG_CHECK_MODULES(SXPM, xt xext xextproto, build_sxpm=true, build_sxpm=false) +PKG_CHECK_MODULES(SXPM, x11 xt xext xextproto, build_sxpm=true, build_sxpm=false) AM_CONDITIONAL(BUILD_SXPM, test x$build_sxpm = xtrue) # Internationalization & localization support |