Wed, 18 Oct 2017 19:10:29 +0200
fixes include path and non-cpp build for test program
253
e19825a1430a
removes unnecessary macros from ucx.h + removes the usage of restrict and _Bool completely, instead of defining macros
Mike Becker <universe@uap-core.de>
parents:
252
diff
changeset
|
1 | # the package version must match the macros in ucx.h |
e19825a1430a
removes unnecessary macros from ucx.h + removes the usage of restrict and _Bool completely, instead of defining macros
Mike Becker <universe@uap-core.de>
parents:
252
diff
changeset
|
2 | # if you change the package version, don't forget to adjust the library version |
e19825a1430a
removes unnecessary macros from ucx.h + removes the usage of restrict and _Bool completely, instead of defining macros
Mike Becker <universe@uap-core.de>
parents:
252
diff
changeset
|
3 | AC_INIT([ucx], [0.14], [olaf.wintermann@gmail.com]) |
252
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
4 | AC_CONFIG_AUX_DIR([build-aux]) |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
5 | AC_CONFIG_MACRO_DIR([m4]) |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
6 | AM_INIT_AUTOMAKE([foreign -Wall -Werror]) |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
7 | m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
8 | LT_INIT |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
9 | AC_PROG_CC |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
10 | AC_PROG_CC_STDC |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
11 | AC_CONFIG_HEADERS([config.h]) |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
12 | AC_CONFIG_FILES([Makefile src/Makefile test/Makefile]) |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
13 | AC_OUTPUT |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
14 |