2.0.0 rc1 versioning
This commit is contained in:
parent
0022282b6b
commit
ffe184054f
16
configure.in
16
configure.in
@ -1,4 +1,4 @@
|
||||
AC_INIT(cyassl,1.9.6,http://www.yassl.com) # !!! also change in ssl.h !!!
|
||||
AC_INIT(cyassl,2.0.0rc1,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])
|
||||
@ -6,6 +6,20 @@ AC_CANONICAL_SYSTEM
|
||||
|
||||
AM_INIT_AUTOMAKE(subdir-objects)
|
||||
|
||||
#shared library versioning
|
||||
CYASSL_LIBRARY_VERSION=2:0:0
|
||||
# | | |
|
||||
# +------+ | +---+
|
||||
# | | |
|
||||
# current:revision:age
|
||||
# | | |
|
||||
# | | +- increment if interfaces have been added
|
||||
# | | set to zero if interfaces have been removed or changed
|
||||
# | +- increment if source code has changed
|
||||
# | set to zero if current is incremented
|
||||
# +- increment if interfaces have been added, removed or changed
|
||||
AC_SUBST(CYASSL_LIBRARY_VERSION)
|
||||
|
||||
|
||||
# make sure configure doesn't add to CFLAGS
|
||||
CFLAGS="$CFLAGS $C_EXTRA_FLAGS"
|
||||
|
@ -61,13 +61,13 @@
|
||||
#define PACKAGE_NAME "cyassl"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "cyassl 1.9.6"
|
||||
#define PACKAGE_STRING "cyassl 2.0.0rc1"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "cyassl"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "1.9.6"
|
||||
#define PACKAGE_VERSION "2.0.0rc1"
|
||||
|
||||
/* Define to necessary symbol if this constant uses a non-standard name on
|
||||
your system. */
|
||||
@ -83,7 +83,7 @@
|
||||
#define STDC_HEADERS 1
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "1.9.6"
|
||||
#define VERSION "2.0.0rc1"
|
||||
|
||||
/* Define to 1 if your processor stores words with the most significant byte
|
||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include "prefix_ssl.h"
|
||||
#endif
|
||||
|
||||
#define CYASSL_VERSION "1.9.6"
|
||||
#define CYASSL_VERSION "2.0.0rc1"
|
||||
|
||||
#ifdef _WIN32
|
||||
/* wincrypt.h clashes */
|
||||
|
@ -16,7 +16,7 @@ src_libcyassl_la_SOURCES = \
|
||||
ctaocrypt/src/dsa.c ctaocrypt/src/arc4.c ctaocrypt/src/rabbit.c \
|
||||
ctaocrypt/src/pwdbased.c ctaocrypt/src/logging.c \
|
||||
ctaocrypt/src/cyassl_memory.c
|
||||
src_libcyassl_la_LDFLAGS = -no-undefined -version-info 1:0:0
|
||||
src_libcyassl_la_LDFLAGS = -no-undefined -version-info ${CYASSL_LIBRARY_VERSION}
|
||||
src_libcyassl_la_CFLAGS = -DBUILDING_CYASSL
|
||||
EXTRA_DIST += include/*.h include/openssl/*.h include/*.rc \
|
||||
ctaocrypt/include/*.h ctaocrypt/src/misc.c
|
||||
|
Loading…
Reference in New Issue
Block a user