On 2016/01/20 13:01, Rafael Sadowski wrote:
> Sorry, no CC me no attention :(
Your ports@ mails are sent with Mail-Followup-To, don't do this
if you want CCs. I have added it manually for this one but it's a
pain to do. (group reply, notice this request, go back to the
index, reply singly, re-add ports@ by hand ...)
> > Missing lib: uuid.14 (/usr/local/bin/profanity) (NOT REACHABLE)
This means there is no path to libuuid via LIB_DEPENDS so you need
to add one. (If you have multiple 'NOT REACHABLE' lines then adding
one of them may pull in other ports via *their* LIB_DEPENDS so just
one may be enough; this is particularly the case for things using
some of the larger libraries like gtk+, so in those cases add
that one first).
> > Extra: X11.16 Xss.6 crypto.37 expat.11 gdk_pixbuf-2.0.3200
> > Extra: gio-2.0.4200 gobject-2.0.4200 iconv.6 notify.4 ssl.38
Here you have various WANTLIB listed in the Makefile that aren't
showing in objdump -p. In most cases you want to remove these
(but there are exceptions with dlopen() etc).
Also noticed:
MAKE_FLAGS = CC="${CC}" CFLAGS="${CFLAGS}"
These should be passed to autoconf. This is important because
it may add/remove flags at build time depending on the chosen
compiler. Those are usually (but not always) passed on to make,
so you might be able to remove the MAKE_FLAGS line as well.