debian libeap: pull in patch to enable tls
authorSam Hartman <hartmans@painless-security.com>
Wed, 4 May 2011 23:58:40 +0000 (19:58 -0400)
committerSam Hartman <hartmans@painless-security.com>
Thu, 5 May 2011 00:01:14 +0000 (20:01 -0400)
1  2 
debian/changelog
libeap/Makefile.am
libeap/Makefile.in

index fb22d62,0000000..ab8ff38
mode 100644,000000..100644
--- /dev/null
@@@ -1,17 -1,0 +1,17 @@@
- moonshot-gss-eap (0.1+20110427-3) unstable; urgency=low
++moonshot-gss-eap (0.1+20110427-5) unstable; urgency=low
 +
 +  * Enable TLS in libeap
 +
 + -- Sam Hartman <hartmans@debian.org>  Wed, 04 May 2011 18:42:08 -0400
 +
 +moonshot-gss-eap (0.1+20110427-2) unstable; urgency=low
 +
 +  * Force mutual authentication
 +
 + -- Sam Hartman <hartmans@debian.org>  Wed, 04 May 2011 14:59:46 -0400
 +
 +moonshot-gss-eap (0.1+20110427-1) unstable; urgency=low
 +
 +  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
 +
 + -- Sam Hartman <hartmans@debian.org>  Wed, 27 Apr 2011 08:53:16 -0400
index 2ba9a7b,0000000..725f6c8
mode 100644,000000..100644
--- /dev/null
@@@ -1,126 -1,0 +1,128 @@@
 +AUTOMAKE_OPTIONS = foreign
 +
 +AM_CPPFLAGS = -I$(srcdir)/src -I$(srcdir)/eap_example -I$(srcdir)/src/utils 
 +
 +SOURCES_BOTH = src/eap_common/eap_peap_common.c
 +SOURCES_BOTH += src/eap_common/eap_psk_common.c
 +SOURCES_BOTH += src/eap_common/eap_pax_common.c
 +SOURCES_BOTH += src/eap_common/eap_sake_common.c
 +SOURCES_BOTH += src/eap_common/eap_gpsk_common.c
 +SOURCES_BOTH += src/eap_common/chap.c
 +
 +SOURCES_peer = src/eap_peer/eap_tls.c
 +SOURCES_peer += src/eap_peer/eap_peap.c
 +SOURCES_peer += src/eap_peer/eap_ttls.c
 +SOURCES_peer += src/eap_peer/eap_md5.c
 +SOURCES_peer += src/eap_peer/eap_mschapv2.c
 +SOURCES_peer += src/eap_peer/mschapv2.c
 +SOURCES_peer += src/eap_peer/eap_otp.c
 +SOURCES_peer += src/eap_peer/eap_gtc.c
 +SOURCES_peer += src/eap_peer/eap_leap.c
 +SOURCES_peer += src/eap_peer/eap_psk.c
 +SOURCES_peer += src/eap_peer/eap_pax.c
 +SOURCES_peer += src/eap_peer/eap_sake.c
 +SOURCES_peer += src/eap_peer/eap_gpsk.c
 +SOURCES_peer += src/eap_peer/eap.c
 +SOURCES_peer += src/eap_common/eap_common.c
 +SOURCES_peer += src/eap_peer/eap_methods.c
 +SOURCES_peer += src/eap_peer/eap_tls_common.c
 +CFLAGS += -DEAP_TLS
 +CFLAGS += -DEAP_PEAP
 +CFLAGS += -DEAP_TTLS
 +CFLAGS += -DEAP_MD5
 +CFLAGS += -DEAP_MSCHAPv2
 +CFLAGS += -DEAP_GTC
 +CFLAGS += -DEAP_OTP
 +CFLAGS += -DEAP_LEAP
 +CFLAGS += -DEAP_PSK
 +CFLAGS += -DEAP_PAX
 +CFLAGS += -DEAP_SAKE
 +CFLAGS += -DEAP_GPSK -DEAP_GPSK_SHA256
 +
 +CFLAGS += -DEAP_SERVER_IDENTITY
 +CFLAGS += -DEAP_SERVER_TLS
 +CFLAGS += -DEAP_SERVER_PEAP
 +CFLAGS += -DEAP_SERVER_TTLS
 +CFLAGS += -DEAP_SERVER_MD5
 +CFLAGS += -DEAP_SERVER_MSCHAPV2
 +CFLAGS += -DEAP_SERVER_GTC
 +CFLAGS += -DEAP_SERVER_PSK
 +CFLAGS += -DEAP_SERVER_PAX
 +CFLAGS += -DEAP_SERVER_SAKE
 +CFLAGS += -DEAP_SERVER_GPSK -DEAP_SERVER_GPSK_SHA256
 +
 +CFLAGS += -DIEEE8021X_EAPOL
 +CFLAGS += -DCONFIG_IPV6
 +
 +CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH
 +CFLAGS += -DCONFIG_CRYPTO_INTERNAL
++CFLAGS += -DCONFIG_TLS_INTERNAL_CLIENT
++CFLAGS += -DCONFIG_TLS_INTERNAL_SERVER
 +
 +
 +UTILS_SRCS = src/utils/base64.c \
 +      src/utils/common.c \
 +      src/utils/ip_addr.c \
 +      src/utils/radiotap.c \
 +      src/utils/trace.c \
 +      src/utils/uuid.c \
 +      src/utils/wpa_debug.c \
 +      src/utils/wpabuf.c \
 +      src/utils/os_unix.c
 +
 +CRYPTO_SRCS = \
 +    src/crypto/aes-cbc.c \
 +    src/crypto/aes-ctr.c \
 +    src/crypto/aes-eax.c \
 +    src/crypto/aes-encblock.c \
 +    src/crypto/aes-internal.c \
 +    src/crypto/aes-internal-dec.c \
 +    src/crypto/aes-internal-enc.c \
 +    src/crypto/aes-omac1.c \
 +    src/crypto/aes-unwrap.c \
 +    src/crypto/aes-wrap.c \
 +    src/crypto/des-internal.c \
 +    src/crypto/dh_group5.c \
 +    src/crypto/dh_groups.c \
 +    src/crypto/md4-internal.c \
 +    src/crypto/md5.c \
 +    src/crypto/md5-internal.c \
 +    src/crypto/md5-non-fips.c \
 +    src/crypto/milenage.c \
 +    src/crypto/ms_funcs.c \
 +    src/crypto/rc4.c \
 +    src/crypto/sha1.c \
 +    src/crypto/sha1-internal.c \
 +    src/crypto/sha1-pbkdf2.c \
 +    src/crypto/sha1-tlsprf.c \
 +    src/crypto/sha1-tprf.c \
 +    src/crypto/sha256.c \
 +    src/crypto/sha256-internal.c \
 +    src/crypto/crypto_internal.c \
 +    src/crypto/crypto_internal-cipher.c \
 +    src/crypto/crypto_internal-modexp.c \
 +    src/crypto/crypto_internal-rsa.c \
 +    src/crypto/tls_internal.c \
 +    src/crypto/fips_prf_internal.c
 +
 +TLS_SRCS = \
 +    src/tls/asn1.c \
 +    src/tls/bignum.c \
 +    src/tls/pkcs1.c \
 +    src/tls/pkcs5.c \
 +    src/tls/pkcs8.c \
 +    src/tls/rsa.c \
 +    src/tls/tlsv1_client.c \
 +    src/tls/tlsv1_client_read.c \
 +    src/tls/tlsv1_client_write.c \
 +    src/tls/tlsv1_common.c \
 +    src/tls/tlsv1_cred.c \
 +    src/tls/tlsv1_record.c \
 +    src/tls/tlsv1_server.c \
 +    src/tls/tlsv1_server_read.c \
 +    src/tls/tlsv1_server_write.c \
 +    src/tls/x509v3.c
 +
 +libeap_la_SOURCES = $(SOURCES_BOTH) $(SOURCES_peer) $(UTILS_SRCS) $(CRYPTO_SRCS) $(TLS_SRCS)
 +
 +noinst_LTLIBRARIES = libeap.la
