early-access version 2853
This commit is contained in:
54
externals/vcpkg/ports/binn/0001_fix_uwp.patch
vendored
Executable file
54
externals/vcpkg/ports/binn/0001_fix_uwp.patch
vendored
Executable file
@@ -0,0 +1,54 @@
|
||||
diff --git a/src/binn.c b/src/binn.c
|
||||
index ef32f35..d12d473 100644
|
||||
--- a/src/binn.c
|
||||
+++ b/src/binn.c
|
||||
@@ -142,8 +142,14 @@ BINN_PRIVATE void copy_be64(u64 *pdest, u64 *psource) {
|
||||
/***************************************************************************/
|
||||
|
||||
#ifndef WIN32
|
||||
#define stricmp strcasecmp
|
||||
#define strnicmp strncasecmp
|
||||
+#define sprintf_s(b, n, ...) sprintf(b, __VA_ARGS__)
|
||||
+#define strcpy_s(b, n, s) strcpy(b, s)
|
||||
+#else
|
||||
+#define stricmp _stricmp
|
||||
+#define strnicmp _strnicmp
|
||||
+#define strdup _strdup
|
||||
#endif
|
||||
|
||||
BINN_PRIVATE BOOL IsValidBinnHeader(void *pbuf, int *ptype, int *pcount, int *psize, int *pheadersize);
|
||||
@@ -1582,6 +1588,7 @@ BINN_PRIVATE BOOL binn_read_pair(int expected_type, void *ptr, int pos, int *pid
|
||||
base = p;
|
||||
plimit = p + size - 1;
|
||||
p += header_size;
|
||||
+ key = 0;
|
||||
|
||||
for (i = 0; i < count; i++) {
|
||||
switch (type) {
|
||||
@@ -3333,7 +3340,7 @@ char * APIENTRY binn_get_str(binn *value) {
|
||||
|
||||
if (type_family(value->type) == BINN_FAMILY_INT) {
|
||||
if (copy_int_value(value->ptr, &vint, value->type, BINN_INT64) == FALSE) return NULL;
|
||||
- sprintf(buf, "%" INT64_FORMAT, vint);
|
||||
+ sprintf_s(buf, sizeof buf, "%" INT64_FORMAT, vint);
|
||||
goto loc_convert_value;
|
||||
}
|
||||
|
||||
@@ -3341,14 +3348,14 @@ char * APIENTRY binn_get_str(binn *value) {
|
||||
case BINN_FLOAT:
|
||||
value->vdouble = value->vfloat;
|
||||
case BINN_DOUBLE:
|
||||
- sprintf(buf, "%g", value->vdouble);
|
||||
+ sprintf_s(buf, sizeof buf, "%g", value->vdouble);
|
||||
goto loc_convert_value;
|
||||
case BINN_STRING:
|
||||
return (char*) value->ptr;
|
||||
case BINN_BOOL:
|
||||
if (value->vbool)
|
||||
- strcpy(buf, "true");
|
||||
+ strcpy_s(buf, sizeof buf, "true");
|
||||
else
|
||||
- strcpy(buf, "false");
|
||||
+ strcpy_s(buf, sizeof buf, "false");
|
||||
goto loc_convert_value;
|
||||
}
|
||||
21
externals/vcpkg/ports/binn/CMakeLists.txt
vendored
Executable file
21
externals/vcpkg/ports/binn/CMakeLists.txt
vendored
Executable file
@@ -0,0 +1,21 @@
|
||||
cmake_minimum_required(VERSION 3.8)
|
||||
|
||||
project(binn
|
||||
VERSION 1.0
|
||||
DESCRIPTION "Binn is a binary data serialization format designed to be compact, fast and easy to use."
|
||||
HOMEPAGE_URL "https://github.com/liteserver/binn"
|
||||
)
|
||||
|
||||
add_library (binn src/binn.h src/binn.c)
|
||||
|
||||
target_include_directories(binn
|
||||
PUBLIC
|
||||
${PROJECT_SOURCE_DIR}/src
|
||||
)
|
||||
|
||||
install(
|
||||
TARGETS binn
|
||||
RUNTIME DESTINATION bin
|
||||
LIBRARY DESTINATION lib
|
||||
ARCHIVE DESTINATION lib
|
||||
)
|
||||
26
externals/vcpkg/ports/binn/portfile.cmake
vendored
Executable file
26
externals/vcpkg/ports/binn/portfile.cmake
vendored
Executable file
@@ -0,0 +1,26 @@
|
||||
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO liteserver/binn
|
||||
REF b657ef3f38b37aa1e5dea88a9332889d0fbf3a81 # 3.0
|
||||
SHA512 14bf572152ec5343a161dea9ebfd2b63cd5ce48c0db3decf5591aa94ae7766771cf521ba22978e9ae8855feef694bad85951f3c4a29cb9ddd881918fc6d3722a
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
0001_fix_uwp.patch
|
||||
)
|
||||
|
||||
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
|
||||
|
||||
file(INSTALL ${SOURCE_PATH}/src/binn.h DESTINATION ${CURRENT_PACKAGES_DIR}/include/binn)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
# Handle copyright
|
||||
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/binn)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/binn/LICENSE ${CURRENT_PACKAGES_DIR}/share/binn/copyright)
|
||||
6
externals/vcpkg/ports/binn/vcpkg.json
vendored
Executable file
6
externals/vcpkg/ports/binn/vcpkg.json
vendored
Executable file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "binn",
|
||||
"version-string": "3.0",
|
||||
"port-version": 1,
|
||||
"description": "Binn is a binary data serialization format designed to be compact, fast and easy to use."
|
||||
}
|
||||
Reference in New Issue
Block a user