Skip to content

Commit

Permalink
* include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
Browse files Browse the repository at this point in the history
	(versioned_symbol): Likewise.
	(compat_symbol): Likewise.
  • Loading branch information
Ulrich Drepper committed Oct 7, 2006
1 parent feb87ad commit c4f9fc3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
2006-10-07 Ulrich Drepper <drepper@redhat.com>

* include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
(versioned_symbol): Likewise.
(compat_symbol): Likewise.

* po/tr.po: Update from translation team.

2006-10-06 Ulrich Drepper <drepper@redhat.com>
Expand Down
16 changes: 11 additions & 5 deletions include/shlib-compat.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Macros for managing ABI-compatibility definitions using ELF symbol versions.
Copyright (C) 2000, 2002 Free Software Foundation, Inc.
Copyright (C) 2000, 2002, 2006 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -44,6 +44,8 @@
in the GLIBC_2.0 version and obsoleted in the GLIBC_2.2 version. */

# define SHLIB_COMPAT(lib, introduced, obsoleted) \
_SHLIB_COMPAT (lib, introduced, obsoleted)
# define _SHLIB_COMPAT(lib, introduced, obsoleted) \
((IS_IN_##lib - 0) \
&& (!(ABI_##lib##_##obsoleted - 0) \
|| ((ABI_##lib##_##introduced - 0) < (ABI_##lib##_##obsoleted - 0))))
Expand All @@ -62,13 +64,17 @@
shlib-versions if that is newer. */

# define versioned_symbol(lib, local, symbol, version) \
versioned_symbol_1 (local, symbol, VERSION_##lib##_##version)
# define versioned_symbol_1(local, symbol, name) \
versioned_symbol_1 (lib, local, symbol, version)
# define versioned_symbol_1(lib, local, symbol, version) \
versioned_symbol_2 (local, symbol, VERSION_##lib##_##version)
# define versioned_symbol_2(local, symbol, name) \
default_symbol_version (local, symbol, name)

# define compat_symbol(lib, local, symbol, version) \
compat_symbol_1 (local, symbol, VERSION_##lib##_##version)
# define compat_symbol_1(local, symbol, name) \
compat_symbol_1 (lib, local, symbol, version)
# define compat_symbol_1(lib, local, symbol, version) \
compat_symbol_2 (local, symbol, VERSION_##lib##_##version)
# define compat_symbol_2(local, symbol, name) \
symbol_version (local, symbol, name)

#else
Expand Down

0 comments on commit c4f9fc3

Please sign in to comment.