diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-06-30 23:15:52 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-06-30 23:15:52 -0700 |
commit | 61703aea4a92b9ee177c1c4bd01123629fa9510c (patch) | |
tree | bfba07cb568107c8f3ae28332d470285a17eded5 /configure.ac | |
parent | 5d542724fde2d3bea856ae0b4b98b3e07afafb7c (diff) |
Don't link against libXaw since the calls to it are #ifdef NOTDEF
We still need it in CFLAGS for #defines from <X11/Xaw/Cardinals.h>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f5c0232..a866d9e 100644 --- a/configure.ac +++ b/configure.ac @@ -39,7 +39,8 @@ AC_PROG_INSTALL # Checks for pkg-config packages -PKG_CHECK_MODULES(BEFORELIGHT, x11 xscrnsaver xt xaw7) +PKG_CHECK_MODULES(BEFORELIGHT, x11 xscrnsaver xt) +PKG_CHECK_MODULES(XAW, xaw7) AC_SUBST(BEFORELIGHT_CFLAGS) AC_SUBST(BEFORELIGHT_LIBS) |