configure.ac

Wed, 18 Oct 2017 14:23:57 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 18 Oct 2017 14:23:57 +0200
changeset 253
e19825a1430a
parent 252
6342cbbd1922
child 255
92c22c0fa8e8
permissions
-rw-r--r--

removes unnecessary macros from ucx.h + removes the usage of restrict and _Bool completely, instead of defining macros

     1 # the package version must match the macros in ucx.h
     2 # if you change the package version, don't forget to adjust the library version
     3 AC_INIT([ucx], [0.14], [olaf.wintermann@gmail.com])
     4 AC_CONFIG_AUX_DIR([build-aux])
     5 AC_CONFIG_MACRO_DIR([m4])
     6 AM_INIT_AUTOMAKE([foreign -Wall -Werror])
     7 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
     8 LT_INIT
     9 AC_PROG_CC
    10 AC_PROG_CC_STDC
    11 AC_CONFIG_HEADERS([config.h])
    12 AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
    13 AC_OUTPUT

mercurial