Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
libaec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mathis Rosenhauer
libaec
Commits
be7cc28b
Commit
be7cc28b
authored
1 year ago
by
Mathis Rosenhauer
Browse files
Options
Downloads
Plain Diff
Merge branch '1.1.2-release' into 'master'
Version 1.1.2 See merge request
!7
parents
177ce617
a3821c98
No related branches found
Branches containing commit
Tags
v1.1.2
Tags containing commit
1 merge request
!7
Version 1.1.2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGELOG.md
+5
-0
5 additions, 0 deletions
CHANGELOG.md
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
src/CMakeLists.txt
+1
-1
1 addition, 1 deletion
src/CMakeLists.txt
src/Makefile.am
+1
-1
1 addition, 1 deletion
src/Makefile.am
with
9 additions
and
4 deletions
CHANGELOG.md
+
5
−
0
View file @
be7cc28b
# libaec Changelog
All notable changes to libaec will be documented in this file.
## [1.1.2] - 2023-10-04
### Fixed
-
Compile issue with MSVC
## [1.1.1] - 2023-09-29
### Fixed
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
be7cc28b
cmake_minimum_required
(
VERSION 3.13...3.19
)
project
(
libaec LANGUAGES C VERSION 1.1.
1
)
project
(
libaec LANGUAGES C VERSION 1.1.
2
)
# Automatically export symbols for Windows DLLs
set
(
CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE
)
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
1
View file @
be7cc28b
...
...
@@ -2,7 +2,7 @@ AC_PREREQ([2.71])
m4_define([VERSION_MAJOR], [1])
m4_define([VERSION_MINOR], [1])
m4_define([VERSION_PATCH], [
1
])
m4_define([VERSION_PATCH], [
2
])
AC_INIT([libaec],[VERSION_MAJOR.VERSION_MINOR.VERSION_PATCH],[rosenhauer@dkrz.de])
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
1
−
1
View file @
be7cc28b
...
...
@@ -22,7 +22,7 @@ add_library(aec_shared SHARED "$<TARGET_OBJECTS:aec>")
target_link_libraries
(
aec_shared PUBLIC aec
)
set_target_properties
(
aec_shared
PROPERTIES
VERSION 0.1.
1
VERSION 0.1.
2
SOVERSION 0
OUTPUT_NAME aec
PUBLIC_HEADER
${
CMAKE_CURRENT_BINARY_DIR
}
/../include/libaec.h
)
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.am
+
1
−
1
View file @
be7cc28b
...
...
@@ -5,7 +5,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include \
lib_LTLIBRARIES
=
libaec.la libsz.la
libaec_la_SOURCES
=
encode.c encode_accessors.c decode.c vector.c
\
encode.h encode_accessors.h decode.h vector.h
libaec_la_LDFLAGS
=
-version-info
1:
1
:1
-no-undefined
libaec_la_LDFLAGS
=
-version-info
1:
2
:1
-no-undefined
libsz_la_SOURCES
=
sz_compat.c
libsz_la_LIBADD
=
libaec.la
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment