Overview
| Comment: | CACKey 0.5.15 Fixed issue with manually specifying header file path | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 0.5.15 | 
| Files: | files | file ages | folders | 
| SHA1: | cae3768452b15b3e8961f96555a4a8e3 | 
| User & Date: | rkeene on 2010-07-11 07:40:42 | 
| Other Links: | manifest | tags | 
Context
| 2010-07-12 | ||
| 15:46 | Added tools for building CACKey on Mac OS X check-in: 4b8c40e52b user: kvanals tags: trunk | |
| 2010-07-11 | ||
| 07:40 | CACKey 0.5.15 Fixed issue with manually specifying header file pathcheck-in: cae3768452 user: rkeene tags: 0.5.15, trunk | |
| 07:27 | CACKey 0.5.14 check-in: b0c547f735 user: rkeene tags: 0.5.14, trunk | |
Changes
Modified aclocal/dc_pcsc.m4 from [a3eb01afcd] to [85c2893fdf].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 
AC_DEFUN(DC_PCSC_HEADERS, [
	AC_ARG_WITH(pcsc-headers, AC_HELP_STRING([--with-pcsc-headers=<path>], [Specify a path to look for PC/SC Headers]), [
		manualheaders="${withval}"
	], [
		manualheaders="no"
	])
	if test "${manualheaders}" != "no"; then
		CFLAGS="${CFLAGS} -I${manualheaders}"
		CPPFLAGS="${CPPFLAGS} -I${manualheaders}"
	else
		DC_PCSC_HEADERS_SEARCH
	fi
])
AC_DEFUN(DC_PCSC_HEADERS_SEARCH, [
	SAVE_CFLAGS="${CFLAGS}"
 | > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 
AC_DEFUN(DC_PCSC_HEADERS, [
	AC_ARG_WITH(pcsc-headers, AC_HELP_STRING([--with-pcsc-headers=<path>], [Specify a path to look for PC/SC Headers]), [
		manualheaders="${withval}"
	], [
		manualheaders="no"
	])
	if test "${manualheaders}" != "no"; then
		CFLAGS="${CFLAGS} -I${manualheaders}"
		CPPFLAGS="${CPPFLAGS} -I${manualheaders}"
		AC_CHECK_HEADER(wintypes.h, [
			AC_DEFINE(HAVE_WINTYPES_H, [1], [Define if you have the PCSC-Lite header file (you should)])
		])
		AC_CHECK_HEADER(pcsclite.h, [
			AC_DEFINE(HAVE_PCSCLITE_H, [1], [Define if you have the PCSC-Lite header file (you should)])
		])
		AC_CHECK_HEADER(winscard.h, [
			AC_DEFINE(HAVE_WINSCARD_H, [1], [Define if you have the PCSC-Lite header file (you should)])
		])
	else
		DC_PCSC_HEADERS_SEARCH
	fi
])
AC_DEFUN(DC_PCSC_HEADERS_SEARCH, [
	SAVE_CFLAGS="${CFLAGS}"
 | 
| ︙ | ︙ | 
Modified configure.ac from [6aec7ff3b4] to [475a8540de].
| 
 | 
 | | | 1 2 3 4 5 6 7 8 | AC_INIT(cackey, 0.5.15) AC_CONFIG_HEADERS(config.h) dnl Locate standard tools AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_AIX | 
| ︙ | ︙ |