Overview
| Comment: | Add header files for pcsclite | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | b4f1d32aff3ed52b0440929c18b305a3 | 
| User & Date: | rkeene on 2016-02-03 07:08:43 | 
| Other Links: | manifest | tags | 
Context
| 2016-02-03 | ||
| 07:11 | Release building updates check-in: 294977292d user: rkeene tags: trunk | |
| 07:08 | Add header files for pcsclite check-in: b4f1d32aff user: rkeene tags: trunk | |
| 05:26 | Added start of a Google Chrome extension check-in: fc49ac54cf user: rkeene tags: trunk | |
Changes
Modified build/chrome/build-deps from [7f9ef1ab4d] to [9ef058ff69].
| ︙ | ︙ | |||
| 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | 
	cackeyChromeExtPCSCLiteDir="$(cd "${instdir}" && pwd)"
	export PCSC_CFLAGS="-I${cackeyChromeExtPCSCLiteDir}/include/PCSC"
	export PCSC_LIBS="-L${cackeyChromeExtPCSCLiteDir}/lib -lpcsclite -pthread"
	cp "${cackeyChromeExtPCSCLiteDir}/bin/pcscd" "${outdir}" || return 1
	return 0
}
function buildCACKey() {
	local file copied
	(
 | > > > | 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | 
	cackeyChromeExtPCSCLiteDir="$(cd "${instdir}" && pwd)"
	export PCSC_CFLAGS="-I${cackeyChromeExtPCSCLiteDir}/include/PCSC"
	export PCSC_LIBS="-L${cackeyChromeExtPCSCLiteDir}/lib -lpcsclite -pthread"
	cp "${cackeyChromeExtPCSCLiteDir}/bin/pcscd" "${outdir}" || return 1
	mkdir "${outdir}/include" || return 1
	cp "${cackeyChromeExtPCSCLiteDir}/include/PCSC"/*.h "${outdir}/include" || return 1
	return 0
}
function buildCACKey() {
	local file copied
	(
 | 
| ︙ | ︙ |