stefan pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=452048354d9a5103355085c049e0d200f1f632ee
commit 452048354d9a5103355085c049e0d200f1f632ee Author: Stefan Schmidt <[email protected]> Date: Tue Sep 9 10:40:33 2014 +0200 e_fm: Include config.h to know about HAVE_UDISKS_MOUNT We are checking for the various mount options here given by configure. -Wundef showed that we might not have the defines right so better include config.h here. --- src/bin/e_fm_shared_device.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/e_fm_shared_device.c b/src/bin/e_fm_shared_device.c index 25e45ce..a140f0d 100644 --- a/src/bin/e_fm_shared_device.c +++ b/src/bin/e_fm_shared_device.c @@ -1,3 +1,7 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "e_fm_shared_types.h" #include "e_fm_shared_device.h" --
