Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 910527 | Differences between
and this patch

Collapse All | Expand All

(-)a/CMakeLists.txt (+8 lines)
Lines 733-738 else() Link Here
733
    include_directories( SYSTEM ${GLEW_INCLUDE_DIR} )
733
    include_directories( SYSTEM ${GLEW_INCLUDE_DIR} )
734
endif()
734
endif()
735
735
736
737
738
    find_package( FMT REQUIRED )
739
    check_find_package_result( FMT_FOUND "FMT" )
740
    include_directories( SYSTEM ${FMT_INCLUDE_DIR} )
741
742
743
736
#
744
#
737
# Find GLM library, required
745
# Find GLM library, required
738
#
746
#
(-)a/thirdparty/CMakeLists.txt (-1 lines)
Lines 30-36 add_subdirectory( clipper2 ) Link Here
30
add_subdirectory( compoundfilereader )
30
add_subdirectory( compoundfilereader )
31
add_subdirectory( delaunator )
31
add_subdirectory( delaunator )
32
add_subdirectory( dxflib_qcad )
32
add_subdirectory( dxflib_qcad )
33
add_subdirectory( fmt )
34
add_subdirectory( gzip-hpp )
33
add_subdirectory( gzip-hpp )
35
add_subdirectory( lemon )
34
add_subdirectory( lemon )
36
add_subdirectory( libcontext )
35
add_subdirectory( libcontext )
(-)kicad-9999/pagelayout_editor/tools/pl_point_editor.cpp.old (-1 / +1 lines)
Lines 197-203 Link Here
197
                {
197
                {
198
                    m_frame->SaveCopyInUndoList();
198
                    m_frame->SaveCopyInUndoList();
199
                }
199
                }
200
                catch( const fmt::v10::format_error& exc )
200
                catch( const fmt::v9::format_error& exc )
201
                {
201
                {
202
                    wxLogWarning( wxS( "Exception \"%s\" serializing string ocurred." ),
202
                    wxLogWarning( wxS( "Exception \"%s\" serializing string ocurred." ),
203
                                  exc.what() );
203
                                  exc.what() );
(-)kicad-9999/pagelayout_editor/tools/pl_edit_tool.cpp.old (-1 / +1 lines)
Lines 139-145 Link Here
139
        {
139
        {
140
            m_frame->SaveCopyInUndoList();
140
            m_frame->SaveCopyInUndoList();
141
        }
141
        }
142
        catch( const fmt::v10::format_error& exc )
142
        catch( const fmt::v9::format_error& exc )
143
        {
143
        {
144
            wxLogWarning( wxS( "Exception \"%s\" serializing string ocurred." ),
144
            wxLogWarning( wxS( "Exception \"%s\" serializing string ocurred." ),
145
                          exc.what() );
145
                          exc.what() );

Return to bug 910527