notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
non port: Mk/Uses/gssapi.mk

Number of commits found: 21

Sunday, 24 Apr 2022
10:00 Tobias C. Berner (tcberner) search for other commits by this committer
framework: cleanup conditional-indentations in Mk/

Run Tools/scripts/indent_make_if.pl on all of Mk.

These white space changes contribute greatly to the readability of those files.
As we have a version control system, finding out the reasons for the changes
prior to these white space changes is still easily possible

Differential Revision:	https://reviews.freebsd.org/D35024
Reviewed by:		portmgr (rene, bapt)
commit hash: aa2539679084872cd84112e9df6bfee571570623 commit hash: aa2539679084872cd84112e9df6bfee571570623 commit hash: aa2539679084872cd84112e9df6bfee571570623 commit hash: aa2539679084872cd84112e9df6bfee571570623 aa25396
Tuesday, 6 Apr 2021
14:27 Mathieu Arnold (mat) search for other commits by this committer
framework: Remove $FreeBSD$

Where appropriate fiddle with a few other things.
commit hash: 5d33e045968104ac678d8b4b4ec1e8956bbf68e0 commit hash: 5d33e045968104ac678d8b4b4ec1e8956bbf68e0 commit hash: 5d33e045968104ac678d8b4b4ec1e8956bbf68e0 commit hash: 5d33e045968104ac678d8b4b4ec1e8956bbf68e0 5d33e04
Friday, 29 Nov 2019
22:11 pkubaj search for other commits by this committer
Mk/Uses/gssapi.mk: don't set GSSAPILDFLAGS for USES=gssapi

Setting GSSAPILDFLAGS for USES=gssapi causes -L/usr/lib to be added to LDFLAGS.

This breaks compilation of some ports, like www/squid on GCC architectures when
new GCC from ports needs to be used.

The new GCC tries to link to libstdc++ and fails. Not setting it explicitely
causes /usr/local/lib/gcc8/libstdc++.so to be taken instead and /usr/lib is
searched for libraries anyway, just with lower priority.

Tested on powerpc64 and amd64 on www/squid.

PR:		237275
Approved by:	mentors (implicit approval), hrs (maintainer timeout)
Original commitRevision:518677 
Friday, 2 Nov 2018
13:32 rene search for other commits by this committer
Remove compatibility code for FreeBSD < 11.2 from all ports.

Simplify some ports where DragonFlyBSD no longer needs to be special-cased.
Submitted by:	rene
Reviewed by:	bapt, jbeich
Differential Revision:	https://reviews.freebsd.org/D17724
Original commitRevision:483807 
Friday, 21 Oct 2016
12:51 mat search for other commits by this committer
${RM} already has -f.

PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:424411 
Friday, 26 Aug 2016
08:42 danfe search for other commits by this committer
Do not terminate IGNORE messages with period, it is added by the framework.
Original commitRevision:420904 
Wednesday, 24 Aug 2016
13:03 mat search for other commits by this committer
Can't use GSSAPI from base when using OpenSSL from ports.

It kinda works when both OpenSSL have the same options, but fails in
strange ways if they do not.

Sponsored by:	Absolight
Original commitRevision:420788 
Sunday, 27 Mar 2016
01:23 bapt search for other commits by this committer
Remove the now unneeded ${PORTSDIR} from dependency definition in
The infrastructure Makefiles

PR:		206569
Exp run by:	antoine
Differential Revision:	D5047
Original commitRevision:411970 
Thursday, 15 Oct 2015
07:36 bapt search for other commits by this committer
Readd PORTSDIR for now we will only start removing them after 2016Q1 is branched

This gives more time for tools to get updated, available in packages etc before
bothering users
Original commitRevision:399326 
Wednesday, 14 Oct 2015
16:49 bapt search for other commits by this committer
Drop the necessity to add ${PORTSDIR} to dependency line

Modify make describe to automatically prepend ${PORTSDIR} if the path for the
port is not absolute

Checked with poudriere, portmaster, portupgrade

PR:		203685
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D3866
Original commitRevision:399278 
Friday, 18 Sep 2015
22:11 mat search for other commits by this committer
Fixup gssapi.mk, no need to support more releases than needed, and use
the correct way to insert targets in the pipe.

Sponsored by:	Absolight
Original commitRevision:397300 
21:02 hrs search for other commits by this committer
Add a fixup for broken krb5-config script included in 9.X
and some 10.X releases.
Original commitRevision:397294 
02:29 hrs search for other commits by this committer
Add KRB5CONFIG.
Original commitRevision:397211 
Thursday, 10 Sep 2015
12:47 antoine search for other commits by this committer
Back-out r396454, it's broken on freebsd 9.3 (breaks at least ftp/curl)

With hat:	portmgr
Original commitRevision:396567 
Wednesday, 9 Sep 2015
08:03 hrs search for other commits by this committer
- Add KRB5CONFIG.
- Use more complete library lists in GSSAPILIBS.
Original commitRevision:396454 
Tuesday, 2 Dec 2014
23:45 hrs search for other commits by this committer
Add missing GSSAPI{LIB,INC}DIR when :mit is specified.

Spotted by:	ume
Original commitRevision:373797 
Sunday, 23 Nov 2014
09:14 hrs search for other commits by this committer
Define CPPFLAGS instead of CFLAGS.
Original commitRevision:373132 
Saturday, 22 Nov 2014
10:51 hrs search for other commits by this committer
- Move headers and libraries into PREFIX/{include,lib}/heimdal.  This
  prevents build breakage when a port depends on heimdal in base and
  some other libraries in LOCALBASE/lib such as OpenSSL from ports
  at the same time.

- Always build libcom_err[*].

PR:	194475 [*]
Original commitRevision:373047 
Sunday, 28 Sep 2014
16:36 tijl search for other commits by this committer
Change the way USES is handled:
- Loop over USES twice, once to define all *_ARGS variables and once to
  include Uses/*.mk.  This allows all Uses/*.mk to examine arguments given
  to other USES entries.
- Always define *_ARGS (possibly empty) and replace commas with spaces.

Similar for _USES_POST.

Adjust all Uses/*.mk:
- defined(u_ARGS) becomes !empty(u_ARGS)
- Eliminate helper variables like _*_ARGS=${*_ARGS:C/,/ /g}
- Some Uses/*.mk used ":" as argument separator instead of ",", but no port
  used this form
- Uses/cran.mk: remove unused variable VALID_ARGS and USES+=fortran which
  has no effect
- Uses/twisted.mk: simplify handling of the case where neither "build" nor
  "run" arguments have been specified

PR:		193931
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:369465 
Tuesday, 17 Jun 2014
15:42 bapt search for other commits by this committer
Also support fmake
Original commitRevision:358131 
15:00 mat search for other commits by this committer
Introduce Uses/gssapi.mk to help handle dependencies on Kerberos in a
consistent way.

Submitted by:	hrs
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:358126 

Number of commits found: 21