diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-02-17 23:38:40 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-02-17 23:38:40 -0800 |
commit | 98e43d4e49c599fc633b4bb9c58d99abbdd0068a (patch) | |
tree | 344c32432d428721d0220687af3ecc67b0a1f53f /configure.ac | |
parent | b3f10a08922f568b7cbc791354cf0d4267cd88c1 (diff) |
atobm only depends on xproto, not x11
It only includes <X11/Xos.h>, no headers or functions from libX11.
Due to a typo in Makefile.am (also fixed) it wasn't actually linking
with libX11 even though it had x11 in its PKG_CHECK_MODULES list.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9c977a6..e2ef3ce 100644 --- a/configure.ac +++ b/configure.ac @@ -42,9 +42,9 @@ AM_PROG_CC_C_O AC_CHECK_FUNCS([mkstemp]) -# Obtain compiler/linker options from depedencies +# Obtain compiler/linker options from dependencies PKG_CHECK_MODULES(BMTOA, x11 xmu) -PKG_CHECK_MODULES(ATOBM, x11) +PKG_CHECK_MODULES(ATOBM, xproto) PKG_CHECK_MODULES(BITMAP, xbitmaps xaw7 xmu) PKG_CHECK_MODULES(APPDEFS, xt) |