diff options
author | Deng Zhengrong <dzrongg@gmail.com> | 2012-06-23 19:16:26 +0800 |
---|---|---|
committer | Arun Raghavan <arun.raghavan@collabora.co.uk> | 2012-07-03 17:42:51 +0530 |
commit | ea99b0fd2af1a79a2c7aa32fd982695867aef53a (patch) | |
tree | c741a993ef9894016da31fafb1257406edd093d0 | |
parent | f231859ca9b6ed3fa244dcfdc3b462fed2c071ce (diff) |
xen: add the HAVE_CONFIG_H macro guard
-rw-r--r-- | src/modules/xen/module-xenpv-sink.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/xen/module-xenpv-sink.c b/src/modules/xen/module-xenpv-sink.c index 086917c0..34e5fc49 100644 --- a/src/modules/xen/module-xenpv-sink.c +++ b/src/modules/xen/module-xenpv-sink.c @@ -20,7 +20,9 @@ USA. ***/ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <stdlib.h> #include <sys/stat.h> |