From: Donald Sharp Date: Wed, 3 Feb 2016 02:11:40 +0000 (-0500) Subject: config: Remove unused library check X-Git-Tag: frr-2.0-rc1~1142^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=ebe2d9cac87f5f687cd764836a6b93e90adc2cff;p=mirror%2Ffrr.git config: Remove unused library check configure.ac is looking for the setproctitle library, which while it might be useful, we never call setproctitle or any other function that the library might expose. Signed-off-by: Donald Sharp --- diff --git a/configure.ac b/configure.ac index e39cc71b10..578f5a2c0a 100755 --- a/configure.ac +++ b/configure.ac @@ -815,15 +815,6 @@ AC_CHECK_FUNCS([dup2 ftruncate getcwd gethostbyname getpagesize gettimeofday \ if_nametoindex if_indextoname getifaddrs \ uname fcntl]) -AC_CHECK_FUNCS(setproctitle, , - [AC_CHECK_LIB(util, setproctitle, - [LIBS="$LIBS -lutil" - AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle) - ] - ) - ] -) - dnl ------------------------------------ dnl Determine routing get and set method dnl ------------------------------------