This repository was archived by the owner on Dec 1, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1010#pragma once
1111
1212#if !defined(AEGIS_VERSION_LONG)
13- #define AEGIS_VERSION_LONG 0x00020500
14- #define AEGIS_VERSION_SHORT 020500
15- #define AEGIS_VERSION_TEXT " aegis.cpp 2.5 .0 2019/11/21 "
13+ #define AEGIS_VERSION_LONG 0x00020600
14+ #define AEGIS_VERSION_SHORT 020600
15+ #define AEGIS_VERSION_TEXT " aegis.cpp 2.6 .0 2020/08/02 "
1616
1717#define AEGIS_VERSION_MAJOR ((AEGIS_VERSION_LONG & 0x00ff0000 ) >> 16 )
1818#define AEGIS_VERSION_MINOR ((AEGIS_VERSION_LONG & 0x0000ff00 ) >> 8 )
Original file line number Diff line number Diff line change 44
55echo " This install script only works with GCC at the moment. Support for other compilers may come later."
66
7- if [ -z $CXX ]; then echo " CXX not set. Defaulting to GCC." ; CXX=gcc ; else echo " CXX set to '$CXX '" ; fi
7+ if [ -z $CXX ]; then echo " CXX not set. Defaulting to GCC." ; CXX=g++ ; else echo " CXX set to '$CXX '" ; fi
88
99
1010currentver=" $( ${CXX} -dumpversion) "
4040if [ ! \( -f " /usr/local/include/spdlog/spdlog.h" -a -f " /usr/include/spdlog/spdlog.h" \) ]; then
4141 echo " Spdlog not found."
4242 echo " Configuring Spdlog."
43- (cd lib/spdlog && mkdir -p build && cd build && cmake -DSPDLOG_BUILD_TESTING =OFF .. && make install)
43+ (cd lib/spdlog && mkdir -p build && cd build && cmake -DSPDLOG_BUILD_TESTS =OFF .. && make install)
4444fi
4545
4646if [ ! \( -f " /usr/local/include/websocketpp/version.hpp" -a -f " /usr/include/websocketpp/version.hpp" \) ]; then
You can’t perform that action at this time.
0 commit comments