X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=configure.ac;h=f445683000547d6b89f7c71ffecf857ebd46212b;hb=cc075990f4fc2ed09c708036569049ddd24605ac;hp=903eeedbe3e32442bc4048c8e993d14fb23910eb;hpb=47ceed78612d48dcda62cc2686fc527d61abe38b;p=free-sw%2Fxcb%2Flibxcb diff --git a/configure.ac b/configure.ac index 903eeed..f445683 100644 --- a/configure.ac +++ b/configure.ac @@ -38,6 +38,17 @@ PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 0.9) PKG_CHECK_MODULES(XPROTO, xproto) PKG_CHECK_MODULES(XAU, xau) +PKG_CHECK_MODULES(XDMCP, xdmcp, + AC_CHECK_LIB(Xdmcp, XdmcpWrap, + [ + AC_DEFINE(HASXDMAUTH,1,[Has Wraphelp.c needed for XDM AUTH protocols]) + ], + [ + XDMCP_CFLAGS= + XDMCP_LIBS= + ], [$XDMCP_LIBS]), + [AC_MSG_RESULT(no)]) + # Find the xcb-proto protocol descriptions AC_MSG_CHECKING(XCBPROTO_XCBINCLUDEDIR) XCBPROTO_XCBINCLUDEDIR=`$PKG_CONFIG --variable=xcbincludedir xcb-proto` @@ -55,29 +66,52 @@ AC_ARG_WITH(opt, AC_HELP_STRING([--with-opt], [compile with reasonable optimizations]) AC_HELP_STRING([--with-opt=FLAGS], [compile with specified FLAGS]) AC_HELP_STRING([--with-opt=small], [compile for smallest code]) -AC_HELP_STRING([--with-opt=debug], [compile for debugging (default)]), +AC_HELP_STRING([--without-opt], [compile without optimization (default)]), [ case "$withval" in yes) - optflags="-O3" + COPTFLAGS="-O3" ;; small) - optflags="-Os -fomit-frame-pointer -DNDEBUG" + COPTFLAGS="-Os -fomit-frame-pointer -DNDEBUG" ;; - no|debug) - optflags="-g" + no) + COPTFLAGS="" ;; *) - optflags="$withval" + COPTFLAGS="$withval" ;; esac ]) -AC_CACHE_CHECK([what compiler optimizations to apply], [optflags], [optflags="-g"]) -AC_DEFINE(_XOPEN_SOURCE, 500, [Conform to Single Unix Specification.]) -CDEBUGFLAGS="$optflags -Wall -pedantic -Wpointer-arith \ - -Wstrict-prototypes -Wmissing-declarations -Wnested-externs" +AC_CACHE_CHECK([what compiler optimizations to apply], [COPTFLAGS], [COPTFLAGS=""]) +AC_SUBST(COPTFLAGS) + +AC_ARG_WITH(debug, +AC_HELP_STRING([--with-debug], [compile with debugging (default)]) +AC_HELP_STRING([--with-debug=FLAGS], [compile with specified debugging FLAGS]) +AC_HELP_STRING([--without-debug], [compile without debugging]), +[ + case "$withval" in + yes) + CDEBUGFLAGS="-g" + ;; + no) + CDEBUGFLAGS="" + ;; + *) + CDEBUGFLAGS="$withval" + ;; + esac +]) +AC_CACHE_CHECK([what debugging options to apply], [CDEBUGFLAGS], [CDEBUGFLAGS="-g"]) AC_SUBST(CDEBUGFLAGS) +CWARNFLAGS="-Wall -pedantic -Wpointer-arith \ + -Wstrict-prototypes -Wmissing-declarations -Wnested-externs" +AC_SUBST(CWARNFLAGS) + +GCC_CHECK_VISIBILITY() + AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile]) AC_CONFIG_FILES([xcb.pc])