The print/cups-base does not respect the PTHREAD_LIBS. The cups-config has -lpthread in it. See example: ============================== # /usr/local/bin/cups-config --libs -lcups -L/usr/local/lib -lgnutls -L/usr/local/lib -ltasn1 -L/usr/local/lib -lgcrypt -L/usr/local/lib -lgpg-error -lz -lpthread -lm -lcrypt ============================== Fix: Patch: http://people.freebsd.org/~mezz/diff/cups-base.diff After apply this patch, now it has -pthread that looks like below. ============================== # /usr/local/bin/cups-config --libs -lcups -L/usr/local/lib -lgnutls -L/usr/local/lib -ltasn1 -L/usr/local/lib -lgcrypt -L/usr/local/lib -lgpg-error -lz -pthread -lm -lcrypt ==============================
Responsible Changed From-To: freebsd-ports-bugs->dinoex Over to maintainer
dinoex 2006-12-22 08:51:28 UTC FreeBSD ports repository Modified files: print/cups-base Makefile Log: - honor PTHREAD_LIBS Submitted by: Jeremy Messenger (maze) PR: 107050 - honor PTHREAD_CFLAGS - make portlint happper Revision Changes Path 1.60 +40 -39 ports/print/cups-base/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed committed, thanks.