Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
libaec
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Mathis Rosenhauer
libaec
Commits
b4285104
Commit
b4285104
authored
Oct 18, 2017
by
Mathis Rosenhauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version bump
parent
8a6aeb58
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
4 deletions
+9
-4
CHANGELOG.md
CHANGELOG.md
+5
-0
CMakeLists.txt
CMakeLists.txt
+1
-1
configure.ac
configure.ac
+1
-1
src/CMakeLists.txt
src/CMakeLists.txt
+1
-1
src/Makefile.am
src/Makefile.am
+1
-1
No files found.
CHANGELOG.md
View file @
b4285104
# 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.
## [1.0.2] - 2017-10-18
### Fixed
-
C99 requirement in all build systems
## [1.0.1] - 2017-07-14
## [1.0.1] - 2017-07-14
### Fixed
### Fixed
...
...
CMakeLists.txt
View file @
b4285104
...
@@ -8,7 +8,7 @@ include(cmake/macros.cmake)
...
@@ -8,7 +8,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
1
)
set
(
libaec_VERSION_PATCH
2
)
set
(
CMAKE_BUILD_TYPE Release
)
set
(
CMAKE_BUILD_TYPE Release
)
enable_testing
()
enable_testing
()
...
...
configure.ac
View file @
b4285104
AC_PREREQ([2.64])
AC_PREREQ([2.64])
AC_INIT([libaec], [1.0.
1
], [rosenhauer@dkrz.de])
AC_INIT([libaec], [1.0.
2
], [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 @
b4285104
add_library
(
aec
${
LIB_TYPE
}
${
libaec_SRCS
}
)
add_library
(
aec
${
LIB_TYPE
}
${
libaec_SRCS
}
)
set_target_properties
(
aec PROPERTIES VERSION 0.0.
7
SOVERSION 0
)
set_target_properties
(
aec PROPERTIES VERSION 0.0.
8
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 @
b4285104
...
@@ -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:
7
:0
-no-undefined
libaec_la_LDFLAGS
=
-version-info
0:
8
: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
...
...
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