index d812c80,0000000..4193f08
mode 100644,000000..100644
--- /dev/null
@@@ -1,1243 -1,0 +1,1244 @@@
-       -DCONFIG_CRYPTO_INTERNAL
 +# Makefile.in generated by automake 1.11.1 from Makefile.am.
 +# @configure_input@
 +
 +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 +# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 +# Inc.
 +# This Makefile.in is free software; the Free Software Foundation
 +# gives unlimited permission to copy and/or distribute it,
 +# with or without modifications, as long as this notice is preserved.
 +
 +# This program is distributed in the hope that it will be useful,
 +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 +# PARTICULAR PURPOSE.
 +
 +@SET_MAKE@
 +
 +VPATH = @srcdir@
 +pkgdatadir = $(datadir)/@PACKAGE@
 +pkgincludedir = $(includedir)/@PACKAGE@
 +pkglibdir = $(libdir)/@PACKAGE@
 +pkglibexecdir = $(libexecdir)/@PACKAGE@
 +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 +install_sh_DATA = $(install_sh) -c -m 644
 +install_sh_PROGRAM = $(install_sh) -c
 +install_sh_SCRIPT = $(install_sh) -c
 +INSTALL_HEADER = $(INSTALL_DATA)
 +transform = $(program_transform_name)
 +NORMAL_INSTALL = :
 +PRE_INSTALL = :
 +POST_INSTALL = :
 +NORMAL_UNINSTALL = :
 +PRE_UNINSTALL = :
 +POST_UNINSTALL = :
 +build_triplet = @build@
 +host_triplet = @host@
 +subdir = libeap
 +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
 +      COPYING
 +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 +      $(top_srcdir)/configure.ac
 +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 +      $(ACLOCAL_M4)
 +mkinstalldirs = $(install_sh) -d
 +CONFIG_HEADER = $(top_builddir)/config.h
 +CONFIG_CLEAN_FILES =
 +CONFIG_CLEAN_VPATH_FILES =
 +LTLIBRARIES = $(noinst_LTLIBRARIES)
 +libeap_la_LIBADD =
 +am__objects_1 = eap_peap_common.lo eap_psk_common.lo eap_pax_common.lo \
 +      eap_sake_common.lo eap_gpsk_common.lo chap.lo
 +am__objects_2 = eap_tls.lo eap_peap.lo eap_ttls.lo eap_md5.lo \
 +      eap_mschapv2.lo mschapv2.lo eap_otp.lo eap_gtc.lo eap_leap.lo \
 +      eap_psk.lo eap_pax.lo eap_sake.lo eap_gpsk.lo eap.lo \
 +      eap_common.lo eap_methods.lo eap_tls_common.lo
 +am__objects_3 = base64.lo common.lo ip_addr.lo radiotap.lo trace.lo \
 +      uuid.lo wpa_debug.lo wpabuf.lo os_unix.lo
 +am__objects_4 = aes-cbc.lo aes-ctr.lo aes-eax.lo aes-encblock.lo \
 +      aes-internal.lo aes-internal-dec.lo aes-internal-enc.lo \
 +      aes-omac1.lo aes-unwrap.lo aes-wrap.lo des-internal.lo \
 +      dh_group5.lo dh_groups.lo md4-internal.lo md5.lo \
 +      md5-internal.lo md5-non-fips.lo milenage.lo ms_funcs.lo rc4.lo \
 +      sha1.lo sha1-internal.lo sha1-pbkdf2.lo sha1-tlsprf.lo \
 +      sha1-tprf.lo sha256.lo sha256-internal.lo crypto_internal.lo \
 +      crypto_internal-cipher.lo crypto_internal-modexp.lo \
 +      crypto_internal-rsa.lo tls_internal.lo fips_prf_internal.lo
 +am__objects_5 = asn1.lo bignum.lo pkcs1.lo pkcs5.lo pkcs8.lo rsa.lo \
 +      tlsv1_client.lo tlsv1_client_read.lo tlsv1_client_write.lo \
 +      tlsv1_common.lo tlsv1_cred.lo tlsv1_record.lo tlsv1_server.lo \
 +      tlsv1_server_read.lo tlsv1_server_write.lo x509v3.lo
 +am_libeap_la_OBJECTS = $(am__objects_1) $(am__objects_2) \
 +      $(am__objects_3) $(am__objects_4) $(am__objects_5)
 +libeap_la_OBJECTS = $(am_libeap_la_OBJECTS)
 +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
 +depcomp = $(SHELL) $(top_srcdir)/depcomp
 +am__depfiles_maybe = depfiles
 +am__mv = mv -f
 +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 +      $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
 +      --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
 +      $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 +CCLD = $(CC)
 +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
 +      --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
 +      $(LDFLAGS) -o $@
 +SOURCES = $(libeap_la_SOURCES)
 +DIST_SOURCES = $(libeap_la_SOURCES)
 +ETAGS = etags
 +CTAGS = ctags
 +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 +ACLOCAL = @ACLOCAL@
 +AMTAR = @AMTAR@
 +AR = @AR@
 +AUTOCONF = @AUTOCONF@
 +AUTOHEADER = @AUTOHEADER@
 +AUTOMAKE = @AUTOMAKE@
 +AWK = @AWK@
 +CC = @CC@
 +CCDEPMODE = @CCDEPMODE@
 +CFLAGS = @CFLAGS@ -DEAP_TLS -DEAP_PEAP -DEAP_TTLS -DEAP_MD5 \
 +      -DEAP_MSCHAPv2 -DEAP_GTC -DEAP_OTP -DEAP_LEAP -DEAP_PSK \
 +      -DEAP_PAX -DEAP_SAKE -DEAP_GPSK -DEAP_GPSK_SHA256 \
 +      -DEAP_SERVER_IDENTITY -DEAP_SERVER_TLS -DEAP_SERVER_PEAP \
 +      -DEAP_SERVER_TTLS -DEAP_SERVER_MD5 -DEAP_SERVER_MSCHAPV2 \
 +      -DEAP_SERVER_GTC -DEAP_SERVER_PSK -DEAP_SERVER_PAX \
 +      -DEAP_SERVER_SAKE -DEAP_SERVER_GPSK -DEAP_SERVER_GPSK_SHA256 \
 +      -DIEEE8021X_EAPOL -DCONFIG_IPV6 -DCONFIG_INTERNAL_LIBTOMMATH \
