blob: 00d40ead4273db3e889835277c654a1ddcfcb66d [file] [log] [blame]
developeraab9e962022-04-07 12:49:36 +08001##########################################################################
2# If not stated otherwise in this file or this component's Licenses.txt
3# file the following copyright and licenses apply:
4#
5# Copyright 2015 RDK Management
6#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18##########################################################################
19# -*- Autoconf -*-
20# Process this file with autoconf to produce configure script.
21#
22
23AC_PREREQ([2.65])
24AC_INIT([hal], [1.0], [BUG-REPORT-ADDRESS])
25AM_INIT_AUTOMAKE([foreign])
26LT_INIT
27
28AC_PREFIX_DEFAULT(`pwd`)
29AC_ENABLE_SHARED
30AC_DISABLE_STATIC
31
32AC_CONFIG_HEADERS([config.h])
33AC_CONFIG_MACRO_DIR([m4])
34
35# Checks for programs.
36AC_PROG_CC
37AC_PROG_INSTALL
38AM_PROG_CC_C_O
39AM_PROG_LIBTOOL(libtool)
40
41# Checks for header files.
42AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
43
44# Checks for typedefs, structures, and compiler characteristics.
45AC_HEADER_STDBOOL
46AC_C_INLINE
47
48# Checks for library functions.
49AC_FUNC_MALLOC
50
51AC_CONFIG_FILES(Makefile)
52
53
54AC_OUTPUT
55