universe@253: # the package version must match the macros in ucx.h universe@253: # if you change the package version, don't forget to adjust the library version universe@253: AC_INIT([ucx], [0.14], [olaf.wintermann@gmail.com]) universe@255: universe@255: # don't place everything in the project root universe@252: AC_CONFIG_AUX_DIR([build-aux]) universe@252: AC_CONFIG_MACRO_DIR([m4]) universe@255: universe@255: # we use our own directory structure universe@252: AM_INIT_AUTOMAKE([foreign -Wall -Werror]) universe@255: universe@255: # if there is an archiver, use it universe@252: m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) universe@255: universe@255: # we are compiling a library universe@252: LT_INIT universe@255: universe@255: # we are dealing with C source code universe@252: AC_PROG_CC universe@255: universe@255: # we want to support automake < 1.14, so we need this deprecated macro universe@255: # it tests, whether the compiler allows -c and -o simultaneously universe@255: # in modern versions of autoconf, this is done by AC_PROG_CC universe@255: AM_PROG_CC_C_O universe@255: universe@255: # we require the current C standard universe@252: AC_PROG_CC_STDC universe@255: universe@255: # where to place config macros universe@252: AC_CONFIG_HEADERS([config.h]) universe@255: universe@255: # our Makefiles universe@252: AC_CONFIG_FILES([Makefile src/Makefile test/Makefile]) universe@255: universe@255: # GO universe@252: AC_OUTPUT universe@252: