Overview
Comment: | More work towards something possibly usable one day |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3dc3a3b2818eae0c8b3470a4142d243b |
User & Date: | rkeene on 2016-04-14 02:28:56 |
Other Links: | manifest | tags |
Context
2016-04-14
| ||
02:45 | Added an install target and an empty javascript file for now check-in: 179983e00b user: rkeene tags: trunk | |
02:28 | More work towards something possibly usable one day check-in: 3dc3a3b281 user: rkeene tags: trunk | |
00:54 | We now build a mostly complete libpcsc.a, though with no way to initialize it (since we have not discovered how to do that in this release of Google's code yet check-in: 6d016db860 user: rkeene tags: trunk | |
Changes
Modified Makefile from [5d97a5aa96] to [d47cbcccc4].
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | - + - + + + + + + + + + - - + + + | ## Set some CFLAGS that the compiler fails to internally set CFLAGS := -I${NACL_SDK_ROOT}/include CXXFLAGS := $(CFLAGS) CPPFLAGS := $(CFLAGS) export CFLAGS CXXFLAGS CPPFLAGS |
︙ |
Added archive/google-chrome-smart-card-apps-20160317-nobinaries.zip version [8fad5c5ada].
cannot compute difference between binary files
Modified pcsc/Makefile from [9eb3eea2a6] to [9b3e7f9baf].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - - + | BOOST_DIR := /usr/include/boost CFLAGS += -Wall -std=gnu11 -g3 -ggdb3 CXXFLAGS += -Wall -std=gnu++11 -g3 -ggdb3 CPPFLAGS += -Isrc/include/PCSC -isystem $(BOOST_DIR)/include -Isrc -isystem $(NACL_SDK_ROOT)/include |
︙ |
Name change from pcsc/pcsc-nacl.h to pcsc/libpcsc.h.
︙ |
Modified pcsc/pcsc_nacl_init.cc from [683a161fcd] to [f3e792cf0d].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - - - - - - + - + - - - + - - - + - - - - - - - - - - - - - - - - - + + + - - + - + - + | #include <ppapi/cpp/core.h> #include <ppapi/cpp/instance.h> |