diff options
author | Michael Olbrich <m.olbrich@pengutronix.de> | 2012-10-09 14:58:51 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-10-16 01:30:29 +0200 |
commit | 9388e99e208a6487b26dcbda86005ee9eba8d93d (patch) | |
tree | 105f5bf161f868d8e0870e3b16b8968406e768ad /src | |
parent | 7e505069d2eac61406cb0e7a9e5ef54a3c1ec38d (diff) |
build-sys: check for name_to_handle_at declaration instead of its definition
AC_CHECK_FUNCS may be successful, even though name_to_handle_at and
'struct file_handle' are not available.
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/missing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/missing.h b/src/shared/missing.h index 14abe4ee2e..1a31066032 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -218,7 +218,7 @@ static inline pid_t gettid(void) { # endif #endif -#ifndef HAVE_NAME_TO_HANDLE_AT +#if !HAVE_DECL_NAME_TO_HANDLE_AT struct file_handle { unsigned int handle_bytes; int handle_type; |