Changeset 3058c07a6e6b52d560a043e814500e74e24b4eb4
- Timestamp:
- 01/02/08 14:00:25
(10 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1201870825 +0000
- git-parent:
[85a11b9c19d72e1423c143c223b283c2fca858fd]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1201870825 +0000
- Message:
src/check_symbols: More work around and fixes for symbol detection.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r85a11b9 |
r3058c07 |
|
| 6 | 6 | |
|---|
| 7 | 7 | cat ${srcdir}/../include/vlc_*.h | \ |
|---|
| 8 | | sed -n -e 's/^\s*VLC_EXPORT\s*([^,]*,\([^,]*\).*).*/\1/p' | \ |
|---|
| | 8 | sed -n -e 's/^[ ]*VLC_EXPORT[ ]*([^,]*,\([^,]*\),.*/\1/p' | \ |
|---|
| 9 | 9 | sed -e 's/[^a-zA-Z0-9_]*//' | \ |
|---|
| 10 | | sort -du > libvlc-headers.sym |
|---|
| | 10 | sort -fdu > libvlc-headers.sym |
|---|
| 11 | 11 | |
|---|
| 12 | 12 | if ! diff -u ${srcdir}/libvlc.sym libvlc-headers.sym; then |
|---|