updates
[silc.git] / lib / configure.ad
1 #ifdef SILC_DIST_LIB
2 #
3 #  lib/configure.ad
4 #
5 #  Author: Pekka Riikonen <priikone@silcnet.org>
6 #
7 #  Copyright (C) 2005 Pekka Riikonen
8 #
9 #  This program is free software; you can redistribute it and/or modify
10 #  it under the terms of the GNU General Public License as published by
11 #  the Free Software Foundation; version 2 of the License.
12 #
13 #  This program is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #  GNU General Public License for more details.
17 #
18
19 if test x$compile_libs = xtrue; then
20
21 ##
22 ## Will compile included libs
23 ##
24 AC_MSG_NOTICE([Configuring SILC libraries])
25
26 # SILC Library directories
27 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/contrib"
28 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silccore"
29 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silccrypt"
30 #ifdef SILC_DIST_MATH
31 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcmath"
32 #endif SILC_DIST_MATH
33 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcutil"
34 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcske"
35 #ifdef SILC_DIST_SFTP
36 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcsftp"
37 #endif SILC_DIST_SFTP
38 #ifdef SILC_DIST_SIM
39 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcsim"
40 #endif SILC_DIST_SIM
41 #ifdef SILC_DIST_CLIENT
42 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcclient"
43 #endif SILC_DIST_CLIENT
44
45 ##
46 ## Library versioning.
47 ##
48 # Do the releases and library versioning according to following rules:
49 #
50 #  - If any code has changed in library, increment [LIB]_REVISION
51 #  - If functions were added, removed or changed, set [LIB]_REVISION to 0
52 #  - If functions were added, removed or changed, increment [LIB]_CURRENT
53 #  - If functions were added, increment [LIB]_AGE
54 #  - If functions were removed, set [LIB]_AGE to 0
55 #
56 # where [LIB] is LIBSILC and LIBSILCCLIENT, and where "functions" means
57 # functions public interfaces.
58 #
59 # The LIB_BASE_VERSION defines the SILC software major.minor version and
60 # it is increment only when these version numbers actually change.
61 #
62
63 # Base version for libraries.  Do not change this unless SILC version
64 # changes too.
65 LIB_BASE_VERSION=1.0
66
67 # libsilc versions
68 LIBSILC_CURRENT=5               # prev = 4
69 LIBSILC_REVISION=0              # prev = 0
70 LIBSILC_AGE=3                   # prev = 3
71
72 # libsilcclient versions
73 LIBSILCCLIENT_CURRENT=4         # prev = 4
74 LIBSILCCLIENT_REVISION=0        # prev = 0
75 LIBSILCCLIENT_AGE=3             # prev = 3
76
77 # Substitute the version numbers
78 AC_SUBST(LIB_BASE_VERSION)
79 AC_SUBST(LIBSILC_CURRENT)
80 AC_SUBST(LIBSILC_REVISION)
81 AC_SUBST(LIBSILC_AGE)
82 AC_SUBST(LIBSILCCLIENT_CURRENT)
83 AC_SUBST(LIBSILCCLIENT_REVISION)
84 AC_SUBST(LIBSILCCLIENT_AGE)
85
86 #ifdef SILC_DIST_TOOLKIT
87 # Stack trace checking
88 #
89 AC_MSG_CHECKING(whether to enable stack tracing)
90 AC_ARG_ENABLE(stack-trace,
91   [  --enable-stack-trace    enable memory stack trace],
92   [
93     case "${enableval}" in
94     yes)
95       AC_MSG_RESULT(yes)
96       AC_DEFINE([SILC_STACKTRACE], [], [SILC_STACKTRACE])
97       ;;
98     *)
99       AC_MSG_RESULT(no)
100       ;;
101     esac
102   ],
103     AC_MSG_RESULT(no)
104   )
105 #endif SILC_DIST_TOOLKIT
106
107 #
108 # Makefile outputs
109 #
110 AC_CONFIG_FILES(
111 lib/Makefile
112 lib/contrib/Makefile
113 lib/silccore/Makefile
114 lib/silccrypt/Makefile
115 #ifdef SILC_DIST_SIM
116 lib/silcsim/Makefile
117 #endif SILC_DIST_SIM
118 lib/silcske/Makefile
119 lib/silcutil/Makefile
120 lib/silcutil/unix/Makefile
121 lib/silcutil/win32/Makefile
122 lib/silcutil/beos/Makefile
123 lib/silcutil/os2/Makefile
124 lib/silcutil/epoc/Makefile
125 #ifdef SILC_DIST_SFTP
126 lib/silcsftp/Makefile
127 #endif SILC_DIST_SFTP
128 #ifdef SILC_DIST_INPLACE
129 lib/silcutil/tests/Makefile
130 lib/silccrypt/tests/Makefile
131 lib/silccore/tests/Makefile
132 lib/silcsftp/tests/Makefile
133 #endif SILC_DIST_INPLACE
134 )
135
136 #ifdef SILC_DIST_TOOLKIT
137 AC_CONFIG_FILES(
138 lib/silc.pc
139 lib/silcclient.pc
140 )
141 #endif SILC_DIST_TOOLKIT
142
143 #ifdef SILC_DIST_CLIENTLIB
144 AC_CONFIG_FILES(lib/silcclient/Makefile)
145 #endif SILC_DIST_CLIENTLIB
146
147 fi      # compile_libs
148
149 #endif SILC_DIST_LIB