diff options
author | Sumit Bose <sbose@redhat.com> | 2009-08-26 13:18:19 +0200 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-08-28 10:32:37 -0400 |
commit | 24ce67edf0e407c18310dacc972e0bd69d902522 (patch) | |
tree | dcad9f9a0f21971e750d439c7746cd6f135b74b7 | |
parent | 3293ff85f7ec70bf2e67f2538c03d2dec3298935 (diff) | |
download | sssd-24ce67edf0e407c18310dacc972e0bd69d902522.tar.gz sssd-24ce67edf0e407c18310dacc972e0bd69d902522.tar.xz sssd-24ce67edf0e407c18310dacc972e0bd69d902522.zip |
add configure check for errno_t
-rw-r--r-- | server/configure.ac | 2 | ||||
-rw-r--r-- | server/util/util.h | 5 | ||||
-rw-r--r-- | sss_client/configure.ac | 2 | ||||
-rw-r--r-- | sss_client/sss_cli.h | 5 |
4 files changed, 14 insertions, 0 deletions
diff --git a/server/configure.ac b/server/configure.ac index d42f07ecb..071ad070f 100644 --- a/server/configure.ac +++ b/server/configure.ac @@ -31,6 +31,8 @@ AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) AC_CHECK_HEADERS(stdint.h dlfcn.h) AC_CONFIG_HEADER(config.h) +AC_CHECK_TYPES([errno_t], [], [], [[#include <errno.h>]]) + m4_include([build_macros.m4]) BUILD_WITH_SHARED_BUILD_DIR diff --git a/server/util/util.h b/server/util/util.h index 879652924..f289f9c52 100644 --- a/server/util/util.h +++ b/server/util/util.h @@ -15,6 +15,11 @@ #include "tevent.h" #include "ldb.h" +#ifndef HAVE_ERRNO_T +#define HAVE_ERRNO_T +typedef int errno_t; +#endif + extern const char *debug_prg_name; extern int debug_level; extern int debug_timestamps; diff --git a/sss_client/configure.ac b/sss_client/configure.ac index df1664143..01c717de5 100644 --- a/sss_client/configure.ac +++ b/sss_client/configure.ac @@ -13,6 +13,8 @@ AM_GNU_GETTEXT_VERSION([0.14]) AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) +AC_CHECK_TYPES([errno_t], [], [], [[#include <errno.h>]]) + m4_pattern_allow([AM_SILENT_RULES]) AM_SILENT_RULES diff --git a/sss_client/sss_cli.h b/sss_client/sss_cli.h index f1ccba9f2..7e0d4dbdc 100644 --- a/sss_client/sss_cli.h +++ b/sss_client/sss_cli.h @@ -15,6 +15,11 @@ #include <pwd.h> #include <grp.h> +#ifndef HAVE_ERRNO_T +#define HAVE_ERRNO_T +typedef int errno_t; +#endif + #define SSS_NSS_PROTOCOL_VERSION 1 #define SSS_PAM_PROTOCOL_VERSION 2 |