From de18c6b6ec367736152e38cb6767b5a6b4654c16 Mon Sep 17 00:00:00 2001 From: Todd A Ouska Date: Wed, 27 Apr 2011 16:00:22 -0700 Subject: [PATCH] fix aux dir and make dist --- configure.in | 7 ++++--- ctaocrypt/include/config.h | 2 +- src/include.am | 3 ++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index eebd9e6b4..d3b78e96b 100644 --- a/configure.in +++ b/configure.in @@ -1,9 +1,10 @@ -AC_INIT(cyassl,1.9.6) # !!! also change in ssl.h !!! -AC_CANONICAL_SYSTEM +AC_INIT(cyassl,1.9.6,http://www.yassl.com) # !!! also change in ssl.h !!! +AC_CONFIG_AUX_DIR(config) AM_CONFIG_HEADER(ctaocrypt/include/config.h) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE(subdir-objects) +AC_CANONICAL_SYSTEM +AM_INIT_AUTOMAKE(subdir-objects) # make sure configure doesn't add to CFLAGS diff --git a/ctaocrypt/include/config.h b/ctaocrypt/include/config.h index 40770afdc..7146f116b 100644 --- a/ctaocrypt/include/config.h +++ b/ctaocrypt/include/config.h @@ -55,7 +55,7 @@ #define PACKAGE "cyassl" /* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "" +#define PACKAGE_BUGREPORT "http://www.yassl.com" /* Define to the full name of this package. */ #define PACKAGE_NAME "cyassl" diff --git a/src/include.am b/src/include.am index a04b2d804..2749896e6 100644 --- a/src/include.am +++ b/src/include.am @@ -18,7 +18,8 @@ src_libcyassl_la_SOURCES = \ ctaocrypt/src/cyassl_memory.c src_libcyassl_la_LDFLAGS = -no-undefined -version-info 1:0:0 src_libcyassl_la_CFLAGS = -DBUILDING_CYASSL -EXTRA_DIST += include/*.h include/openssl/*.h include/*.rc +EXTRA_DIST += include/*.h include/openssl/*.h include/*.rc \ + ctaocrypt/include/*.h ctaocrypt/src/misc.c if BUILD_AESNI src_libcyassl_la_SOURCES += ctaocrypt/src/aes_asm.s