Rearranged headers to reduce duplication and remove local header references from fko.h. Removed references to headers that did not need to be explicitly set. Moved the MAX_PROTO_STR_LEN and MAX_PORT_STR_LEN definitions to the fko_limits.h file. Fixed bug where invalid nat_access or command messages were returning FKO_ERROR_INVALID_SPA_ACCESS_MSG error code instead of the one appropriate to the message type. Fixed bad nat_access_msg test in Perl module test suite (caught by new validation code).
20 lines
776 B
Makefile
20 lines
776 B
Makefile
lib_LTLIBRARIES = libfko.la
|
|
|
|
libfko_source_files = \
|
|
base64.c base64.h cipher_funcs.c cipher_funcs.h digest.c digest.h \
|
|
fko_client_timeout.c fko_common.h fko_digest.c fko_encode.c \
|
|
fko_decode.c fko_encryption.c fko_error.c fko_funcs.c fko_message.c \
|
|
fko_message.h fko_nat_access.c fko_rand_value.c fko_server_auth.c \
|
|
fko.h fko_limits.h fko_timestamp.c fko_user.c fko_user.h fko_util.h \
|
|
md5.c md5.h rijndael.c rijndael.h sha1.c sha1.h sha2.c sha2.h strlcat.c \
|
|
strlcpy.c fko_context.h fko_state.h fko_context.h gpgme_funcs.c \
|
|
gpgme_funcs.h
|
|
|
|
libfko_la_SOURCES = $(libfko_source_files)
|
|
|
|
libfko_la_LDFLAGS = -version-info 0:4:0 $(GPGME_LIBS)
|
|
|
|
AM_CPPFLAGS = $(GPGME_CFLAGS) -I $(top_srcdir)/common
|
|
|
|
include_HEADERS = fko.h
|