Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
libaec
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Mathis Rosenhauer
libaec
Commits
d808db1e
Commit
d808db1e
authored
Jul 14, 2017
by
Mathis Rosenhauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version bump
parent
912eba27
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
16 additions
and
16 deletions
+16
-16
CHANGELOG.md
CHANGELOG.md
+2
-2
CMakeLists.txt
CMakeLists.txt
+1
-1
Copyright.txt
Copyright.txt
+1
-1
configure.ac
configure.ac
+1
-1
CMakeLists.txt
src/CMakeLists.txt
+1
-1
Makefile.am
src/Makefile.am
+1
-1
aec.c
src/aec.c
+1
-1
decode.c
src/decode.c
+1
-1
decode.h
src/decode.h
+1
-1
encode.c
src/encode.c
+1
-1
encode.h
src/encode.h
+1
-1
encode_accessors.c
src/encode_accessors.c
+1
-1
encode_accessors.h
src/encode_accessors.h
+1
-1
libaec.h
src/libaec.h
+1
-1
utime.c
src/utime.c
+1
-1
No files found.
CHANGELOG.md
View file @
d808db1e
# libaec Changelog
# libaec Changelog
All notable changes to libaec will be documented in this file.
All notable changes to libaec will be documented in this file.
## [
Unreleased]
## [
1.0.1] - 2017-07-14
### Fixed
### Fixed
-
Potential security vulnerabilities in decoder exposed by libFuzzer.
-
Potential security vulnerabilities in decoder exposed by libFuzzer.
...
@@ -10,7 +10,7 @@ All notable changes to libaec will be documented in this file.
...
@@ -10,7 +10,7 @@ All notable changes to libaec will be documented in this file.
-
Fuzz target for decoding and encoding.
-
Fuzz target for decoding and encoding.
### Changed
### Changed
-
Improved
cmake support.
-
Improved
Cmake support by Christoph Junghans
## [1.0.0] - 2016-11-16
## [1.0.0] - 2016-11-16
...
...
CMakeLists.txt
View file @
d808db1e
...
@@ -6,7 +6,7 @@ include(cmake/macros.cmake)
...
@@ -6,7 +6,7 @@ include(cmake/macros.cmake)
project
(
libaec
)
project
(
libaec
)
set
(
libaec_VERSION_MAJOR 1
)
set
(
libaec_VERSION_MAJOR 1
)
set
(
libaec_VERSION_MINOR 0
)
set
(
libaec_VERSION_MINOR 0
)
set
(
libaec_VERSION_PATCH
0
)
set
(
libaec_VERSION_PATCH
1
)
set
(
CMAKE_BUILD_TYPE Release
)
set
(
CMAKE_BUILD_TYPE Release
)
enable_testing
()
enable_testing
()
...
...
Copyright.txt
View file @
d808db1e
Copyright 2012 - 201
6
Copyright 2012 - 201
7
Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
Deutsches Klimarechenzentrum GmbH
Deutsches Klimarechenzentrum GmbH
...
...
configure.ac
View file @
d808db1e
AC_PREREQ([2.64])
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_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_AUX_DIR([config])
...
...
src/CMakeLists.txt
View file @
d808db1e
add_library
(
aec
${
LIB_TYPE
}
${
libaec_SRCS
}
)
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
)
add_library
(
sz
${
LIB_TYPE
}
sz_compat.c
)
set_target_properties
(
sz PROPERTIES VERSION 2.0.1 SOVERSION 2
)
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
...
@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DBUILDING_LIBAEC
lib_LTLIBRARIES
=
libaec.la libsz.la
lib_LTLIBRARIES
=
libaec.la libsz.la
libaec_la_SOURCES
=
encode.c encode_accessors.c decode.c
\
libaec_la_SOURCES
=
encode.c encode_accessors.c decode.c
\
encode.h encode_accessors.h decode.h
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_SOURCES
=
sz_compat.c
libsz_la_LIBADD
=
libaec.la
libsz_la_LIBADD
=
libaec.la
...
...
src/aec.c
View file @
d808db1e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @file aec.c
* @file aec.c
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
src/decode.c
View file @
d808db1e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @file decode.c
* @file decode.c
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
src/decode.h
View file @
d808db1e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @file decode.c
* @file decode.c
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode.c
View file @
d808db1e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @file encode.c
* @file encode.c
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode.h
View file @
d808db1e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @file encode.h
* @file encode.h
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode_accessors.c
View file @
d808db1e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @file encode_accessors.c
* @file encode_accessors.c
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode_accessors.h
View file @
d808db1e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @file encode_accessors.h
* @file encode_accessors.h
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
src/libaec.h
View file @
d808db1e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @file libaec.h
* @file libaec.h
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
src/utime.c
View file @
d808db1e
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* @author Thomas Jahns, Deutsches Klimarechenzentrum
* @author Thomas Jahns, Deutsches Klimarechenzentrum
*
*
* @section LICENSE
* @section LICENSE
* Copyright 2012 - 201
6
* Copyright 2012 - 201
7
*
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
* Deutsches Klimarechenzentrum GmbH
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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