Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed typo in last commit causing versioning to be broken |
|---|---|
| Timelines: | family | ancestors | descendants | both | new-driver |
| Files: | files | file ages | folders |
| SHA1: |
3564675e675392fbac80477736792a76 |
| User & Date: | rkeene 2013-03-07 21:34:55 |
Context
|
2013-03-07
| ||
| 21:53 | Makefile now has targets that work check-in: dd614d904f user: rkeene tags: new-driver | |
| 21:34 | Fixed typo in last commit causing versioning to be broken check-in: 3564675e67 user: rkeene tags: new-driver | |
| 19:11 | Started adding stubs for new library and build system check-in: 5c6fbb4024 user: rkeene tags: new-driver | |
Changes
Changes to build/autogen.sh.
| ︙ | ︙ | |||
62 63 64 65 66 67 68 |
done
# Create "libdact.vers" (GNU ld version script) from "libdact.syms.in" which
# is a list of public symbols
echo '{' > libdact.vers
echo ' global:' >> libdact.vers
for symbol in `cat libdact.syms.in | sed 's/^@''SYMPREFIX@//'`; do
| | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
done
# Create "libdact.vers" (GNU ld version script) from "libdact.syms.in" which
# is a list of public symbols
echo '{' > libdact.vers
echo ' global:' >> libdact.vers
for symbol in `cat libdact.syms.in | sed 's/^@''SYMPREFIX@//'`; do
echo " ${symbol};"
done >> libdact.vers
echo ' local:' >> libdact.vers
echo ' *;' >> libdact.vers
echo '};' >> libdact.vers
# Terminate
exit 0
|