mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: openboardview: Update to 9.95.0.
* gnu/packages/electronics.scm (openboardview): Update to 9.95.0. [source]: Apply patch. [arguments]: Update fix-utf8-include-directive phase. [inputs]: Add orangeduck-mpc. * gnu/packages/patches/openboardview-use-system-mpc.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it.
This commit is contained in:
parent
46e56eb001
commit
49b5e7e93c
3 changed files with 50 additions and 4 deletions
42
gnu/packages/patches/openboardview-use-system-mpc.patch
Normal file
42
gnu/packages/patches/openboardview-use-system-mpc.patch
Normal file
|
@ -0,0 +1,42 @@
|
|||
Upstream status: https://github.com/OpenBoardView/OpenBoardView/pull/281
|
||||
|
||||
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
||||
index 452dfa9..e30c3cf 100644
|
||||
--- a/src/CMakeLists.txt
|
||||
+++ b/src/CMakeLists.txt
|
||||
@@ -206,13 +206,15 @@ endif()
|
||||
add_definitions(-DSTBI_FAILURE_USERMSG)
|
||||
|
||||
## mpc - Micro Parser Combinators ##
|
||||
-execute_process(
|
||||
- COMMAND git submodule update --init src/mpc
|
||||
- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
||||
-)
|
||||
-
|
||||
-add_library(mpc STATIC "mpc/mpc.c")
|
||||
-
|
||||
+pkg_check_modules(MPC QUIET mpc)
|
||||
+if(NOT MPC_FOUND)
|
||||
+ execute_process(
|
||||
+ COMMAND git submodule update --init src/mpc
|
||||
+ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
||||
+ )
|
||||
+ add_library(mpc STATIC "mpc/mpc.c")
|
||||
+ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/mpc)
|
||||
+endif()
|
||||
|
||||
## OpenBoardView ##
|
||||
add_subdirectory(openboardview)
|
||||
diff --git a/src/openboardview/FileFormats/GenCADFile.h b/src/openboardview/FileFormats/GenCADFile.h
|
||||
index 1ccf8df..c57f7ff 100644
|
||||
--- a/src/openboardview/FileFormats/GenCADFile.h
|
||||
+++ b/src/openboardview/FileFormats/GenCADFile.h
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
#include "build-generated/GenCADFileGrammar.h"
|
||||
|
||||
-#include "mpc/mpc.h"
|
||||
+#include "mpc.h"
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
Loading…
Add table
Add a link
Reference in a new issue