forked from Yubico/yubikey-personalization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
243 lines (212 loc) · 8.55 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# Written by Richard Levitte <[email protected]>.
# Copyright (c) 2008-2016 Yubico AB
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
AC_INIT([yubikey-personalization], [1.18.1],
[[email protected]], [ykpers],
[https://developers.yubico.com/yubikey-personalization/])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
# Library code modified: REVISION++
# Interfaces changed/added/removed: CURRENT++ REVISION=0
# Interfaces added: AGE++
# Interfaces removed: AGE=0
AC_SUBST(LT_CURRENT, 19)
AC_SUBST(LT_REVISION, 1)
AC_SUBST(LT_AGE, 18)
AM_INIT_AUTOMAKE([1.11.3 -Wall -Werror])
AM_SILENT_RULES([yes])
AC_PROG_CC
ACX_PTHREAD
LIBS="$PTHREAD_LIBS $LIBS"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
CC="$PTHREAD_CC"
# required for newest autoconf
m4_pattern_allow([AM_PROG_AR])
AM_PROG_AR
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
AC_CANONICAL_HOST
PKG_PROG_PKG_CONFIG
AM_MISSING_PROG([A2X], a2x, $missing_dir)
AC_LIB_HAVE_LINKFLAGS(yubikey,,
[#include <yubikey.h>],
[yubikey_modhex_p("foo")])
if test "$ac_cv_libyubikey" != yes; then
AC_MSG_ERROR([libyubikey v1.5+ not found, see https://developers.yubico.com/yubico-c/])
fi
AC_ARG_WITH([backend],
[AS_HELP_STRING([--with-backend=ARG],
[use specific backend; 'libusb-1.0', 'libusb', 'osx' or 'windows'])],
[],
[with_backend=check])
if test "x$with_backend" = xcheck; then
with_backend_orig=check
AC_MSG_CHECKING([for backend])
case "$host" in
*-darwin*) with_backend=osx ;;
*-mingw*) with_backend=windows ;;
*) PKG_CHECK_EXISTS([libusb-1.0],
[with_backend=libusb-1.0],
[with_backend=libusb])
esac
AC_MSG_RESULT([$with_backend])
fi
if test "x$with_backend" = "xlibusb-1.0"; then
PKG_CHECK_MODULES([LIBUSB], [libusb-1.0])
fi
if test x$with_backend = xlibusb; then
freebsd_libusb_found=no
AC_CHECK_LIB(usb, libusb_init, [freebsd_libusb_found=yes])
if test "$freebsd_libusb_found" = yes; then
# FreeBSD 8 has an implementation of the libusb-1.0 API in -lusb,
# interestingly enough together with most of libusb-0 API, so this
# check has to be before the generic libusb-0 check
AC_LIB_HAVE_LINKFLAGS(usb,, [#include <libusb.h>], [libusb_init(NULL)])
with_backend=libusb-1.0
fi
if test "$ac_cv_libusb" != yes; then
AC_LIB_HAVE_LINKFLAGS(usb,, [#include <usb.h>], [usb_init()])
fi
if test "$ac_cv_libusb" != yes; then
if test "$with_backend_orig" = "check"; then
AC_MSG_ERROR([libusb-1.0 or libusb not found, please install one of them])
else
AC_MSG_ERROR([libusb not found, please install usb.h and libusb.so])
fi
fi
fi
if test x$with_backend = xosx; then
LDFLAGS="$LDFLAGS -framework IOKit -framework CoreFoundation"
fi
if test x$with_backend = xwindows; then
LDFLAGS="$LDFLAGS -luuid -lsetupapi -lhid"
fi
AM_CONDITIONAL([BACKEND_LIBUSB], test x$with_backend = xlibusb)
AM_CONDITIONAL([BACKEND_LIBUSB_1_0], test x$with_backend = xlibusb-1.0)
AM_CONDITIONAL([BACKEND_OSX], test x$with_backend = xosx)
AM_CONDITIONAL([BACKEND_WINDOWS], test x$with_backend = xwindows)
AC_ARG_WITH([json],
AC_HELP_STRING([--without-json], [without JSON YCFG support]),
[with_json=$withval], [with_json=yes])
if test x$with_json = xyes; then
PKG_CHECK_MODULES([libjson], [json-c], [], [
PKG_CHECK_MODULES([libjson], [json], [], [with_json=no])])
fi
AC_MSG_CHECKING([whether to use json library])
AC_MSG_RESULT([$with_json])
AM_CONDITIONAL([JSON], [test "$with_json" = yes])
# Check for json_object_to_json_string_ext, needed for pretty printing.
am_save_CFLAGS="$CFLAGS"
am_save_LIBS="$LIBS"
CFLAGS="$CFLAGS $libjson_CFLAGS"
LIBS="$LIBS $libjson_LIBS"
AC_CHECK_FUNCS([json_object_to_json_string_ext])
AC_CHECK_FUNCS([json_object_object_get_ex])
CFLAGS=$am_save_CFLAGS
LIBS=$am_save_LIBS
AC_ARG_WITH([udevrulesdir],
AS_HELP_STRING([--with-udevrulesdir=DIR], [Install udev rules into this directory]),
[], [])
AC_SUBST([udevrulesdir], [$with_udevrulesdir])
# It would be more clear to wrap this in AC_MSG_CHECKING and AC_MSG_RESULT, but
# this works too. If udevrulesdir is set, check for udev >= 188, which should
# have the ID_SECURITY_TOKEN tag in 70-uaccess.rules / 70-udev-acl-rules. If
# a recent enough udev is not found, fall back to using the old
# 70-yubikey.rules file.
if test -n "$udevrulesdir"; then
PKG_CHECK_MODULES([UDEV], [udev >= 188],
udevrulesfile=69-yubikey.rules,
udevrulesfile=70-yubikey.rules,
)
AC_SUBST([udevrulesfile], [$udevrulesfile])
fi
gl_LD_VERSION_SCRIPT
gl_VALGRIND_TESTS
AC_ARG_ENABLE([debug],
[AS_HELP_STRING([--enable-debug],
[enable USB debugging])],
[],
[enable_debug=no])
AM_CONDITIONAL([ENABLE_DEBUG],[test '!' "$enable_debug" = no])
AC_ARG_ENABLE([coverage],
[AS_HELP_STRING([--enable-coverage],
[use Gcov to test the test suite])],
[],
[enable_cov=no])
AM_CONDITIONAL([ENABLE_COV],[test '!' "$enable_cov" = no])
AC_ARG_ENABLE([gcc-warnings],
[AS_HELP_STRING([--enable-gcc-warnings],
[turn on lots of GCC warnings (for developers)])],
[case $enableval in
yes|no) ;;
*) AC_MSG_ERROR([bad value $enableval for gcc-warnings option]) ;;
esac
gl_gcc_warnings=$enableval],
[gl_gcc_warnings=no]
)
if test "$gl_gcc_warnings" = yes; then
nw="$nw -Wsystem-headers" # Don't let system headers trigger warnings
nw="$nw -Wpadded" # Struct's arenot padded
nw="$nw -Wc++-compat" # We don't care strongly about C++ compilers
nw="$nw -Wtraditional" # Warns on #elif which we use often
nw="$nw -Wtraditional-conversion" # Too many warnings for now
nw="$nw -Wconversion" # Too many warnings for now
nw="$nw -Wsuggest-attribute=pure" # Is it worth using attributes?
nw="$nw -Woverlength-strings" # Don't complain about string lengths
gl_MANYWARN_ALL_GCC([ws])
gl_MANYWARN_COMPLEMENT(ws, [$ws], [$nw])
for w in $ws; do
gl_WARN_ADD([$w])
done
gl_WARN_ADD([-fdiagnostics-show-option])
fi
AC_SUBST(YKPERS_VERSION_MAJOR, `echo $PACKAGE_VERSION | sed 's/\(.*\)\..*\..*/\1/g'`)
AC_SUBST(YKPERS_VERSION_MINOR, `echo $PACKAGE_VERSION | sed 's/.*\.\(.*\)\..*/\1/g'`)
AC_SUBST(YKPERS_VERSION_PATCH, `echo $PACKAGE_VERSION | sed 's/.*\..*\.\(.*\)/\1/g'`)
AC_SUBST(YKPERS_VERSION_NUMBER, `printf "0x%02x%02x%02x" $YKPERS_VERSION_MAJOR $YKPERS_VERSION_MINOR $YKPERS_VERSION_PATCH`)
AC_CONFIG_FILES([
Makefile
ykpers-1.pc
ykpers-version.h
ykcore/Makefile
tests/Makefile
])
AC_OUTPUT
AC_MSG_NOTICE([summary of build options:
version: ${VERSION} shared $LT_CURRENT:$LT_REVISION:$LT_AGE major $YKPERS_VERSION_MAJOR minor $YKPERS_VERSION_MINOR patch $YKPERS_VERSION_PATCH number $YKPERS_VERSION_NUMBER
Host type: ${host}
Install prefix: ${prefix}
Compiler: ${CC}
Library types: Shared=${enable_shared}, Static=${enable_static}
USB backend: ${with_backend}
JSON library: $with_json
CFLAGS: $libjson_CFLAGS
LIBS: $libjson_LIBS
pretty printing: $ac_cv_func_json_object_to_json_string_ext
udev rules dir: ${with_udevrulesdir:-N/A}
udev rules file: ${udevrulesfile:-N/A}
])