Overview
| Comment: | Added missing file from last commit | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 70222fd9bfd3b42ce2ee44674bb75156 | 
| User & Date: | rkeene on 2010-05-17 06:00:19 | 
| Other Links: | manifest | tags | 
Context
| 2010-05-17 | ||
| 07:19 | Updated PC/SC identity member of cackey identity name to be more descriptive Added more sanity checks Updated to populate pcsc_identity structure of cackey identity from certificate informationcheck-in: 26acceb6f2 user: rkeene tags: trunk | |
| 06:00 | Added missing file from last commit check-in: 70222fd9bf user: rkeene tags: trunk | |
| 05:58 | Added support for only exporting PKCS#11 symbols globally check-in: a184a05fd1 user: rkeene tags: trunk | |
Changes
Added aclocal/dc_versionscript.m4 version [c4a310ce3f].
| > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 
AC_DEFUN(DC_SETVERSIONSCRIPT, [
	VERSIONSCRIPT="$1"
	SAVE_LDFLAGS="${LDFLAGS}"
	AC_MSG_CHECKING([for how to set version script])
	for addldflags in "-Wl,--version-script -Wl,${VERSIONSCRIPT}"; do
		LDFLAGS="${SAVE_LDFLAGS} ${addldflags}"
		AC_TRY_LINK([], [], [
			AC_MSG_RESULT($addldflags)
		], [
			AC_MSG_RESULT([don't know])
			LDFLAGS="${SAVE_LDFLAGS}"
		])
	done
])
 |