From 096d3266628756811e009bdeffd829c4cf57f052 Mon Sep 17 00:00:00 2001 From: Gilles Dartiguelongue Date: Sat, 18 Apr 2020 16:09:34 +0200 Subject: sci-misc/boinc: refresh patch stack Signed-off-by: Gilles Dartiguelongue --- sci-misc/boinc/boinc-7.14.2-r1.ebuild | 200 +++++++++++++++++++++ sci-misc/boinc/boinc-7.14.2.ebuild | 200 --------------------- ...01-Install-switcher-tool-to-FHS-directory.patch | 96 ++++++---- .../0002-Install-missing-tool-for-sandboxing.patch | 8 +- ...ing-config.h-include-in-setprojectgrp.cpp.patch | 6 +- 5 files changed, 271 insertions(+), 239 deletions(-) create mode 100644 sci-misc/boinc/boinc-7.14.2-r1.ebuild delete mode 100644 sci-misc/boinc/boinc-7.14.2.ebuild diff --git a/sci-misc/boinc/boinc-7.14.2-r1.ebuild b/sci-misc/boinc/boinc-7.14.2-r1.ebuild new file mode 100644 index 0000000..9ee5036 --- /dev/null +++ b/sci-misc/boinc/boinc-7.14.2-r1.ebuild @@ -0,0 +1,200 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +WX_GTK_VER=3.0-gtk3 + +inherit autotools desktop eapi7-ver gnome2-utils linux-info user wxwidgets + +MY_PV=$(ver_cut 1-2) + +DESCRIPTION="The Berkeley Open Infrastructure for Network Computing" +HOMEPAGE="http://boinc.ssl.berkeley.edu/" +SRC_URI="https://github.com/BOINC/boinc/archive/client_release/${MY_PV}/${PV}.tar.gz -> ${P}.tar.gz + X? ( https://boinc.berkeley.edu/logo/boinc_glossy2_512_F.tif -> ${PN}.tif )" +RESTRICT="mirror" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="X cuda curl_ssl_gnutls curl_ssl_libressl +curl_ssl_openssl" + +REQUIRED_USE="^^ ( curl_ssl_gnutls curl_ssl_libressl curl_ssl_openssl ) " + +# libcurl must not be using an ssl backend boinc does not support. +# If the libcurl ssl backend changes, boinc should be recompiled. +RDEPEND=" + >=app-misc/ca-certificates-20080809 + cuda? ( + >=dev-util/nvidia-cuda-toolkit-2.1 + >=x11-drivers/nvidia-drivers-180.22 + ) + net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_libressl(-)=,-curl_ssl_nss(-),curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)] + sys-apps/util-linux + sys-libs/zlib + X? ( + dev-db/sqlite:3 + media-libs/freeglut + virtual/jpeg:0= + x11-libs/gtk+:3 + >=x11-libs/libnotify-0.7 + x11-libs/wxGTK:${WX_GTK_VER}[X,opengl,webkit] + ) +" +DEPEND="${RDEPEND} + app-text/docbook-xml-dtd:4.4 + app-text/docbook2X + sys-devel/gettext + X? ( virtual/imagemagick-tools[png,tiff] ) +" + +PATCHES=( + # >=x11-libs/wxGTK-3.0.2.0-r3 has webview removed, bug 587462 + "${FILESDIR}"/fix_webview.patch + # fix sandboxing tools installation + "${FILESDIR}"/0001-Install-switcher-tool-to-FHS-directory.patch + "${FILESDIR}"/0002-Install-missing-tool-for-sandboxing.patch + "${FILESDIR}"/0003-Add-missing-config.h-include-in-setprojectgrp.cpp.patch +) + +S="${WORKDIR}/${PN}-client_release-${MY_PV}-${PV}" + +pkg_setup() { + # Bug 578750 + if use kernel_linux; then + linux-info_pkg_setup + if ! linux_config_exists; then + ewarn "Can't check the linux kernel configuration." + ewarn "You might be missing vsyscall support." + elif kernel_is -ge 4 4 \ + && linux_chkconfig_present LEGACY_VSYSCALL_NONE; then + ewarn "You do not have vsyscall emulation enabled." + ewarn "This will prevent some boinc projects from running." + ewarn "Please enable vsyscall emulation:" + ewarn " CONFIG_LEGACY_VSYSCALL_EMULATE=y" + ewarn "in /usr/src/linux/.config, to be found at" + ewarn " Processor type and features --->" + ewarn " vsyscall table for legacy applications (None) --->" + ewarn " (X) Emulate" + ewarn "Alternatively, you can enable CONFIG_LEGACY_VSYSCALL_NATIVE." + ewarn "However, this has security implications and is not recommended." + fi + fi +} + +src_prepare() { + default + + # prevent bad changes in compile flags, bug 286701 + sed -i -e "s:BOINC_SET_COMPILE_FLAGS::" configure.ac || die "sed failed" + + # fix systemd unit installation path + sed -i -e "s:usr/lib:lib:" client/scripts/Makefile.am || die + + eautoreconf + + use X && need-wxwidgets unicode +} + +src_configure() { + # TODO Xss is automagic on --enable-client. + econf --disable-server \ + --enable-client \ + --enable-dynamic-client-linkage \ + --disable-static \ + --enable-unicode \ + --with-ssl \ + $(use_with X x) \ + $(use_enable X manager) \ + $(usex X --with-wx-config="${WX_CONFIG}" --without-wxdir) +} + +src_install() { + default + + keepdir /var/lib/${PN} + + if use X; then + # Create new icons. bug 593362 + local s SIZES=(16 22 24 32 36 48 64 72 96 128 192 256) + for s in "${SIZES[@]}"; do + convert "${DISTDIR}"/${PN}.tif -resize ${s}x${s} "${WORKDIR}"/boinc_${s}.png || die + newicon -s $s "${WORKDIR}"/boinc_${s}.png boinc.png + done + make_desktop_entry boincmgr "${PN}" "${PN}" "Math;Science" "Path=/var/lib/${PN}" + + # Rename the desktop file to boincmgr.desktop to (hot)fix bug 599910 + mv "${ED%/}"/usr/share/applications/boincmgr{-${PN},}.desktop || \ + die "Failed to rename desktop file" + fi + + # cleanup cruft + rm -r "${ED%/}"/etc || die "rm failed" + find "${D}" -name '*.la' -delete || die "Removing .la files failed" + + sed -e "s/@libdir@/$(get_libdir)/" "${FILESDIR}"/${PN}.init.in > ${PN}.init || die + newinitd ${PN}.init ${PN} + newconfd "${FILESDIR}"/${PN}.conf ${PN} + + # Give X access to boinc for idle detection + exeinto /etc/X11/xinit/xinitrc.d + newexe "${FILESDIR}"/90-boincxss 90-boincxss +} + +pkg_preinst() { + enewgroup ${PN} + # note this works only for first install so we have to + # elog user about the need of being in video group + local groups="${PN}" + if use cuda; then + groups+=",video" + fi + enewuser ${PN} -1 -1 /var/lib/${PN} "${groups}" +} + +pkg_postinst() { + if use X; then + gnome2_icon_cache_update + fi + + elog + elog "You are using the source compiled version of boinc." + use X && elog "The graphical manager can be found at /usr/bin/boincmgr" + elog + elog "You need to attach to a project to do anything useful with boinc." + elog "You can do this by running /etc/init.d/boinc attach" + elog "The howto for configuration is located at:" + elog "http://boinc.berkeley.edu/wiki/Anonymous_platform" + elog + # Add warning about the new password for the client, bug 121896. + if use X; then + elog "If you need to use the graphical manager the password is in:" + elog "/var/lib/boinc/gui_rpc_auth.cfg" + elog "Where /var/lib/ is default RUNTIMEDIR, that can be changed in:" + elog "/etc/conf.d/boinc" + elog "You should change this password to something more memorable (can be even blank)." + elog "Remember to launch init script before using manager. Or changing the password." + elog + fi + if use cuda; then + elog "To be able to use CUDA you should add boinc user to video group." + elog "Run as root:" + elog "gpasswd -a boinc video" + elog + fi + # Add information about BOINC supporting OpenCL + elog "BOINC supports OpenCL. To use it you have to eselect" + if use cuda; then + elog "nvidia as the OpenCL implementation, as you are using CUDA." + else + elog "the correct OpenCL implementation for your graphic card." + fi + elog +} + +pkg_postrm() { + if use X; then + gnome2_icon_cache_update + fi +} diff --git a/sci-misc/boinc/boinc-7.14.2.ebuild b/sci-misc/boinc/boinc-7.14.2.ebuild deleted file mode 100644 index 9ee5036..0000000 --- a/sci-misc/boinc/boinc-7.14.2.ebuild +++ /dev/null @@ -1,200 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -WX_GTK_VER=3.0-gtk3 - -inherit autotools desktop eapi7-ver gnome2-utils linux-info user wxwidgets - -MY_PV=$(ver_cut 1-2) - -DESCRIPTION="The Berkeley Open Infrastructure for Network Computing" -HOMEPAGE="http://boinc.ssl.berkeley.edu/" -SRC_URI="https://github.com/BOINC/boinc/archive/client_release/${MY_PV}/${PV}.tar.gz -> ${P}.tar.gz - X? ( https://boinc.berkeley.edu/logo/boinc_glossy2_512_F.tif -> ${PN}.tif )" -RESTRICT="mirror" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="X cuda curl_ssl_gnutls curl_ssl_libressl +curl_ssl_openssl" - -REQUIRED_USE="^^ ( curl_ssl_gnutls curl_ssl_libressl curl_ssl_openssl ) " - -# libcurl must not be using an ssl backend boinc does not support. -# If the libcurl ssl backend changes, boinc should be recompiled. -RDEPEND=" - >=app-misc/ca-certificates-20080809 - cuda? ( - >=dev-util/nvidia-cuda-toolkit-2.1 - >=x11-drivers/nvidia-drivers-180.22 - ) - net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_libressl(-)=,-curl_ssl_nss(-),curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)] - sys-apps/util-linux - sys-libs/zlib - X? ( - dev-db/sqlite:3 - media-libs/freeglut - virtual/jpeg:0= - x11-libs/gtk+:3 - >=x11-libs/libnotify-0.7 - x11-libs/wxGTK:${WX_GTK_VER}[X,opengl,webkit] - ) -" -DEPEND="${RDEPEND} - app-text/docbook-xml-dtd:4.4 - app-text/docbook2X - sys-devel/gettext - X? ( virtual/imagemagick-tools[png,tiff] ) -" - -PATCHES=( - # >=x11-libs/wxGTK-3.0.2.0-r3 has webview removed, bug 587462 - "${FILESDIR}"/fix_webview.patch - # fix sandboxing tools installation - "${FILESDIR}"/0001-Install-switcher-tool-to-FHS-directory.patch - "${FILESDIR}"/0002-Install-missing-tool-for-sandboxing.patch - "${FILESDIR}"/0003-Add-missing-config.h-include-in-setprojectgrp.cpp.patch -) - -S="${WORKDIR}/${PN}-client_release-${MY_PV}-${PV}" - -pkg_setup() { - # Bug 578750 - if use kernel_linux; then - linux-info_pkg_setup - if ! linux_config_exists; then - ewarn "Can't check the linux kernel configuration." - ewarn "You might be missing vsyscall support." - elif kernel_is -ge 4 4 \ - && linux_chkconfig_present LEGACY_VSYSCALL_NONE; then - ewarn "You do not have vsyscall emulation enabled." - ewarn "This will prevent some boinc projects from running." - ewarn "Please enable vsyscall emulation:" - ewarn " CONFIG_LEGACY_VSYSCALL_EMULATE=y" - ewarn "in /usr/src/linux/.config, to be found at" - ewarn " Processor type and features --->" - ewarn " vsyscall table for legacy applications (None) --->" - ewarn " (X) Emulate" - ewarn "Alternatively, you can enable CONFIG_LEGACY_VSYSCALL_NATIVE." - ewarn "However, this has security implications and is not recommended." - fi - fi -} - -src_prepare() { - default - - # prevent bad changes in compile flags, bug 286701 - sed -i -e "s:BOINC_SET_COMPILE_FLAGS::" configure.ac || die "sed failed" - - # fix systemd unit installation path - sed -i -e "s:usr/lib:lib:" client/scripts/Makefile.am || die - - eautoreconf - - use X && need-wxwidgets unicode -} - -src_configure() { - # TODO Xss is automagic on --enable-client. - econf --disable-server \ - --enable-client \ - --enable-dynamic-client-linkage \ - --disable-static \ - --enable-unicode \ - --with-ssl \ - $(use_with X x) \ - $(use_enable X manager) \ - $(usex X --with-wx-config="${WX_CONFIG}" --without-wxdir) -} - -src_install() { - default - - keepdir /var/lib/${PN} - - if use X; then - # Create new icons. bug 593362 - local s SIZES=(16 22 24 32 36 48 64 72 96 128 192 256) - for s in "${SIZES[@]}"; do - convert "${DISTDIR}"/${PN}.tif -resize ${s}x${s} "${WORKDIR}"/boinc_${s}.png || die - newicon -s $s "${WORKDIR}"/boinc_${s}.png boinc.png - done - make_desktop_entry boincmgr "${PN}" "${PN}" "Math;Science" "Path=/var/lib/${PN}" - - # Rename the desktop file to boincmgr.desktop to (hot)fix bug 599910 - mv "${ED%/}"/usr/share/applications/boincmgr{-${PN},}.desktop || \ - die "Failed to rename desktop file" - fi - - # cleanup cruft - rm -r "${ED%/}"/etc || die "rm failed" - find "${D}" -name '*.la' -delete || die "Removing .la files failed" - - sed -e "s/@libdir@/$(get_libdir)/" "${FILESDIR}"/${PN}.init.in > ${PN}.init || die - newinitd ${PN}.init ${PN} - newconfd "${FILESDIR}"/${PN}.conf ${PN} - - # Give X access to boinc for idle detection - exeinto /etc/X11/xinit/xinitrc.d - newexe "${FILESDIR}"/90-boincxss 90-boincxss -} - -pkg_preinst() { - enewgroup ${PN} - # note this works only for first install so we have to - # elog user about the need of being in video group - local groups="${PN}" - if use cuda; then - groups+=",video" - fi - enewuser ${PN} -1 -1 /var/lib/${PN} "${groups}" -} - -pkg_postinst() { - if use X; then - gnome2_icon_cache_update - fi - - elog - elog "You are using the source compiled version of boinc." - use X && elog "The graphical manager can be found at /usr/bin/boincmgr" - elog - elog "You need to attach to a project to do anything useful with boinc." - elog "You can do this by running /etc/init.d/boinc attach" - elog "The howto for configuration is located at:" - elog "http://boinc.berkeley.edu/wiki/Anonymous_platform" - elog - # Add warning about the new password for the client, bug 121896. - if use X; then - elog "If you need to use the graphical manager the password is in:" - elog "/var/lib/boinc/gui_rpc_auth.cfg" - elog "Where /var/lib/ is default RUNTIMEDIR, that can be changed in:" - elog "/etc/conf.d/boinc" - elog "You should change this password to something more memorable (can be even blank)." - elog "Remember to launch init script before using manager. Or changing the password." - elog - fi - if use cuda; then - elog "To be able to use CUDA you should add boinc user to video group." - elog "Run as root:" - elog "gpasswd -a boinc video" - elog - fi - # Add information about BOINC supporting OpenCL - elog "BOINC supports OpenCL. To use it you have to eselect" - if use cuda; then - elog "nvidia as the OpenCL implementation, as you are using CUDA." - else - elog "the correct OpenCL implementation for your graphic card." - fi - elog -} - -pkg_postrm() { - if use X; then - gnome2_icon_cache_update - fi -} diff --git a/sci-misc/boinc/files/0001-Install-switcher-tool-to-FHS-directory.patch b/sci-misc/boinc/files/0001-Install-switcher-tool-to-FHS-directory.patch index 456b804..4740bf0 100644 --- a/sci-misc/boinc/files/0001-Install-switcher-tool-to-FHS-directory.patch +++ b/sci-misc/boinc/files/0001-Install-switcher-tool-to-FHS-directory.patch @@ -1,60 +1,92 @@ -From 3746e1367fe5dc430c431b349ed6a40ee7156e74 Mon Sep 17 00:00:00 2001 +From 21b61a4f470338ae55e0683effa20482140c7965 Mon Sep 17 00:00:00 2001 From: Gilles Dartiguelongue Date: Thu, 4 Oct 2018 10:30:03 +0200 Subject: [PATCH 1/3] Install switcher tool to FHS directory --- - client/Makefile.am | 2 +- - client/{file_names.h => file_names.h.in} | 2 +- - configure.ac | 1 + - 3 files changed, 3 insertions(+), 2 deletions(-) - rename client/{file_names.h => file_names.h.in} (98%) + client/Makefile.am | 14 ++++++++++++-- + client/file_names.h | 4 ++++ + client/file_names_unix.h.in | 23 +++++++++++++++++++++++ + 3 files changed, 39 insertions(+), 2 deletions(-) + create mode 100644 client/file_names_unix.h.in diff --git a/client/Makefile.am b/client/Makefile.am -index f39c45f..0fb91d3 100644 +index f39c45fe60..5cff108abb 100644 --- a/client/Makefile.am +++ b/client/Makefile.am -@@ -24,7 +24,15 @@ endif +@@ -24,7 +24,7 @@ endif bin_PROGRAMS = boinc_client boinccmd if !OS_WIN32 -bin_PROGRAMS += switcher +pkglibexec_PROGRAMS = switcher endif - + + boinccmd_SOURCES = boinc_cmd.cpp +@@ -106,7 +106,17 @@ else + if OS_DARWIN + boinc_client_LDFLAGS += -Wl,-flat_namespace,-undefined,dynamic_lookup + else +-boinc_client_SOURCES += hostinfo_unix.cpp ++boinc_client_SOURCES += \ ++ hostinfo_unix.cpp \ ++ file_names_unix.h ++ +edit = $(SED) -e 's|@pkglibexecdir[@]|$(pkglibexecdir)|g' + -+file_names.h: file_names.h.in Makefile ++file_names_unix.h: file_names_unix.h.in Makefile + $(AM_V_GEN)$(edit) $@.in > $@ + -+BUILT_SOURCES = file_names.h -+CLEANFILES = file_names.h -+ - boinccmd_SOURCES = boinc_cmd.cpp -@@ -67,6 +67,7 @@ boinc_client_SOURCES = \ - current_version.cpp \ - dhrystone.cpp \ - dhrystone2.cpp \ -+ file_names.h \ - file_names.cpp \ - file_xfer.cpp \ - gpu_amd.cpp \ -diff --git a/client/file_names.h b/client/file_name.h.in -similarity index 98% -rename from client/file_names.h -rename to client/file_name.h.in -index 37f9b29..67874e5 100644 ++BUILT_SOURCES = file_names_unix.h ++CLEANFILES = file_names_unix.h + endif + endif + boinc_client_LDADD = $(LIBBOINC) $(LIBBOINC_CRYPT) $(BOINC_EXTRA_LIBS) $(PTHREAD_LIBS) +diff --git a/client/file_names.h b/client/file_names.h +index 37f9b29466..3506908067 100644 --- a/client/file_names.h -+++ b/client/file_names.h.in -@@ -97,7 +97,7 @@ extern void send_log_after(const char* filename, double t, MIOFILE& mf); ++++ b/client/file_names.h +@@ -97,7 +97,11 @@ extern void send_log_after(const char* filename, double t, MIOFILE& mf); #define STATE_FILE_PREV "client_state_prev.xml" #define STDERR_FILE_NAME "stderr.txt" #define STDOUT_FILE_NAME "stdout.txt" --#define SWITCHER_DIR "switcher" -+#define SWITCHER_DIR "@pkglibexecdir@" ++#if defined(_WIN32) || defined(__APPLE__) + #define SWITCHER_DIR "switcher" ++#else ++#include "file_names_unix.h" ++#endif #define SWITCHER_FILE_NAME "switcher" #define TASK_STATE_FILENAME "boinc_task_state.xml" #define TEMP_ACCT_FILE_NAME "temp_acct.xml" +diff --git a/client/file_names_unix.h.in b/client/file_names_unix.h.in +new file mode 100644 +index 0000000000..d29456af91 +--- /dev/null ++++ b/client/file_names_unix.h.in +@@ -0,0 +1,23 @@ ++// This file is part of BOINC. ++// http://boinc.berkeley.edu ++// Copyright (C) 2018 University of California ++// ++// BOINC is free software; you can redistribute it and/or modify it ++// under the terms of the GNU Lesser General Public License ++// as published by the Free Software Foundation, ++// either version 3 of the License, or (at your option) any later version. ++// ++// BOINC is distributed in the hope that it will be useful, ++// but WITHOUT ANY WARRANTY; without even the implied warranty of ++// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ++// See the GNU Lesser General Public License for more details. ++// ++// You should have received a copy of the GNU Lesser General Public License ++// along with BOINC. If not, see . ++ ++#ifndef BOINC_FILE_NAMES_UNIX_H ++#define BOINC_FILE_NAMES_UNIX_H ++ ++#define SWITCHER_DIR "@pkglibexecdir@" ++ ++#endif -- -2.18.0 +2.19.0 diff --git a/sci-misc/boinc/files/0002-Install-missing-tool-for-sandboxing.patch b/sci-misc/boinc/files/0002-Install-missing-tool-for-sandboxing.patch index fa05160..3b7946f 100644 --- a/sci-misc/boinc/files/0002-Install-missing-tool-for-sandboxing.patch +++ b/sci-misc/boinc/files/0002-Install-missing-tool-for-sandboxing.patch @@ -1,4 +1,4 @@ -From 6a337de43686989fe3db07aed3fd5317b9754a8a Mon Sep 17 00:00:00 2001 +From 92280b2b3450827efa280596fdda788b59cdf357 Mon Sep 17 00:00:00 2001 From: Gilles Dartiguelongue Date: Thu, 4 Oct 2018 10:31:42 +0200 Subject: [PATCH 2/3] Install missing tool for sandboxing @@ -8,7 +8,7 @@ Subject: [PATCH 2/3] Install missing tool for sandboxing 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/Makefile.am b/client/Makefile.am -index 0fb91d3..06b48df 100644 +index 5cff108abb..6cfc3c4538 100644 --- a/client/Makefile.am +++ b/client/Makefile.am @@ -24,7 +24,7 @@ endif @@ -20,7 +20,7 @@ index 0fb91d3..06b48df 100644 endif boinccmd_SOURCES = boinc_cmd.cpp -@@ -127,6 +127,10 @@ switcher_SOURCES = switcher.cpp +@@ -137,6 +137,10 @@ switcher_SOURCES = switcher.cpp switcher_LDFLAGS = $(AM_LDFLAGS) -L../lib switcher_LDADD = $(LIBBOINC) @@ -32,5 +32,5 @@ index 0fb91d3..06b48df 100644 ## to both be installed properly. The next two rules do that... all-local: boinc$(EXEEXT) -- -2.18.0 +2.19.0 diff --git a/sci-misc/boinc/files/0003-Add-missing-config.h-include-in-setprojectgrp.cpp.patch b/sci-misc/boinc/files/0003-Add-missing-config.h-include-in-setprojectgrp.cpp.patch index 29fd579..4e556d0 100644 --- a/sci-misc/boinc/files/0003-Add-missing-config.h-include-in-setprojectgrp.cpp.patch +++ b/sci-misc/boinc/files/0003-Add-missing-config.h-include-in-setprojectgrp.cpp.patch @@ -1,4 +1,4 @@ -From 5b979fa7f75557b7e246a58290f70601e31db9b9 Mon Sep 17 00:00:00 2001 +From 0faa1ca286eea4f4844abe05f5cf25d80999f836 Mon Sep 17 00:00:00 2001 From: Gilles Dartiguelongue Date: Thu, 4 Oct 2018 11:13:35 +0200 Subject: [PATCH 3/3] Add missing config.h include in setprojectgrp.cpp @@ -8,7 +8,7 @@ Subject: [PATCH 3/3] Add missing config.h include in setprojectgrp.cpp 1 file changed, 2 insertions(+) diff --git a/client/setprojectgrp.cpp b/client/setprojectgrp.cpp -index 608410d..fcf64d2 100644 +index 608410dc00..fcf64d2055 100644 --- a/client/setprojectgrp.cpp +++ b/client/setprojectgrp.cpp @@ -23,6 +23,8 @@ @@ -21,5 +21,5 @@ index 608410d..fcf64d2 100644 #include #include -- -2.18.0 +2.19.0 -- cgit v1.2.3-65-gdbad