build-sys: make libatasmart easily cross-compilable
[platform/upstream/libatasmart.git] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 # This file is part of libatasmart.
5 #
6 # Copyright 2008 Lennart Poettering
7 #
8 # libatasmart is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU Lesser General Public License as
10 # published by the Free Software Foundation, either version 2.1 of the
11 # License, or (at your option) any later version.
12 #
13 # libatasmart is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with libatasmart. If not, If not, see
20 # <http://www.gnu.org/licenses/>.
21
22 AC_PREREQ(2.63)
23
24 AC_INIT([libatasmart], 0.17, [mzyvongnfzneg (at) 0pointer (dot) net])
25 AC_CONFIG_SRCDIR([atasmart.c])
26 AC_CONFIG_HEADERS([config.h])
27 AC_CONFIG_MACRO_DIR(m4)
28
29 AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax])
30
31 AC_SUBST(PACKAGE_URL, [http://git.0pointer.de/?p=libatasmart.git])
32
33 AC_SUBST(LIBATASMART_VERSION_INFO, [4:3:0])
34
35 AC_CANONICAL_HOST
36
37 AM_SILENT_RULES([yes])
38
39 if type -p stow > /dev/null && test -d /usr/local/stow ; then
40    AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
41    ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
42 fi
43
44 #### Checks for programs. ####
45
46 # CC
47
48 AC_PROG_CC
49 AM_PROG_CC_C_O
50 AC_PROG_GCC_TRADITIONAL
51 AX_CC_FOR_BUILD
52 AC_USE_SYSTEM_EXTENSIONS
53
54 # C++
55
56 AC_PROG_CXX
57
58 # GCC flags
59
60 test_gcc_flag() {
61     AC_LANG_CONFTEST([int main(int argc, char*argv[]) {}])
62     $CC -c conftest.c $CFLAGS "$1" -o conftest.o > /dev/null 2> /dev/null
63     ret=$?
64     rm -f conftest.o
65     return $ret
66 }
67
68 # If using GCC specify some additional parameters
69 if test "x$GCC" = "xyes" ; then
70
71     # We use gnu99 instead of c99 because many have interpreted the standard
72     # in a way that int64_t isn't defined on non-64 bit platforms.
73     DESIRED_FLAGS="-std=gnu99 -Wall -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wcast-align -Wwrite-strings -Winline -Wno-unused-parameter -ffast-math"
74
75     for flag in $DESIRED_FLAGS ; do
76         AC_MSG_CHECKING([whether $CC accepts $flag])
77         if test_gcc_flag $flag ; then
78            CFLAGS="$CFLAGS $flag"
79            CXXFLAGS="$CXXFLAGS $flag"
80            AC_MSG_RESULT([yes])
81         else
82            AC_MSG_RESULT([no])
83         fi
84     done
85 fi
86
87 #### libtool stuff ####
88
89 AC_PROG_LIBTOOL
90
91 #### Checks for header files. ####
92
93 # ISO
94 AC_HEADER_STDC
95
96 # XPG4-UNIX
97 AC_CHECK_HEADERS([sys/poll.h])
98
99 # Other
100 AC_CHECK_HEADERS([sys/ioctl.h])
101 AC_CHECK_HEADERS([byteswap.h])
102
103 #### Typdefs, structures, etc. ####
104
105 AC_C_CONST
106 AC_C_BIGENDIAN
107 AC_TYPE_PID_T
108 AC_TYPE_SIZE_T
109 AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
110     [Define ssize_t if it is not done by the standard libs.])])
111 AC_TYPE_OFF_T
112 AC_TYPE_SIGNAL
113 AC_TYPE_UID_T
114
115 #### Large File-Support (LFS) ####
116
117 AC_SYS_LARGEFILE
118
119 PKG_CHECK_MODULES([LIBUDEV], [libudev >= 143])
120
121 ###################################
122 #            Output               #
123 ###################################
124
125 AC_CONFIG_FILES([
126 Makefile
127 strpool/Makefile
128 libatasmart.pc
129 ])
130 AC_OUTPUT
131
132 echo "
133  ---{ $PACKAGE_NAME $VERSION }---
134
135     prefix:                 ${prefix}
136     sysconfdir:             ${sysconfdir}
137     localstatedir:          ${localstatedir}
138     Compiler:               ${CC}
139     CFLAGS:                 ${CFLAGS}
140 "