diff options
author | louiz’ <louiz@louiz.org> | 2016-09-29 20:11:35 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-09-29 20:11:35 +0200 |
commit | 363a0bf02cf20592b2f9f034de1c5f54c8922b82 (patch) | |
tree | e4a424f245840139f88e291c53b24aadb4f74d83 /src/database | |
parent | 20a06c953f8f29229af44de13fb29215dccc9d60 (diff) | |
download | biboumi-363a0bf02cf20592b2f9f034de1c5f54c8922b82.tar.gz biboumi-363a0bf02cf20592b2f9f034de1c5f54c8922b82.tar.bz2 biboumi-363a0bf02cf20592b2f9f034de1c5f54c8922b82.tar.xz biboumi-363a0bf02cf20592b2f9f034de1c5f54c8922b82.zip |
Look for uuid/uuid.h instead of just uuid.h
Avoids a conflict between /usr/include/uuid.h and
/usr/local/include/uuid/uuid.h on freebsd
Diffstat (limited to 'src/database')
-rw-r--r-- | src/database/database.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/database.cpp b/src/database/database.cpp index e995d95..f7d309b 100644 --- a/src/database/database.cpp +++ b/src/database/database.cpp @@ -4,7 +4,7 @@ #include <database/database.hpp> #include <logger/logger.hpp> #include <irc/iid.hpp> -#include <uuid.h> +#include <uuid/uuid.h> #include <utils/get_first_non_empty.hpp> #include <utils/time.hpp> |