Date: Mon, 26 Aug 2013 18:02:43 +0200 From: "O. Hartmann" <ohartman@zedat.fu-berlin.de> To: Dimitry Andric <dim@FreeBSD.org> Cc: FreeBSD CURRENT <freebsd-current@freebsd.org>, FreeBSD Ports <freebsd-ports@freebsd.org> Subject: Re: print/cups: 10.0-CURRENT renders cups unusable / recompilation fails due to missing libiconv Message-ID: <20130826180243.67d1a9ca@thor.walstatt.dyndns.org> In-Reply-To: <F4D5BB48-B7C8-4D55-8DC3-A6A4D0622F31@FreeBSD.org> References: <20130826155412.3f92b44a@telesto> <F4D5BB48-B7C8-4D55-8DC3-A6A4D0622F31@FreeBSD.org>
index | next in thread | previous in thread | raw e-mail
[-- Attachment #1 --] On Mon, 26 Aug 2013 16:24:26 +0200 Dimitry Andric <dim@FreeBSD.org> wrote: [...] > > and furthermore, when I > > thought the cups binary might be out of sync with the environment, I > > tried to recompile the whole preint/cups installation, but this > > fails now in a close to EPICAL way not finding "libiconv" > > > > [...] > > cc -L../cgi-bin -L../cups -L../filter -L../ppdc -L../scheduler > > -L/usr/local/lib -Wl,-rpath=/usr/lib:/usr/local/lib > > -Wl,-R/usr/local/lib -Wall -Wno-format-y2k -Wunused -fPIC -Os -g > > -fstack-protector -Wno-tautological-compare -o bannertops > > bannertops.o pstext.o common.o -lcupsimage \ -lcups -lssl > > -lcrypto -lz -pthread -lcrypt -lm > > -lssp_nonshared ../cups/libcups.so: undefined reference to > > `libiconv' ../cups/libcups.so: undefined reference to > > `libiconv_close' ../cups/libcups.so: undefined reference to > > `libiconv_open' > > ... but maybe I can help here. This is due to iconv being enabled in > the base system, as I pointed out here: > > http://lists.freebsd.org/pipermail/freebsd-ports/2013-August/085459.html > > The easiest workaround for now is to force LDFLAGS to contain -liconv > in the port's Makefile, e.g.: > > Index: print/cups-base/Makefile > =================================================================== > --- print/cups-base/Makefile (revision 324846) > +++ print/cups-base/Makefile (working copy) > @@ -23,7 +23,7 @@ > GNU_CONFIGURE= yes > CFLAGS+= ${PTHREAD_CFLAGS} > CPPFLAGS+= -I${LOCALBASE}/include > -LDFLAGS+= -L${LOCALBASE}/lib > +LDFLAGS+= -L${LOCALBASE}/lib -liconv > DSOFLAGS= -Wl,-rpath,${PREFIX}/lib -L${PREFIX}/lib ${LDFLAGS} > CONFIGURE_ENV= DSOFLAGS="${DSOFLAGS}" > CONFIGURE_ARGS+= --localstatedir=/var \ > > -Dimitry > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to > "freebsd-current-unsubscribe@freebsd.org" Sorry, I missed the detailed explanation and how-to. Applying the add on th LDCONFIG solves the problem. Thank you very much Oliver [-- Attachment #2 --] -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.21 (FreeBSD) iQEcBAEBAgAGBQJSG3wjAAoJEOgBcD7A/5N8+BYH/iToGqRU9yIkCPiftO1KNLfJ 1dgs8cGu85QujxtN4pfKNDCtQQb0zV3OcR903iVqD5Y8HyNXbKFVvIzCDM39UZpz kT+BJRr2wLQPunGR5TTRc7x38PB+xRl4YamGDJPlPRqyQTzw3LJWuyl8uZ2e6Z68 sViSk30THz5mYJ3iml5sNWf1hS/5IjAhwaXu3btFkWh1ag00YQJHU5kwGrHikxYD 8SfUMz6Jee3FxEFACOGt1GnsTcAbI1IuwbNrpxo6JYeqr99k5C4NLmboF1/GOjPE /RJxKAbNI3qFqabeAVt+cjrUEa8cAcuABow5pOclS5F7bQM15B/SvT4z2OWQrC8= =npls -----END PGP SIGNATURE-----help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20130826180243.67d1a9ca>
