diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-04-21 15:02:52 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-04-21 15:07:40 -0700 |
commit | d028190d036f25472dba587863322a8fe03dda95 (patch) | |
tree | d5c56d353f63c4d39486121563903d38fa6a5e4a /configure.ac | |
parent | f36566239cc9119882a36273c3eefb90962d6ee5 (diff) |
Mark usage() functions as noreturn, as suggested by gcc
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 e9b4699..394fbdb 100644 --- a/configure.ac +++ b/configure.ac @@ -55,8 +55,8 @@ LIBS="$save_LIBS" AC_SUBST([MATH_LIBS]) # Obtain compiler/linker options from dependencies -PKG_CHECK_MODULES(BMTOA, x11 xmu) -PKG_CHECK_MODULES(ATOBM, xproto) +PKG_CHECK_MODULES(BMTOA, [x11 xmu xproto >= 7.0.17]) +PKG_CHECK_MODULES(ATOBM, [xproto >= 7.0.17]) PKG_CHECK_MODULES(BITMAP, xbitmaps xaw7 xmu) PKG_CHECK_MODULES(APPDEFS, xt) |