Jean-Christophe Fillion-Robin
Jean-Christophe Fillion-Robin
Here are some relevant references: * https://github.com/Slicer/Slicer/issues/4081 and topic [4081-ensure-reference-are-up-to-date-on-import](https://github.com/jcfr/SlicerGitSVNArchive/commits/4081-ensure-reference-are-up-to-date-on-import) * https://github.com/Slicer/Slicer/issues/3462
Thanks for following up on this :100: :pray: I will start consolidating and reviewing shorty
After manually fetching your changes into `/tmp/test/Slicer` I tweaked my small script to work for existing checkout. It is currently building. ``` bash TEST_DIR=/tmp/test mkdir -p $TEST_DIR cd $TEST_DIR dir=docker-opengl-centos...
What about running the test with `-V` or even `-VV` ?
I rebased and re-organize the changes. I will add comment directly on each commit
A lot of the changes have been reviewed, fixed and integrated. Including support for Qt5. Remaining changes to review are the one in this PR
Few runtime issues: * failed to initialize the dataprobe module: `No Data Probe frame - cannot create DataProbe` * And few file that failed to be loaded in the translator:...
Possible approaches: 1. do not bundle OpenSSL in Linux packages 2. build OpenSSL without Kerberos 3. update OpenSSL @jcfr currently looking at approach (1)
### OpenSSL and Kerberos The OpenSSL libraries shipped (`1.1.1g`) within the latest stable release (`4.11.20210226`) are not build against Kerberos: ``` $ pwd /work/Stable/Slicer-1-build/Slicer-build/_CPack_Packages/linux-amd64/TGZ/Slicer-4.11.20210226-linux-amd64 $ ./Slicer --launch ldd lib/Slicer-4.11/libssl.so linux-vdso.so.1...
This approach doesn't seem to address the `failed opening file` error corresponding to the following code: ```cpp HANDLE hFile = CreateFile( newfn, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN, NULL...