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
8a6aeb58
Commit
8a6aeb58
authored
7 years ago
by
Mathis Rosenhauer
Browse files
Options
Downloads
Patches
Plain Diff
windows: support snprintf for older MSVC
parent
e3d026ae
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+7
-0
7 additions, 0 deletions
CMakeLists.txt
cmake/config.h.in
+3
-0
3 additions, 0 deletions
cmake/config.h.in
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
tests/check_aec.h
+14
-0
14 additions, 0 deletions
tests/check_aec.h
with
25 additions
and
1 deletion
CMakeLists.txt
+
7
−
0
View file @
8a6aeb58
...
...
@@ -3,6 +3,7 @@ set(CMAKE_C_STANDARD 99)
include
(
CheckIncludeFiles
)
include
(
TestBigEndian
)
include
(
CheckCSourceCompiles
)
include
(
CheckSymbolExists
)
include
(
cmake/macros.cmake
)
project
(
libaec
)
set
(
libaec_VERSION_MAJOR 1
)
...
...
@@ -21,6 +22,12 @@ endif(NOT HAVE_DECL___BUILTIN_CLZLL)
find_inline_keyword
()
find_restrict_keyword
()
check_symbol_exists
(
snprintf
"stdio.h"
HAVE_SNPRINTF
)
if
(
NOT HAVE_SNPRINTF
)
check_symbol_exists
(
_snprintf
"stdio.h"
HAVE__SNPRINTF
)
check_symbol_exists
(
_snprintf_s
"stdio.h"
HAVE__SNPRINTF_S
)
endif
(
NOT HAVE_SNPRINTF
)
configure_file
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake/config.h.in
${
CMAKE_CURRENT_BINARY_DIR
}
/config.h
)
...
...
This diff is collapsed.
Click to expand it.
cmake/config.h.in
+
3
−
0
View file @
8a6aeb58
...
...
@@ -3,3 +3,6 @@
#cmakedefine WORDS_BIGENDIAN 1
#cmakedefine HAVE_DECL___BUILTIN_CLZLL 1
#cmakedefine HAVE_BSR64 1
#cmakedefine HAVE_SNPRINTF 1
#cmakedefine HAVE__SNPRINTF 1
#cmakedefine HAVE__SNPRINTF_S 1
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
1
View file @
8a6aeb58
...
...
@@ -25,7 +25,7 @@ AC_TYPE_UINT8_T
AC_C_INLINE
AC_C_RESTRICT
AC_CHECK_FUNCS([memset strstr])
AC_CHECK_FUNCS([memset strstr
snprintf
])
AC_CHECK_DECLS(__builtin_clzll)
AM_EXTRA_RECURSIVE_TARGETS([bench benc bdec])
...
...
This diff is collapsed.
Click to expand it.
tests/check_aec.h
+
14
−
0
View file @
8a6aeb58
#ifndef CHECK_AEC_H
#define CHECK_AEC_H 1
#include
<config.h>
#include
"libaec.h"
struct
test_state
{
...
...
@@ -24,6 +26,18 @@ int update_state(struct test_state *state);
int
encode_decode_small
(
struct
test_state
*
state
);
int
encode_decode_large
(
struct
test_state
*
state
);
#ifndef HAVE_SNPRINTF
#ifdef HAVE__SNPRINTF_S
#define snprintf(d, n, ...) _snprintf_s((d), (n), _TRUNCATE, __VA_ARGS__)
#else
#ifdef HAVE__SNPRINTF
#define snprintf _snprintf
#else
#error "no snprintf compatible function found"
#endif
/* HAVE__SNPRINTF */
#endif
/* HAVE__SNPRINTF_S */
#endif
/* HAVE_SNPRINTF */
#ifdef _WIN32
#define CHECK_PASS "PASS"
#define CHECK_FAIL "FAIL"
...
...
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