Преглед на файлове

Solaris 11 detection is broken in configure

Fix for issue https://github.com/NagiosEnterprises/nrpe/issues/67

Was a problem for Solaris 11 and 10.
John C. Frickson преди 9 години
родител
ревизия
98e253de29
променени са 2 файла, в които са добавени 7 реда и са изтрити 1 реда
  1. 6 0
      Changelog
  2. 1 1
      configure.ac

+ 6 - 0
Changelog

@@ -2,6 +2,12 @@
 NRPE Changelog
 **************
 
+3.0.x - 2016-xx-xx
+------------------
+FIXES
+- Solaris 11 detection is broken in configure (John Frickson)
+
+
 3.0.1 - 2016-09-08
 ------------------
 FIXES

+ 1 - 1
configure.ac

@@ -60,7 +60,7 @@ AC_NAGIOS_GET_INETD
 AC_NAGIOS_GET_PATHS
 AC_NAGIOS_GET_FILES
 
-if test "$dist_type" = solaris -a "$dist_ver" != smf11; then
+if test "$dist_type" = solaris -a "$dist_ver" = 10; then
 	AC_DEFINE(SOLARIS_10,yes)
 fi