Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 549108 | Differences between
and this patch

Collapse All | Expand All

(-)a/scripts/gen_symbol_version_map.awk (-2 / +1 lines)
Lines 14-20 BEGIN { Link Here
14
14
15
	# Only check FUNCtion symbols which are not LOCAL, or
15
	# Only check FUNCtion symbols which are not LOCAL, or
16
	# do not have DEFAULT visibility
16
	# do not have DEFAULT visibility
17
	if ($4 != "FUNC" || $5 == "LOCAL" || $6 != "DEFAULT")
17
	if ($4 != "FUNC" || $5 == "LOCAL" || $6 == "DEFAULT")
18
		next;
18
		next;
19
19
20
	for (x in SYMBOLS) {
20
	for (x in SYMBOLS) {
21
- 

Return to bug 549108