summaryrefslogtreecommitdiff
path: root/libre/supercollider/boost-1.67.patch
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-01-17 14:56:04 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-01-17 23:33:30 +0100
commit8257c71fa49ec1d8e43adcc9e1732522dcf0f64c (patch)
tree9581f0d91136653f422e9f3a7390cffdf00e431a /libre/supercollider/boost-1.67.patch
parent4a7cf2e608a100b7786ce3e081cf03637004774c (diff)
downloadabslibre-8257c71fa49ec1d8e43adcc9e1732522dcf0f64c.tar.gz
abslibre-8257c71fa49ec1d8e43adcc9e1732522dcf0f64c.tar.bz2
abslibre-8257c71fa49ec1d8e43adcc9e1732522dcf0f64c.zip
[libre] Add supercollider (without qt5-webengine)
The original arch package depended on the nonfree qt5-webengine. To avoid qt5-webengine, this package has been built without QT support. QT support was used for the IDE and a GUI, which may be able to work without qt5-webengine if supercollider is patched. Supercollider can also be used as a dependency of other packages that are not yet in Parabola such as sonicpi. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'libre/supercollider/boost-1.67.patch')
-rw-r--r--libre/supercollider/boost-1.67.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/libre/supercollider/boost-1.67.patch b/libre/supercollider/boost-1.67.patch
new file mode 100644
index 000000000..1d1abaf91
--- /dev/null
+++ b/libre/supercollider/boost-1.67.patch
@@ -0,0 +1,12 @@
+diff -upr supercollider-3.9.3.orig/server/supernova/utilities/time_tag.hpp supercollider-3.9.3/server/supernova/utilities/time_tag.hpp
+--- supercollider-3.9.3.orig/server/supernova/utilities/time_tag.hpp 2018-03-28 23:05:07.000000000 +0300
++++ supercollider-3.9.3/server/supernova/utilities/time_tag.hpp 2018-06-03 01:32:16.824417338 +0300
+@@ -230,7 +230,7 @@ public:
+ #ifdef BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG
+ time_duration offset = seconds(get_secs() - ntp_offset) + nanoseconds(get_nanoseconds());
+ #else
+- time_duration offset = seconds(get_secs() - ntp_offset) + microseconds(get_nanoseconds()/1000);
++ time_duration offset = seconds(get_secs() - ntp_offset) + microseconds(long(get_nanoseconds()/1000));
+ #endif
+ return ptime(base, offset);
+ }