Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to enable compilation to work on openSUSE Linux #34

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ifndef VERBOSE
co := @
endif

c_opts := -DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_TRACE
c_opts := -DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_TRACE `pkg-config --cflags spdlog`

ifdef DEBUG
c_opts += -g
Expand Down
3 changes: 3 additions & 0 deletions src/LSST/cRIO/CSC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
#include <pwd.h>
#include <csignal>

#include <unistd.h>
#include <fcntl.h>

#include <spdlog/async.h>
#include <spdlog/spdlog.h>
#include <spdlog/sinks/daily_file_sink.h>
Expand Down
2 changes: 2 additions & 0 deletions src/LSST/cRIO/CliApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
#include <cmath>
#include <csignal>

#include <sys/stat.h>

#include <readline/readline.h>
#include <readline/history.h>

Expand Down
3 changes: 2 additions & 1 deletion src/LSST/cRIO/Settings/Path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
*/

#include <spdlog/spdlog.h>

#include <cRIO/Settings/Path.h>
#include <sys/stat.h>
#include <unistd.h>

using namespace LSST::cRIO::Settings;

Expand Down