++      -DCONFIG_CRYPTO_INTERNAL -DCONFIG_TLS_INTERNAL_CLIENT \
++      -DCONFIG_TLS_INTERNAL_SERVER
 +COMPILE_ET = @COMPILE_ET@
 +CPP = @CPP@
 +CPPFLAGS = @CPPFLAGS@
 +CXX = @CXX@
 +CXXCPP = @CXXCPP@
 +CXXDEPMODE = @CXXDEPMODE@
 +CXXFLAGS = @CXXFLAGS@
 +CYGPATH_W = @CYGPATH_W@
 +DEFS = @DEFS@
 +DEPDIR = @DEPDIR@
 +DSYMUTIL = @DSYMUTIL@
 +DUMPBIN = @DUMPBIN@
 +ECHO_C = @ECHO_C@
 +ECHO_N = @ECHO_N@
 +ECHO_T = @ECHO_T@
 +EGREP = @EGREP@
 +EXEEXT = @EXEEXT@
 +FGREP = @FGREP@
 +GREP = @GREP@
 +INSTALL = @INSTALL@
 +INSTALL_DATA = @INSTALL_DATA@
 +INSTALL_PROGRAM = @INSTALL_PROGRAM@
 +INSTALL_SCRIPT = @INSTALL_SCRIPT@
 +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 +JANSSON_CFLAGS = @JANSSON_CFLAGS@
 +JANSSON_LDFLAGS = @JANSSON_LDFLAGS@
 +JANSSON_LIBS = @JANSSON_LIBS@
 +KRB5_CFLAGS = @KRB5_CFLAGS@
 +KRB5_LIBS = @KRB5_LIBS@
 +LD = @LD@
 +LDFLAGS = @LDFLAGS@
 +LIBOBJS = @LIBOBJS@
 +LIBS = @LIBS@
 +LIBTOOL = @LIBTOOL@
 +LIPO = @LIPO@
 +LN_S = @LN_S@
 +LTLIBOBJS = @LTLIBOBJS@
 +MAKEINFO = @MAKEINFO@
 +MKDIR_P = @MKDIR_P@
 +NM = @NM@
 +NMEDIT = @NMEDIT@
 +OBJDUMP = @OBJDUMP@
 +OBJEXT = @OBJEXT@
 +OTOOL = @OTOOL@
 +OTOOL64 = @OTOOL64@
 +PACKAGE = @PACKAGE@
 +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 +PACKAGE_NAME = @PACKAGE_NAME@
 +PACKAGE_STRING = @PACKAGE_STRING@
 +PACKAGE_TARNAME = @PACKAGE_TARNAME@
 +PACKAGE_URL = @PACKAGE_URL@
 +PACKAGE_VERSION = @PACKAGE_VERSION@
 +PATH_SEPARATOR = @PATH_SEPARATOR@
 +RADSEC_CFLAGS = @RADSEC_CFLAGS@
 +RADSEC_LDFLAGS = @RADSEC_LDFLAGS@
 +RADSEC_LIBS = @RADSEC_LIBS@
 +RANLIB = @RANLIB@
 +SED = @SED@
 +SET_MAKE = @SET_MAKE@
 +SHELL = @SHELL@
 +SHIBRESOLVER_CXXFLAGS = @SHIBRESOLVER_CXXFLAGS@
 +SHIBRESOLVER_LDFLAGS = @SHIBRESOLVER_LDFLAGS@
 +SHIBRESOLVER_LIBS = @SHIBRESOLVER_LIBS@
 +SHIBSP_CXXFLAGS = @SHIBSP_CXXFLAGS@
 +SHIBSP_LDFLAGS = @SHIBSP_LDFLAGS@
 +SHIBSP_LIBS = @SHIBSP_LIBS@
 +STRIP = @STRIP@
 +TARGET_CFLAGS = @TARGET_CFLAGS@
 +TARGET_LDFLAGS = @TARGET_LDFLAGS@
 +VERSION = @VERSION@
 +abs_builddir = @abs_builddir@
 +abs_srcdir = @abs_srcdir@
 +abs_top_builddir = @abs_top_builddir@
 +abs_top_srcdir = @abs_top_srcdir@
 +ac_ct_CC = @ac_ct_CC@
 +ac_ct_CXX = @ac_ct_CXX@
 +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 +am__include = @am__include@
 +am__leading_dot = @am__leading_dot@
 +am__quote = @am__quote@
 +am__tar = @am__tar@
 +am__untar = @am__untar@
 +bindir = @bindir@
 +build = @build@
 +build_alias = @build_alias@
 +build_cpu = @build_cpu@
 +build_os = @build_os@
 +build_vendor = @build_vendor@
 +builddir = @builddir@
 +datadir = @datadir@
 +datarootdir = @datarootdir@
 +docdir = @docdir@
 +dvidir = @dvidir@
 +exec_prefix = @exec_prefix@
 +host = @host@
 +host_alias = @host_alias@
 +host_cpu = @host_cpu@
 +host_os = @host_os@
 +host_vendor = @host_vendor@
 +htmldir = @htmldir@
 +includedir = @includedir@
 +infodir = @infodir@
 +install_sh = @install_sh@
 +libdir = @libdir@
 +libexecdir = @libexecdir@
 +localedir = @localedir@
 +localstatedir = @localstatedir@
 +lt_ECHO = @lt_ECHO@
 +mandir = @mandir@
 +mkdir_p = @mkdir_p@
 +oldincludedir = @oldincludedir@
 +pdfdir = @pdfdir@
 +prefix = @prefix@
 +program_transform_name = @program_transform_name@
 +psdir = @psdir@
 +sbindir = @sbindir@
 +sharedstatedir = @sharedstatedir@
 +srcdir = @srcdir@
 +sysconfdir = @sysconfdir@
 +target_alias = @target_alias@
 +top_build_prefix = @top_build_prefix@
 +top_builddir = @top_builddir@
 +top_srcdir = @top_srcdir@
 +AUTOMAKE_OPTIONS = foreign
 +AM_CPPFLAGS = -I$(srcdir)/src -I$(srcdir)/eap_example -I$(srcdir)/src/utils 
 +SOURCES_BOTH = src/eap_common/eap_peap_common.c \
 +      src/eap_common/eap_psk_common.c \
 +      src/eap_common/eap_pax_common.c \
 +      src/eap_common/eap_sake_common.c \
 +      src/eap_common/eap_gpsk_common.c src/eap_common/chap.c
 +SOURCES_peer = src/eap_peer/eap_tls.c src/eap_peer/eap_peap.c \
 +      src/eap_peer/eap_ttls.c src/eap_peer/eap_md5.c \
 +      src/eap_peer/eap_mschapv2.c src/eap_peer/mschapv2.c \
 +      src/eap_peer/eap_otp.c src/eap_peer/eap_gtc.c \
 +      src/eap_peer/eap_leap.c src/eap_peer/eap_psk.c \
 +      src/eap_peer/eap_pax.c src/eap_peer/eap_sake.c \
 +      src/eap_peer/eap_gpsk.c src/eap_peer/eap.c \
 +      src/eap_common/eap_common.c src/eap_peer/eap_methods.c \
 +      src/eap_peer/eap_tls_common.c
 +UTILS_SRCS = src/utils/base64.c \
 +      src/utils/common.c \
 +      src/utils/ip_addr.c \
 +      src/utils/radiotap.c \
 +      src/utils/trace.c \
 +      src/utils/uuid.c \
 +      src/utils/wpa_debug.c \
 +      src/utils/wpabuf.c \
 +      src/utils/os_unix.c
 +
 +CRYPTO_SRCS = \
 +    src/crypto/aes-cbc.c \
 +    src/crypto/aes-ctr.c \
 +    src/crypto/aes-eax.c \
 +    src/crypto/aes-encblock.c \
 +    src/crypto/aes-internal.c \
 +    src/crypto/aes-internal-dec.c \
 +    src/crypto/aes-internal-enc.c \
 +    src/crypto/aes-omac1.c \
 +    src/crypto/aes-unwrap.c \
 +    src/crypto/aes-wrap.c \
 +    src/crypto/des-internal.c \
 +    src/crypto/dh_group5.c \
 +    src/crypto/dh_groups.c \
 +    src/crypto/md4-internal.c \
 +    src/crypto/md5.c \
 +    src/crypto/md5-internal.c \
 +    src/crypto/md5-non-fips.c \
 +    src/crypto/milenage.c \
 +    src/crypto/ms_funcs.c \
 +    src/crypto/rc4.c \
 +    src/crypto/sha1.c \
 +    src/crypto/sha1-internal.c \
 +    src/crypto/sha1-pbkdf2.c \
 +    src/crypto/sha1-tlsprf.c \
 +    src/crypto/sha1-tprf.c \
 +    src/crypto/sha256.c \
 +    src/crypto/sha256-internal.c \
 +    src/crypto/crypto_internal.c \
 +    src/crypto/crypto_internal-cipher.c \
 +    src/crypto/crypto_internal-modexp.c \
 +    src/crypto/crypto_internal-rsa.c \
 +    src/crypto/tls_internal.c \
 +    src/crypto/fips_prf_internal.c
 +
 +TLS_SRCS = \
 +    src/tls/asn1.c \
 +    src/tls/bignum.c \
 +    src/tls/pkcs1.c \
 +    src/tls/pkcs5.c \
 +    src/tls/pkcs8.c \
 +    src/tls/rsa.c \
 +    src/tls/tlsv1_client.c \
 +    src/tls/tlsv1_client_read.c \
 +    src/tls/tlsv1_client_write.c \
 +    src/tls/tlsv1_common.c \
 +    src/tls/tlsv1_cred.c \
 +    src/tls/tlsv1_record.c \
 +    src/tls/tlsv1_server.c \
 +    src/tls/tlsv1_server_read.c \
 +    src/tls/tlsv1_server_write.c \
 +    src/tls/x509v3.c
 +
 +libeap_la_SOURCES = $(SOURCES_BOTH) $(SOURCES_peer) $(UTILS_SRCS) $(CRYPTO_SRCS) $(TLS_SRCS)
 +noinst_LTLIBRARIES = libeap.la
 +all: all-am
 +
 +.SUFFIXES:
 +.SUFFIXES: .c .lo .o .obj
 +$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 +      @for dep in $?; do \
 +        case '$(am__configure_deps)' in \
 +          *$$dep*) \
 +            ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 +              && { if test -f $@; then exit 0; else break; fi; }; \
 +            exit 1;; \
 +        esac; \
 +      done; \
 +      echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libeap/Makefile'; \
 +      $(am__cd) $(top_srcdir) && \
 +        $(AUTOMAKE) --foreign libeap/Makefile
 +.PRECIOUS: Makefile
 +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 +      @case '$?' in \
 +        *config.status*) \
 +          cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 +        *) \
 +          echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 +          cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 +      esac;
 +
 +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 +      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 +
 +$(top_srcdir)/configure:  $(am__configure_deps)
 +      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 +$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 +      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 +$(am__aclocal_m4_deps):
 +
 +clean-noinstLTLIBRARIES:
 +      -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
 +      @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
 +        dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 +        test "$$dir" != "$$p" || dir=.; \
 +        echo "rm -f \"$${dir}/so_locations\""; \
 +        rm -f "$${dir}/so_locations"; \
 +      done
 +libeap.la: $(libeap_la_OBJECTS) $(libeap_la_DEPENDENCIES) 
 +      $(LINK)  $(libeap_la_OBJECTS) $(libeap_la_LIBADD) $(LIBS)
 +
 +mostlyclean-compile:
 +      -rm -f *.$(OBJEXT)
 +
 +distclean-compile:
 +      -rm -f *.tab.c
 +
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-cbc.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-ctr.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-eax.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-encblock.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-internal-dec.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-internal-enc.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-omac1.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-unwrap.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aes-wrap.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asn1.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base64.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bignum.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chap.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crypto_internal-cipher.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crypto_internal-modexp.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crypto_internal-rsa.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crypto_internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/des-internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dh_group5.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dh_groups.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_gpsk.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_gpsk_common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_gtc.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_leap.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_md5.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_methods.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_mschapv2.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_otp.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_pax.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_pax_common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_peap.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_peap_common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_psk.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_psk_common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_sake.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_sake_common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_tls.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_tls_common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eap_ttls.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fips_prf_internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ip_addr.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/md4-internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/md5-internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/md5-non-fips.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/md5.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/milenage.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ms_funcs.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mschapv2.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/os_unix.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkcs1.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkcs5.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pkcs8.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/radiotap.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rc4.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsa.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha1-internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha1-pbkdf2.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha1-tlsprf.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha1-tprf.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha1.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha256-internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sha256.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tls_internal.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_client.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_client_read.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_client_write.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_common.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_cred.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_record.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_server.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_server_read.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlsv1_server_write.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trace.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uuid.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wpa_debug.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wpabuf.Plo@am__quote@
 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x509v3.Plo@am__quote@
 +
 +.c.o:
 +@am__fastdepCC_TRUE@  $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(COMPILE) -c $<
 +
 +.c.obj:
 +@am__fastdepCC_TRUE@  $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
 +
 +.c.lo:
 +@am__fastdepCC_TRUE@  $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
 +
 +eap_peap_common.lo: src/eap_common/eap_peap_common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_peap_common.lo -MD -MP -MF $(DEPDIR)/eap_peap_common.Tpo -c -o eap_peap_common.lo `test -f 'src/eap_common/eap_peap_common.c' || echo '$(srcdir)/'`src/eap_common/eap_peap_common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_peap_common.Tpo $(DEPDIR)/eap_peap_common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_common/eap_peap_common.c' object='eap_peap_common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_peap_common.lo `test -f 'src/eap_common/eap_peap_common.c' || echo '$(srcdir)/'`src/eap_common/eap_peap_common.c
 +
 +eap_psk_common.lo: src/eap_common/eap_psk_common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_psk_common.lo -MD -MP -MF $(DEPDIR)/eap_psk_common.Tpo -c -o eap_psk_common.lo `test -f 'src/eap_common/eap_psk_common.c' || echo '$(srcdir)/'`src/eap_common/eap_psk_common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_psk_common.Tpo $(DEPDIR)/eap_psk_common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_common/eap_psk_common.c' object='eap_psk_common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_psk_common.lo `test -f 'src/eap_common/eap_psk_common.c' || echo '$(srcdir)/'`src/eap_common/eap_psk_common.c
 +
 +eap_pax_common.lo: src/eap_common/eap_pax_common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_pax_common.lo -MD -MP -MF $(DEPDIR)/eap_pax_common.Tpo -c -o eap_pax_common.lo `test -f 'src/eap_common/eap_pax_common.c' || echo '$(srcdir)/'`src/eap_common/eap_pax_common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_pax_common.Tpo $(DEPDIR)/eap_pax_common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_common/eap_pax_common.c' object='eap_pax_common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_pax_common.lo `test -f 'src/eap_common/eap_pax_common.c' || echo '$(srcdir)/'`src/eap_common/eap_pax_common.c
 +
 +eap_sake_common.lo: src/eap_common/eap_sake_common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_sake_common.lo -MD -MP -MF $(DEPDIR)/eap_sake_common.Tpo -c -o eap_sake_common.lo `test -f 'src/eap_common/eap_sake_common.c' || echo '$(srcdir)/'`src/eap_common/eap_sake_common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_sake_common.Tpo $(DEPDIR)/eap_sake_common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_common/eap_sake_common.c' object='eap_sake_common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_sake_common.lo `test -f 'src/eap_common/eap_sake_common.c' || echo '$(srcdir)/'`src/eap_common/eap_sake_common.c
 +
 +eap_gpsk_common.lo: src/eap_common/eap_gpsk_common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_gpsk_common.lo -MD -MP -MF $(DEPDIR)/eap_gpsk_common.Tpo -c -o eap_gpsk_common.lo `test -f 'src/eap_common/eap_gpsk_common.c' || echo '$(srcdir)/'`src/eap_common/eap_gpsk_common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_gpsk_common.Tpo $(DEPDIR)/eap_gpsk_common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_common/eap_gpsk_common.c' object='eap_gpsk_common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_gpsk_common.lo `test -f 'src/eap_common/eap_gpsk_common.c' || echo '$(srcdir)/'`src/eap_common/eap_gpsk_common.c
 +
 +chap.lo: src/eap_common/chap.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT chap.lo -MD -MP -MF $(DEPDIR)/chap.Tpo -c -o chap.lo `test -f 'src/eap_common/chap.c' || echo '$(srcdir)/'`src/eap_common/chap.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/chap.Tpo $(DEPDIR)/chap.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_common/chap.c' object='chap.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o chap.lo `test -f 'src/eap_common/chap.c' || echo '$(srcdir)/'`src/eap_common/chap.c
 +
 +eap_tls.lo: src/eap_peer/eap_tls.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_tls.lo -MD -MP -MF $(DEPDIR)/eap_tls.Tpo -c -o eap_tls.lo `test -f 'src/eap_peer/eap_tls.c' || echo '$(srcdir)/'`src/eap_peer/eap_tls.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_tls.Tpo $(DEPDIR)/eap_tls.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_tls.c' object='eap_tls.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_tls.lo `test -f 'src/eap_peer/eap_tls.c' || echo '$(srcdir)/'`src/eap_peer/eap_tls.c
 +
 +eap_peap.lo: src/eap_peer/eap_peap.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_peap.lo -MD -MP -MF $(DEPDIR)/eap_peap.Tpo -c -o eap_peap.lo `test -f 'src/eap_peer/eap_peap.c' || echo '$(srcdir)/'`src/eap_peer/eap_peap.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_peap.Tpo $(DEPDIR)/eap_peap.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_peap.c' object='eap_peap.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_peap.lo `test -f 'src/eap_peer/eap_peap.c' || echo '$(srcdir)/'`src/eap_peer/eap_peap.c
 +
 +eap_ttls.lo: src/eap_peer/eap_ttls.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_ttls.lo -MD -MP -MF $(DEPDIR)/eap_ttls.Tpo -c -o eap_ttls.lo `test -f 'src/eap_peer/eap_ttls.c' || echo '$(srcdir)/'`src/eap_peer/eap_ttls.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_ttls.Tpo $(DEPDIR)/eap_ttls.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_ttls.c' object='eap_ttls.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_ttls.lo `test -f 'src/eap_peer/eap_ttls.c' || echo '$(srcdir)/'`src/eap_peer/eap_ttls.c
 +
 +eap_md5.lo: src/eap_peer/eap_md5.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_md5.lo -MD -MP -MF $(DEPDIR)/eap_md5.Tpo -c -o eap_md5.lo `test -f 'src/eap_peer/eap_md5.c' || echo '$(srcdir)/'`src/eap_peer/eap_md5.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_md5.Tpo $(DEPDIR)/eap_md5.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_md5.c' object='eap_md5.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_md5.lo `test -f 'src/eap_peer/eap_md5.c' || echo '$(srcdir)/'`src/eap_peer/eap_md5.c
 +
 +eap_mschapv2.lo: src/eap_peer/eap_mschapv2.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_mschapv2.lo -MD -MP -MF $(DEPDIR)/eap_mschapv2.Tpo -c -o eap_mschapv2.lo `test -f 'src/eap_peer/eap_mschapv2.c' || echo '$(srcdir)/'`src/eap_peer/eap_mschapv2.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_mschapv2.Tpo $(DEPDIR)/eap_mschapv2.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_mschapv2.c' object='eap_mschapv2.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_mschapv2.lo `test -f 'src/eap_peer/eap_mschapv2.c' || echo '$(srcdir)/'`src/eap_peer/eap_mschapv2.c
 +
 +mschapv2.lo: src/eap_peer/mschapv2.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mschapv2.lo -MD -MP -MF $(DEPDIR)/mschapv2.Tpo -c -o mschapv2.lo `test -f 'src/eap_peer/mschapv2.c' || echo '$(srcdir)/'`src/eap_peer/mschapv2.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/mschapv2.Tpo $(DEPDIR)/mschapv2.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/mschapv2.c' object='mschapv2.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mschapv2.lo `test -f 'src/eap_peer/mschapv2.c' || echo '$(srcdir)/'`src/eap_peer/mschapv2.c
 +
 +eap_otp.lo: src/eap_peer/eap_otp.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_otp.lo -MD -MP -MF $(DEPDIR)/eap_otp.Tpo -c -o eap_otp.lo `test -f 'src/eap_peer/eap_otp.c' || echo '$(srcdir)/'`src/eap_peer/eap_otp.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_otp.Tpo $(DEPDIR)/eap_otp.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_otp.c' object='eap_otp.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_otp.lo `test -f 'src/eap_peer/eap_otp.c' || echo '$(srcdir)/'`src/eap_peer/eap_otp.c
 +
 +eap_gtc.lo: src/eap_peer/eap_gtc.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_gtc.lo -MD -MP -MF $(DEPDIR)/eap_gtc.Tpo -c -o eap_gtc.lo `test -f 'src/eap_peer/eap_gtc.c' || echo '$(srcdir)/'`src/eap_peer/eap_gtc.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_gtc.Tpo $(DEPDIR)/eap_gtc.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_gtc.c' object='eap_gtc.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_gtc.lo `test -f 'src/eap_peer/eap_gtc.c' || echo '$(srcdir)/'`src/eap_peer/eap_gtc.c
 +
 +eap_leap.lo: src/eap_peer/eap_leap.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_leap.lo -MD -MP -MF $(DEPDIR)/eap_leap.Tpo -c -o eap_leap.lo `test -f 'src/eap_peer/eap_leap.c' || echo '$(srcdir)/'`src/eap_peer/eap_leap.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_leap.Tpo $(DEPDIR)/eap_leap.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_leap.c' object='eap_leap.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_leap.lo `test -f 'src/eap_peer/eap_leap.c' || echo '$(srcdir)/'`src/eap_peer/eap_leap.c
 +
 +eap_psk.lo: src/eap_peer/eap_psk.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_psk.lo -MD -MP -MF $(DEPDIR)/eap_psk.Tpo -c -o eap_psk.lo `test -f 'src/eap_peer/eap_psk.c' || echo '$(srcdir)/'`src/eap_peer/eap_psk.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_psk.Tpo $(DEPDIR)/eap_psk.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_psk.c' object='eap_psk.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_psk.lo `test -f 'src/eap_peer/eap_psk.c' || echo '$(srcdir)/'`src/eap_peer/eap_psk.c
 +
 +eap_pax.lo: src/eap_peer/eap_pax.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_pax.lo -MD -MP -MF $(DEPDIR)/eap_pax.Tpo -c -o eap_pax.lo `test -f 'src/eap_peer/eap_pax.c' || echo '$(srcdir)/'`src/eap_peer/eap_pax.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_pax.Tpo $(DEPDIR)/eap_pax.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_pax.c' object='eap_pax.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_pax.lo `test -f 'src/eap_peer/eap_pax.c' || echo '$(srcdir)/'`src/eap_peer/eap_pax.c
 +
 +eap_sake.lo: src/eap_peer/eap_sake.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_sake.lo -MD -MP -MF $(DEPDIR)/eap_sake.Tpo -c -o eap_sake.lo `test -f 'src/eap_peer/eap_sake.c' || echo '$(srcdir)/'`src/eap_peer/eap_sake.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_sake.Tpo $(DEPDIR)/eap_sake.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_sake.c' object='eap_sake.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_sake.lo `test -f 'src/eap_peer/eap_sake.c' || echo '$(srcdir)/'`src/eap_peer/eap_sake.c
 +
 +eap_gpsk.lo: src/eap_peer/eap_gpsk.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_gpsk.lo -MD -MP -MF $(DEPDIR)/eap_gpsk.Tpo -c -o eap_gpsk.lo `test -f 'src/eap_peer/eap_gpsk.c' || echo '$(srcdir)/'`src/eap_peer/eap_gpsk.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_gpsk.Tpo $(DEPDIR)/eap_gpsk.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_gpsk.c' object='eap_gpsk.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_gpsk.lo `test -f 'src/eap_peer/eap_gpsk.c' || echo '$(srcdir)/'`src/eap_peer/eap_gpsk.c
 +
 +eap.lo: src/eap_peer/eap.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap.lo -MD -MP -MF $(DEPDIR)/eap.Tpo -c -o eap.lo `test -f 'src/eap_peer/eap.c' || echo '$(srcdir)/'`src/eap_peer/eap.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap.Tpo $(DEPDIR)/eap.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap.c' object='eap.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap.lo `test -f 'src/eap_peer/eap.c' || echo '$(srcdir)/'`src/eap_peer/eap.c
 +
 +eap_common.lo: src/eap_common/eap_common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_common.lo -MD -MP -MF $(DEPDIR)/eap_common.Tpo -c -o eap_common.lo `test -f 'src/eap_common/eap_common.c' || echo '$(srcdir)/'`src/eap_common/eap_common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_common.Tpo $(DEPDIR)/eap_common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_common/eap_common.c' object='eap_common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_common.lo `test -f 'src/eap_common/eap_common.c' || echo '$(srcdir)/'`src/eap_common/eap_common.c
 +
 +eap_methods.lo: src/eap_peer/eap_methods.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_methods.lo -MD -MP -MF $(DEPDIR)/eap_methods.Tpo -c -o eap_methods.lo `test -f 'src/eap_peer/eap_methods.c' || echo '$(srcdir)/'`src/eap_peer/eap_methods.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_methods.Tpo $(DEPDIR)/eap_methods.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_methods.c' object='eap_methods.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_methods.lo `test -f 'src/eap_peer/eap_methods.c' || echo '$(srcdir)/'`src/eap_peer/eap_methods.c
 +
 +eap_tls_common.lo: src/eap_peer/eap_tls_common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eap_tls_common.lo -MD -MP -MF $(DEPDIR)/eap_tls_common.Tpo -c -o eap_tls_common.lo `test -f 'src/eap_peer/eap_tls_common.c' || echo '$(srcdir)/'`src/eap_peer/eap_tls_common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/eap_tls_common.Tpo $(DEPDIR)/eap_tls_common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/eap_peer/eap_tls_common.c' object='eap_tls_common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eap_tls_common.lo `test -f 'src/eap_peer/eap_tls_common.c' || echo '$(srcdir)/'`src/eap_peer/eap_tls_common.c
 +
 +base64.lo: src/utils/base64.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT base64.lo -MD -MP -MF $(DEPDIR)/base64.Tpo -c -o base64.lo `test -f 'src/utils/base64.c' || echo '$(srcdir)/'`src/utils/base64.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/base64.Tpo $(DEPDIR)/base64.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/base64.c' object='base64.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o base64.lo `test -f 'src/utils/base64.c' || echo '$(srcdir)/'`src/utils/base64.c
 +
 +common.lo: src/utils/common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT common.lo -MD -MP -MF $(DEPDIR)/common.Tpo -c -o common.lo `test -f 'src/utils/common.c' || echo '$(srcdir)/'`src/utils/common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/common.Tpo $(DEPDIR)/common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/common.c' object='common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o common.lo `test -f 'src/utils/common.c' || echo '$(srcdir)/'`src/utils/common.c
 +
 +ip_addr.lo: src/utils/ip_addr.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ip_addr.lo -MD -MP -MF $(DEPDIR)/ip_addr.Tpo -c -o ip_addr.lo `test -f 'src/utils/ip_addr.c' || echo '$(srcdir)/'`src/utils/ip_addr.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/ip_addr.Tpo $(DEPDIR)/ip_addr.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/ip_addr.c' object='ip_addr.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ip_addr.lo `test -f 'src/utils/ip_addr.c' || echo '$(srcdir)/'`src/utils/ip_addr.c
 +
 +radiotap.lo: src/utils/radiotap.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT radiotap.lo -MD -MP -MF $(DEPDIR)/radiotap.Tpo -c -o radiotap.lo `test -f 'src/utils/radiotap.c' || echo '$(srcdir)/'`src/utils/radiotap.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/radiotap.Tpo $(DEPDIR)/radiotap.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/radiotap.c' object='radiotap.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o radiotap.lo `test -f 'src/utils/radiotap.c' || echo '$(srcdir)/'`src/utils/radiotap.c
 +
 +trace.lo: src/utils/trace.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT trace.lo -MD -MP -MF $(DEPDIR)/trace.Tpo -c -o trace.lo `test -f 'src/utils/trace.c' || echo '$(srcdir)/'`src/utils/trace.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/trace.Tpo $(DEPDIR)/trace.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/trace.c' object='trace.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o trace.lo `test -f 'src/utils/trace.c' || echo '$(srcdir)/'`src/utils/trace.c
 +
 +uuid.lo: src/utils/uuid.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT uuid.lo -MD -MP -MF $(DEPDIR)/uuid.Tpo -c -o uuid.lo `test -f 'src/utils/uuid.c' || echo '$(srcdir)/'`src/utils/uuid.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/uuid.Tpo $(DEPDIR)/uuid.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/uuid.c' object='uuid.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o uuid.lo `test -f 'src/utils/uuid.c' || echo '$(srcdir)/'`src/utils/uuid.c
 +
 +wpa_debug.lo: src/utils/wpa_debug.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT wpa_debug.lo -MD -MP -MF $(DEPDIR)/wpa_debug.Tpo -c -o wpa_debug.lo `test -f 'src/utils/wpa_debug.c' || echo '$(srcdir)/'`src/utils/wpa_debug.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/wpa_debug.Tpo $(DEPDIR)/wpa_debug.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/wpa_debug.c' object='wpa_debug.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o wpa_debug.lo `test -f 'src/utils/wpa_debug.c' || echo '$(srcdir)/'`src/utils/wpa_debug.c
 +
 +wpabuf.lo: src/utils/wpabuf.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT wpabuf.lo -MD -MP -MF $(DEPDIR)/wpabuf.Tpo -c -o wpabuf.lo `test -f 'src/utils/wpabuf.c' || echo '$(srcdir)/'`src/utils/wpabuf.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/wpabuf.Tpo $(DEPDIR)/wpabuf.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/wpabuf.c' object='wpabuf.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o wpabuf.lo `test -f 'src/utils/wpabuf.c' || echo '$(srcdir)/'`src/utils/wpabuf.c
 +
 +os_unix.lo: src/utils/os_unix.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT os_unix.lo -MD -MP -MF $(DEPDIR)/os_unix.Tpo -c -o os_unix.lo `test -f 'src/utils/os_unix.c' || echo '$(srcdir)/'`src/utils/os_unix.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/os_unix.Tpo $(DEPDIR)/os_unix.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/utils/os_unix.c' object='os_unix.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o os_unix.lo `test -f 'src/utils/os_unix.c' || echo '$(srcdir)/'`src/utils/os_unix.c
 +
 +aes-cbc.lo: src/crypto/aes-cbc.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-cbc.lo -MD -MP -MF $(DEPDIR)/aes-cbc.Tpo -c -o aes-cbc.lo `test -f 'src/crypto/aes-cbc.c' || echo '$(srcdir)/'`src/crypto/aes-cbc.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-cbc.Tpo $(DEPDIR)/aes-cbc.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-cbc.c' object='aes-cbc.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-cbc.lo `test -f 'src/crypto/aes-cbc.c' || echo '$(srcdir)/'`src/crypto/aes-cbc.c
 +
 +aes-ctr.lo: src/crypto/aes-ctr.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-ctr.lo -MD -MP -MF $(DEPDIR)/aes-ctr.Tpo -c -o aes-ctr.lo `test -f 'src/crypto/aes-ctr.c' || echo '$(srcdir)/'`src/crypto/aes-ctr.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-ctr.Tpo $(DEPDIR)/aes-ctr.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-ctr.c' object='aes-ctr.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-ctr.lo `test -f 'src/crypto/aes-ctr.c' || echo '$(srcdir)/'`src/crypto/aes-ctr.c
 +
 +aes-eax.lo: src/crypto/aes-eax.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-eax.lo -MD -MP -MF $(DEPDIR)/aes-eax.Tpo -c -o aes-eax.lo `test -f 'src/crypto/aes-eax.c' || echo '$(srcdir)/'`src/crypto/aes-eax.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-eax.Tpo $(DEPDIR)/aes-eax.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-eax.c' object='aes-eax.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-eax.lo `test -f 'src/crypto/aes-eax.c' || echo '$(srcdir)/'`src/crypto/aes-eax.c
 +
 +aes-encblock.lo: src/crypto/aes-encblock.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-encblock.lo -MD -MP -MF $(DEPDIR)/aes-encblock.Tpo -c -o aes-encblock.lo `test -f 'src/crypto/aes-encblock.c' || echo '$(srcdir)/'`src/crypto/aes-encblock.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-encblock.Tpo $(DEPDIR)/aes-encblock.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-encblock.c' object='aes-encblock.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-encblock.lo `test -f 'src/crypto/aes-encblock.c' || echo '$(srcdir)/'`src/crypto/aes-encblock.c
 +
 +aes-internal.lo: src/crypto/aes-internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-internal.lo -MD -MP -MF $(DEPDIR)/aes-internal.Tpo -c -o aes-internal.lo `test -f 'src/crypto/aes-internal.c' || echo '$(srcdir)/'`src/crypto/aes-internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-internal.Tpo $(DEPDIR)/aes-internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-internal.c' object='aes-internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-internal.lo `test -f 'src/crypto/aes-internal.c' || echo '$(srcdir)/'`src/crypto/aes-internal.c
 +
 +aes-internal-dec.lo: src/crypto/aes-internal-dec.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-internal-dec.lo -MD -MP -MF $(DEPDIR)/aes-internal-dec.Tpo -c -o aes-internal-dec.lo `test -f 'src/crypto/aes-internal-dec.c' || echo '$(srcdir)/'`src/crypto/aes-internal-dec.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-internal-dec.Tpo $(DEPDIR)/aes-internal-dec.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-internal-dec.c' object='aes-internal-dec.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-internal-dec.lo `test -f 'src/crypto/aes-internal-dec.c' || echo '$(srcdir)/'`src/crypto/aes-internal-dec.c
 +
 +aes-internal-enc.lo: src/crypto/aes-internal-enc.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-internal-enc.lo -MD -MP -MF $(DEPDIR)/aes-internal-enc.Tpo -c -o aes-internal-enc.lo `test -f 'src/crypto/aes-internal-enc.c' || echo '$(srcdir)/'`src/crypto/aes-internal-enc.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-internal-enc.Tpo $(DEPDIR)/aes-internal-enc.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-internal-enc.c' object='aes-internal-enc.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-internal-enc.lo `test -f 'src/crypto/aes-internal-enc.c' || echo '$(srcdir)/'`src/crypto/aes-internal-enc.c
 +
 +aes-omac1.lo: src/crypto/aes-omac1.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-omac1.lo -MD -MP -MF $(DEPDIR)/aes-omac1.Tpo -c -o aes-omac1.lo `test -f 'src/crypto/aes-omac1.c' || echo '$(srcdir)/'`src/crypto/aes-omac1.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-omac1.Tpo $(DEPDIR)/aes-omac1.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-omac1.c' object='aes-omac1.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-omac1.lo `test -f 'src/crypto/aes-omac1.c' || echo '$(srcdir)/'`src/crypto/aes-omac1.c
 +
 +aes-unwrap.lo: src/crypto/aes-unwrap.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-unwrap.lo -MD -MP -MF $(DEPDIR)/aes-unwrap.Tpo -c -o aes-unwrap.lo `test -f 'src/crypto/aes-unwrap.c' || echo '$(srcdir)/'`src/crypto/aes-unwrap.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-unwrap.Tpo $(DEPDIR)/aes-unwrap.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-unwrap.c' object='aes-unwrap.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-unwrap.lo `test -f 'src/crypto/aes-unwrap.c' || echo '$(srcdir)/'`src/crypto/aes-unwrap.c
 +
 +aes-wrap.lo: src/crypto/aes-wrap.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aes-wrap.lo -MD -MP -MF $(DEPDIR)/aes-wrap.Tpo -c -o aes-wrap.lo `test -f 'src/crypto/aes-wrap.c' || echo '$(srcdir)/'`src/crypto/aes-wrap.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/aes-wrap.Tpo $(DEPDIR)/aes-wrap.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/aes-wrap.c' object='aes-wrap.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aes-wrap.lo `test -f 'src/crypto/aes-wrap.c' || echo '$(srcdir)/'`src/crypto/aes-wrap.c
 +
 +des-internal.lo: src/crypto/des-internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT des-internal.lo -MD -MP -MF $(DEPDIR)/des-internal.Tpo -c -o des-internal.lo `test -f 'src/crypto/des-internal.c' || echo '$(srcdir)/'`src/crypto/des-internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/des-internal.Tpo $(DEPDIR)/des-internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/des-internal.c' object='des-internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o des-internal.lo `test -f 'src/crypto/des-internal.c' || echo '$(srcdir)/'`src/crypto/des-internal.c
 +
 +dh_group5.lo: src/crypto/dh_group5.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dh_group5.lo -MD -MP -MF $(DEPDIR)/dh_group5.Tpo -c -o dh_group5.lo `test -f 'src/crypto/dh_group5.c' || echo '$(srcdir)/'`src/crypto/dh_group5.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/dh_group5.Tpo $(DEPDIR)/dh_group5.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/dh_group5.c' object='dh_group5.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dh_group5.lo `test -f 'src/crypto/dh_group5.c' || echo '$(srcdir)/'`src/crypto/dh_group5.c
 +
 +dh_groups.lo: src/crypto/dh_groups.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dh_groups.lo -MD -MP -MF $(DEPDIR)/dh_groups.Tpo -c -o dh_groups.lo `test -f 'src/crypto/dh_groups.c' || echo '$(srcdir)/'`src/crypto/dh_groups.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/dh_groups.Tpo $(DEPDIR)/dh_groups.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/dh_groups.c' object='dh_groups.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dh_groups.lo `test -f 'src/crypto/dh_groups.c' || echo '$(srcdir)/'`src/crypto/dh_groups.c
 +
 +md4-internal.lo: src/crypto/md4-internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT md4-internal.lo -MD -MP -MF $(DEPDIR)/md4-internal.Tpo -c -o md4-internal.lo `test -f 'src/crypto/md4-internal.c' || echo '$(srcdir)/'`src/crypto/md4-internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/md4-internal.Tpo $(DEPDIR)/md4-internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/md4-internal.c' object='md4-internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o md4-internal.lo `test -f 'src/crypto/md4-internal.c' || echo '$(srcdir)/'`src/crypto/md4-internal.c
 +
 +md5.lo: src/crypto/md5.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT md5.lo -MD -MP -MF $(DEPDIR)/md5.Tpo -c -o md5.lo `test -f 'src/crypto/md5.c' || echo '$(srcdir)/'`src/crypto/md5.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/md5.Tpo $(DEPDIR)/md5.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/md5.c' object='md5.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o md5.lo `test -f 'src/crypto/md5.c' || echo '$(srcdir)/'`src/crypto/md5.c
 +
 +md5-internal.lo: src/crypto/md5-internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT md5-internal.lo -MD -MP -MF $(DEPDIR)/md5-internal.Tpo -c -o md5-internal.lo `test -f 'src/crypto/md5-internal.c' || echo '$(srcdir)/'`src/crypto/md5-internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/md5-internal.Tpo $(DEPDIR)/md5-internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/md5-internal.c' object='md5-internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o md5-internal.lo `test -f 'src/crypto/md5-internal.c' || echo '$(srcdir)/'`src/crypto/md5-internal.c
 +
 +md5-non-fips.lo: src/crypto/md5-non-fips.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT md5-non-fips.lo -MD -MP -MF $(DEPDIR)/md5-non-fips.Tpo -c -o md5-non-fips.lo `test -f 'src/crypto/md5-non-fips.c' || echo '$(srcdir)/'`src/crypto/md5-non-fips.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/md5-non-fips.Tpo $(DEPDIR)/md5-non-fips.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/md5-non-fips.c' object='md5-non-fips.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o md5-non-fips.lo `test -f 'src/crypto/md5-non-fips.c' || echo '$(srcdir)/'`src/crypto/md5-non-fips.c
 +
 +milenage.lo: src/crypto/milenage.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT milenage.lo -MD -MP -MF $(DEPDIR)/milenage.Tpo -c -o milenage.lo `test -f 'src/crypto/milenage.c' || echo '$(srcdir)/'`src/crypto/milenage.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/milenage.Tpo $(DEPDIR)/milenage.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/milenage.c' object='milenage.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o milenage.lo `test -f 'src/crypto/milenage.c' || echo '$(srcdir)/'`src/crypto/milenage.c
 +
 +ms_funcs.lo: src/crypto/ms_funcs.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ms_funcs.lo -MD -MP -MF $(DEPDIR)/ms_funcs.Tpo -c -o ms_funcs.lo `test -f 'src/crypto/ms_funcs.c' || echo '$(srcdir)/'`src/crypto/ms_funcs.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/ms_funcs.Tpo $(DEPDIR)/ms_funcs.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/ms_funcs.c' object='ms_funcs.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ms_funcs.lo `test -f 'src/crypto/ms_funcs.c' || echo '$(srcdir)/'`src/crypto/ms_funcs.c
 +
 +rc4.lo: src/crypto/rc4.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rc4.lo -MD -MP -MF $(DEPDIR)/rc4.Tpo -c -o rc4.lo `test -f 'src/crypto/rc4.c' || echo '$(srcdir)/'`src/crypto/rc4.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/rc4.Tpo $(DEPDIR)/rc4.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/rc4.c' object='rc4.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rc4.lo `test -f 'src/crypto/rc4.c' || echo '$(srcdir)/'`src/crypto/rc4.c
 +
 +sha1.lo: src/crypto/sha1.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha1.lo -MD -MP -MF $(DEPDIR)/sha1.Tpo -c -o sha1.lo `test -f 'src/crypto/sha1.c' || echo '$(srcdir)/'`src/crypto/sha1.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/sha1.Tpo $(DEPDIR)/sha1.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/sha1.c' object='sha1.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha1.lo `test -f 'src/crypto/sha1.c' || echo '$(srcdir)/'`src/crypto/sha1.c
 +
 +sha1-internal.lo: src/crypto/sha1-internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha1-internal.lo -MD -MP -MF $(DEPDIR)/sha1-internal.Tpo -c -o sha1-internal.lo `test -f 'src/crypto/sha1-internal.c' || echo '$(srcdir)/'`src/crypto/sha1-internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/sha1-internal.Tpo $(DEPDIR)/sha1-internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/sha1-internal.c' object='sha1-internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha1-internal.lo `test -f 'src/crypto/sha1-internal.c' || echo '$(srcdir)/'`src/crypto/sha1-internal.c
 +
 +sha1-pbkdf2.lo: src/crypto/sha1-pbkdf2.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha1-pbkdf2.lo -MD -MP -MF $(DEPDIR)/sha1-pbkdf2.Tpo -c -o sha1-pbkdf2.lo `test -f 'src/crypto/sha1-pbkdf2.c' || echo '$(srcdir)/'`src/crypto/sha1-pbkdf2.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/sha1-pbkdf2.Tpo $(DEPDIR)/sha1-pbkdf2.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/sha1-pbkdf2.c' object='sha1-pbkdf2.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha1-pbkdf2.lo `test -f 'src/crypto/sha1-pbkdf2.c' || echo '$(srcdir)/'`src/crypto/sha1-pbkdf2.c
 +
 +sha1-tlsprf.lo: src/crypto/sha1-tlsprf.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha1-tlsprf.lo -MD -MP -MF $(DEPDIR)/sha1-tlsprf.Tpo -c -o sha1-tlsprf.lo `test -f 'src/crypto/sha1-tlsprf.c' || echo '$(srcdir)/'`src/crypto/sha1-tlsprf.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/sha1-tlsprf.Tpo $(DEPDIR)/sha1-tlsprf.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/sha1-tlsprf.c' object='sha1-tlsprf.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha1-tlsprf.lo `test -f 'src/crypto/sha1-tlsprf.c' || echo '$(srcdir)/'`src/crypto/sha1-tlsprf.c
 +
 +sha1-tprf.lo: src/crypto/sha1-tprf.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha1-tprf.lo -MD -MP -MF $(DEPDIR)/sha1-tprf.Tpo -c -o sha1-tprf.lo `test -f 'src/crypto/sha1-tprf.c' || echo '$(srcdir)/'`src/crypto/sha1-tprf.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/sha1-tprf.Tpo $(DEPDIR)/sha1-tprf.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/sha1-tprf.c' object='sha1-tprf.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha1-tprf.lo `test -f 'src/crypto/sha1-tprf.c' || echo '$(srcdir)/'`src/crypto/sha1-tprf.c
 +
 +sha256.lo: src/crypto/sha256.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256.lo -MD -MP -MF $(DEPDIR)/sha256.Tpo -c -o sha256.lo `test -f 'src/crypto/sha256.c' || echo '$(srcdir)/'`src/crypto/sha256.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/sha256.Tpo $(DEPDIR)/sha256.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/sha256.c' object='sha256.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha256.lo `test -f 'src/crypto/sha256.c' || echo '$(srcdir)/'`src/crypto/sha256.c
 +
 +sha256-internal.lo: src/crypto/sha256-internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sha256-internal.lo -MD -MP -MF $(DEPDIR)/sha256-internal.Tpo -c -o sha256-internal.lo `test -f 'src/crypto/sha256-internal.c' || echo '$(srcdir)/'`src/crypto/sha256-internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/sha256-internal.Tpo $(DEPDIR)/sha256-internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/sha256-internal.c' object='sha256-internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sha256-internal.lo `test -f 'src/crypto/sha256-internal.c' || echo '$(srcdir)/'`src/crypto/sha256-internal.c
 +
 +crypto_internal.lo: src/crypto/crypto_internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_internal.lo -MD -MP -MF $(DEPDIR)/crypto_internal.Tpo -c -o crypto_internal.lo `test -f 'src/crypto/crypto_internal.c' || echo '$(srcdir)/'`src/crypto/crypto_internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/crypto_internal.Tpo $(DEPDIR)/crypto_internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/crypto_internal.c' object='crypto_internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_internal.lo `test -f 'src/crypto/crypto_internal.c' || echo '$(srcdir)/'`src/crypto/crypto_internal.c
 +
 +crypto_internal-cipher.lo: src/crypto/crypto_internal-cipher.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_internal-cipher.lo -MD -MP -MF $(DEPDIR)/crypto_internal-cipher.Tpo -c -o crypto_internal-cipher.lo `test -f 'src/crypto/crypto_internal-cipher.c' || echo '$(srcdir)/'`src/crypto/crypto_internal-cipher.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/crypto_internal-cipher.Tpo $(DEPDIR)/crypto_internal-cipher.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/crypto_internal-cipher.c' object='crypto_internal-cipher.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_internal-cipher.lo `test -f 'src/crypto/crypto_internal-cipher.c' || echo '$(srcdir)/'`src/crypto/crypto_internal-cipher.c
 +
 +crypto_internal-modexp.lo: src/crypto/crypto_internal-modexp.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_internal-modexp.lo -MD -MP -MF $(DEPDIR)/crypto_internal-modexp.Tpo -c -o crypto_internal-modexp.lo `test -f 'src/crypto/crypto_internal-modexp.c' || echo '$(srcdir)/'`src/crypto/crypto_internal-modexp.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/crypto_internal-modexp.Tpo $(DEPDIR)/crypto_internal-modexp.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/crypto_internal-modexp.c' object='crypto_internal-modexp.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_internal-modexp.lo `test -f 'src/crypto/crypto_internal-modexp.c' || echo '$(srcdir)/'`src/crypto/crypto_internal-modexp.c
 +
 +crypto_internal-rsa.lo: src/crypto/crypto_internal-rsa.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_internal-rsa.lo -MD -MP -MF $(DEPDIR)/crypto_internal-rsa.Tpo -c -o crypto_internal-rsa.lo `test -f 'src/crypto/crypto_internal-rsa.c' || echo '$(srcdir)/'`src/crypto/crypto_internal-rsa.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/crypto_internal-rsa.Tpo $(DEPDIR)/crypto_internal-rsa.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/crypto_internal-rsa.c' object='crypto_internal-rsa.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_internal-rsa.lo `test -f 'src/crypto/crypto_internal-rsa.c' || echo '$(srcdir)/'`src/crypto/crypto_internal-rsa.c
 +
 +tls_internal.lo: src/crypto/tls_internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tls_internal.lo -MD -MP -MF $(DEPDIR)/tls_internal.Tpo -c -o tls_internal.lo `test -f 'src/crypto/tls_internal.c' || echo '$(srcdir)/'`src/crypto/tls_internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tls_internal.Tpo $(DEPDIR)/tls_internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/tls_internal.c' object='tls_internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tls_internal.lo `test -f 'src/crypto/tls_internal.c' || echo '$(srcdir)/'`src/crypto/tls_internal.c
 +
 +fips_prf_internal.lo: src/crypto/fips_prf_internal.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT fips_prf_internal.lo -MD -MP -MF $(DEPDIR)/fips_prf_internal.Tpo -c -o fips_prf_internal.lo `test -f 'src/crypto/fips_prf_internal.c' || echo '$(srcdir)/'`src/crypto/fips_prf_internal.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/fips_prf_internal.Tpo $(DEPDIR)/fips_prf_internal.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/crypto/fips_prf_internal.c' object='fips_prf_internal.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o fips_prf_internal.lo `test -f 'src/crypto/fips_prf_internal.c' || echo '$(srcdir)/'`src/crypto/fips_prf_internal.c
 +
 +asn1.lo: src/tls/asn1.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT asn1.lo -MD -MP -MF $(DEPDIR)/asn1.Tpo -c -o asn1.lo `test -f 'src/tls/asn1.c' || echo '$(srcdir)/'`src/tls/asn1.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/asn1.Tpo $(DEPDIR)/asn1.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/asn1.c' object='asn1.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o asn1.lo `test -f 'src/tls/asn1.c' || echo '$(srcdir)/'`src/tls/asn1.c
 +
 +bignum.lo: src/tls/bignum.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bignum.lo -MD -MP -MF $(DEPDIR)/bignum.Tpo -c -o bignum.lo `test -f 'src/tls/bignum.c' || echo '$(srcdir)/'`src/tls/bignum.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/bignum.Tpo $(DEPDIR)/bignum.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/bignum.c' object='bignum.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bignum.lo `test -f 'src/tls/bignum.c' || echo '$(srcdir)/'`src/tls/bignum.c
 +
 +pkcs1.lo: src/tls/pkcs1.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkcs1.lo -MD -MP -MF $(DEPDIR)/pkcs1.Tpo -c -o pkcs1.lo `test -f 'src/tls/pkcs1.c' || echo '$(srcdir)/'`src/tls/pkcs1.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/pkcs1.Tpo $(DEPDIR)/pkcs1.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/pkcs1.c' object='pkcs1.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkcs1.lo `test -f 'src/tls/pkcs1.c' || echo '$(srcdir)/'`src/tls/pkcs1.c
 +
 +pkcs5.lo: src/tls/pkcs5.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkcs5.lo -MD -MP -MF $(DEPDIR)/pkcs5.Tpo -c -o pkcs5.lo `test -f 'src/tls/pkcs5.c' || echo '$(srcdir)/'`src/tls/pkcs5.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/pkcs5.Tpo $(DEPDIR)/pkcs5.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/pkcs5.c' object='pkcs5.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkcs5.lo `test -f 'src/tls/pkcs5.c' || echo '$(srcdir)/'`src/tls/pkcs5.c
 +
 +pkcs8.lo: src/tls/pkcs8.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pkcs8.lo -MD -MP -MF $(DEPDIR)/pkcs8.Tpo -c -o pkcs8.lo `test -f 'src/tls/pkcs8.c' || echo '$(srcdir)/'`src/tls/pkcs8.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/pkcs8.Tpo $(DEPDIR)/pkcs8.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/pkcs8.c' object='pkcs8.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pkcs8.lo `test -f 'src/tls/pkcs8.c' || echo '$(srcdir)/'`src/tls/pkcs8.c
 +
 +rsa.lo: src/tls/rsa.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rsa.lo -MD -MP -MF $(DEPDIR)/rsa.Tpo -c -o rsa.lo `test -f 'src/tls/rsa.c' || echo '$(srcdir)/'`src/tls/rsa.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/rsa.Tpo $(DEPDIR)/rsa.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/rsa.c' object='rsa.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rsa.lo `test -f 'src/tls/rsa.c' || echo '$(srcdir)/'`src/tls/rsa.c
 +
 +tlsv1_client.lo: src/tls/tlsv1_client.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_client.lo -MD -MP -MF $(DEPDIR)/tlsv1_client.Tpo -c -o tlsv1_client.lo `test -f 'src/tls/tlsv1_client.c' || echo '$(srcdir)/'`src/tls/tlsv1_client.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_client.Tpo $(DEPDIR)/tlsv1_client.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_client.c' object='tlsv1_client.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_client.lo `test -f 'src/tls/tlsv1_client.c' || echo '$(srcdir)/'`src/tls/tlsv1_client.c
 +
 +tlsv1_client_read.lo: src/tls/tlsv1_client_read.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_client_read.lo -MD -MP -MF $(DEPDIR)/tlsv1_client_read.Tpo -c -o tlsv1_client_read.lo `test -f 'src/tls/tlsv1_client_read.c' || echo '$(srcdir)/'`src/tls/tlsv1_client_read.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_client_read.Tpo $(DEPDIR)/tlsv1_client_read.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_client_read.c' object='tlsv1_client_read.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_client_read.lo `test -f 'src/tls/tlsv1_client_read.c' || echo '$(srcdir)/'`src/tls/tlsv1_client_read.c
 +
 +tlsv1_client_write.lo: src/tls/tlsv1_client_write.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_client_write.lo -MD -MP -MF $(DEPDIR)/tlsv1_client_write.Tpo -c -o tlsv1_client_write.lo `test -f 'src/tls/tlsv1_client_write.c' || echo '$(srcdir)/'`src/tls/tlsv1_client_write.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_client_write.Tpo $(DEPDIR)/tlsv1_client_write.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_client_write.c' object='tlsv1_client_write.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_client_write.lo `test -f 'src/tls/tlsv1_client_write.c' || echo '$(srcdir)/'`src/tls/tlsv1_client_write.c
 +
 +tlsv1_common.lo: src/tls/tlsv1_common.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_common.lo -MD -MP -MF $(DEPDIR)/tlsv1_common.Tpo -c -o tlsv1_common.lo `test -f 'src/tls/tlsv1_common.c' || echo '$(srcdir)/'`src/tls/tlsv1_common.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_common.Tpo $(DEPDIR)/tlsv1_common.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_common.c' object='tlsv1_common.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_common.lo `test -f 'src/tls/tlsv1_common.c' || echo '$(srcdir)/'`src/tls/tlsv1_common.c
 +
 +tlsv1_cred.lo: src/tls/tlsv1_cred.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_cred.lo -MD -MP -MF $(DEPDIR)/tlsv1_cred.Tpo -c -o tlsv1_cred.lo `test -f 'src/tls/tlsv1_cred.c' || echo '$(srcdir)/'`src/tls/tlsv1_cred.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_cred.Tpo $(DEPDIR)/tlsv1_cred.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_cred.c' object='tlsv1_cred.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_cred.lo `test -f 'src/tls/tlsv1_cred.c' || echo '$(srcdir)/'`src/tls/tlsv1_cred.c
 +
 +tlsv1_record.lo: src/tls/tlsv1_record.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_record.lo -MD -MP -MF $(DEPDIR)/tlsv1_record.Tpo -c -o tlsv1_record.lo `test -f 'src/tls/tlsv1_record.c' || echo '$(srcdir)/'`src/tls/tlsv1_record.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_record.Tpo $(DEPDIR)/tlsv1_record.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_record.c' object='tlsv1_record.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_record.lo `test -f 'src/tls/tlsv1_record.c' || echo '$(srcdir)/'`src/tls/tlsv1_record.c
 +
 +tlsv1_server.lo: src/tls/tlsv1_server.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_server.lo -MD -MP -MF $(DEPDIR)/tlsv1_server.Tpo -c -o tlsv1_server.lo `test -f 'src/tls/tlsv1_server.c' || echo '$(srcdir)/'`src/tls/tlsv1_server.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_server.Tpo $(DEPDIR)/tlsv1_server.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_server.c' object='tlsv1_server.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_server.lo `test -f 'src/tls/tlsv1_server.c' || echo '$(srcdir)/'`src/tls/tlsv1_server.c
 +
 +tlsv1_server_read.lo: src/tls/tlsv1_server_read.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_server_read.lo -MD -MP -MF $(DEPDIR)/tlsv1_server_read.Tpo -c -o tlsv1_server_read.lo `test -f 'src/tls/tlsv1_server_read.c' || echo '$(srcdir)/'`src/tls/tlsv1_server_read.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_server_read.Tpo $(DEPDIR)/tlsv1_server_read.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_server_read.c' object='tlsv1_server_read.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_server_read.lo `test -f 'src/tls/tlsv1_server_read.c' || echo '$(srcdir)/'`src/tls/tlsv1_server_read.c
 +
 +tlsv1_server_write.lo: src/tls/tlsv1_server_write.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tlsv1_server_write.lo -MD -MP -MF $(DEPDIR)/tlsv1_server_write.Tpo -c -o tlsv1_server_write.lo `test -f 'src/tls/tlsv1_server_write.c' || echo '$(srcdir)/'`src/tls/tlsv1_server_write.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/tlsv1_server_write.Tpo $(DEPDIR)/tlsv1_server_write.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/tlsv1_server_write.c' object='tlsv1_server_write.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tlsv1_server_write.lo `test -f 'src/tls/tlsv1_server_write.c' || echo '$(srcdir)/'`src/tls/tlsv1_server_write.c
 +
 +x509v3.lo: src/tls/x509v3.c
 +@am__fastdepCC_TRUE@  $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x509v3.lo -MD -MP -MF $(DEPDIR)/x509v3.Tpo -c -o x509v3.lo `test -f 'src/tls/x509v3.c' || echo '$(srcdir)/'`src/tls/x509v3.c
 +@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/x509v3.Tpo $(DEPDIR)/x509v3.Plo
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='src/tls/x509v3.c' object='x509v3.lo' libtool=yes @AMDEPBACKSLASH@
 +@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 +@am__fastdepCC_FALSE@ $(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x509v3.lo `test -f 'src/tls/x509v3.c' || echo '$(srcdir)/'`src/tls/x509v3.c
 +
 +mostlyclean-libtool:
 +      -rm -f *.lo
 +
 +clean-libtool:
 +      -rm -rf .libs _libs
 +
 +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 +      list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 +      unique=`for i in $$list; do \
 +          if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 +        done | \
 +        $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 +            END { if (nonempty) { for (i in files) print i; }; }'`; \
 +      mkid -fID $$unique
 +tags: TAGS
 +
 +TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 +              $(TAGS_FILES) $(LISP)
 +      set x; \
 +      here=`pwd`; \
 +      list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 +      unique=`for i in $$list; do \
 +          if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 +        done | \
 +        $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 +            END { if (nonempty) { for (i in files) print i; }; }'`; \
 +      shift; \
 +      if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 +        test -n "$$unique" || unique=$$empty_fix; \
 +        if test $$# -gt 0; then \
 +          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 +            "$$@" $$unique; \
 +        else \
 +          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 +            $$unique; \
 +        fi; \
 +      fi
 +ctags: CTAGS
 +CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 +              $(TAGS_FILES) $(LISP)
 +      list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 +      unique=`for i in $$list; do \
 +          if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 +        done | \
 +        $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 +            END { if (nonempty) { for (i in files) print i; }; }'`; \
 +      test -z "$(CTAGS_ARGS)$$unique" \
 +        || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 +           $$unique
 +
 +GTAGS:
 +      here=`$(am__cd) $(top_builddir) && pwd` \
 +        && $(am__cd) $(top_srcdir) \
 +        && gtags -i $(GTAGS_ARGS) "$$here"
 +
 +distclean-tags:
 +      -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 +
 +distdir: $(DISTFILES)
 +      @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 +      topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 +      list='$(DISTFILES)'; \
 +        dist_files=`for file in $$list; do echo $$file; done | \
 +        sed -e "s|^$$srcdirstrip/||;t" \
 +            -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 +      case $$dist_files in \
 +        */*) $(MKDIR_P) `echo "$$dist_files" | \
 +                         sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 +                         sort -u` ;; \
 +      esac; \
 +      for file in $$dist_files; do \
 +        if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 +        if test -d $$d/$$file; then \
 +          dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 +          if test -d "$(distdir)/$$file"; then \
 +            find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 +          fi; \
 +          if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 +            cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 +            find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 +          fi; \
 +          cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
 +        else \
 +          test -f "$(distdir)/$$file" \
 +          || cp -p $$d/$$file "$(distdir)/$$file" \
 +          || exit 1; \
 +        fi; \
 +      done
 +check-am: all-am
 +check: check-am
 +all-am: Makefile $(LTLIBRARIES)
 +installdirs:
 +install: install-am
 +install-exec: install-exec-am
 +install-data: install-data-am
 +uninstall: uninstall-am
 +
 +install-am: all-am
 +      @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 +
 +installcheck: installcheck-am
 +install-strip:
 +      $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 +        install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 +        `test -z '$(STRIP)' || \
 +          echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 +mostlyclean-generic:
 +
 +clean-generic:
 +
 +distclean-generic:
 +      -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 +      -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
 +
 +maintainer-clean-generic:
 +      @echo "This command is intended for maintainers to use"
 +      @echo "it deletes files that may require special tools to rebuild."
 +clean: clean-am
 +
 +clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
 +      mostlyclean-am
 +
 +distclean: distclean-am
 +      -rm -rf ./$(DEPDIR)
 +      -rm -f Makefile
 +distclean-am: clean-am distclean-compile distclean-generic \
 +      distclean-tags
 +
 +dvi: dvi-am
 +
 +dvi-am:
 +
 +html: html-am
 +
 +html-am:
 +
 +info: info-am
 +
 +info-am:
 +
 +install-data-am:
 +
 +install-dvi: install-dvi-am
 +
 +install-dvi-am:
 +
 +install-exec-am:
 +
 +install-html: install-html-am
 +
 +install-html-am:
 +
 +install-info: install-info-am
 +
 +install-info-am:
 +
 +install-man:
 +
 +install-pdf: install-pdf-am
 +
 +install-pdf-am:
 +
 +install-ps: install-ps-am
 +
 +install-ps-am:
 +
 +installcheck-am:
 +
 +maintainer-clean: maintainer-clean-am
 +      -rm -rf ./$(DEPDIR)
 +      -rm -f Makefile
 +maintainer-clean-am: distclean-am maintainer-clean-generic
 +
 +mostlyclean: mostlyclean-am
 +
 +mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 +      mostlyclean-libtool
 +
 +pdf: pdf-am
 +
 +pdf-am:
 +
 +ps: ps-am
 +
 +ps-am:
 +
 +uninstall-am:
 +
 +.MAKE: install-am install-strip
 +
 +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 +      clean-libtool clean-noinstLTLIBRARIES ctags distclean \
 +      distclean-compile distclean-generic distclean-libtool \
 +      distclean-tags distdir dvi dvi-am html html-am info info-am \
 +      install install-am install-data install-data-am install-dvi \
 +      install-dvi-am install-exec install-exec-am install-html \
 +      install-html-am install-info install-info-am install-man \
 +      install-pdf install-pdf-am install-ps install-ps-am \
 +      install-strip installcheck installcheck-am installdirs \
 +      maintainer-clean maintainer-clean-generic mostlyclean \
 +      mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
 +      pdf pdf-am ps ps-am tags uninstall uninstall-am
 +
 +
 +# Tell versions [3.59,3.63) of GNU make to not export all variables.
 +# Otherwise a system limit (for SysV at least) may be exceeded.
 +.NOEXPORT: