On Wed, Sep 3, 2014 at 2:43 AM, Bernhard Voelker <mail@bernhard-voelker.de> wrote:
From your build log:
[ 157s] checking for logger... no [ 157s] configure: error: logger not found
I'm far from being an expert on this, and I don't know twilio-utils, but why would a package need a logger at *build time*?
This is a very common portability trick: locate a utility via AC_PATH_PROG() at build time, instead of making non-portable assumptions about its location that will only fail at runtime. logger(1) is a perfect example - e.g. it could be in /bin/logger or /usr/bin/logger, and in openSUSE it's in fact in both locations (with a symlink), but on other Linux systems... who knows?? Hence the use of AC_PATH_PROG() to find it at build time. -Archie -- Archie L. Cobbs -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org