-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathconfigure.ac
More file actions
29 lines (24 loc) · 838 Bytes
/
Copy pathconfigure.ac
File metadata and controls
29 lines (24 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.68])
AC_INIT([opentee-core], [0.0.0], [https://github.com/Open-TEE/tee-engine/issues],
[opentee-core], [https://github.com/Open-TEE])
AM_INIT_AUTOMAKE([foreign subdir-objects])
AC_CONFIG_SRCDIR([internal_api/tee_time_api.h])
AC_CONFIG_MACRO_DIR([m4])
AC_USE_SYSTEM_EXTENSIONS
# Checks for programs.
AC_PROG_CC
LT_INIT
# Checks for libraries.
AC_CHECK_LIB([pthread], [pthread_create])
AC_CHECK_LIB([ssl], [SSL_CTX_new])
AC_CHECK_LIB([crypto], [ENGINE_cleanup])
AC_CHECK_LIB([dl], [dlopen])
AC_CHECK_LIB([elf], [elf_version])
AC_CHECK_LIB([z], [crc32])
AC_CHECK_LIB([uuid], [uuid_generate])
AC_CHECK_LIB([rt], [shm_open])
# Created configuration files.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT