Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package coin-or-CoinUtils for 
openSUSE:Factory checked in at 2024-01-03 12:28:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/coin-or-CoinUtils (Old)
 and      /work/SRC/openSUSE:Factory/.coin-or-CoinUtils.new.28375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "coin-or-CoinUtils"

Wed Jan  3 12:28:42 2024 rev:3 rq:1136010 version:2.11.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/coin-or-CoinUtils/coin-or-CoinUtils.changes      
2023-07-28 22:20:38.229298228 +0200
+++ 
/work/SRC/openSUSE:Factory/.coin-or-CoinUtils.new.28375/coin-or-CoinUtils.changes
   2024-01-03 12:29:04.580436682 +0100
@@ -1,0 +2,7 @@
+Sun Dec 31 02:59:46 UTC 2023 - Stefan Brüns <[email protected]>
+
+- update to 2.11.10:
+  * remove or disable more set-but-unused variables
+- Add zlib build dependency, to support gzip'ed files at runtime.
+
+-------------------------------------------------------------------

Old:
----
  coin-or-CoinUtils-2.11.9.tar.gz

New:
----
  coin-or-CoinUtils-2.11.10.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ coin-or-CoinUtils.spec ++++++
--- /var/tmp/diff_new_pack.KHY8Y5/_old  2024-01-03 12:29:05.476469410 +0100
+++ /var/tmp/diff_new_pack.KHY8Y5/_new  2024-01-03 12:29:05.476469410 +0100
@@ -19,7 +19,7 @@
 %define soversion 3
 
 Name:           coin-or-CoinUtils
-Version:        2.11.9
+Version:        2.11.10
 Release:        0
 Summary:        COIN-OR Utilities
 Group:          Productivity/Scientific/Math
@@ -27,6 +27,7 @@
 URL:            https://www.coin-or.org/
 Source:         
https://github.com/coin-or/CoinUtils/archive/refs/tags/releases/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  gcc-c++
+BuildRequires:  pkgconfig(zlib)
 
 %description
 CoinUtils is an open-source collection of classes and helper functions
@@ -43,6 +44,7 @@
 %package devel
 Summary:        Development headers for coin-or-CoinUtils
 Requires:       libCoinUtils%{soversion} = %{version}
+Requires:       pkgconfig(zlib)
 
 %description devel
 CoinUtils is an open-source collection of classes and helper functions

++++++ coin-or-CoinUtils-2.11.9.tar.gz -> coin-or-CoinUtils-2.11.10.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/.github/workflows/windows-ci.yml 
new/CoinUtils-releases-2.11.10/.github/workflows/windows-ci.yml
--- old/CoinUtils-releases-2.11.9/.github/workflows/windows-ci.yml      
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/.github/workflows/windows-ci.yml     
2023-10-25 04:38:25.000000000 +0200
@@ -26,6 +26,7 @@
           { os: windows-2019, arch: i686, msystem: mingw32, debug: false, 
suffix: "" },
           { os: windows-2019, arch: msvc, msystem: mingw64, debug: false, 
suffix: "-md" },
           { os: windows-2022, arch: msvc, msystem: mingw64, debug: false, 
suffix: "-md" },
+          { os: windows-2022, arch: msvs, msystem: mingw64, debug: false, 
suffix: "" },
         ]
     steps:
       - name: Checkout source
@@ -40,11 +41,14 @@
       - name: Set up msvc
         if: ${{ matrix.arch == 'msvc' }}
         uses: ilammy/msvc-dev-cmd@v1
+      - name: Set up for msvs
+        if: ${{ matrix.arch == 'msvs' }}
+        uses: microsoft/[email protected]
       - name: Set correct host flag and install requirements
+        if: ${{ matrix.arch != 'msvc' && matrix.arch != 'msvs' }}
         run: |
           echo "host_flag=--host=${{ matrix.arch }}-w64-mingw32" | Out-File 
-FilePath $env:GITHUB_ENV -Encoding utf8 -Append
           C:\msys64\usr\bin\pacman -S mingw-w64-${{ matrix.arch }}-lapack 
mingw-w64-${{ matrix.arch }}-winpthreads-git mingw-w64-${{ matrix.arch 
}}-readline mingw-w64-${{ matrix.arch }}-suitesparse mingw-w64-${{ matrix.arch 
}}-metis --noconfirm
-        if: ${{ matrix.arch != 'msvc' }}
       - name: Set up msys with ${{ matrix.msystem }}
         uses: msys2/setup-msys2@v2
         with:
@@ -55,7 +59,44 @@
             zip
           path-type: inherit
           msystem: ${{ matrix.msystem }}
-      - name: Build project
+      - name: Fetch project for msvs
+        if: ${{ matrix.arch == 'msvs' }}
+        run: |
+          ADD_ARGS=()
+          ADD_ARGS+=( --skip='ThirdParty/Metis ThirdParty/Mumps 
ThirdParty/Blas ThirdParty/Lapack' )
+          ./coinbrew/coinbrew fetch ${{ github.event.repository.name }} 
--skip-update "${ADD_ARGS[@]}"
+          echo "##################################################"
+          echo "### Extracting Netlib and Miplib3 if available"
+          if [ -d "./Data/Netlib/" ]; then gunzip ./Data/Netlib/*.gz; fi
+          if [ -d "./Data/Miplib3/" ]; then gunzip ./Data/Miplib3/*.gz; fi
+          echo "##################################################"       
+        shell: msys2 {0}
+      - name: Build project for msvs
+        if: ${{ matrix.arch == 'msvs' }}
+        shell: cmd
+        run: |
+          msbuild ${{ github.event.repository.name }}\${{ 
github.event.repository.name }}\MSVisualStudio\v17\${{ 
github.event.repository.name }}.sln /p:Configuration=Release /p:Platform=x64 /m
+      - name: Test project for msvs
+        if: ${{ matrix.arch == 'msvs' }}
+        shell: cmd
+        run: |
+          .\${{ github.event.repository.name }}\${{ 
github.event.repository.name }}\MSVisualStudio\v17\${{ 
github.event.repository.name }}Test.cmd .\${{ github.event.repository.name 
}}\${{ github.event.repository.name }}\MSVisualStudio\v17\x64\Release 
.\Data\Sample .\Data\Netlib .\Data\Miplib3
+      - name: Install project for msvs
+        if: ${{ matrix.arch == 'msvs' }}
+        shell: cmd
+        run: |
+          mkdir dist
+          copy ${{ github.event.repository.name }}\README.* dist\.
+          copy ${{ github.event.repository.name }}\AUTHORS.* dist\.
+          copy ${{ github.event.repository.name }}\LICENSE.* dist\.
+          mkdir dist\bin
+          copy ${{ github.event.repository.name }}\${{ 
github.event.repository.name }}\MSVisualStudio\v17\x64\Release\*.exe dist\bin\.
+          mkdir dist\share
+          if exist .\Data\Sample xcopy .\Data\Sample dist\share\coin-or-sample 
/i
+          if exist .\Data\Netlib xcopy .\Data\Netlib dist\share\coin-or-netlib 
/i
+          if exist .\Data\Miplib3 xcopy .\Data\Miplib3 
dist\share\coin-or-miplib3 /i
+      - name: Build project using coinbrew
+        if: ${{ matrix.arch != 'msvs' }}
         run: |
           ADD_ARGS=()
           ADD_ARGS+=( --skip='ThirdParty/Metis ThirdParty/Mumps 
ThirdParty/Blas ThirdParty/Lapack' )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CoinUtils-releases-2.11.9/.gitignore 
new/CoinUtils-releases-2.11.10/.gitignore
--- old/CoinUtils-releases-2.11.9/.gitignore    2023-04-24 15:28:57.000000000 
+0200
+++ new/CoinUtils-releases-2.11.10/.gitignore   2023-10-25 04:38:25.000000000 
+0200
@@ -7,4 +7,19 @@
 config.log
 config.status
 libtool
-dist
\ No newline at end of file
+dist
+
+# Ignore VS files
+*.suo
+*.db
+*.bak
+*.user
+**/.vs/
+**/MSVisualStudio/**/Release/
+**/MSVisualStudio/**/ReleaseParallel/
+**/MSVisualStudio/**/Debug/
+
+# Ignore files created during unit tests
+**/MSVisualStudio/**/*.mps
+**/MSVisualStudio/**/*.lp
+**/MSVisualStudio/**/*.out
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/MSVisualStudio/v17/CoinUtils.sln 
new/CoinUtils-releases-2.11.10/CoinUtils/MSVisualStudio/v17/CoinUtils.sln
--- old/CoinUtils-releases-2.11.9/CoinUtils/MSVisualStudio/v17/CoinUtils.sln    
1970-01-01 01:00:00.000000000 +0100
+++ new/CoinUtils-releases-2.11.10/CoinUtils/MSVisualStudio/v17/CoinUtils.sln   
2023-10-25 04:38:25.000000000 +0200
@@ -0,0 +1,65 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.3.32804.467
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCoinUtils", 
"libCoinUtils\libCoinUtils.vcxproj", "{6D2EF92A-D693-47E3-A325-A686E78C5FFD}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CoinUtilsUnitTest", 
"CoinUtilsUnitTest\CoinUtilsUnitTest.vcxproj", 
"{FCF90EF8-93AE-482A-9B55-018B8338B99D}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", 
"Solution Items", "{B8AB58C7-FB01-45B3-97CC-3F3E6583BF85}"
+       ProjectSection(SolutionItems) = preProject
+               ..\..\..\.gitignore = ..\..\..\.gitignore
+               ..\..\..\LICENSE = ..\..\..\LICENSE
+               ..\..\..\README.md = ..\..\..\README.md
+       EndProjectSection
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", 
"{E712FDE2-9810-416F-B615-FD827259BABA}"
+       ProjectSection(SolutionItems) = preProject
+               ..\..\..\.github\workflows\linux-ci.yml = 
..\..\..\.github\workflows\linux-ci.yml
+               ..\..\..\.github\workflows\release.yml = 
..\..\..\.github\workflows\release.yml
+               ..\..\..\.github\workflows\windows-ci.yml = 
..\..\..\.github\workflows\windows-ci.yml
+       EndProjectSection
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", 
"{7032C4C9-B7AE-42F2-A4C0-26F1A9F054F1}"
+       ProjectSection(SolutionItems) = preProject
+               CoinUtilsTest.cmd = CoinUtilsTest.cmd
+       EndProjectSection
+EndProject
+Global
+       GlobalSection(SolutionConfigurationPlatforms) = preSolution
+               Debug|x64 = Debug|x64
+               Debug|x86 = Debug|x86
+               Release|x64 = Release|x64
+               Release|x86 = Release|x86
+       EndGlobalSection
+       GlobalSection(ProjectConfigurationPlatforms) = postSolution
+               {6D2EF92A-D693-47E3-A325-A686E78C5FFD}.Debug|x64.ActiveCfg = 
Debug|x64
+               {6D2EF92A-D693-47E3-A325-A686E78C5FFD}.Debug|x64.Build.0 = 
Debug|x64
+               {6D2EF92A-D693-47E3-A325-A686E78C5FFD}.Debug|x86.ActiveCfg = 
Debug|Win32
+               {6D2EF92A-D693-47E3-A325-A686E78C5FFD}.Debug|x86.Build.0 = 
Debug|Win32
+               {6D2EF92A-D693-47E3-A325-A686E78C5FFD}.Release|x64.ActiveCfg = 
Release|x64
+               {6D2EF92A-D693-47E3-A325-A686E78C5FFD}.Release|x64.Build.0 = 
Release|x64
+               {6D2EF92A-D693-47E3-A325-A686E78C5FFD}.Release|x86.ActiveCfg = 
Release|Win32
+               {6D2EF92A-D693-47E3-A325-A686E78C5FFD}.Release|x86.Build.0 = 
Release|Win32
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D}.Debug|x64.ActiveCfg = 
Debug|x64
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D}.Debug|x64.Build.0 = 
Debug|x64
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D}.Debug|x86.ActiveCfg = 
Debug|Win32
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D}.Debug|x86.Build.0 = 
Debug|Win32
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D}.Release|x64.ActiveCfg = 
Release|x64
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D}.Release|x64.Build.0 = 
Release|x64
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D}.Release|x86.ActiveCfg = 
Release|Win32
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D}.Release|x86.Build.0 = 
Release|Win32
+       EndGlobalSection
+       GlobalSection(SolutionProperties) = preSolution
+               HideSolutionNode = FALSE
+       EndGlobalSection
+       GlobalSection(NestedProjects) = preSolution
+               {FCF90EF8-93AE-482A-9B55-018B8338B99D} = 
{7032C4C9-B7AE-42F2-A4C0-26F1A9F054F1}
+               {E712FDE2-9810-416F-B615-FD827259BABA} = 
{B8AB58C7-FB01-45B3-97CC-3F3E6583BF85}
+               {7032C4C9-B7AE-42F2-A4C0-26F1A9F054F1} = 
{B8AB58C7-FB01-45B3-97CC-3F3E6583BF85}
+       EndGlobalSection
+       GlobalSection(ExtensibilityGlobals) = postSolution
+               SolutionGuid = {47CE0831-9FE3-4146-A085-43BC3B8AE89A}
+       EndGlobalSection
+EndGlobal
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/MSVisualStudio/v17/CoinUtilsTest.cmd 
new/CoinUtils-releases-2.11.10/CoinUtils/MSVisualStudio/v17/CoinUtilsTest.cmd
--- 
old/CoinUtils-releases-2.11.9/CoinUtils/MSVisualStudio/v17/CoinUtilsTest.cmd    
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/CoinUtils-releases-2.11.10/CoinUtils/MSVisualStudio/v17/CoinUtilsTest.cmd   
    2023-10-25 04:38:25.000000000 +0200
@@ -0,0 +1,43 @@
+@REM This file will run command line tests, comparable to test\makefile.am
+@REM The name of this file xxTest.cmd and the parameters are standardized for 
windows-ci.yml
+@REM The usage message describes what parameters are used.
+
+@echo off
+SET "BINDIR=%~1"
+SET "SAMPLEDIR=%~2"
+SET "NETLIBDIR=%~3"
+SET "MIPLIBDIR=%~4"
+
+echo INFO: Running %0 %*
+echo INFO: Using bindir '%BINDIR%' and sampledir '%SAMPLEDIR%'.
+echo INFO: Netlibdir '%NETLIBDIR%' and miplibdir '%MIPLIBDIR%' are ignored for 
these tests.
+
+if "%BINDIR%"=="" echo ERROR: No bindir given. && goto :usage
+if not exist "%BINDIR%" echo ERROR: Folder bindir %BINDIR% does not exist. && 
goto :usage
+
+if "%SAMPLEDIR%"=="" echo ERROR: No sampledir given. && goto :usage
+if not exist %SAMPLEDIR% echo ERROR: Folder sampledir %SAMPLEDIR% does not 
exist. && goto :usage
+if not %errorlevel%==0 echo ERROR: %SAMPLEDIR% cannot contain spaces. && goto 
:usage
+
+goto :test
+
+:usage
+echo INFO: Usage %0 ^<bindir^> ^<sampledir^>
+echo INFO: where ^<bindir^> contains the executables, sampledir the sample 
files.
+echo INFO: This script runs automated test.
+echo INFO: The ^<sampledir^> must not contain spaces!
+echo INFO: For example: %0 "D:\Some Directory\" ..\..\samples\
+goto :error
+
+:error
+echo ERROR: An error occurred while running the tests!
+echo INFO: Finished Tests but failed
+exit /b 1
+
+:test
+echo INFO: Starting Tests
+
+"%BINDIR%\CoinUtilsUnitTest.exe" -mpsDir=%SAMPLEDIR%  
+if not %errorlevel%==0 echo ERROR: Error running CoinUtilsUnitTest.exe tests. 
&& goto :error
+
+echo INFO: Finished Tests successfully (%ERRORLEVEL%)
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/MSVisualStudio/v17/CoinUtilsUnitTest/CoinUtilsUnitTest.vcxproj
 
new/CoinUtils-releases-2.11.10/CoinUtils/MSVisualStudio/v17/CoinUtilsUnitTest/CoinUtilsUnitTest.vcxproj
--- 
old/CoinUtils-releases-2.11.9/CoinUtils/MSVisualStudio/v17/CoinUtilsUnitTest/CoinUtilsUnitTest.vcxproj
      1970-01-01 01:00:00.000000000 +0100
+++ 
new/CoinUtils-releases-2.11.10/CoinUtils/MSVisualStudio/v17/CoinUtilsUnitTest/CoinUtilsUnitTest.vcxproj
     2023-10-25 04:38:25.000000000 +0200
@@ -0,0 +1,166 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <ItemGroup Label="ProjectConfigurations">
+    <ProjectConfiguration Include="Debug|Win32">
+      <Configuration>Debug</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|Win32">
+      <Configuration>Release</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+  </ItemGroup>
+  <PropertyGroup Label="Globals">
+    <VCProjectVersion>16.0</VCProjectVersion>
+    <Keyword>Win32Proj</Keyword>
+    <ProjectGuid>{fcf90ef8-93ae-482a-9b55-018b8338b99d}</ProjectGuid>
+    <RootNamespace>CoinUtilsUnitTest</RootNamespace>
+    <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" 
Label="Configuration">
+    <ConfigurationType>Application</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <PlatformToolset>v143</PlatformToolset>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" 
Label="Configuration">
+    <ConfigurationType>Application</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <PlatformToolset>v143</PlatformToolset>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" 
Label="Configuration">
+    <ConfigurationType>Application</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <PlatformToolset>v143</PlatformToolset>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 
Label="Configuration">
+    <ConfigurationType>Application</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <PlatformToolset>v143</PlatformToolset>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+  <ImportGroup Label="ExtensionSettings">
+  </ImportGroup>
+  <ImportGroup Label="Shared">
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" 
Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" 
Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" 
Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" 
Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <PropertyGroup Label="UserMacros" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <LinkIncremental>true</LinkIncremental>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <LinkIncremental>false</LinkIncremental>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <LinkIncremental>true</LinkIncremental>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <LinkIncremental>false</LinkIncremental>
+  </PropertyGroup>
+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <SDLCheck>true</SDLCheck>
+      
<PreprocessorDefinitions>COINUTILS_BUILD;_CONSOLE;_DEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <ConformanceMode>true</ConformanceMode>
+      <AdditionalIncludeDirectories>..\..\..\src</AdditionalIncludeDirectories>
+    </ClCompile>
+    <Link>
+      <SubSystem>Console</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <SDLCheck>true</SDLCheck>
+      
<PreprocessorDefinitions>COINUTILS_BUILD;_CONSOLE;NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <ConformanceMode>true</ConformanceMode>
+      <AdditionalIncludeDirectories>..\..\..\src</AdditionalIncludeDirectories>
+    </ClCompile>
+    <Link>
+      <SubSystem>Console</SubSystem>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <SDLCheck>true</SDLCheck>
+      
<PreprocessorDefinitions>COINUTILS_BUILD;_CONSOLE;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <ConformanceMode>true</ConformanceMode>
+      <AdditionalIncludeDirectories>..\..\..\src</AdditionalIncludeDirectories>
+    </ClCompile>
+    <Link>
+      <SubSystem>Console</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <SDLCheck>true</SDLCheck>
+      
<PreprocessorDefinitions>COINUTILS_BUILD;_CONSOLE;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <ConformanceMode>true</ConformanceMode>
+      <AdditionalIncludeDirectories>..\..\..\src</AdditionalIncludeDirectories>
+    </ClCompile>
+    <Link>
+      <SubSystem>Console</SubSystem>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemGroup>
+    <ProjectReference 
Include="..\..\..\..\CoinUtils\MSVisualStudio\v17\libCoinUtils\libCoinUtils.vcxproj">
+      <Project>{6d2ef92a-d693-47e3-a325-a686e78c5ffd}</Project>
+    </ProjectReference>
+  </ItemGroup>
+  <ItemGroup>
+    <ClCompile Include="..\..\..\test\CoinDenseVectorTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinErrorTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinIndexedVectorTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinLpIOTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinMessageHandlerTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinModelTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinMpsIOTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinPackedMatrixTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinPackedVectorTest.cpp" />
+    <ClCompile Include="..\..\..\test\CoinShallowPackedVectorTest.cpp" />
+    <ClCompile Include="..\..\..\test\unitTest.cpp" />
+  </ItemGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+  <ImportGroup Label="ExtensionTargets">
+  </ImportGroup>
+</Project>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/MSVisualStudio/v17/libCoinUtils/libCoinUtils.vcxproj
 
new/CoinUtils-releases-2.11.10/CoinUtils/MSVisualStudio/v17/libCoinUtils/libCoinUtils.vcxproj
--- 
old/CoinUtils-releases-2.11.9/CoinUtils/MSVisualStudio/v17/libCoinUtils/libCoinUtils.vcxproj
        1970-01-01 01:00:00.000000000 +0100
+++ 
new/CoinUtils-releases-2.11.10/CoinUtils/MSVisualStudio/v17/libCoinUtils/libCoinUtils.vcxproj
       2023-10-25 04:38:25.000000000 +0200
@@ -0,0 +1,226 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <ItemGroup Label="ProjectConfigurations">
+    <ProjectConfiguration Include="Debug|Win32">
+      <Configuration>Debug</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|Win32">
+      <Configuration>Release</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+  </ItemGroup>
+  <PropertyGroup Label="Globals">
+    <VCProjectVersion>16.0</VCProjectVersion>
+    <ProjectGuid>{6D2EF92A-D693-47E3-A325-A686E78C5FFD}</ProjectGuid>
+    <Keyword>Win32Proj</Keyword>
+    <RootNamespace>libCoinUtils</RootNamespace>
+    <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" 
Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <PlatformToolset>v143</PlatformToolset>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" 
Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <PlatformToolset>v143</PlatformToolset>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" 
Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <PlatformToolset>v143</PlatformToolset>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 
Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <PlatformToolset>v143</PlatformToolset>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+  <ImportGroup Label="ExtensionSettings">
+  </ImportGroup>
+  <ImportGroup Label="Shared">
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" 
Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" 
Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" 
Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" 
Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <PropertyGroup Label="UserMacros" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <LinkIncremental>true</LinkIncremental>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <LinkIncremental>true</LinkIncremental>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <LinkIncremental>false</LinkIncremental>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <LinkIncremental>false</LinkIncremental>
+  </PropertyGroup>
+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <SDLCheck>true</SDLCheck>
+      
<PreprocessorDefinitions>COINUTILS_BUILD;_LIB;_DEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <ConformanceMode>true</ConformanceMode>
+      <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
+      
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <SDLCheck>true</SDLCheck>
+      
<PreprocessorDefinitions>COINUTILS_BUILD;_LIB;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <ConformanceMode>true</ConformanceMode>
+      <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
+      
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <AdditionalOptions>/wd4146 %(AdditionalOptions)</AdditionalOptions>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <SDLCheck>true</SDLCheck>
+      
<PreprocessorDefinitions>COINUTILS_BUILD;_LIB;NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <ConformanceMode>true</ConformanceMode>
+      <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
+      
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <MultiProcessorCompilation>true</MultiProcessorCompilation>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <SDLCheck>true</SDLCheck>
+      
<PreprocessorDefinitions>COINUTILS_BUILD;_LIB;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <ConformanceMode>true</ConformanceMode>
+      <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
+      
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <MultiProcessorCompilation>true</MultiProcessorCompilation>
+      <AdditionalOptions>/wd4146 %(AdditionalOptions)</AdditionalOptions>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemGroup>
+    <ClCompile Include="..\..\..\src\CoinAlloc.cpp" />
+    <ClCompile Include="..\..\..\src\CoinBuild.cpp" />
+    <ClCompile Include="..\..\..\src\CoinDenseFactorization.cpp" />
+    <ClCompile Include="..\..\..\src\CoinDenseVector.cpp" />
+    <ClCompile Include="..\..\..\src\CoinError.cpp" />
+    <ClCompile Include="..\..\..\src\CoinFactorization1.cpp" />
+    <ClCompile Include="..\..\..\src\CoinFactorization2.cpp" />
+    <ClCompile Include="..\..\..\src\CoinFactorization3.cpp" />
+    <ClCompile Include="..\..\..\src\CoinFactorization4.cpp" />
+    <ClCompile Include="..\..\..\src\CoinFileIO.cpp" />
+    <ClCompile Include="..\..\..\src\CoinFinite.cpp" />
+    <ClCompile Include="..\..\..\src\CoinIndexedVector.cpp" />
+    <ClCompile Include="..\..\..\src\CoinLpIO.cpp" />
+    <ClCompile Include="..\..\..\src\CoinMessage.cpp" />
+    <ClCompile Include="..\..\..\src\CoinMessageHandler.cpp" />
+    <ClCompile Include="..\..\..\src\CoinModel.cpp" />
+    <ClCompile Include="..\..\..\src\CoinModelUseful.cpp" />
+    <ClCompile Include="..\..\..\src\CoinModelUseful2.cpp" />
+    <ClCompile Include="..\..\..\src\CoinMpsIO.cpp" />
+    <ClCompile Include="..\..\..\src\CoinOslFactorization.cpp" />
+    <ClCompile Include="..\..\..\src\CoinOslFactorization2.cpp" />
+    <ClCompile Include="..\..\..\src\CoinOslFactorization3.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPackedMatrix.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPackedVector.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPackedVectorBase.cpp" />
+    <ClCompile Include="..\..\..\src\CoinParam.cpp" />
+    <ClCompile Include="..\..\..\src\CoinParamUtils.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPostsolveMatrix.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPrePostsolveMatrix.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveDoubleton.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveDual.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveDupcol.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveEmpty.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveFixed.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveForcing.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveHelperFunctions.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveImpliedFree.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveIsolated.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveMatrix.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveMonitor.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolvePsdebug.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveSingleton.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveSubst.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveTighten.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveTripleton.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveUseless.cpp" />
+    <ClCompile Include="..\..\..\src\CoinPresolveZeros.cpp" />
+    <ClCompile Include="..\..\..\src\CoinRational.cpp" />
+    <ClCompile Include="..\..\..\src\CoinSearchTree.cpp" />
+    <ClCompile Include="..\..\..\src\CoinShallowPackedVector.cpp" />
+    <ClCompile Include="..\..\..\src\CoinSimpFactorization.cpp" />
+    <ClCompile Include="..\..\..\src\CoinSnapshot.cpp" />
+    <ClCompile Include="..\..\..\src\CoinStructuredModel.cpp" />
+    <ClCompile Include="..\..\..\src\CoinWarmStartBasis.cpp" />
+    <ClCompile Include="..\..\..\src\CoinWarmStartDual.cpp" />
+    <ClCompile Include="..\..\..\src\CoinWarmStartPrimalDual.cpp" />
+    <ClCompile Include="..\..\..\src\CoinWarmStartVector.cpp" />
+  </ItemGroup>
+  <ItemGroup>
+    <ClInclude Include="..\..\..\src\CoinUtilsConfig.h" />
+  </ItemGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+  <ImportGroup Label="ExtensionTargets">
+  </ImportGroup>
+</Project>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CoinUtils-releases-2.11.9/CoinUtils/configure 
new/CoinUtils-releases-2.11.10/CoinUtils/configure
--- old/CoinUtils-releases-2.11.9/CoinUtils/configure   2023-04-24 
15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/configure  2023-10-25 
04:38:25.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for CoinUtils 2.11.9.
+# Generated by GNU Autoconf 2.59 for CoinUtils 2.11.10.
 #
 # Report bugs to <http://projects.coin-or.org/CoinUtils>.
 #
@@ -429,8 +429,8 @@
 # Identity of this package.
 PACKAGE_NAME='CoinUtils'
 PACKAGE_TARNAME='coinutils'
-PACKAGE_VERSION='2.11.9'
-PACKAGE_STRING='CoinUtils 2.11.9'
+PACKAGE_VERSION='2.11.10'
+PACKAGE_STRING='CoinUtils 2.11.10'
 PACKAGE_BUGREPORT='http://projects.coin-or.org/CoinUtils'
 
 ac_unique_file="src/CoinError.cpp"
@@ -1025,7 +1025,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures CoinUtils 2.11.9 to adapt to many kinds of systems.
+\`configure' configures CoinUtils 2.11.10 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1091,7 +1091,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of CoinUtils 2.11.9:";;
+     short | recursive ) echo "Configuration of CoinUtils 2.11.10:";;
    esac
   cat <<\_ACEOF
 
@@ -1310,7 +1310,7 @@
 test -n "$ac_init_help" && exit 0
 if $ac_init_version; then
   cat <<\_ACEOF
-CoinUtils configure 2.11.9
+CoinUtils configure 2.11.10
 generated by GNU Autoconf 2.59
 
 Copyright (C) 2003 Free Software Foundation, Inc.
@@ -1330,7 +1330,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by CoinUtils $as_me 2.11.9, which was
+It was created by CoinUtils $as_me 2.11.10, which was
 generated by GNU Autoconf 2.59.  Invocation command line was
 
   $ $0 $@
@@ -1856,7 +1856,7 @@
 
 
 # Capture libtool library version, if given.
- coin_libversion=14:9:11
+ coin_libversion=14:10:11
 
 
 
@@ -6145,7 +6145,7 @@
 
 # Define the identity of the package.
  PACKAGE='coinutils'
- VERSION='2.11.9'
+ VERSION='2.11.10'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -39522,7 +39522,7 @@
 } >&5
 cat >&5 <<_CSEOF
 
-This file was extended by CoinUtils $as_me 2.11.9, which was
+This file was extended by CoinUtils $as_me 2.11.10, which was
 generated by GNU Autoconf 2.59.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -39585,7 +39585,7 @@
 
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-CoinUtils config.status 2.11.9
+CoinUtils config.status 2.11.10
 configured by $0, generated by GNU Autoconf 2.59,
   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
 
@@ -40746,8 +40746,8 @@
     done
   fi
 
-  { echo "$as_me:$LINENO: In case of trouble, first consult the 
troubleshooting page at 
https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting"; >&5
-echo "$as_me: In case of trouble, first consult the troubleshooting page at 
https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting"; >&6;}
+  { echo "$as_me:$LINENO: In case of trouble, first consult the 
troubleshooting page at 
https://github.com/coin-or-tools/BuildTools/wiki/user-troubleshooting"; >&5
+echo "$as_me: In case of trouble, first consult the troubleshooting page at 
https://github.com/coin-or-tools/BuildTools/wiki/user-troubleshooting"; >&6;}
   if test x$coin_projectdir = xyes; then
     { echo "$as_me:$LINENO: Configuration of $PACKAGE_NAME successful" >&5
 echo "$as_me: Configuration of $PACKAGE_NAME successful" >&6;}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CoinUtils-releases-2.11.9/CoinUtils/configure.ac 
new/CoinUtils-releases-2.11.10/CoinUtils/configure.ac
--- old/CoinUtils-releases-2.11.9/CoinUtils/configure.ac        2023-04-24 
15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/configure.ac       2023-10-25 
04:38:25.000000000 +0200
@@ -12,7 +12,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT([CoinUtils],[2.11.9],[http://projects.coin-or.org/CoinUtils])
+AC_INIT([CoinUtils],[2.11.10],[http://projects.coin-or.org/CoinUtils])
 
 AC_COPYRIGHT([
 Copyright 2006 International Business Machines and others.
@@ -41,7 +41,7 @@
 # the source root directory contains definition of where to find those
 # externals.  The following macro ensures that those externals are
 # retrieved by svn if they are not there yet.
-AC_COIN_PROJECTDIR_INIT(CoinUtils,14:9:11)
+AC_COIN_PROJECTDIR_INIT(CoinUtils,14:10:11)
 
 # Check if user wants to produce debugging code
 AC_COIN_DEBUG_COMPILE(CoinUtils)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinLpIO.cpp 
new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinLpIO.cpp
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinLpIO.cpp    2023-04-24 
15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinLpIO.cpp   2023-10-25 
04:38:25.000000000 +0200
@@ -1090,7 +1090,7 @@
 
   fprintf(fp, "Subject To\n");
 
-  int cnt_out_rows = 0;
+  //int cnt_out_rows = 0;
 
   for (i = 0; i < nrow; i++) {
     cnt_print = 0;
@@ -1098,7 +1098,7 @@
     if (useRowNames) {
       fprintf(fp, "%s: ", rowNames[i]);
     }
-    cnt_out_rows++;
+    //cnt_out_rows++;
 
     for (j = matrixByRow_->getVectorFirst(i);
          j < matrixByRow_->getVectorLast(i); j++) {
@@ -1132,7 +1132,7 @@
           if (useRowNames) {
             fprintf(fp, "%s_low:", rowNames[i]);
           }
-          cnt_out_rows++;
+          //cnt_out_rows++;
 
           for (j = matrixByRow_->getVectorFirst(i);
                j < matrixByRow_->getVectorLast(i); j++) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinOslFactorization.cpp 
new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinOslFactorization.cpp
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinOslFactorization.cpp        
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinOslFactorization.cpp       
2023-10-25 04:38:25.000000000 +0200
@@ -289,8 +289,8 @@
   //printf("nr %d nc %d\n",nr,nc);
 #ifndef NDEBUG
   bool goodPass = true;
-#endif
   int numberDone = 0;
+#endif
   for (int i = 0; i < numberRows_; i++) {
     int cRow = (-clink[i].pre) - 1;
     if (cRow == numberRows_ || cRow < 0) {
@@ -303,7 +303,9 @@
       if (nextRow < numberRows_) {
         sequence[i] = nextRow + numberColumns;
         nextRow++;
+#ifndef NDEBUG
         numberDone++;
+#endif
       } else {
 #ifndef NDEBUG
         goodPass = false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPackedMatrix.cpp 
new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPackedMatrix.cpp
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPackedMatrix.cpp    
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPackedMatrix.cpp   
2023-10-25 04:38:25.000000000 +0200
@@ -2208,7 +2208,9 @@
         const CoinBigIndex *oldStart = rhs.start_;
         const int *oldIndex = rhs.index_;
         const int *oldLength = rhs.length_;
+#ifndef NDEBUG
         CoinBigIndex tooSmallCount = 0;
+#endif
         for (int i = 0; i < majorDim_; i++) {
           start_[i] = size;
           for (CoinBigIndex j = oldStart[i];
@@ -2218,7 +2220,9 @@
               element_[size] = value;
               index_[size++] = oldIndex[j];
             } else {
+#ifndef NDEBUG
               tooSmallCount++;
+#endif
             }
           }
           length_[i] = static_cast< int >(size - start_[i]);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveDual.cpp 
new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveDual.cpp
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveDual.cpp    
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveDual.cpp   
2023-10-25 04:38:25.000000000 +0200
@@ -202,7 +202,7 @@
   */
   char *active = reinterpret_cast< char * >(prob->usefulColumnInt_);
   memset(active, 0, ncols);
-  int nOneBound = 0;
+  //int nOneBound = 0;
   int numberLook = prob->numberColsToDo_;
   int *look = prob->colsToDo_;
   for (int iLook = 0; iLook < numberLook; iLook++) {
@@ -221,11 +221,11 @@
       else
         type = 4;
     }
-    if (type == 1 || type == 2)
-      nOneBound++;
+    //if (type == 1 || type == 2)
+    //  nOneBound++;
     active[j] = type;
   }
-  int nFreed = 0;
+  //int nFreed = 0;
 #define USE_ACTIVE 1
   //#define PRESOLVE_DEBUG 2
   for (int i = 0; i < nrows; i++) {
@@ -333,7 +333,7 @@
 #endif
         doneSomething = true;
         active[icol] = 2 + 8;
-        nFreed++;
+        //nFreed++;
 #define TRY_UPPER 3
 #if TRY_UPPER > 1
       } else if (impliedUpper < ub + 1.0e-7) {
@@ -352,7 +352,7 @@
 #if TRY_UPPER > 2
         doneSomething = true;
         active[icol] = 1 + 8;
-        nFreed++;
+        //nFreed++;
 #endif
 #endif
       } else {
@@ -445,7 +445,7 @@
         printf("second type can take off lb of %g on column %d as implied 
lower %g - effective upper %g, coeff %g on row %d\n", lb, icol, impliedLower, 
maxUp, coeff, i);
 #endif
         active[icol] = 2 + 8;
-        nFreed++;
+        //nFreed++;
 #if 0 //TRY_UPPER
       } else if (impliedLower>lb-1.0e-7 ) {
        printf("second type can't take off lb of %g on column %d as implied 
lower %g - effective upper %g, coeff %g on row 
%d\n",lb,icol,impliedLower,maxUp,coeff,i);
@@ -467,7 +467,7 @@
 #if TRY_UPPER > 2
         doneSomething = true;
         active[icol] = 1 + 8;
-        nFreed++;
+        //nFreed++;
 #endif
 #endif
       }
@@ -585,7 +585,9 @@
       int nflagu = 0;
       int nflagl = 0;
       // Number of ordinary rows
+#if PROCESS_INFINITE_LB
       int nordu = 0;
+#endif
       int nordl = 0;
       double cbarjmin = cost[j];
       double cbarjmax = cbarjmin;
@@ -598,7 +600,9 @@
         if (aij > 0.0) {
           if (ymin[i] >= -ekkinf2) {
             cbarjmax -= mindelta;
+#if PROCESS_INFINITE_LB
             nordu++;
+#endif
           } else {
             nflagu++;
           }
@@ -611,7 +615,9 @@
         } else {
           if (ymax[i] <= ekkinf2) {
             cbarjmax -= maxdelta;
+#if PROCESS_INFINITE_LB
             nordu++;
+#endif
           } else {
             nflagu++;
           }
@@ -1429,7 +1435,7 @@
 #endif
     }
   }
-#if 1 // PRESOLVE_DEBUG > 0
+#if PRESOLVE_DEBUG > 0
   int makeEqCandCnt = 0;
   for (int i = 0; i < nrows; i++) {
     if (abs(canFix[i]) == 1)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveFixed.cpp 
new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveFixed.cpp
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveFixed.cpp   
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveFixed.cpp  
2023-10-25 04:38:25.000000000 +0200
@@ -788,7 +788,9 @@
   For unfixed column singletons in equalities, calculate and install transform
   (A) described in the comments at the head of the method.
 */
+#if PRESOLVE_DEBUG > 0
   int nchanged = 0;
+#endif
   for (int js = 0; js < ncols; js++) {
     if (cost[js] && hincol[js] == 1 && cup[js] > clo[js]) {
       const CoinBigIndex &jsstrt = mcstrt[js];
@@ -804,7 +806,9 @@
           cost[j] -= ratio * aij;
         }
         cost[js] = 0.0;
+#if PRESOLVE_DEBUG > 0
         nchanged++;
+#endif
       }
     }
   }
@@ -862,8 +866,8 @@
         }
       }
       if (changed) {
-        nchanged += changed;
 #if PRESOLVE_DEBUG > 0
+        nchanged += changed;
         std::cout
           << "    pass " << nPasses++ << " transferred costs to "
           << changed << " integer variables." << std::endl;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveImpliedFree.cpp 
new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveImpliedFree.cpp
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveImpliedFree.cpp     
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveImpliedFree.cpp    
2023-10-25 04:38:25.000000000 +0200
@@ -828,7 +828,9 @@
     // if not integer - don't allow much fill
     if (!prob->anyInteger()) {
       int numberFree = unprocessed;
+#if CLP_USEFUL_PRINTOUT
       int nBad = 0;
+#endif
       unprocessed = 0;
       // Take out ones that make much denser or might lead to instability
       /*
@@ -989,8 +991,10 @@
         if (numberBadElements || 3 * numberFill > 2 * (colLengths[tgtcol] + 
rowLengths[tgtrow])) {
           //printf("Bad subst col %d row %d - %d small elements, fill %d\n",
           //    tgtcol,tgtrow,numberBadElements,numberFill);
+#if CLP_USEFUL_PRINTOUT
           if (numberBadElements)
             nBad++;
+#endif
         } else {
           whichFree[unprocessed] = tgtcol;
           implied_free[unprocessed++] = tgtrow;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveSingleton.cpp 
new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveSingleton.cpp
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveSingleton.cpp       
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveSingleton.cpp      
2023-10-25 04:38:25.000000000 +0200
@@ -589,8 +589,8 @@
   int nactions = 0;
   int *fixed_cols = new int[numberLook];
   int nfixed_cols = 0;
-  int nWithCosts = 0;
 #ifdef COIN_DEVELOP
+  int nWithCosts = 0;
   double costOffset = 0.0;
 #endif
   for (iLook = 0; iLook < numberLook; iLook++) {
@@ -743,9 +743,9 @@
         cup[iCol] = 0.0;
         if (rowObjective && dcost[iCol]) {
           rowObjective[iRow] = -dcost[iCol] / coeff;
+#ifdef COIN_DEVELOP
           nWithCosts++;
           // adjust offset
-#ifdef COIN_DEVELOP
           costOffset += currentLower * rowObjective[iRow];
 #endif
           prob->dobias_ -= currentLower * rowObjective[iRow];
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveUseless.cpp 
new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveUseless.cpp
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/CoinPresolveUseless.cpp 
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/CoinPresolveUseless.cpp        
2023-10-25 04:38:25.000000000 +0200
@@ -551,7 +551,9 @@
       double *cup = prob->cup_;
       int *fixed = prob->usefulColumnInt_;
       int nFixed = 0;
+#ifdef CLP_INVESTIGATE
       int nChanged = 0;
+#endif
       for (int j = 0; j < n; j++) {
         if (clo[j] == cup[j])
           continue;
@@ -576,12 +578,16 @@
           if (integerType[j]) {
             if (upper < cup[j]) {
               cup[j] = upper;
+#ifdef CLP_INVESTIGATE
               nChanged++;
+#endif
               prob->addCol(j);
             }
             if (lower > clo[j]) {
               clo[j] = lower;
+#ifdef CLP_INVESTIGATE
               nChanged++;
+#endif
               prob->addCol(j);
             }
           }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/config_coinutils_default.h 
new/CoinUtils-releases-2.11.10/CoinUtils/src/config_coinutils_default.h
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/config_coinutils_default.h      
2023-04-24 15:28:57.000000000 +0200
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/config_coinutils_default.h     
2023-10-25 04:38:25.000000000 +0200
@@ -5,7 +5,7 @@
 /***************************************************************************/
 
 /* Version number of project */
-#define COINUTILS_VERSION "2.11.9"
+#define COINUTILS_VERSION "2.11.10"
 
 /* Major Version number of project */
 #define COINUTILS_VERSION_MAJOR 2
@@ -14,7 +14,7 @@
 #define COINUTILS_VERSION_MINOR 11
 
 /* Release Version number of project */
-#define COINUTILS_VERSION_RELEASE 9
+#define COINUTILS_VERSION_RELEASE 10
 
 /*
   Define to 64bit integer types. Note that MS does not provide __uint64.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/configall_system.h 
new/CoinUtils-releases-2.11.10/CoinUtils/src/configall_system.h
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/configall_system.h      
1970-01-01 01:00:00.000000000 +0100
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/configall_system.h     
2023-10-25 04:38:25.000000000 +0200
@@ -0,0 +1,13 @@
+/*
+ * This header file is included by the *Config.h in the individual
+ * COIN packages when the code is compiled in a setting that doesn't
+ * use the configure script (i.e., HAVE_CONFIG_H is not defined).
+ * This header file includes the system and compile dependent header
+ * file defining macros that depend on what compiler is used.
+ */
+
+#ifdef _MSC_VER
+# include "configall_system_msc.h"
+#else
+# error "Trying to use configall_system for unknown compiler."
+#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/CoinUtils-releases-2.11.9/CoinUtils/src/configall_system_msc.h 
new/CoinUtils-releases-2.11.10/CoinUtils/src/configall_system_msc.h
--- old/CoinUtils-releases-2.11.9/CoinUtils/src/configall_system_msc.h  
1970-01-01 01:00:00.000000000 +0100
+++ new/CoinUtils-releases-2.11.10/CoinUtils/src/configall_system_msc.h 
2023-10-25 04:38:25.000000000 +0200
@@ -0,0 +1,145 @@
+/* This is the header file for the Microsoft compiler, defining all
+ * system and compiler dependent configuration macros */
+
+/* Define to dummy `main' function (if any) required to link to the Fortran
+   libraries. */
+/* #undef F77_DUMMY_MAIN */
+
+#ifndef COIN_USE_F2C
+/* Define to a macro mangling the given C identifier (in lower and upper
+   case), which must not contain underscores, for linking with Fortran. */
+# define F77_FUNC(name,NAME) NAME
+
+/* As F77_FUNC, but for C identifiers containing underscores. */
+# define F77_FUNC_(name,NAME) NAME
+#else
+/* Define to a macro mangling the given C identifier (in lower and upper
+   case), which must not contain underscores, for linking with Fortran. */
+# define F77_FUNC(name,NAME) name ## _
+
+/* As F77_FUNC, but for C identifiers containing underscores. */
+# define F77_FUNC_(name,NAME) name ## __
+#endif
+
+/* Define if F77 and FC dummy `main' functions are identical. */
+/* #undef FC_DUMMY_MAIN_EQ_F77 */
+
+/* Define to 1 if you have the <assert.h> header file. */
+/* #undef HAVE_ASSERT_H */
+
+/* Define to 1 if you have the <cassert> header file. */
+#define HAVE_CASSERT 1
+
+/* Define to 1 if you have the <cctype> header file. */
+#define HAVE_CCTYPE 1
+
+/* Define to 1 if you have the <cfloat> header file. */
+#define HAVE_CFLOAT 1
+
+/* Define to 1 if you have the <cieeefp> header file. */
+/* #undef HAVE_CIEEEFP */
+
+/* Define to 1 if you have the <cmath> header file. */
+#define HAVE_CMATH 1
+
+/* Define to 1 if you have the <cstdarg> header file. */
+#define HAVE_CSTDARG 1
+
+/* Define to 1 if you have the <cstdio> header file. */
+#define HAVE_CSTDIO 1
+
+/* Define to 1 if you have the <cstdlib> header file. */
+#define HAVE_CSTDLIB 1
+
+/* Define to 1 if you have the <cstring> header file. */
+#define HAVE_CSTRING 1
+
+/* Define to 1 if you have the <ctime> header file. */
+#define HAVE_CTIME 1
+
+/* Define to 1 if you have the <cstddef> header file. */
+#define HAVE_CSTDDEF 1
+
+/* Define to 1 if you have the <ctype.h> header file. */
+/* #undef HAVE_CTYPE_H */
+
+/* Define to 1 if you have the <dlfcn.h> header file. */
+/* #undef HAVE_DLFCN_H */
+
+/* Define to 1 if function drand48 is available */
+/* #undef HAVE_DRAND48 */
+
+/* Define to 1 if you have the <float.h> header file. */
+/* #undef HAVE_FLOAT_H */
+
+/* Define to 1 if you have the <ieeefp.h> header file. */
+/* #undef HAVE_IEEEFP_H */
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+/* #define HAVE_INTTYPES_H */
+
+/* Define to 1 if you have the <math.h> header file. */
+/* #undef HAVE_MATH_H */
+
+/* Define to 1 if you have the <memory.h> header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if function rand is available */
+#define HAVE_RAND 1
+
+/* Define to 1 if you have the <stdarg.h> header file. */
+/* #undef HAVE_STDARG_H */
+
+/* Define to 1 if you have the <stdint.h> header file. */
+/* #undef HAVE_STDINT_H */
+
+/* Define to 1 if you have the <stdio.h> header file. */
+/* #undef HAVE_STDIO_H */
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if function std::rand is available */
+#define HAVE_STD__RAND 1
+
+/* Define to 1 if you have the <strings.h> header file. */
+/* #define HAVE_STRINGS_H */
+
+/* Define to 1 if you have the <string.h> header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the <time.h> header file. */
+/* #undef HAVE_TIME_H */
+
+/* Define to 1 if you have the <unistd.h> header file. */
+/* #define HAVE_UNISTD_H */
+
+/* Define to 1 if va_copy is avaliable */
+/* #undef HAVE_VA_COPY */
+
+/* Define to 1 if you have the <windows.h> header file. */
+/* #undef HAVE_WINDOWS_H */
+
+/* Define to 1 if you have the `_snprintf' function. */
+#define HAVE__SNPRINTF 1
+
+/* The size of a `double', as computed by sizeof. */
+#define SIZEOF_DOUBLE 8
+
+/* The size of a `int', as computed by sizeof. */
+#define SIZEOF_INT 4
+
+/* The size of a `int *', as computed by sizeof. */
+#define SIZEOF_INT_P 8
+
+/* The size of a `long', as computed by sizeof. */
+#define SIZEOF_LONG 4
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CoinUtils-releases-2.11.9/README.md 
new/CoinUtils-releases-2.11.10/README.md
--- old/CoinUtils-releases-2.11.9/README.md     2023-04-24 15:28:57.000000000 
+0200
+++ new/CoinUtils-releases-2.11.10/README.md    2023-10-25 04:38:25.000000000 
+0200
@@ -1,4 +1,4 @@
-# CoinUtils 2.11.9
+# CoinUtils 2.11.10
 
 [![A COIN-OR 
Project](https://coin-or.github.io/coin-or-badge.png)](https://www.coin-or.org)
 
@@ -40,9 +40,9 @@
 
 ## CURRENT BUILD STATUS
 
-[![Windows 
Builds](https://github.com/coin-or/CoinUtils/actions/workflows/windows-ci.yml/badge.svg?branch=releases/2.11.9)](https://github.com/coin-or/CoinUtils/actions/workflows/windows-ci.yml?query=branch%3Areleases/2.11.9)
+[![Windows 
Builds](https://github.com/coin-or/CoinUtils/actions/workflows/windows-ci.yml/badge.svg?branch=releases/2.11.10)](https://github.com/coin-or/CoinUtils/actions/workflows/windows-ci.yml?query=branch%3Areleases/2.11.10)
 
-[![Linux and MacOS 
Builds](https://github.com/coin-or/CoinUtils/actions/workflows/linux-ci.yml/badge.svg?branch=releases/2.11.9)](https://github.com/coin-or/CoinUtils/actions/workflows/linux-ci.yml?query=branch%3Areleases/2.11.9)
+[![Linux and MacOS 
Builds](https://github.com/coin-or/CoinUtils/actions/workflows/linux-ci.yml/badge.svg?branch=releases/2.11.10)](https://github.com/coin-or/CoinUtils/actions/workflows/linux-ci.yml?query=branch%3Areleases/2.11.10)
 
 ## DOWNLOAD
 
@@ -133,7 +133,7 @@
 ```
 wget https://raw.githubusercontent.com/coin-or/coinbrew/master/coinbrew
 chmod u+x coinbrew
-./coinbrew fetch [email protected]
+./coinbrew fetch [email protected]
 ./coinbrew build CoinUtils
 ```
 For more detailed instructions on coinbrew, see 
https://coin-or.github.io/coinbrew.
@@ -156,10 +156,10 @@
 
 If you have `Doxygen` available, you can build a HTML documentation by typing
 
-`make doxygen-docs` 
+`make doxydoc` 
 
 in the build directory. If CoinUtils was built via `coinbrew`, then the build
-directory will be `./build/CoinUtils/2.11.9` by default. The doxygen 
documentation main file
+directory will be `./build/CoinUtils/2.11.10` by default. The doxygen 
documentation main file
 is found at `<build-dir>/doxydoc/html/index.html`.
 
 If you don't have `doxygen` installed locally, you can use also find the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CoinUtils-releases-2.11.9/configure 
new/CoinUtils-releases-2.11.10/configure
--- old/CoinUtils-releases-2.11.9/configure     2023-04-24 15:28:57.000000000 
+0200
+++ new/CoinUtils-releases-2.11.10/configure    2023-10-25 04:38:25.000000000 
+0200
@@ -1,7 +1,7 @@
 #! /bin/sh
 # From configure.ac 0.9.
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for CoinUtils 2.11.9.
+# Generated by GNU Autoconf 2.59 for CoinUtils 2.11.10.
 #
 # Report bugs to <[email protected]>.
 #
@@ -430,8 +430,8 @@
 # Identity of this package.
 PACKAGE_NAME='CoinUtils'
 PACKAGE_TARNAME='coinutils'
-PACKAGE_VERSION='2.11.9'
-PACKAGE_STRING='CoinUtils 2.11.9'
+PACKAGE_VERSION='2.11.10'
+PACKAGE_STRING='CoinUtils 2.11.10'
 PACKAGE_BUGREPORT='[email protected]'
 
 ac_unique_file="configure.ac"
@@ -1032,7 +1032,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures CoinUtils 2.11.9 to adapt to many kinds of systems.
+\`configure' configures CoinUtils 2.11.10 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1098,7 +1098,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of CoinUtils 2.11.9:";;
+     short | recursive ) echo "Configuration of CoinUtils 2.11.10:";;
    esac
   cat <<\_ACEOF
 
@@ -1296,7 +1296,7 @@
 test -n "$ac_init_help" && exit 0
 if $ac_init_version; then
   cat <<\_ACEOF
-CoinUtils configure 2.11.9
+CoinUtils configure 2.11.10
 generated by GNU Autoconf 2.59
 
 Copyright (C) 2003 Free Software Foundation, Inc.
@@ -1316,7 +1316,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by CoinUtils $as_me 2.11.9, which was
+It was created by CoinUtils $as_me 2.11.10, which was
 generated by GNU Autoconf 2.59.  Invocation command line was
 
   $ $0 $@
@@ -5073,7 +5073,7 @@
 
 # Define the identity of the package.
  PACKAGE='coinutils'
- VERSION='2.11.9'
+ VERSION='2.11.10'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -22359,7 +22359,7 @@
 } >&5
 cat >&5 <<_CSEOF
 
-This file was extended by CoinUtils $as_me 2.11.9, which was
+This file was extended by CoinUtils $as_me 2.11.10, which was
 generated by GNU Autoconf 2.59.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -22417,7 +22417,7 @@
 
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-CoinUtils config.status 2.11.9
+CoinUtils config.status 2.11.10
 configured by $0, generated by GNU Autoconf 2.59,
   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
 
@@ -23440,8 +23440,8 @@
     done
   fi
 
-  { echo "$as_me:$LINENO: In case of trouble, first consult the 
troubleshooting page at 
https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting"; >&5
-echo "$as_me: In case of trouble, first consult the troubleshooting page at 
https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting"; >&6;}
+  { echo "$as_me:$LINENO: In case of trouble, first consult the 
troubleshooting page at 
https://github.com/coin-or-tools/BuildTools/wiki/user-troubleshooting"; >&5
+echo "$as_me: In case of trouble, first consult the troubleshooting page at 
https://github.com/coin-or-tools/BuildTools/wiki/user-troubleshooting"; >&6;}
   if test x$coin_projectdir = xyes; then
     { echo "$as_me:$LINENO: Configuration of $PACKAGE_NAME successful" >&5
 echo "$as_me: Configuration of $PACKAGE_NAME successful" >&6;}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CoinUtils-releases-2.11.9/configure.ac 
new/CoinUtils-releases-2.11.10/configure.ac
--- old/CoinUtils-releases-2.11.9/configure.ac  2023-04-24 15:28:57.000000000 
+0200
+++ new/CoinUtils-releases-2.11.10/configure.ac 2023-10-25 04:38:25.000000000 
+0200
@@ -12,7 +12,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT([CoinUtils],[2.11.9],[[email protected]])
+AC_INIT([CoinUtils],[2.11.10],[[email protected]])
 
 AC_COPYRIGHT([
 Copyright 2006, 2009 International Business Machines and others.

Reply via email to