Thomas Kemmer
Thomas Kemmer
`install_name_tool` does not seem to like `@executable_path` any longer. ``` CPack: Create package using DragNDrop CPack: Install projects CPack: - Run preinstall target for: BALL CPack: - Install project: BALL...
The shortcut handling of BALLView should be limited to the widget that is currently focused (at least for some shortcuts). Especially high-impact shortcuts like `Del`, `Space`, or even `Ctrl+{C,V,X}` often...
Project files include a copy of the BALLView INI file, which will be restored when loading, overriding all existing user settings present in the (potentially stale) copy. In addition to...
On Windows 10/MSVC 14, package creation fails when certain (optional) components have not been built: ``` CPack: Create package CPack Error: Problem running NSIS command: "C:/Program Files (x86)/NSIS/makensis.exe" "C:/Users/admin/git/ball/build15/_CPack_Packages/win64/NSIS/project.nsi" Please...
SunRPC has been removed from glibc 2.26+. Thus, `rpc/types.h` and `rpc/xdr.h` are no longer provided by the library. I guess we should just switch to libtirpc and adapt the FindXDR...
On macOS, the configuration script ignores additional compiler flags when performing C++ compilation checks, caused explicitly by: https://github.com/BALL-Project/ball/blob/c66bb528461e9e3a772a3be8223eb0f560fba7b9/cmake/BALLConfiguration.cmake#L104-L107 This behavior results in some C++11 language features being disabled on macOS...
`DisplayProperties::rep_` is used as a temporary for both owning (via [1]) and non-owning (via [2]) raw pointers, leaking memory in the first case. [1] https://github.com/BALL-Project/ball/blob/4ee4f0a671a2bf58511f39df9549f732d1c9a532/source/VIEW/DIALOGS/displayProperties.C#L526 [2] https://github.com/BALL-Project/ball/blob/4ee4f0a671a2bf58511f39df9549f732d1c9a532/source/VIEW/DIALOGS/displayProperties.C#L190 ``` Direct leak...
This can lead to segfaults. Steps to reproduce: * Open structure * Open associated trajectory * Remove structure * Visualize trajectory (-> segfault)
From #573: > Cmake does not use contrib sip, but that one that was installed with python (e.g. when using anaconda) -- does it find the contrib sip? On systems...
`void Spectrum::computeAllMoments(int moment_number)` in `NMR/spectrum.iC` is completely commented out since b499647630698062fe4cb729a0d1fb5f4f164dde. Any plans on this being fixed or may the code be removed?