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 /Makefile.am | |
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 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 98d7c72..99ee6f9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,7 +42,7 @@ bmtoa_LDADD = $(BMTOA_LIBS) bmtoa_SOURCES = bmtoa.c atobm_CFLAGS = $(CWARNFLAGS) $(ATOBM_CFLAGS) -atobm_LDADD = $(ATOBM_LDADD) +atobm_LDADD = $(ATOBM_LIBS) atobm_SOURCES = atobm.c EXTRA_DIST = autogen.sh |