Pig | 5038580 | 2020-09-19 06:29:17 +0800 | [diff] [blame] | 1 | # -*- 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 |
| 8 | AC_PREREQ(2.61) |
| 9 | # Initialize the display commonsys intf package version 1.0.0 |
| 10 | AC_INIT([disp-commonsys-intf],1.0.0) |
| 11 | # Does not strictly follow GNU Coding standards |
| 12 | AM_INIT_AUTOMAKE([foreign]) |
| 13 | # Disables auto rebuilding of configure, Makefile.ins |
| 14 | AM_MAINTAINER_MODE |
| 15 | # defines some macros variable to be included by source |
| 16 | AC_CONFIG_HEADERS([config.h]) |
| 17 | AC_CONFIG_MACRO_DIR([m4]) |
| 18 | AC_SUBST([AM_CPPFLAGS], [--std=c++11]) |
| 19 | |
| 20 | AC_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 | |
| 26 | if test "x$with_core_includes" != "xno"; then |
| 27 | CFLAGS="${CFLAGS} -I${core_incdir}" |
| 28 | fi |
| 29 | |
| 30 | AC_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. |
| 36 | AC_PROG_CC |
| 37 | AM_PROG_CC_C_O |
| 38 | AC_PROG_CXX |
| 39 | AC_PROG_LIBTOOL |
| 40 | AC_PROG_AWK |
| 41 | AC_PROG_CPP |
| 42 | AC_PROG_INSTALL |
| 43 | AC_PROG_LN_S |
| 44 | AC_PROG_MAKE_SET |
| 45 | |
| 46 | AC_SUBST([CFLAGS]) |
| 47 | AC_SUBST([CC]) |
| 48 | AC_CONFIG_FILES([ \ |
| 49 | Makefile \ |
| 50 | libqdmetadata/Makefile |
| 51 | ]) |
| 52 | AC_OUTPUT |