-
Notifications
You must be signed in to change notification settings - Fork 610
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mk/Uses/samba.mk: Introduce 3 new SAMBA_*_PORT variables
* Introduce 3 new variable, SAMBA_TALLOC_PORT, SAMBA_TDB_PORT and SAMBA_TEVENT_PORT. Proper port origin ("databases/ldb29" for example) is assigned to them depending on the value of SAMBA_DEFAULT. They are intended to be used by ports that works with Samba to specify proper version of talloc, tdb and/or tevent as dependency. * Add item in CHANGES. Reviewed by: 0mp, kiwi Differential Revision: https://reviews.freebsd.org/D48857
- Loading branch information
Yasuhiro Kimura
authored and
Yasuhiro Kimura
committed
Feb 6, 2025
1 parent
ed189af
commit 88122c7
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,27 @@ in the release notes and/or placed into UPDATING. | |
|
||
All ports committers are allowed to commit to this file. | ||
|
||
20250205: | ||
AUTHOR: [email protected] | ||
|
||
3 new variables are defined if you add 'USES=samba' in Makefile. | ||
|
||
* SAMBA_TALLOC_PORT | ||
* SAMBA_TDB_PORT | ||
* SAMBA_TEVENT_PORT | ||
|
||
They are intended to be used by ports that works with Samba to | ||
specify proper version of talloc, tdb and/or tevent as dependency | ||
such as bellow. | ||
|
||
LIB_DEPENDS= ibtalloc.so:${SAMBA_TALLOC_PORT} \ | ||
libtdb.so:${SAMBA_TDB_PORT} \ | ||
libtevent.so:${SAMBA_TEVENT_PORT} | ||
USES= samba:env | ||
|
||
You need not use them if port just depends on talloc, tdb and/or | ||
tevent and it has nothing to do with Samba. | ||
|
||
20250203: | ||
AUTHOR: [email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters