diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-13 07:28:02 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-13 07:28:02 +0000 |
commit | 9c370ec68d2606468296efc1f0a093c036e8d7ff (patch) | |
tree | d5b31fd32a8e9025704ebcf29f0d7f97938dd24d /configure.ac | |
parent | 7b45eec97e390d8c8124b0a95b83ff7614903979 (diff) |
Eliminate xtrans CFLAGS from .pc file as xtrans is not part of the public
API.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 89dba99..b046ca3 100644 --- a/configure.ac +++ b/configure.ac @@ -19,10 +19,14 @@ AC_PROG_LIBTOOL AC_PROG_CC # Checks for pkg-config packages -PKG_CHECK_MODULES(SM, ice xproto xtrans) +PKG_CHECK_MODULES(SM, ice xproto) AC_SUBST(SM_CFLAGS) AC_SUBST(SM_LIBS) +PKG_CHECK_MODULES(XTRANS, xtrans) +AC_SUBST(XTRANS_CFLAGS) +AC_SUBST(XTRANS_LIBS) + # Checks for libraries. # Checks for header files. |