Check-in [3dee1a5953]
Overview
Comment:Updated version-script detection macro
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3dee1a59530b7189502eb53108c5dc3243831790
User & Date: rkeene on 2010-05-17 14:44:38
Other Links: manifest | tags
Context
2010-05-17
14:55
Added removable device flag to slot info check-in: b4a6b9d685 user: rkeene tags: trunk
14:44
Updated version-script detection macro check-in: 3dee1a5953 user: rkeene tags: trunk
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 information check-in: 26acceb6f2 user: rkeene tags: trunk

Changes

Modified aclocal/dc_versionscript.m4 from [c4a310ce3f] to [1249f626fd].

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








])







|
|

|
<
<

<
>


>
>
>
>
>
>
>
>

1
2
3
4
5
6
7
8
9
10
11


12

13
14
15
16
17
18
19
20
21
22
23
24
AC_DEFUN(DC_SETVERSIONSCRIPT, [
	VERSIONSCRIPT="$1"

	SAVE_LDFLAGS="${LDFLAGS}"

	AC_MSG_CHECKING([for how to set version script])

	for tryaddldflags in "-Wl,--version-script -Wl,${VERSIONSCRIPT}"; do
		LDFLAGS="${SAVE_LDFLAGS} ${tryaddldflags}"
		AC_TRY_LINK([], [], [
			addldflags="${tryaddldflags}"




			break
		])
	done

	if test -n "${addldflags}"; then
		LDFLAGS="${SAVE_LDFLAGS} ${addldflags}"
		AC_MSG_RESULT($addldflags)
	else
		LDFLAGS="${SAVE_LDFLAGS}"
		AC_MSG_RESULT([don't know])
	fi
])