From: Kern Sibbald Date: Sun, 18 Jun 2017 16:47:55 +0000 (+0200) Subject: Detect Solaris 10 X-Git-Tag: Release-9.0.0~31 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d552e103c38421915bc03044bb346535f4123672;p=bacula%2Fbacula Detect Solaris 10 --- diff --git a/bacula/autoconf/config.h.in b/bacula/autoconf/config.h.in index 21e1fa0a23..60cbb30e45 100644 --- a/bacula/autoconf/config.h.in +++ b/bacula/autoconf/config.h.in @@ -794,6 +794,9 @@ /* Set if socklen_t exists */ #undef HAVE_SOCKLEN_T +/* Set if building on Solaris 10 */ +#undef HAVE_SOLARIS10 + /* Set if you have an SQLite3 Database */ #undef HAVE_SQLITE3 diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index f78bedc8e7..6d13a4c41b 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -3269,6 +3269,9 @@ solaris) 5.7|5.8) AC_DEFINE(USE_THR_SETCONCURRENCY) ;; + 5.10) + AC_DEFINE(HAVE_SOLARIS10, 1, [Set if building on Solaris 10]) + ;; *) ;; esac