Merged silc_1_0_branch to trunk.
[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 #ifdef SILC_DIST_MPI
33 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcmath/mpi"
34 #endif SILC_DIST_MPI
35 #endif SILC_DIST_MATH
36 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcske"
37 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcutil"
38 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcsftp"
39 #ifdef SILC_DIST_SIM
40 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcsim"
41 #endif SILC_DIST_SIM
42 #ifdef SILC_DIST_CLIENT
43 SILC_LIB_INCLUDES="$SILC_LIB_INCLUDES -I$SILC_TOP_SRCDIR/lib/silcclient"
44 #endif SILC_DIST_CLIENT
45
46 ##
47 ## Library versioning.
48 ##
49 # Do the releases and library versioning according to following rules:
50 #
51 #  - If any code has changed in library, increment [LIB]_REVISION
52 #  - If functions were added, set [LIB]_REVISION to 0
53 #  - If functions were added, removed or changed, increment [LIB]_CURRENT
54 #  - If functions were added, increment [LIB]_AGE
55 #  - If functions were removed, set [LIB]_AGE to 0
56 #
57 # where [LIB] is LIBSILC and LIBSILCCLIENT, and where "functions" means
58 # functions public interfaces.
59 #
60 # The LIB_BASE_VERSION defines the SILC software major.minor version and
61 # it is increment only when these version numbers actually change.
62 #
63
64 # Base version for libraries.  Do not change this unless SILC version
65 # changes too.
66 LIB_BASE_VERSION=1.0
67
68 # libsilc versions
69 LIBSILC_CURRENT=4               # prev = 3
70 LIBSILC_REVISION=0              # prev = 0
71 LIBSILC_AGE=3                   # prev = 2
72
73 # libsilcclient versions
74 LIBSILCCLIENT_CURRENT=3         # prev = 3
75 LIBSILCCLIENT_REVISION=1        # prev = 0
76 LIBSILCCLIENT_AGE=2             # prev = 2
77
78 # Substitute the version numbers
79 AC_SUBST(LIB_BASE_VERSION)
80 AC_SUBST(LIBSILC_CURRENT)
81 AC_SUBST(LIBSILC_REVISION)
82 AC_SUBST(LIBSILC_AGE)
83 AC_SUBST(LIBSILCCLIENT_CURRENT)
84 AC_SUBST(LIBSILCCLIENT_REVISION)
85 AC_SUBST(LIBSILCCLIENT_AGE)
86
87 # Make enable-shared aware
88 AM_CONDITIONAL(SILC_ENABLE_SHARED, test "$enable_shared" = yes)
89
90 # Stack trace checking
91 #
92 AC_MSG_CHECKING(whether to enable stack tracing)
93 AC_ARG_ENABLE(stack-trace,
94   [  --enable-stack-trace    enable memory stack trace],
95   [
96     case "${enableval}" in
97     yes)
98       AC_MSG_RESULT(yes)
99       AC_DEFINE([SILC_STACKTRACE], [], [SILC_STACKTRACE])
100       ;;
101     *)
102       AC_MSG_RESULT(no)
103       ;;
104     esac
105   ],
106     AC_MSG_RESULT(no)
107   )
108
109 #
110 # Makefile outputs
111 #
112 AC_CONFIG_FILES(
113 lib/Makefile
114 lib/contrib/Makefile
115 lib/silccore/Makefile
116 lib/silccrypt/Makefile
117 #ifdef SILC_DIST_SIM
118 lib/silcsim/Makefile
119 #endif SILC_DIST_SIM
120 lib/silcske/Makefile
121 lib/silcutil/Makefile
122 lib/silcutil/unix/Makefile
123 lib/silcutil/win32/Makefile
124 lib/silcutil/beos/Makefile
125 lib/silcutil/os2/Makefile
126 lib/silcutil/epoc/Makefile
127 #ifdef SILC_DIST_MATH
128 lib/silcmath/Makefile
129 #endif SILC_DIST_MATH
130 lib/silcsftp/Makefile
131 #ifdef SILC_DIST_INPLACE
132 lib/silcutil/tests/Makefile
133 lib/silccrypt/tests/Makefile
134 lib/silccore/tests/Makefile
135 lib/silcsftp/tests/Makefile
136 #endif SILC_DIST_INPLACE
137 )
138
139 #ifdef SILC_DIST_TOOLKIT
140 AC_CONFIG_FILES(
141 lib/silc.pc
142 lib/silcclient.pc
143 )
144 #endif SILC_DIST_TOOLKIT
145
146 #ifdef SILC_DIST_CLIENTLIB
147 AC_CONFIG_FILES(lib/silcclient/Makefile)
148 #endif SILC_DIST_CLIENTLIB
149
150 fi      # compile_libs
151
152 #endif SILC_DIST_LIB