USE_XORG

2017-10-29 Thread blubee blubeeme
There's a program that uses these two X11 headers #include #include looking through this file: /usr/ports/Mk/bsd.xorg.mk to try to understand just which USE_XORG= x11 and what other modules flag to set? ___ freebsd-ports@freebsd.org mailing list

Re: Linker name mismatch

2017-10-29 Thread Adam Weinberger
> On 29 Oct, 2017, at 0:06, blubee blubeeme wrote: > > I'm compiling a port and the linker is failing because the linker is > looking for > > -lUppercaseSoname > > but the shared object name doesn't start with an uppercase. > > Can I change the way the linker flags are

FreeBSD ports you maintain which are out of date

2017-10-29 Thread portscout
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated,

Bug 223298 - COPYRIGHT: Update description to make it fit to actual status of port tree

2017-10-29 Thread Yasuhiro KIMURA
Hello all. I submitted following bug report. Bug 223298 - COPYRIGHT: Update description to make it fit to actual status of port tree https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223298 As is explained in comment of bug report, current COPYRIGHT file describes as following. * Copyright of

Re: Linker name mismatch

2017-10-29 Thread blubee blubeeme
I'm pretty sure this is the reason the build is failing because running both these commands: % ld -L/usr/local/lib -lSoname ld: cannot find -lTogl % ld -L/usr/local/lib -lsoname ld: warning: cannot find entry symbol _start; not setting start address //lib/libc.so.7: undefined reference to

Linker name mismatch

2017-10-29 Thread blubee blubeeme
I'm compiling a port and the linker is failing because the linker is looking for -lUppercaseSoname but the shared object name doesn't start with an uppercase. Can I change the way the linker flags are passed to replace: -lSoname with -lsoname ___