1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-17 15:19:48 +00:00

Buildfix when blkid.h is not available.

This commit is contained in:
King_DuckZ 2015-12-08 16:13:36 +00:00
parent 2cdf0cb3b9
commit 3a4c11ad4c

View file

@ -22,7 +22,9 @@
#include <fstream>
#include <boost/tokenizer.hpp>
#include <ciso646>
#include <blkid/blkid.h>
#if defined(WITH_MEDIA_AUTODETECT)
# include <blkid/blkid.h>
#endif
#include <linux/limits.h>
#include <sys/stat.h>
#include <memory>