Merge branch 'master' of https://github.com/kaleb-himes/cyassl
This commit is contained in:
commit
252390a476
30
configure.ac
30
configure.ac
@ -1775,11 +1775,11 @@ AC_CONFIG_FILES([Makefile])
|
|||||||
AC_CONFIG_FILES([wolfssl/version.h])
|
AC_CONFIG_FILES([wolfssl/version.h])
|
||||||
AC_CONFIG_FILES([wolfssl/options.h])
|
AC_CONFIG_FILES([wolfssl/options.h])
|
||||||
#have options.h and version.h for autoconf fips tag and build
|
#have options.h and version.h for autoconf fips tag and build
|
||||||
if test "x$ENABLED_FIPS" = "xyes"
|
#if test "x$ENABLED_FIPS" = "xyes"
|
||||||
then
|
#then
|
||||||
AC_CONFIG_FILES([cyassl/version.h])
|
# AC_CONFIG_FILES([cyassl/version.h])
|
||||||
AC_CONFIG_FILES([cyassl/options.h])
|
# AC_CONFIG_FILES([cyassl/options.h])
|
||||||
fi
|
#fi
|
||||||
AC_CONFIG_FILES([support/wolfssl.pc])
|
AC_CONFIG_FILES([support/wolfssl.pc])
|
||||||
AC_CONFIG_FILES([rpm/spec])
|
AC_CONFIG_FILES([rpm/spec])
|
||||||
|
|
||||||
@ -1846,6 +1846,26 @@ echo "#endif" >> $OPTION_FILE
|
|||||||
echo "" >> $OPTION_FILE
|
echo "" >> $OPTION_FILE
|
||||||
echo
|
echo
|
||||||
|
|
||||||
|
#backwards compatability for those who have included options or version
|
||||||
|
touch cyassl/options.h
|
||||||
|
touch cyassl/version.h
|
||||||
|
echo "/* cyassl options.h" > cyassl/options.h
|
||||||
|
echo " * generated from wolfssl/options.h" >> cyassl/options.h
|
||||||
|
echo " */\n" >> cyassl/options.h
|
||||||
|
while read -r line
|
||||||
|
do
|
||||||
|
echo "$line" >> cyassl/options.h
|
||||||
|
done < $OPTION_FILE
|
||||||
|
|
||||||
|
echo "/* cyassl version.h" > cyassl/version.h
|
||||||
|
echo " * generated from wolfssl version.h" >> cyassl/version.h
|
||||||
|
echo " */\n" >> cyassl/version.h
|
||||||
|
while read -r line
|
||||||
|
do
|
||||||
|
echo "$line" >> cyassl/version.h
|
||||||
|
done < wolfssl/version.h
|
||||||
|
#end backwards compatibility
|
||||||
|
|
||||||
# output config summary
|
# output config summary
|
||||||
echo "---"
|
echo "---"
|
||||||
echo "Configuration summary for $PACKAGE_NAME version $VERSION"
|
echo "Configuration summary for $PACKAGE_NAME version $VERSION"
|
||||||
|
@ -1,22 +1,39 @@
|
|||||||
/* cyassl_version.h.in
|
/* cyassl version.h
|
||||||
*
|
* generated from wolfssl version.h
|
||||||
* Copyright (C) 2006-2014 wolfSSL Inc.
|
|
||||||
*
|
|
||||||
* This file is part of wolfSSL. (formerly known as CyaSSL)
|
|
||||||
*
|
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <wolfssl/version.h.in>
|
/* wolfssl_version.h.in
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006-2014 wolfSSL Inc.
|
||||||
|
*
|
||||||
|
* This file is part of wolfSSL. (formerly known as CyaSSL)
|
||||||
|
*
|
||||||
|
* wolfSSL is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* wolfSSL is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define LIBWOLFSSL_VERSION_STRING "3.3.0"
|
||||||
|
#define LIBWOLFSSL_VERSION_HEX 0x03003000
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* cyassl_version.h.in
|
/* wolfssl_version.h.in
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2014 wolfSSL Inc.
|
* Copyright (C) 2006-2014 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* cyassl_version.h.in
|
/* wolfssl_version.h.in
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2014 wolfSSL Inc.
|
* Copyright (C) 2006-2014 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user