1lib_LTLIBRARIES = libnss_compat_ossl.la
2
3## Set the includes and libraries needed
4INCLUDES = @nspr_inc@ @nss_inc@
5LIBS = @nspr_lib@ @nss_lib@
6
7libnss_compat_ossl_la_SOURCES = ssl.c log.c rand.c
8
9pkginclude_HEADERS = nss_compat_ossl.h
10
11VERSION=-version-info 0:0:0
12
13# This flag accepts an argument of the form current[:revision[:age]]. So,
14# passing -version-info 3:12:1 sets current to 3, revision to 12, and age to
15# 1.
16#
17# If either revision or age are omitted, they default to 0. Also note that age
18# must be less than or equal to the current interface number.
19#
20# Here are a set of rules to help you update your library version information:
21#
22# 1.Start with version information of 0:0:0 for each libtool library.
23#
24# 2.Update the version information only immediately before a public release of
25# your software. More frequent updates are unnecessary, and only guarantee
26# that the current interface number gets larger faster.
27#
28# 3.If the library source code has changed at all since the last update, then
29# increment revision (c:r+1:a)
30#
31# 4.If any interfaces have been added, removed, or changed since the last
32# update, increment current, and set revision to 0. (c+1:r=0:a)
33#
34#
35# 5.If any interfaces have been added since the last public release, then
36# increment age. (c:r:a+1)
37#
38# 6.If any interfaces have been removed since the last public release, then
39# set age to 0. (c:r:a=0)
40#
41
42
43