diff options
Diffstat (limited to 'libtls-standalone/configure.ac')
-rw-r--r-- | libtls-standalone/configure.ac | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/libtls-standalone/configure.ac b/libtls-standalone/configure.ac deleted file mode 100644 index ebdd850..0000000 --- a/libtls-standalone/configure.ac +++ /dev/null | |||
@@ -1,52 +0,0 @@ | |||
1 | # Copyright (c) 2014-2015 Brent Cook | ||
2 | # | ||
3 | # Permission to use, copy, modify, and distribute this software for any | ||
4 | # purpose with or without fee is hereby granted, provided that the above | ||
5 | # copyright notice and this permission notice appear in all copies. | ||
6 | # | ||
7 | # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
8 | # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
9 | # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
10 | # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
11 | # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
12 | # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
13 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
14 | |||
15 | AC_INIT([libtls], m4_esyscmd([tr -d '\n' < VERSION])) | ||
16 | AC_SUBST([LIBTLS_VERSION], m4_esyscmd([sed -e 's/\./:/g' VERSION | tr -d '\n'])) | ||
17 | |||
18 | AC_CANONICAL_HOST | ||
19 | AM_INIT_AUTOMAKE([subdir-objects]) | ||
20 | AC_CONFIG_MACRO_DIR([m4]) | ||
21 | |||
22 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) | ||
23 | |||
24 | # This must be called before AC_PROG_CC | ||
25 | USER_CFLAGS="$CFLAGS" | ||
26 | |||
27 | AC_PROG_CC | ||
28 | AC_PROG_CC_STDC | ||
29 | AM_PROG_CC_C_O | ||
30 | AC_PROG_LIBTOOL | ||
31 | LT_INIT | ||
32 | |||
33 | CHECK_OS_OPTIONS | ||
34 | |||
35 | CHECK_C_HARDENING_OPTIONS | ||
36 | |||
37 | DISABLE_COMPILER_WARNINGS | ||
38 | |||
39 | CHECK_LIBC_COMPAT | ||
40 | CHECK_LIBC_CRYPTO_COMPAT | ||
41 | |||
42 | AC_CONFIG_FILES([ | ||
43 | Makefile | ||
44 | include/Makefile | ||
45 | compat/Makefile | ||
46 | man/Makefile | ||
47 | src/Makefile | ||
48 | tests/Makefile | ||
49 | libtls.pc | ||
50 | ]) | ||
51 | |||
52 | AC_OUTPUT | ||