-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
190 lines (125 loc) · 5.57 KB
/
README
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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
How to build on various platforms.
A more up to date version of this may be found at
http://directory.fedora.redhat.com/wiki/BuildCoolKey
Linux/Unix
---------------------------------------------------------------------------
Prerequisites
You will need the following packages installed (or equivalent for your OS):
* pcsc-lite-devel
* xlib-devel
* glibc
* gcc
* autoconf
Building
In the root directory run the following commands:
autoconf
./configure
make
If you need to modify the Makefiles, automake 1.9.6 was used. Makefile.am is
included in the source.
Installing
In the root directory run:
make install
or
make install DEST=/my/destination/tree
Mac OS X
---------------------------------------------------------------------------
CoolKey can be compiled as a universal binary on the Mac.
Prerequisites
* Intel or PPC Mac
* OS X Tiger
* Version 2.59 of autoconf
* XCode 2.2 and later
* Make sure the framework "/Developer/SDKs/MacOSX10.4u.sdk" is present
Building
1. checkout coolkey source
2. proceed to the coolkey directory
3. Type the following:
autoconf
./configure --disable-dependency-tracking
make
If the autoconf step fails, an outdated version of autoconf may be installed.
Perform "autoconf --version" to make sure 2.59 is the version present.
As of right now, the above will build CoolKey dynamic libraries as only the
native binary of the build machine. For instance, performing this build on an
Intel Mac will build universal object files but leave the dynamic libraries as
Intel only. Until this problem can be resolved, the following can be done to
complete an actual universal binary build of everything.
After the configure step and prior to the actual Make, do the following:
1. edit the file "libtool". Be sure to back up the original copy.
2. search for lines with instances of the strings "archive_cmds" and
"module_expsym_cmds".
3. Between the strings "\$deplibs" and "\$compiler_flags",
place the following:
-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386
Example:
#Commands used to build and install a shared archive.
archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs
-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386
\$compiler_flags -install_name \$rpath/\$soname \$verstring"
* At this point, performing a "make" will result in universal binary
versions of each dynamic library associated with CoolKey.
It is also possible to build the utility "pk11install" on the Mac. This
utility can be used to automatically install CoolKey into Mozilla browsers on
the user's system.
* Building "pk11install" will requre the configure script to be launched
with the following two environment variables:
NSS_CFLAGS=
NSS_LIBS=
* NSS_CFLAGS has to be set to the include paths of NSS and NSPR currently
installed on the system.
* NSS_LIBS has to be set to the search path of the NSS and NSPR shared
libraries.
* Example invocation:
./configure --disable-dependency-tracking NSS_CFLAGS="-I /usr/local/include/nspr -I /usr/local/include/nss" NSS_LIBS="-L/usr/local/lib/nss" --enable-pkinstall
make
Installing
* After a successful build of CoolKey, the Makefile can be used to perform
a simple install of the software on the system if desired.
1. Within the build directory perform the following:
make install
* By default, everything will be placed in "/usr/local/lib" and
"/usr/local/lib/pkcs11".
* An alternate prefix directory, instead of "/usr/local" can be selected
at configure time as demonstrated below:
./configure --prefix=/usr/local/CoolKey --disable-dependency-tracking
* In the above example the install will result in everything being located
in "/usr/local/CoolKey/lib" and "/usr/local/CoolKey/lib/pkcs11".
* If desired the following example demonstartes how to install everything
in an alternate base location:
make DESTDIR=/build/staging-area install
* The above will install the previous example in
"/build/staging/usr/local/CoolKey".
Windows
---------------------------------------------------------------------------
Prerequisites
* Microsoft Visual C++ and Platform SDK: Install as normal.
Make sure INCLUDE and LIB are set appropriately. These are available at
(http://msdn.microsoft.com/visualc/)
* Cygwin: Install as normal. You'll need base, the shell, autoconf-2.5x,
make, cvs*... This can be downloaded at (http://www.cygwin.com)
* This may not be a full list. If you discover additional packages which are
needed please let us know, or update the wiki
(http://directory/fedora.redhat.com/wiki/BuildCoolKey).
* ZLib Download ZLib source an binaries from here (http://www.zlib.org)
1. Unzip into a known directory (like c:/zlib)
2. Set ZLIB_INCLUDE to the location of the include files
(e.g. c:/zlib/include)
3. Set ZLIB_LIB to the location of the export libraries
(e.g. c:/zlib/lib)
4. Make sure both zdll.lib and zlib1.dll are in the ZLIB_LIB directory
Building
Once everything is installed, start a cygwin shell.
1. checkout the coolkey source
2. Make sure the environment variables INCLUDE, LIB, ZLIB_INCLUDE, and
ZLIB_LIB are defined as described above in Prerequisites.
3. Make sure the Visual C++ tools are in your path.
4. In the root directory type:
autoconf-2.5x
./configure
make
Installing
To build a distribution:
make install DESTDIR=C:/build/staging-area libdir=/libraries prefix=/sdk
To install on your local machine:
make install