blob: 549963383df09a382bf75e6ed282ee54934bead0 [file] [log] [blame]
Yunyun Cao6eba6fa2018-09-20 14:53:52 +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
Yunyun Cao6eba6fa2018-09-20 14:53:52 +080020# Checks for programs.
21AC_PROG_CC
22AM_PROG_CC_C_O
23AC_PROG_CXX
24AC_PROG_LIBTOOL
25AC_PROG_AWK
26AC_PROG_CPP
27AC_PROG_INSTALL
28AC_PROG_LN_S
29AC_PROG_MAKE_SET
30
31AC_SUBST([CFLAGS])
32AC_SUBST([CC])
33AC_CONFIG_FILES([ \
Avdhesh Singh Chauhan6383d0e2021-09-16 10:57:10 +053034 Makefile
Yunyun Cao6eba6fa2018-09-20 14:53:52 +080035 ])
36AC_OUTPUT