diff options
author | Damien Miller <djm@mindrot.org> | 2019-07-10 09:43:19 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-07-10 09:43:19 +1000 |
commit | 8729498a5d239980a91d32f031b34e8c58c52f62 (patch) | |
tree | b0c395e6f2e0a5a3e44641a231ee115da6f79a78 | |
parent | 5b2b79ff7c057ee101518545727ed3023372891d (diff) |
fix typo that prevented detection of Linux VRF
Reported by hexiaowen AT huawei.com
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 532bdee83..958e99fd4 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -816,7 +816,7 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16)) | |||
816 | AC_DEFINE([SYS_RDOMAIN_LINUX], [1], | 816 | AC_DEFINE([SYS_RDOMAIN_LINUX], [1], |
817 | [Support routing domains using Linux VRF]), [], [ | 817 | [Support routing domains using Linux VRF]), [], [ |
818 | #ifdef HAVE_SYS_TYPES_H | 818 | #ifdef HAVE_SYS_TYPES_H |
819 | # include <sys/types.H> | 819 | # include <sys/types.h> |
820 | #endif | 820 | #endif |
821 | ]) | 821 | ]) |
822 | AC_CHECK_HEADERS([linux/seccomp.h linux/filter.h linux/audit.h], [], | 822 | AC_CHECK_HEADERS([linux/seccomp.h linux/filter.h linux/audit.h], [], |