diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2019-02-03 13:45:25 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2019-02-03 13:45:25 +0100 |
commit | 8a749d44699853f1df894443065dbf794264c8fa (patch) | |
tree | aa16d35decdd498b9db59d8d0d2a875734848b72 | |
parent | f0725f2db0e34488f5f269cdb442c50458263cf6 (diff) | |
download | blogc-8a749d44699853f1df894443065dbf794264c8fa.tar.gz blogc-8a749d44699853f1df894443065dbf794264c8fa.tar.bz2 blogc-8a749d44699853f1df894443065dbf794264c8fa.zip |
blogc: unistd.h wont provide gethostname
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | src/blogc/sysinfo.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 761e37a..865f247 100644 --- a/configure.ac +++ b/configure.ac @@ -221,6 +221,7 @@ BASH="$ac_cv_path_bash" AC_SUBST(BASH) AC_CHECK_HEADERS([sys/resource.h sys/stat.h sys/time.h sys/wait.h time.h unistd.h]) +AC_CHECK_FUNCS([gethostname]) LT_LIB_M diff --git a/src/blogc/sysinfo.h b/src/blogc/sysinfo.h index 51640e0..0104911 100644 --- a/src/blogc/sysinfo.h +++ b/src/blogc/sysinfo.h @@ -14,7 +14,9 @@ #endif /* HAVE_CONFIG_H */ #ifdef HAVE_UNISTD_H +#ifdef HAVE_GETHOSTNAME #define HAVE_SYSINFO_HOSTNAME 1 +#endif /* HAVE_GETHOSTNAME */ #endif /* HAVE_UNISTD_H */ #include "../common/utils.h" |