Parcourir la source

[master] change setproctitle configure check from error to warning

The setproctitle check in configure is not really used by build;
it only provides a suggestion for installation.

Some systems don't need it.

We could consider removing this check (ticket #587).

Discussed via jabber.
Jeremy C. Reed il y a 14 ans
Parent
commit
89ad5194eb
1 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 3 2
      configure.ac

+ 3 - 2
configure.ac

@@ -198,8 +198,9 @@ if test "$setproctitle_check" = "yes" ; then
         AC_MSG_RESULT(ok)
     else
         AC_MSG_RESULT(missing)
-        AC_MSG_ERROR([Missing setproctitle module. Either install it or provide --disable-setproctitle-check.
-In that case we will continue, but naming of python processes will not work.])
+        AC_MSG_WARN([Missing setproctitle python module.
+Use --disable-setproctitle-check to skip this check.
+In this case we will continue, but naming of python processes will not work.])
     fi
 fi