status
doesn't register
do you mean it really doesn't register or just doesn't show up properly on 0.7?cmake -DCLIENT=OFF -DMYSQL=ON ..
-- Could NOT find Notify (missing: NOTIFY_LIBRARIES NOTIFY_INCLUDE_DIRS)
-- Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY OPENGL_INCLUDE_DIR)
-DCLIENT=OFF
, right?CMake Error at CMakeLists.txt:433 (message):
You must install Python to compile DDNet
$ cmake -DCLIENT=OFF -DMYSQL=ON .. ~/src/ddnet/build
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Could NOT find Freetype (missing: FREETYPE_LIBRARY FREETYPE_INCLUDEDIR)
-- Could NOT find GLEW (missing: GLEW_INCLUDE_DIR GLEW_LIBRARY)
-- Could NOT find GTest (missing: GTEST_LIBRARY GTEST_INCLUDE_DIR GTEST_MAIN_LIBRARY)
-- Could NOT find Ogg (missing: OGG_INCLUDEDIR)
-- Could NOT find Opus (missing: OPUS_INCLUDEDIR)
-- Could NOT find Opusfile (missing: OPUSFILE_LIBRARY OPUSFILE_INCLUDEDIR)
-- Could NOT find PythonInterp: Found unsuitable version "2.7.16", but required is at least "3" (found /usr/bin/python)
-- Could NOT find SDL2 (missing: SDL2_LIBRARY SDL2_INCLUDEDIR)
-- ******** DDNet ********
-- Target OS: linux 64bit
-- Compiler: /usr/bin/c++
-- Build type: Release
-- Dependencies:
-- * Curl found
-- * Freetype not found
-- * Glew not found (using bundled version)
-- * GTest not found
-- * MySQL found
-- * Ogg not found
-- * OpenSSL Crypto found
-- * Opus not found
-- * Opusfile not found
-- * Pnglite not found (using bundled version)
-- * PythonInterp not found
-- * SDL2 not found
-- * Wavpack not found (using bundled version)
-- * Zlib found
CMake Error at CMakeLists.txt:433 (message):
You must install Python to compile DDNet
-- To run the tests, you have to install GTest
-- Could NOT find Notify (missing: NOTIFY_LIBRARIES NOTIFY_INCLUDE_DIRS)
-- Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY OPENGL_INCLUDE_DIR)
-- Configuring incomplete, errors occurred!
See also "/srv/tw/src/ddnet/build/CMakeFiles/CMakeOutput.log".
See also "/srv/tw/src/ddnet/build/CMakeFiles/CMakeError.log".
python3 --version
please?$ python3 --version
Python 3.7.3
m_SqlLock
beforehand, serializing writes and reads respectively.
Behavior change (even though I tried to minimize them):
sv_use_sql
is used to determine if mysql server should be added
return (CurrentTime - m_ZoomSmoothingStart) / (m_ZoomSmoothingEnd - m_ZoomSmoothingStart);
would be (Now - Now) / (Now - Now)
which is not only division by 0 but also 0/0