blob: 8950b21cacd7ea7a0cf1d398314e2f917666992e [file] [log] [blame]
Pig50385802020-09-19 06:29:17 +08001# -*- Autoconf -*-
2# configure.ac -- Autoconf script for display commonsys intf
3#
4
5# Process this file with autoconf to produce a configure script
6
7# Requires autoconf tool later than 2.61
8AC_PREREQ(2.61)
9# Initialize the display commonsys intf package version 1.0.0
10AC_INIT([disp-commonsys-intf],1.0.0)
11# Does not strictly follow GNU Coding standards
12AM_INIT_AUTOMAKE([foreign])
13# Disables auto rebuilding of configure, Makefile.ins
14AM_MAINTAINER_MODE
15# defines some macros variable to be included by source
16AC_CONFIG_HEADERS([config.h])
17AC_CONFIG_MACRO_DIR([m4])
18AC_SUBST([AM_CPPFLAGS], [--std=c++11])
19
20AC_ARG_WITH([core_includes],
21 AC_HELP_STRING([--with-core-includes=@<:@dir@:>@],
22 [Specify the location of the core headers]),
23 [core_incdir=$withval],
24 with_core_includes=no)
25
26if test "x$with_core_includes" != "xno"; then
27 CFLAGS="${CFLAGS} -I${core_incdir}"
28fi
29
30AC_ARG_WITH(sanitized-headers,
31 AS_HELP_STRING([--with-sanitized-headers=DIR],
32 [Specify the location of the sanitized Linux headers]),
33 [CPPFLAGS="$CPPFLAGS -I$withval"])
34
35# Checks for programs.
36AC_PROG_CC
37AM_PROG_CC_C_O
38AC_PROG_CXX
39AC_PROG_LIBTOOL
40AC_PROG_AWK
41AC_PROG_CPP
42AC_PROG_INSTALL
43AC_PROG_LN_S
44AC_PROG_MAKE_SET
45
46AC_SUBST([CFLAGS])
47AC_SUBST([CC])
48AC_CONFIG_FILES([ \
49 Makefile \
50 libqdmetadata/Makefile
51 ])
52AC_OUTPUT