Update ABI/API compatibility reports after commit 155fc2e279
This commit is contained in:
parent
33995278e7
commit
068520cce9
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"Object": "lib/libopenjp2.so.2.1.2",
|
||||
"Lang": "C",
|
||||
"TotalSymbols": "43",
|
||||
"PublicABI": "1",
|
||||
"Version": "1.7"
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"Object": "lib/libopenjp2.so.2.1.1",
|
||||
"Lang": "C",
|
||||
"TotalSymbols": "46",
|
||||
"PublicABI": "1",
|
||||
"Version": "1.7"
|
||||
}
|
|
@ -20,7 +20,13 @@
|
|||
<br/>
|
||||
<h1>Changelog from Git</h1><br/><br/>
|
||||
<div class='changelog'>
|
||||
<pre class='wrap'>commit eb90d8ec935eba934bfd260cc80c8ef445dff4fd
|
||||
<pre class='wrap'>commit 155fc2e279b85bd04709967b2797de4f69b0cf3e
|
||||
Author: Antonin Descampe <antonin@gmail.com>
|
||||
Date: 2017-08-02 17:07:29 +0200
|
||||
|
||||
Update abi-check to take into account new defaults for "add" git command
|
||||
|
||||
commit eb90d8ec935eba934bfd260cc80c8ef445dff4fd
|
||||
Author: Antonin Descampe <antonin@gmail.com>
|
||||
Date: 2017-08-02 16:50:11 +0200
|
||||
|
||||
|
@ -374,12 +380,6 @@ Date: 2017-07-03 14:14:03 +0200
|
|||
|
||||
Add tests/fuzzers for OSS Fuzz (#965)
|
||||
|
||||
commit c308de39edc1697efbd5c10dc4852a58f9b86558
|
||||
Author: Even Rouault <even.rouault@spatialys.com>
|
||||
Date: 2017-07-03 14:33:57 +0200
|
||||
|
||||
opj_j2k_read_header_procedure(): validate marker size to avoid excessive memory allocation attempt
|
||||
|
||||
...</pre></div>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -496,7 +496,7 @@ $VAR1 = {
|
|||
'2.1' => '2014-04-29 12:58',
|
||||
'2.1.1' => '2016-07-05 14:54',
|
||||
'2.1.2' => '2016-09-28 18:18',
|
||||
'current' => '2017-08-02 16:50:11'
|
||||
'current' => '2017-08-02 17:07:29'
|
||||
},
|
||||
'HeadersDiff' => {
|
||||
'1.1' => {
|
||||
|
@ -574,7 +574,7 @@ $VAR1 = {
|
|||
'Maintainer' => 'OpenJPEG team',
|
||||
'MaintainerUrl' => 'http://www.openjpeg.org/',
|
||||
'PackageDiff' => {},
|
||||
'ScmUpdateTime' => '1501685649',
|
||||
'ScmUpdateTime' => '1501686611',
|
||||
'Soname' => {
|
||||
'1.1' => {
|
||||
'lib/libopenjpeg.so' => 'libopenjpeg.so'
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,10 +0,0 @@
|
|||
/* create opj_config.h for CMake */
|
||||
#define OPJ_HAVE_STDINT_H 1
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
/* OpenJPEG Versioning */
|
||||
|
||||
/* Version number. */
|
||||
#define OPJ_VERSION_MAJOR 2
|
||||
#define OPJ_VERSION_MINOR 1
|
||||
#define OPJ_VERSION_BUILD 2
|
|
@ -1,52 +0,0 @@
|
|||
/*
|
||||
* The copyright in this software is being made available under the 2-clauses
|
||||
* BSD License, included below. This software may be subject to other third
|
||||
* party and contributor rights, including patent rights, and no such rights
|
||||
* are granted under this license.
|
||||
*
|
||||
* Copyright (c) 2012, Mathieu Malaterre <mathieu.malaterre@gmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
#ifndef OPJ_STDINT_H
|
||||
#define OPJ_STDINT_H
|
||||
|
||||
#include "opj_config.h"
|
||||
#ifdef OPJ_HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
#else
|
||||
#if defined(_WIN32)
|
||||
typedef signed __int8 int8_t;
|
||||
typedef unsigned __int8 uint8_t;
|
||||
typedef signed __int16 int16_t;
|
||||
typedef unsigned __int16 uint16_t;
|
||||
typedef signed __int32 int32_t;
|
||||
typedef unsigned __int32 uint32_t;
|
||||
typedef signed __int64 int64_t;
|
||||
typedef unsigned __int64 uint64_t;
|
||||
#else
|
||||
#error unsupported platform
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* OPJ_STDINT_H */
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,48 +0,0 @@
|
|||
#-----------------------------------------------------------------------------
|
||||
#
|
||||
# OPENJPEGConfig.cmake - CMake configuration file for external projects.
|
||||
#
|
||||
# This file is configured by OPENJPEG and used by the UseOPENJPEG.cmake
|
||||
# module to load OPENJPEG's settings for an external project.
|
||||
|
||||
# The OPENJPEG version number.
|
||||
set(OPENJPEG_MAJOR_VERSION "2")
|
||||
set(OPENJPEG_MINOR_VERSION "1")
|
||||
set(OPENJPEG_BUILD_VERSION "2")
|
||||
|
||||
# The libraries.
|
||||
set(OPENJPEG_LIBRARIES "openjp2")
|
||||
|
||||
# The CMake macros dir.
|
||||
set(OPENJPEG_CMAKE_DIR "lib/openjpeg-2.1")
|
||||
|
||||
# The configuration options.
|
||||
set(OPENJPEG_BUILD_SHARED_LIBS "ON")
|
||||
|
||||
# The "use" file.
|
||||
set(OPENJPEG_USE_FILE "")
|
||||
|
||||
get_filename_component(SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||
if(EXISTS ${SELF_DIR}/OpenJPEGTargets.cmake)
|
||||
# This is an install tree
|
||||
include(${SELF_DIR}/OpenJPEGTargets.cmake)
|
||||
get_filename_component(OPENJPEG_INCLUDE_ROOT "${SELF_DIR}/../../include/openjpeg-2.1" ABSOLUTE)
|
||||
set(OPENJPEG_INCLUDE_DIRS ${OPENJPEG_INCLUDE_ROOT})
|
||||
|
||||
else()
|
||||
if(EXISTS ${SELF_DIR}/OpenJPEGExports.cmake)
|
||||
# This is a build tree
|
||||
set( OPENJPEG_INCLUDE_DIRS )
|
||||
|
||||
include(${SELF_DIR}/OpenJPEGExports.cmake)
|
||||
|
||||
else()
|
||||
message(FATAL_ERROR "ooops")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(OPENJPEG_USE_FILE ${SELF_DIR}/UseOPENJPEG.cmake)
|
||||
|
||||
# Backward compatible part:
|
||||
set(OPENJPEG_FOUND TRUE)
|
||||
|
|
@ -1,74 +0,0 @@
|
|||
#----------------------------------------------------------------
|
||||
# Generated CMake target import file for configuration "Debug".
|
||||
#----------------------------------------------------------------
|
||||
|
||||
# Commands may need to know the format version.
|
||||
SET(CMAKE_IMPORT_FILE_VERSION 1)
|
||||
|
||||
# Compute the installation prefix relative to this file.
|
||||
GET_FILENAME_COMPONENT(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||
GET_FILENAME_COMPONENT(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||
GET_FILENAME_COMPONENT(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||
|
||||
# Import target "openjp2" for configuration "Debug"
|
||||
SET_PROPERTY(TARGET openjp2 APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
||||
SET_TARGET_PROPERTIES(openjp2 PROPERTIES
|
||||
IMPORTED_LINK_INTERFACE_LIBRARIES_DEBUG "m"
|
||||
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libopenjp2.so.2.1.2"
|
||||
IMPORTED_SONAME_DEBUG "libopenjp2.so.7"
|
||||
)
|
||||
|
||||
LIST(APPEND _IMPORT_CHECK_TARGETS openjp2 )
|
||||
LIST(APPEND _IMPORT_CHECK_FILES_FOR_openjp2 "${_IMPORT_PREFIX}/lib/libopenjp2.so.2.1.2" )
|
||||
|
||||
# Import target "opj_decompress" for configuration "Debug"
|
||||
SET_PROPERTY(TARGET opj_decompress APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
||||
SET_TARGET_PROPERTIES(opj_decompress PROPERTIES
|
||||
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/bin/opj_decompress"
|
||||
)
|
||||
|
||||
LIST(APPEND _IMPORT_CHECK_TARGETS opj_decompress )
|
||||
LIST(APPEND _IMPORT_CHECK_FILES_FOR_opj_decompress "${_IMPORT_PREFIX}/bin/opj_decompress" )
|
||||
|
||||
# Import target "opj_compress" for configuration "Debug"
|
||||
SET_PROPERTY(TARGET opj_compress APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
||||
SET_TARGET_PROPERTIES(opj_compress PROPERTIES
|
||||
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/bin/opj_compress"
|
||||
)
|
||||
|
||||
LIST(APPEND _IMPORT_CHECK_TARGETS opj_compress )
|
||||
LIST(APPEND _IMPORT_CHECK_FILES_FOR_opj_compress "${_IMPORT_PREFIX}/bin/opj_compress" )
|
||||
|
||||
# Import target "opj_dump" for configuration "Debug"
|
||||
SET_PROPERTY(TARGET opj_dump APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
||||
SET_TARGET_PROPERTIES(opj_dump PROPERTIES
|
||||
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/bin/opj_dump"
|
||||
)
|
||||
|
||||
LIST(APPEND _IMPORT_CHECK_TARGETS opj_dump )
|
||||
LIST(APPEND _IMPORT_CHECK_FILES_FOR_opj_dump "${_IMPORT_PREFIX}/bin/opj_dump" )
|
||||
|
||||
# Loop over all imported files and verify that they actually exist
|
||||
FOREACH(target ${_IMPORT_CHECK_TARGETS} )
|
||||
FOREACH(file ${_IMPORT_CHECK_FILES_FOR_${target}} )
|
||||
IF(NOT EXISTS "${file}" )
|
||||
MESSAGE(FATAL_ERROR "The imported target \"${target}\" references the file
|
||||
\"${file}\"
|
||||
but this file does not exist. Possible reasons include:
|
||||
* The file was deleted, renamed, or moved to another location.
|
||||
* An install or uninstall procedure did not complete successfully.
|
||||
* The installation package was faulty and contained
|
||||
\"${CMAKE_CURRENT_LIST_FILE}\"
|
||||
but not all the files it references.
|
||||
")
|
||||
ENDIF()
|
||||
ENDFOREACH()
|
||||
UNSET(_IMPORT_CHECK_FILES_FOR_${target})
|
||||
ENDFOREACH()
|
||||
UNSET(_IMPORT_CHECK_TARGETS)
|
||||
|
||||
# Cleanup temporary variables.
|
||||
SET(_IMPORT_PREFIX)
|
||||
|
||||
# Commands beyond this point should not need to know the version.
|
||||
SET(CMAKE_IMPORT_FILE_VERSION)
|
|
@ -1,36 +0,0 @@
|
|||
# Generated by CMake 2.8.7
|
||||
|
||||
IF("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5)
|
||||
MESSAGE(FATAL_ERROR "CMake >= 2.6.0 required")
|
||||
ENDIF("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5)
|
||||
CMAKE_POLICY(PUSH)
|
||||
CMAKE_POLICY(VERSION 2.6)
|
||||
#----------------------------------------------------------------
|
||||
# Generated CMake target import file.
|
||||
#----------------------------------------------------------------
|
||||
|
||||
# Commands may need to know the format version.
|
||||
SET(CMAKE_IMPORT_FILE_VERSION 1)
|
||||
|
||||
# Create imported target openjp2
|
||||
ADD_LIBRARY(openjp2 SHARED IMPORTED)
|
||||
|
||||
# Create imported target opj_decompress
|
||||
ADD_EXECUTABLE(opj_decompress IMPORTED)
|
||||
|
||||
# Create imported target opj_compress
|
||||
ADD_EXECUTABLE(opj_compress IMPORTED)
|
||||
|
||||
# Create imported target opj_dump
|
||||
ADD_EXECUTABLE(opj_dump IMPORTED)
|
||||
|
||||
# Load information for each installed configuration.
|
||||
GET_FILENAME_COMPONENT(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||
FILE(GLOB CONFIG_FILES "${_DIR}/OpenJPEGTargets-*.cmake")
|
||||
FOREACH(f ${CONFIG_FILES})
|
||||
INCLUDE(${f})
|
||||
ENDFOREACH(f)
|
||||
|
||||
# Commands beyond this point should not need to know the version.
|
||||
SET(CMAKE_IMPORT_FILE_VERSION)
|
||||
CMAKE_POLICY(POP)
|
|
@ -30,7 +30,7 @@
|
|||
<th>Headers<br/>Diff</th>
|
||||
</tr>
|
||||
<tr id='current'><td>current</td>
|
||||
<td>2017-08-02<br/>16:50</td>
|
||||
<td>2017-08-02<br/>17:07</td>
|
||||
<td>7</td>
|
||||
<td><a href='../../changelog/openjpeg/current/log.html'>changelog</a></td>
|
||||
<td class='ok'><a href='../../objects_report/openjpeg/2.1.2/current/report.html'>100%</a></td>
|
||||
|
@ -152,7 +152,7 @@
|
|||
<td>N/A</td>
|
||||
<td>N/A</td>
|
||||
</tr>
|
||||
</table><br/>Maintained by <a href='http://www.openjpeg.org/'>OpenJPEG team</a>. Last updated on Wed Aug 2 14:54:35 2017.<br/>
|
||||
</table><br/>Maintained by <a href='http://www.openjpeg.org/'>OpenJPEG team</a>. Last updated on Wed Aug 2 15:10:37 2017.<br/>
|
||||
<br/>
|
||||
<hr/>
|
||||
<div align='right'><a class='home' title="Andrey Ponomarenko's ABI laboratory" href='http://abi-laboratory.pro/'>abi-laboratory.pro</a></div>
|
||||
|
|
Loading…
Reference in New Issue