Imported Upstream version 1.4.0
[platform/upstream/libksba.git] / autogen.sh
1 #! /bin/sh
2 # autogen.sh
3 # Copyright (C) 2003, 2014 g10 Code GmbH
4 #
5 # This file is free software; as a special exception the author gives
6 # unlimited permission to copy and/or distribute it, with or without
7 # modifications, as long as this notice is preserved.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
11 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 #
13 # This is a generic script to create the configure script and handle cross
14 # build environments.  It requires the presence of a autogen.rc file to
15 # configure it for the respective package.  It is maintained as part of
16 # GnuPG and source copied by other packages.
17 #
18 # Version: 2014-06-06
19
20 configure_ac="configure.ac"
21
22 cvtver () {
23   awk 'NR==1 {split($NF,A,".");X=1000000*A[1]+1000*A[2]+A[3];print X;exit 0}'
24 }
25
26 check_version () {
27     if [ $(( `("$1" --version || echo "0") | cvtver` >= $2 )) = 1 ]; then
28        return 0
29     fi
30     echo "**Error**: "\`$1\'" not installed or too old." >&2
31     echo '           Version '$3' or newer is required.' >&2
32     [ -n "$4" ] && echo '           Note that this is part of '\`$4\''.' >&2
33     DIE="yes"
34     return 1
35 }
36
37 fatal () {
38     echo "autogen.sh:" "$*" >&2
39     DIE=yes
40 }
41
42 info () {
43     if [ -z "${SILENT}" ]; then
44       echo "autogen.sh:" "$*" >&2
45     fi
46 }
47
48 die_p () {
49   if [ "$DIE" = "yes" ]; then
50     echo "autogen.sh: Stop." >&2
51     exit 1
52   fi
53 }
54
55 replace_sysroot () {
56     configure_opts=$(echo $configure_opts | sed "s#@SYSROOT@#${w32root}#g")
57     extraoptions=$(echo $extraoptions | sed "s#@SYSROOT@#${w32root}#g")
58 }
59
60 # Allow to override the default tool names
61 AUTOCONF=${AUTOCONF_PREFIX}${AUTOCONF:-autoconf}${AUTOCONF_SUFFIX}
62 AUTOHEADER=${AUTOCONF_PREFIX}${AUTOHEADER:-autoheader}${AUTOCONF_SUFFIX}
63
64 AUTOMAKE=${AUTOMAKE_PREFIX}${AUTOMAKE:-automake}${AUTOMAKE_SUFFIX}
65 ACLOCAL=${AUTOMAKE_PREFIX}${ACLOCAL:-aclocal}${AUTOMAKE_SUFFIX}
66
67 GETTEXT=${GETTEXT_PREFIX}${GETTEXT:-gettext}${GETTEXT_SUFFIX}
68 MSGMERGE=${GETTEXT_PREFIX}${MSGMERGE:-msgmerge}${GETTEXT_SUFFIX}
69
70 DIE=no
71 FORCE=
72 SILENT=
73 PRINT_HOST=no
74 PRINT_BUILD=no
75 tmp=$(dirname "$0")
76 tsdir=$(cd "${tmp}"; pwd)
77 version_parts=3
78
79 if [ -n "${AUTOGEN_SH_SILENT}" ]; then
80   SILENT=" --silent"
81 fi
82 if test x"$1" = x"--help"; then
83   echo "usage: ./autogen.sh [--silent] [--force] [--build-TYPE] [ARGS]"
84   exit 0
85 fi
86 if test x"$1" = x"--silent"; then
87   SILENT=" --silent"
88   shift
89 fi
90 if test x"$1" = x"--force"; then
91   FORCE=" --force"
92   shift
93 fi
94 if test x"$1" = x"--print-host"; then
95   PRINT_HOST=yes
96   shift
97 fi
98 if test x"$1" = x"--print-build"; then
99   PRINT_BUILD=yes
100   shift
101 fi
102
103
104 # Reject unsafe characters in $HOME, $tsdir and cwd.  We consider spaces
105 # as unsafe because it is too easy to get scripts wrong in this regard.
106 am_lf='
107 '
108 case `pwd` in
109   *[\;\\\"\#\$\&\'\`$am_lf\ \   ]*)
110     fatal "unsafe working directory name" ;;
111 esac
112 case $tsdir in
113   *[\;\\\"\#\$\&\'\`$am_lf\ \   ]*)
114     fatal "unsafe source directory: \`$tsdir'" ;;
115 esac
116 case $HOME in
117   *[\;\\\"\#\$\&\'\`$am_lf\ \   ]*)
118     fatal "unsafe home directory: \`$HOME'" ;;
119 esac
120 die_p
121
122
123 # List of variables sourced from autogen.rc.  The strings '@SYSROOT@' in
124 # these variables are replaced by the actual system root.
125 configure_opts=
126 extraoptions=
127 # List of optional variables sourced from autogen.rc and ~/.gnupg-autogen.rc
128 w32_toolprefixes=
129 w32_extraoptions=
130 w32ce_toolprefixes=
131 w32ce_extraoptions=
132 w64_toolprefixes=
133 w64_extraoptions=
134 amd64_toolprefixes=
135 # End list of optional variables sourced from ~/.gnupg-autogen.rc
136 # What follows are variables which are sourced but default to
137 # environment variables or lacking them hardcoded values.
138 #w32root=
139 #w32ce_root=
140 #w64root=
141 #amd64root=
142
143 # Convenience option to use certain configure options for some hosts.
144 myhost=""
145 myhostsub=""
146 case "$1" in
147     --find-version)
148         myhost="find-version"
149         SILENT=" --silent"
150         shift
151         ;;
152     --build-w32)
153         myhost="w32"
154         shift
155         ;;
156     --build-w32ce)
157         myhost="w32"
158         myhostsub="ce"
159         shift
160         ;;
161     --build-w64)
162         myhost="w32"
163         myhostsub="64"
164         shift
165         ;;
166     --build-amd64)
167         myhost="amd64"
168         shift
169         ;;
170     --build*)
171         fatal "**Error**: invalid build option $1"
172         shift
173         ;;
174     --coverage)
175         myhost="coverage"
176         shift
177         ;;
178     --report)
179         myhost="report"
180         shift
181         ;;
182     *)
183         ;;
184 esac
185 die_p
186
187
188 # Source our configuration
189 if [ -f "${tsdir}/autogen.rc" ]; then
190     . "${tsdir}/autogen.rc"
191 fi
192
193 # Source optional site specific configuration
194 if [ -f "$HOME/.gnupg-autogen.rc" ]; then
195     info "sourcing extra definitions from $HOME/.gnupg-autogen.rc"
196     . "$HOME/.gnupg-autogen.rc"
197 fi
198
199
200 # **** FIND VERSION ****
201 # This is a helper for the configure.ac M4 magic
202 # Called
203 #   ./autogen.sh --find-version PACKAGE MAJOR MINOR [MICRO]
204 # returns a complete version string with automatic beta numbering.
205 if [ "$myhost" = "find-version" ]; then
206     package="$1"
207     major="$2"
208     minor="$3"
209     micro="$4"
210
211     case "$version_parts" in
212       2)
213         matchstr1="$package-$major.[0-9]*"
214         matchstr2="$package-$major-base"
215         vers="$major.$minor"
216         ;;
217       *)
218         matchstr1="$package-$major.$minor.[0-9]*"
219         matchstr2="$package-$major.$minor-base"
220         vers="$major.$minor.$micro"
221         ;;
222     esac
223
224     beta=no
225     if [ -d .git ]; then
226       ingit=yes
227       tmp=$(git describe --match "${matchstr1}" --long 2>/dev/null)
228       if [ -n "$tmp" ]; then
229           tmp=$(echo "$tmp"|awk -F- '$3!=0 && $3 !~ /^beta/ {print"-beta"$3}')
230       else
231           tmp=$(git describe --match "${matchstr2}" --long 2>/dev/null \
232                 | awk -F- '$4!=0{print"-beta"$4}')
233       fi
234       [ -n "$tmp" ] && beta=yes
235       rev=$(git rev-parse --short HEAD | tr -d '\n\r')
236       rvd=$((0x$(echo ${rev} | head -c 4)))
237     else
238       ingit=no
239       beta=yes
240       tmp="-unknown"
241       rev="0000000"
242       rvd="0"
243     fi
244
245     echo "$package-$vers$tmp:$beta:$ingit:$vers$tmp:$vers:$tmp:$rev:$rvd:"
246     exit 0
247 fi
248 # **** end FIND VERSION ****
249
250 # **** COVERAGE ****
251 # This is a helper for the code coverage collection
252 # Called
253 #   ./autogen.sh --coverage lcov gcov [dirs...]
254 if [ "$myhost" = "coverage" ]; then
255   LCOV="$1"
256   GCOV="$2"
257   BASE=`realpath "$3"`
258   COVINFO=""
259
260   shift 3
261
262   while [ x"$1" != "x" ]; do
263     P="$1"
264     $LCOV --gcov-tool $GCOV \
265           --base-directory "$BASE"/"$P" \
266           --directory "$P" \
267           --output-file coverage.info.`basename "$P"` \
268           --capture --no-checksum --compat-libtool \
269           --rc lcov_branch_coverage=1
270     COVINFO="$COVINFO -a coverage.info."`basename "$P"`
271     shift
272   done
273
274   $LCOV $COVINFO --base-directory "$BASE" --output-file coverage.info \
275           --no-checksum \
276           --rc lcov_branch_coverage=1
277
278   exit 0
279 fi
280 # **** end COVERAGE ****
281
282 # **** COVERAGE_REPORT ****
283 # This is a helper for the code coverage report
284 # Called
285 #   ./autogen.sh --report lcov genhtml [exclude...]
286 if [ "$myhost" = "report" ]; then
287   LCOV="$1"
288   GENHTML="$2"
289
290   shift 2
291
292   while [ x"$1" != "x" ]; do
293     P="$1"
294     $LCOV --remove coverage.info "$P" -o coverage.info \
295           --rc lcov_branch_coverage=1
296     shift
297   done
298
299   LANG=C $GENHTML --output-directory coveragereport --title "Code Coverage" \
300                   --legend --show-details coverage.info \
301                   --rc lcov_branch_coverage=1
302
303   exit 0
304 fi
305 # **** end COVERAGE_REPORT ****
306
307 if [ ! -f "$tsdir/build-aux/config.guess" ]; then
308     fatal "$tsdir/build-aux/config.guess not found"
309     exit 1
310 fi
311 build=`$tsdir/build-aux/config.guess`
312 if [ $PRINT_BUILD = yes ]; then
313     echo "$build"
314     exit 0
315 fi
316
317
318
319 # ******************
320 #  W32 build script
321 # ******************
322 if [ "$myhost" = "w32" ]; then
323     case $myhostsub in
324         ce)
325           w32root="$w32ce_root"
326           [ -z "$w32root" ] && w32root="$HOME/w32ce_root"
327           toolprefixes="$w32ce_toolprefixes arm-mingw32ce"
328           extraoptions="$extraoptions $w32ce_extraoptions"
329           ;;
330         64)
331           w32root="$w64root"
332           [ -z "$w32root" ] && w32root="$HOME/w64root"
333           toolprefixes="$w64_toolprefixes x86_64-w64-mingw32"
334           extraoptions="$extraoptions $w64_extraoptions"
335           ;;
336         *)
337           [ -z "$w32root" ] && w32root="$HOME/w32root"
338           toolprefixes="$w32_toolprefixes i686-w64-mingw32 i586-mingw32msvc"
339           toolprefixes="$toolprefixes i386-mingw32msvc mingw32"
340           extraoptions="$extraoptions $w32_extraoptions"
341           ;;
342     esac
343     info "Using $w32root as standard install directory"
344     replace_sysroot
345
346     # Locate the cross compiler
347     crossbindir=
348     for host in $toolprefixes; do
349         if ${host}-gcc --version >/dev/null 2>&1 ; then
350             crossbindir=/usr/${host}/bin
351             conf_CC="CC=${host}-gcc"
352             break;
353         fi
354     done
355     if [ -z "$crossbindir" ]; then
356         fatal "cross compiler kit not installed"
357         if [ -z "$myhostsub" ]; then
358           info "Under Debian GNU/Linux, you may install it using"
359           info "  apt-get install mingw32 mingw32-runtime mingw32-binutils"
360         fi
361         die_p
362     fi
363     if [ $PRINT_HOST = yes ]; then
364         echo "$host"
365         exit 0
366     fi
367
368     if [ -f "$tsdir/config.log" ]; then
369         if ! head $tsdir/config.log | grep "$host" >/dev/null; then
370             fatal "Please run a 'make distclean' first"
371             die_p
372         fi
373     fi
374
375     $tsdir/configure --enable-maintainer-mode ${SILENT} \
376              --prefix=${w32root}  \
377              --host=${host} --build=${build} SYSROOT=${w32root} \
378              ${configure_opts} ${extraoptions} "$@"
379     rc=$?
380     exit $rc
381 fi
382 # ***** end W32 build script *******
383
384 # ***** AMD64 cross build script *******
385 # Used to cross-compile for AMD64 (for testing)
386 if [ "$myhost" = "amd64" ]; then
387     [ -z "$amd64root" ] && amd64root="$HOME/amd64root"
388     info "Using $amd64root as standard install directory"
389     replace_sysroot
390
391     toolprefixes="$amd64_toolprefixes x86_64-linux-gnu amd64-linux-gnu"
392
393     # Locate the cross compiler
394     crossbindir=
395     for host in $toolprefixes ; do
396         if ${host}-gcc --version >/dev/null 2>&1 ; then
397             crossbindir=/usr/${host}/bin
398             conf_CC="CC=${host}-gcc"
399             break;
400         fi
401     done
402     if [ -z "$crossbindir" ]; then
403         echo "Cross compiler kit not installed" >&2
404         echo "Stop." >&2
405         exit 1
406     fi
407     if [ $PRINT_HOST = yes ]; then
408         echo "$host"
409         exit 0
410     fi
411
412     if [ -f "$tsdir/config.log" ]; then
413         if ! head $tsdir/config.log | grep "$host" >/dev/null; then
414             echo "Please run a 'make distclean' first" >&2
415             exit 1
416         fi
417     fi
418
419     $tsdir/configure --enable-maintainer-mode ${SILENT} \
420              --prefix=${amd64root}  \
421              --host=${host} --build=${build} \
422              ${configure_opts} ${extraoptions} "$@"
423     rc=$?
424     exit $rc
425 fi
426 # ***** end AMD64 cross build script *******
427
428
429 # Grep the required versions from configure.ac
430 autoconf_vers=`sed -n '/^AC_PREREQ(/ {
431 s/^.*(\(.*\))/\1/p
432 q
433 }' ${configure_ac}`
434 autoconf_vers_num=`echo "$autoconf_vers" | cvtver`
435
436 automake_vers=`sed -n '/^min_automake_version=/ {
437 s/^.*="\(.*\)"/\1/p
438 q
439 }' ${configure_ac}`
440 automake_vers_num=`echo "$automake_vers" | cvtver`
441
442 if [ -d "${tsdir}/po" ]; then
443   gettext_vers=`sed -n '/^AM_GNU_GETTEXT_VERSION(/ {
444 s/^.*\[\(.*\)])/\1/p
445 q
446 }' ${configure_ac}`
447   gettext_vers_num=`echo "$gettext_vers" | cvtver`
448 else
449   gettext_vers="n/a"
450 fi
451
452 if [ -z "$autoconf_vers" -o -z "$automake_vers" -o -z "$gettext_vers" ]
453 then
454   echo "**Error**: version information not found in "\`${configure_ac}\'"." >&2
455   exit 1
456 fi
457
458
459 if check_version $AUTOCONF $autoconf_vers_num $autoconf_vers ; then
460     check_version $AUTOHEADER $autoconf_vers_num $autoconf_vers autoconf
461 fi
462 if check_version $AUTOMAKE $automake_vers_num $automake_vers; then
463   check_version $ACLOCAL $automake_vers_num $autoconf_vers automake
464 fi
465 if [ "$gettext_vers" != "n/a" ]; then
466   if check_version $GETTEXT $gettext_vers_num $gettext_vers; then
467     check_version $MSGMERGE $gettext_vers_num $gettext_vers gettext
468   fi
469 fi
470
471 if [ "$DIE" = "yes" ]; then
472     cat <<EOF
473
474 Note that you may use alternative versions of the tools by setting
475 the corresponding environment variables; see README.GIT for details.
476
477 EOF
478     die_p
479 fi
480
481 # Check the git setup.
482 if [ -d .git ]; then
483   CP="cp -a"
484   [ -z "${SILENT}" ] && CP="$CP -v"
485   if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
486     [ -z "${SILENT}" ] && cat <<EOF
487 *** Activating trailing whitespace git pre-commit hook. ***
488     For more information see this thread:
489       http://mail.gnome.org/archives/desktop-devel-list/2009-May/msg00084html
490     To deactivate this pre-commit hook again move .git/hooks/pre-commit
491     and .git/hooks/pre-commit.sample out of the way.
492 EOF
493       $CP .git/hooks/pre-commit.sample .git/hooks/pre-commit
494       chmod +x  .git/hooks/pre-commit
495   fi
496
497   if [ "$gettext_vers" != "n/a" ]; then
498     tmp=$(git config --get filter.cleanpo.clean)
499     if [ "$tmp" != \
500           "awk '/^\"POT-Creation-Date:/&&!s{s=1;next};!/^#: /{print}'" ]
501     then
502       info "*** Adding GIT filter.cleanpo.clean configuration."
503       git config --add filter.cleanpo.clean \
504         "awk '/^\"POT-Creation-Date:/&&!s{s=1;next};!/^#: /{print}'"
505     fi
506   fi
507   if [ -f build-aux/git-hooks/commit-msg -a ! -f .git/hooks/commit-msg ] ; then
508       [ -z "${SILENT}" ] && cat <<EOF
509 *** Activating commit log message check hook. ***
510 EOF
511       $CP build-aux/git-hooks/commit-msg .git/hooks/commit-msg
512       chmod +x  .git/hooks/commit-msg
513   fi
514 fi
515
516 aclocal_flags="-I m4"
517 if [ -n "${extra_aclocal_flags}" ]; then
518   aclocal_flags="${aclocal_flags} ${extra_aclocal_flags}"
519 fi
520 if [ -n "${ACLOCAL_FLAGS}" ]; then
521   aclocal_flags="${aclocal_flags} ${ACLOCAL_FLAGS}"
522 fi
523 info "Running $ACLOCAL ${aclocal_flags} ..."
524 $ACLOCAL ${aclocal_flags}
525 info "Running autoheader..."
526 $AUTOHEADER
527 info "Running automake --gnu ..."
528 $AUTOMAKE --gnu;
529 info "Running autoconf${FORCE} ..."
530 $AUTOCONF${FORCE}
531
532 info "You may now run:${am_lf}  ${final_info}"