net/qt5-network

Christoph Moench-Tegeder cmt at burggraben.net
Wed Jul 8 13:44:25 UTC 2020


## Carmel NY (carmel_ny at outlook.com):

> The entire build log, what there is of it, is available here:
> https://seibercom.net/logs/qt5-network_build.log

And there's your problem:
: #### /usr/local/etc/poudriere.d/make.conf ####
:
: LICENSES_ACCEPTED+= PDFlib

: DEFAULT_VERSIONS=samba=4.11
: DEFAULT_VERSIONS+=ssl=openssl
: DEFAULT_VERSIONS=mysql=8.0
: DEFAULT_VERSIONS=python=3.7
: DEFAULT_VERSIONS=python3=3.7

You are setting DEFAULT_VERSIONS multiple times, always writing over the
previous assignment (except for that one line for "ssl=openssl", but
that's overwritten with the next line again).
Either use
  DEFAULT_VERSIONS=samba=4.11 ssl=openssl mysql=8.0 [...]
or
  DEFAULT_VERSIONS+=samba=4.11
  DEFAULT_VERSIONS+=ssl=openssl
  DEFAULT_VERSIONS+=mysql=8.0
  [...]

If you use the multiline version, use "+=" consistenly - it's way too
easy to copy the first line and accidently use "=" (assignment, not
addition).
See make(1), section "VARIABLE ASSIGNMENTS" for details on that syntax.

BTW, the same goes for WITH_DEBUG_PORTS.
Didn't you notice that you got wrong mysql and samba versions?
Also, you can use "make -V DEFAULT_VERSIONS" in any port directory
to check your settings (as far as they're in /etc/make.conf).

Regards,
Christoph

-- 
Spare Space


More information about the freebsd-ports mailing list