Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 04 Jan 2015 13:50:54 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 195743] print/cups-base: undefined reference to `avahi_XXX`
Message-ID:  <bug-195743-13-4Yhx9QVsSf@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-195743-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-195743-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195743

--- Comment #12 from commit-hook@freebsd.org ---
A commit references this bug:

Author: bsam
Date: Sun Jan  4 13:50:42 UTC 2015
New revision: 376233
URL: https://svnweb.freebsd.org/changeset/ports/376233

Log:
  print/cups-client via print/cups-base: treat avahi/dnssd explicitely

  1. The port's configure script is auto-detecting if avahi exists
  (unless avahi is explicitely disabled):
  ---
     9096 if test "x$PKGCONFIG" != x -a x$enable_avahi != xno; then
     9097         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Avahi"
>&5
     9098 $as_echo_n "checking for Avahi... " >&6; }
     9099         if $PKGCONFIG --exists avahi-client; then
     9100                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes"
>&5
     9101 $as_echo "yes" >&6; }
  ---

  So if avahi-lib is installed one get config.log:
  ---
  configure:9097: checking for Avahi
  configure:9100: result: yes
  [...]
  #define HAVE_AVAHI 1
  ---

  And later avahi is used while building:
  ---
  Using LIBS=-lcups  -lssl -lcrypto -L/usr/local/lib -lavahi-common
-lavahi-client   -lz -pthread -lm -lcrypt   -lz
  ---

  Then print/cups-client installs libraries which are linked with avahi, ex.:
  ---
  % ldd libcups.so | grep avahi
          libavahi-common.so.3 => /usr/local/lib/libavahi-common.so.3
(0x801cda000)
          libavahi-client.so.3 => /usr/local/lib/libavahi-client.so.3
(0x801ee6000)
  ---

  Which leads to print/cups-base build failure (even if avahi is unset by
options):
  ---
  Linking ippserver...
  cc -L../cgi-bin -L../cups -L../filter -L../ppdc -L../scheduler
-L/usr/local/lib -Wl,-rpath,/usr/lib:/usr/local/lib -fstack-protector
-Wl,-R/usr/local/lib   -Wall -Wno-format-y2k -Wunused -fPIC -Os -g
-fstack-protector -Wno-tautological-compare -o ippserver ippserver.o 
../cups/libcups.a \
           -lssl -lcrypto -ldns_sd -pthread -lm -lcrypt   -lz -lz
  ../cups/libcups.a(http-support.o): In function `_httpResolveURI':
  ---

  Let's reflect this fact.

  2. Bump PORTREVISION for print/cups-client, it's default options and
dependencies
  were changed.

  PR:        ports/195743
  Submitted by:    O. Hartmann <ohartman@zedat.fu-berlin.de>
  Discussed at:    ports@
  Tested by:    O. Hartmann <ohartman@zedat.fu-berlin.de>

Changes:
  head/print/cups-base/Makefile

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-195743-13-4Yhx9QVsSf>