16d5cc71cab3bb50e9fab3585cf0002870d73ff3
[debian/uanytun.git] / src / configure
1 #!/bin/sh
2 #
3 #  uAnytun
4 #
5 #  uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
6 #  featured implementation uAnytun has no support for multiple connections
7 #  or synchronisation. It is a small single threaded implementation intended
8 #  to act as a client on small platforms.
9 #  The secure anycast tunneling protocol (satp) defines a protocol used
10 #  for communication between any combination of unicast and anycast
11 #  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
12 #  mode and allows tunneling of every ETHER TYPE protocol (e.g.
13 #  ethernet, ip, arp ...). satp directly includes cryptography and
14 #  message authentication based on the methods used by SRTP.  It is
15 #  intended to deliver a generic, scaleable and secure solution for
16 #  tunneling and relaying of packets of any protocol.
17 #
18 #
19 #  Copyright (C) 2007-2014 Christian Pointner <equinox@anytun.org>
20 #
21 #  This file is part of uAnytun.
22 #
23 #  uAnytun is free software: you can redistribute it and/or modify
24 #  it under the terms of the GNU General Public License as published by
25 #  the Free Software Foundation, either version 3 of the License, or
26 #  any later version.
27 #
28 #  uAnytun is distributed in the hope that it will be useful,
29 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
30 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31 #  GNU General Public License for more details.
32 #
33 #  You should have received a copy of the GNU General Public License
34 #  along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
35 #
36 #   In addition, as a special exception, the copyright holders give
37 #   permission to link the code of portions of this program with the
38 #   OpenSSL library under certain conditions as described in each
39 #   individual source file, and distribute linked combinations
40 #   including the two.
41 #   You must obey the GNU General Public License in all respects
42 #   for all of the code used other than OpenSSL.  If you modify
43 #   file(s) with this exception, you may extend this exception to your
44 #   version of the file(s), but you are not obligated to do so.  If you
45 #   do not wish to do so, delete this exception statement from your
46 #   version.  If you delete this exception statement from all source
47 #   files in the program, then also delete it here.
48 #
49
50 TARGET=`uname -s`
51 EBUILD_COMPAT=0
52
53 USE_CLANG=0
54
55 CRYPTO_LIB='gcrypt'
56 PASSPHRASE=1
57
58 PREFIX='/usr/local'
59 SBINDIR=''
60 ETCDIR=''
61 MANDIR=''
62 INSTALLMANPAGE=1
63 EXAMPLESDIR=''
64 INSTALLEXAMPLES=1
65
66 print_usage() {
67   echo "configure --help                    print this"
68   echo "          --target=<TARGET>         build target i.e. Linux (default: autodetect)"
69   echo "          --prefix=<PREFIX>         the installation prefix (default: /usr/local)"
70   echo "          --sbindir=<DIR>           the path to the sbin directory (default: $PREFIX/sbin)"
71   echo "          --sysconfdir=<DIR>        the path to the system configuration directory (default: $PREFIX/etc"
72   echo "          --mandir=<DIR>            the path to the system man pages (default: $PREFIX/share/man)"
73   echo "          --no-manpage              dont't install manpage"
74   echo "          --examplesdir=<DIR>       the path to the examples files (default: $PREFIX/share/examples)"
75   echo "          --no-examples             dont't install example files"
76   echo "          --use-gcrypt              use libgcrypt (this is the default)"
77   echo "          --use-nettle              use libnettle instead of libgcrypt"
78   echo "          --use-ssl-crypto          use openssl crypto library instead of libgcrypt"
79   echo "          --no-crypto               disable crypto at all (only NULL cipher)"
80   echo "          --disable-passphrase      disable master key and salt passphrase"
81   echo "          --enable-passphrase       enable master key and salt passphrase"
82   echo "          --use-clang               use clang/llvm as compiler/linker"
83 }
84
85 for arg
86 do
87   case $arg in
88   --target=*)
89     TARGET=${arg#--target=}
90   ;;
91   --use-clang)
92     USE_CLANG=1
93   ;;
94   --prefix=*)
95     PREFIX=${arg#--prefix=}
96   ;;
97   --sbindir=*)
98     SBINDIR=${arg#--sbindir=}
99   ;;
100   --sysconfdir=*)
101     ETCDIR=${arg#--sysconfdir=}
102   ;;
103   --mandir=*)
104     MANDIR=${arg#--mandir=}
105   ;;
106   --no-manpage)
107     INSTALLMANPAGE=0
108   ;;
109   --examplesdir=*)
110     EXAMPLESDIR=${arg#--examplesdir=}
111   ;;
112   --no-examples)
113     INSTALLEXAMPLES=0
114   ;;
115   --use-gcrypt)
116     CRYPTO_LIB='gcrypt'
117   ;;
118   --use-nettle)
119     CRYPTO_LIB='nettle'
120   ;;
121   --use-ssl-crypto)
122     CRYPTO_LIB='ssl'
123   ;;
124   --no-crypto)
125     CRYPTO_LIB='none'
126   ;;
127   --disable-passphrase)
128     PASSPHRASE=0
129   ;;
130   --enable-passphrase)
131     PASSPHRASE=1
132   ;;
133   --ebuild-compat)
134     EBUILD_COMPAT=1
135   ;;
136   --help)
137     print_usage
138     exit 0
139   ;;
140   *)
141     ERRORS="$ERRORS $arg"
142   ;;
143   esac
144 done
145
146 if [ -n "$ERRORS" ] && [ $EBUILD_COMPAT -ne 1 ]; then
147   for error in $ERRORS; do
148     echo "Unknown argument: $error"
149   done
150
151   print_usage
152   exit 1
153 fi
154
155 if [ $USE_CLANG -eq 0 ]; then
156   CFLAGS='-g -Wall -O2'
157   LDFLAGS='-g -Wall -O2'
158   COMPILER='gcc'
159 else
160   CFLAGS='-g -O2'
161   LDFLAGS='-g -O2'
162   COMPILER='clang'
163 fi
164
165 rm -f version.h
166 rm -f include.mk
167 case $TARGET in
168   Linux)
169     rm -f tun.c
170     ln -sf linux/tun.c
171     echo "loading Linux specific TUN Device"
172   ;;
173   OpenBSD|FreeBSD|NetBSD|GNU/kFreeBSD)
174     rm -f tun.c
175     ln -sf bsd/tun.c
176     echo "loading BSD specific TUN Device"
177     CFLAGS=$CFLAGS' -I/usr/local/include'
178     LDFLAGS=$LDFLAGS' -L/usr/local/lib'
179   ;;
180   *)
181     echo "platform not supported"
182     exit 1;
183   ;;
184 esac
185
186
187 case $CRYPTO_LIB in
188   gcrypt)
189     CFLAGS=$CFLAGS' -DUSE_GCRYPT'
190     LDFLAGS=$LDFLAGS' -lgcrypt'
191     echo "using gcrypt library"
192   ;;
193   nettle)
194     CFLAGS=$CFLAGS' -DUSE_NETTLE'
195     LDFLAGS=$LDFLAGS' -lnettle'
196     echo "using nettle library"
197   ;;
198   ssl)
199     CFLAGS=$CFLAGS' -DUSE_SSL_CRYPTO'
200     LDFLAGS=$LDFLAGS' -lcrypto'
201     echo "using ssl crypto library"
202   ;;
203   none)
204     CFLAGS=$CFLAGS' -DNO_CRYPT'
205     echo "disabling crypto"
206   ;;
207 esac
208
209 if [ $PASSPHRASE -eq 0 ]; then
210   CFLAGS=$CFLAGS' -DNO_PASSPHRASE'
211   echo "disabling master key and salt passphrase"
212 fi
213
214 if [ -z "$SBINDIR" ]; then
215   SBINDIR=$PREFIX/sbin
216 fi
217
218 if [ -z "$ETCDIR" ]; then
219   ETCDIR=$PREFIX/etc
220 fi
221
222 if [ -z "$MANDIR" ]; then
223   MANDIR=$PREFIX/share/man
224 fi
225
226 if [ -z "$EXAMPLESDIR" ]; then
227   EXAMPLESDIR=$PREFIX/share/examples
228 fi
229
230 cat > include.mk <<EOF
231 # this file was created automatically
232 # do not edit this file directly
233 # use ./configure instead
234
235 TARGET := $TARGET
236 CC := $COMPILER
237 CFLAGS := $CFLAGS
238 LDFLAGS := $LDFLAGS
239 STRIP := strip
240 INSTALL := install
241
242 PREFIX := $PREFIX
243 SBINDIR := $SBINDIR
244 ETCDIR := $ETCDIR
245 EOF
246
247 if [ $CRYPTO_LIB = "none" ]; then
248   echo "NO_CRYPT_OBJ = 1" >> include.mk
249 fi
250
251 if [ $INSTALLMANPAGE -eq 1 ]; then
252   echo "MANDIR := $MANDIR" >> include.mk
253   echo "installing manpage"
254 else
255   echo "not installing manpage"
256 fi
257
258 if [ $INSTALLEXAMPLES -eq 1 ]; then
259   echo "EXAMPLESDIR := $EXAMPLESDIR" >> include.mk
260   echo "installing example files"
261 else
262   echo "not installing example files"
263 fi
264
265 VERSION=`cat ../version`
266 if which svn >/dev/null; then
267   SVN_REV=`svn info 2> /dev/null | grep "^Revision: " | awk '{print($2)}'`
268   if [ -n "$SVN_REV" ]; then
269     VERSION="$VERSION (svn$SVN_REV)"
270   fi
271 fi
272 HOSTNAME=`hostname`
273 DATE=`date +"%d.%m.%Y %H:%M:%S %Z"`
274
275 cat > version.h <<EOF
276 /*
277  * uanytun version info
278  *
279  * this file was created automatically
280  * do not edit this file directly
281  * use ./configure instead
282  */
283
284 #ifndef UANYTUN_version_h_INCLUDED
285 #define UANYTUN_version_h_INCLUDED
286
287 #define VERSION_STRING_0 "uanytun version $VERSION"
288 #define VERSION_STRING_1 "built on $HOSTNAME, $DATE"
289
290 #endif
291
292 EOF
293
294 exit 0