-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure.ac
59 lines (48 loc) · 1.93 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# $Id: $
# This file is part of pam_8021x.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
AC_INIT([pam_8021x], [0.1], [Enrique Hernández Bello <[email protected]>])
AC_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/pam_8021x.c])
AC_PREREQ([2.13])
AC_PROG_CC
AM_PROG_CC_C_O
AC_CHECK_HEADER([security/pam_modules.h], ,
[AC_MSG_ERROR([PAM headers missing])])
AC_CHECK_LIB(pam, pam_start, [PAM_LIBS="-lpam"],
AC_MSG_ERROR([PAM library missing]))
AC_SUBST(PAM_LIBS)
PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.10, dummy=yes,
AC_MSG_ERROR(libglib-2.0 is required))
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0, dummy=yes,
AC_MSG_ERROR(libdbus is required))
AC_SUBST(DBUS_CFLAGS)
AC_SUBST(DBUS_LIBS)
PKG_CHECK_MODULES(DBUS_GLIB, dbus-glib-1 >= 0.70, dummy=yes,
AC_MSG_ERROR(libdbus-glib is required))
AC_SUBST(DBUS_GLIB_CFLAGS)
AC_SUBST(DBUS_GLIB_LIBS)
PKG_CHECK_MODULES(NM, NetworkManager >= 0.9 libnm-util >= 0.9, dummy=yes,
AC_MSG_ERROR(libnm-util is required))
AC_SUBST(NM_CFLAGS)
AC_SUBST(NM_LIBS)
AC_CONFIG_FILES([Makefile] [src/Makefile])
AC_OUTPUT