SHA256
1
0
forked from pool/ccx
ccx/0001-Fixup-spooles-include-dir.patch
Stefan Brüns 1e02f64776 Accepting request 1000689 from home:StefanBruens:branches:science
- update to 2.20:
  Too many changes to list, a full list of changes is available in
  available in the included LOGFILE.
- Drop upstream patches:
  * ccx-2.16-abaqus-shell-heat-transfer-elements-read.patch
  * 0001-Add-missing-argument-for-inputerror-function-call.patch
  * 0001-Fix-wrong-parameter-passed-to-us3_materialdata_me.patch
  * 0001-Fix-wrong-scalar-declaration-for-2x2-inverse-Jacobia.patch
  * 0001-Pass-rank-1-dummy-for-auxiliary-array-in-isortii.patch

OBS-URL: https://build.opensuse.org/request/show/1000689
OBS-URL: https://build.opensuse.org/package/show/science/ccx?expand=0&rev=15
2022-09-03 15:02:27 +00:00

51 lines
1.1 KiB
Diff

From e551c655e45c8aa84b60a2540a35eecfd4d9cc5f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
Date: Thu, 12 Nov 2020 03:59:31 +0100
Subject: [PATCH] Fixup spooles include dir
---
src/cascade.c | 6 +++---
src/spooles.h | 8 ++++----
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/cascade.c b/src/cascade.c
index 796d5cf..c996f12 100644
--- a/src/cascade.c
+++ b/src/cascade.c
@@ -21,9 +21,9 @@
#include <string.h>
#ifdef SPOOLES
-#include <misc.h>
-#include <FrontMtx.h>
-#include <SymbFac.h>
+#include <spooles/misc.h>
+#include <spooles/FrontMtx.h>
+#include <spooles/SymbFac.h>
#endif
#include "CalculiX.h"
diff --git a/src/spooles.h b/src/spooles.h
index 388f1ff..6966215 100755
--- a/src/spooles.h
+++ b/src/spooles.h
@@ -23,11 +23,11 @@
*/
#include <pthread.h>
-#include <misc.h>
-#include <FrontMtx.h>
-#include <SymbFac.h>
+#include <spooles/misc.h>
+#include <spooles/FrontMtx.h>
+#include <spooles/SymbFac.h>
#if USE_MT
-#include <MT/spoolesMT.h>
+#include <spooles/MT/spoolesMT.h>
#endif
/* increase this for debugging */
--
2.30.1