Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mathis Rosenhauer
libaec
Commits
d808db1e
Commit
d808db1e
authored
Jul 14, 2017
by
Mathis Rosenhauer
Browse files
Version bump
parent
912eba27
Changes
15
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
d808db1e
# libaec Changelog
All notable changes to libaec will be documented in this file.
## [
Unreleased]
## [
1.0.1] - 2017-07-14
### Fixed
-
Potential security vulnerabilities in decoder exposed by libFuzzer.
...
...
@@ -10,7 +10,7 @@ All notable changes to libaec will be documented in this file.
-
Fuzz target for decoding and encoding.
### Changed
-
Improved
c
make support
.
-
Improved
C
make support
by Christoph Junghans
## [1.0.0] - 2016-11-16
...
...
CMakeLists.txt
View file @
d808db1e
...
...
@@ -6,7 +6,7 @@ include(cmake/macros.cmake)
project
(
libaec
)
set
(
libaec_VERSION_MAJOR 1
)
set
(
libaec_VERSION_MINOR 0
)
set
(
libaec_VERSION_PATCH
0
)
set
(
libaec_VERSION_PATCH
1
)
set
(
CMAKE_BUILD_TYPE Release
)
enable_testing
()
...
...
Copyright.txt
View file @
d808db1e
Copyright 2012 - 201
6
Copyright 2012 - 201
7
Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
Deutsches Klimarechenzentrum GmbH
...
...
configure.ac
View file @
d808db1e
AC_PREREQ([2.64])
AC_INIT([libaec], [1.0.
0
], [rosenhauer@dkrz.de])
AC_INIT([libaec], [1.0.
1
], [rosenhauer@dkrz.de])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
...
...
src/CMakeLists.txt
View file @
d808db1e
add_library
(
aec
${
LIB_TYPE
}
${
libaec_SRCS
}
)
set_target_properties
(
aec PROPERTIES VERSION 0.0.
6
SOVERSION 0
)
set_target_properties
(
aec PROPERTIES VERSION 0.0.
7
SOVERSION 0
)
add_library
(
sz
${
LIB_TYPE
}
sz_compat.c
)
set_target_properties
(
sz PROPERTIES VERSION 2.0.1 SOVERSION 2
)
...
...
src/Makefile.am
View file @
d808db1e
...
...
@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DBUILDING_LIBAEC
lib_LTLIBRARIES
=
libaec.la libsz.la
libaec_la_SOURCES
=
encode.c encode_accessors.c decode.c
\
encode.h encode_accessors.h decode.h
libaec_la_LDFLAGS
=
-version-info
0:
6
:0
-no-undefined
libaec_la_LDFLAGS
=
-version-info
0:
7
:0
-no-undefined
libsz_la_SOURCES
=
sz_compat.c
libsz_la_LIBADD
=
libaec.la
...
...
src/aec.c
View file @
d808db1e
...
...
@@ -2,7 +2,7 @@
* @file aec.c
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/decode.c
View file @
d808db1e
...
...
@@ -2,7 +2,7 @@
* @file decode.c
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/decode.h
View file @
d808db1e
...
...
@@ -2,7 +2,7 @@
* @file decode.c
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode.c
View file @
d808db1e
...
...
@@ -2,7 +2,7 @@
* @file encode.c
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode.h
View file @
d808db1e
...
...
@@ -2,7 +2,7 @@
* @file encode.h
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode_accessors.c
View file @
d808db1e
...
...
@@ -2,7 +2,7 @@
* @file encode_accessors.c
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode_accessors.h
View file @
d808db1e
...
...
@@ -2,7 +2,7 @@
* @file encode_accessors.h
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/libaec.h
View file @
d808db1e
...
...
@@ -2,7 +2,7 @@
* @file libaec.h
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/utime.c
View file @
d808db1e
...
...
@@ -4,7 +4,7 @@
* @author Thomas Jahns, Deutsches Klimarechenzentrum
*
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment