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
3b526957
Commit
3b526957
authored
Jul 31, 2014
by
Mathis Rosenhauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version and SOVERSION bump.
parent
2201f28d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
8 deletions
+10
-8
CMakeLists.txt
CMakeLists.txt
+1
-1
ChangeLog
ChangeLog
+4
-0
configure.ac
configure.ac
+1
-1
src/CMakeLists.txt
src/CMakeLists.txt
+2
-4
src/Makefile.am
src/Makefile.am
+2
-2
No files found.
CMakeLists.txt
View file @
3b526957
...
...
@@ -5,7 +5,7 @@ INCLUDE(CheckCSourceCompiles)
INCLUDE
(
cmake/macros.cmake
)
PROJECT
(
libaec
)
SET
(
libaec_VERSION_MAJOR 0
)
SET
(
libaec_VERSION_MINOR
2
)
SET
(
libaec_VERSION_MINOR
3
)
SET
(
CMAKE_BUILD_TYPE Release
)
ENABLE_TESTING
()
...
...
ChangeLog
View file @
3b526957
2014-08-06 Mathis Rosenhauer <rosenhauer@dkrz.de>
v0.3
Performance improvement for encoding pre-precessed data.
More efficient coding of second extension if reference
sample is present.
...
...
configure.ac
View file @
3b526957
AC_PREREQ([2.64])
AC_INIT([libaec], [0.
2
], [rosenhauer@dkrz.de])
AC_INIT([libaec], [0.
3
], [rosenhauer@dkrz.de])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
...
...
src/CMakeLists.txt
View file @
3b526957
SET
(
libaec_SRCS encode.c encode_accessors.c decode.c
)
ADD_LIBRARY
(
aec
${
LIB_TYPE
}
${
libaec_SRCS
}
)
SET_TARGET_PROPERTIES
(
aec PROPERTIES
VERSION 0
SOVERSION 0.0
SOVERSION 0.0.1
)
ADD_LIBRARY
(
sz
${
LIB_TYPE
}
sz_compat.c
)
SET_TARGET_PROPERTIES
(
sz PROPERTIES
VERSION 0
SOVERSION 0.0
SOVERSION 2.0.1
)
TARGET_LINK_LIBRARIES
(
sz aec
)
...
...
src/Makefile.am
View file @
3b526957
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:
0
:0
libaec_la_LDFLAGS
=
-version-info
0:
1
:0
libsz_la_SOURCES
=
sz_compat.c
libsz_la_LIBADD
=
libaec.la
libsz_la_LDFLAGS
=
-version-info
0:0
:0
libsz_la_LDFLAGS
=
-version-info
2:1
:0
include_HEADERS
=
libaec.h szlib.h
...
...
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