The uulib 0.5.13 port in /usr/ports/convertors/uulib fails to build if the user has specified compiler debugging that contains a debugging level such as -g3 due to how a sed(1) regex in configure and configure.in strip the debugging flag from /etc/make.conf CFLAGS variable. Fix: This may not be the correct way or even portable but it works for me: http://members.shaw.ca/cwasser/uulib-0.5.13_patch: How-To-Repeat: Specify -g# (such as 1,2,3..etc) in /etc/make.conf CFLAGS variable and try to build the port.
Responsible Changed From-To: freebsd-ports->hoek over to maintainer
State Changed From-To: open->closed Modified patch applied. Instead of making the sed expression do what the author wanted, I simply disabled it so that the port no longer changes ${CFLAGS} at all. This is in accordance with ports general policy. Thanks.