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 | |
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')
-rw-r--r-- | src/database/database.cpp | 2 | ||||
-rw-r--r-- | src/xmpp/biboumi_component.cpp | 2 |
2 files changed, 2 insertions, 2 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> diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp index 4a741f3..c810ce3 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -20,7 +20,7 @@ #include <louloulibs.h> #include <biboumi.h> -#include <uuid.h> +#include <uuid/uuid.h> #ifdef SYSTEMD_FOUND # include <systemd/sd-daemon.h> |