Index: third_party/libxml/src/testRelax.c |
diff --git a/third_party/libxml/src/testRelax.c b/third_party/libxml/src/testRelax.c |
index e18b3c2f36a55394ae256990968733e33497830e..8e94a7a819432537cc157b33e477fbc55d1dd881 100644 |
--- a/third_party/libxml/src/testRelax.c |
+++ b/third_party/libxml/src/testRelax.c |
@@ -49,7 +49,7 @@ static int debug = 0; |
#endif |
static int noout = 0; |
static int tree = 0; |
-#ifdef HAVE_SYS_MMAN_H |
+#ifdef HAVE_MMAP |
static int memory = 0; |
#endif |
@@ -65,7 +65,7 @@ int main(int argc, char **argv) { |
debug++; |
else |
#endif |
-#ifdef HAVE_SYS_MMAN_H |
+#ifdef HAVE_MMAP |
if ((!strcmp(argv[i], "-memory")) || (!strcmp(argv[i], "--memory"))) { |
memory++; |
} else |
@@ -84,12 +84,12 @@ int main(int argc, char **argv) { |
if (schema == NULL) { |
xmlRelaxNGParserCtxtPtr ctxt; |
-#ifdef HAVE_SYS_MMAN_H |
+#ifdef HAVE_MMAP |
if (memory) { |
int fd; |
struct stat info; |
const char *base; |
- if (stat(argv[i], &info) < 0) |
+ if (stat(argv[i], &info) < 0) |
break; |
if ((fd = open(argv[i], O_RDONLY)) < 0) |
break; |
@@ -174,7 +174,7 @@ int main(int argc, char **argv) { |
#endif |
printf("\t--noout : do not print the result\n"); |
printf("\t--tree : print the intermediate Relax-NG document tree\n"); |
-#ifdef HAVE_SYS_MMAN_H |
+#ifdef HAVE_MMAP |
printf("\t--memory : test the schemas in memory parsing\n"); |
#endif |
} |