forked from Yubico/yubikey-personalization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
149 lines (129 loc) · 4.84 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
# Written by Richard Levitte <[email protected]>.
# Copyright (c) 2008-2012 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.7.1],
[[email protected]], [ykpers],
[http://code.google.com/p/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, 8)
AC_SUBST(LT_REVISION, 1)
AC_SUBST(LT_AGE, 7)
AM_INIT_AUTOMAKE([-Wall -Werror])
AM_SILENT_RULES([yes])
AC_PROG_CC
ACX_PTHREAD
LIBS="$PTHREAD_LIBS $LIBS"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
CC="$PTHREAD_CC"
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
AC_CANONICAL_HOST
PKG_PROG_PKG_CONFIG
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 http://code.google.com/p/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([udevrulesdir],
AS_HELP_STRING([--with-udevrulesdir=DIR], [Directory for udev rules]),
[], [])
AC_SUBST([udevrulesdir], [$with_udevrulesdir])
gl_LD_VERSION_SCRIPT
gl_VALGRIND_TESTS
AC_CONFIG_FILES([
Makefile
ykpers-1.pc
ykcore/Makefile
tests/Makefile
])
AC_OUTPUT
AC_MSG_NOTICE([summary of build options:
version: ${VERSION} shared $LT_CURRENT:$LT_REVISION:$LT_AGE
Host type: ${host}
Install prefix: ${prefix}
Compiler: ${CC}
Library types: Shared=${enable_shared}, Static=${enable_static}
USB backend: ${with_backend}
udev rules: ${with_udevrulesdir:-N/A}
])