1 dnl Process this file with autoconf to produce a configure script.
2 AC_REVISION($Revision$)
4 test -z "$CFLAGS" && CFLAGS="-g"
5 AC_INIT([Heimdal],[7.99.1],[https://github.com/heimdal/heimdal/issues])
6 AC_CONFIG_SRCDIR([kuser/kinit.c])
7 AC_CONFIG_HEADERS(include/config.h)
8 AC_CONFIG_MACRO_DIR([cf])
10 AM_INIT_AUTOMAKE([foreign 1.11])
14 LT_INIT([shared static win32-dll])
17 dnl Checks for programs.
22 AC_CHECK_PROG(CLANG_FORMAT, clang-format, [clang-format], [no])
23 test "$CLANG_FORMAT" = no && CLANG_FORMAT=true
25 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
27 AC_PREFIX_DEFAULT(/usr/heimdal)
29 test "$sysconfdir" = '${prefix}/etc' && sysconfdir='/etc'
30 test "$localstatedir" = '${prefix}/var' && localstatedir='/var/heimdal'
34 AC_SUBST(CANONICAL_HOST)
43 dnl this is needed to run the configure tests against glibc
45 AC_DEFINE([_GNU_SOURCE], 1,
46 [Define to enable extensions on glibc-based systems such as Linux.])
52 dnl this is needed when der-protos.h or der-private.h has to be generated
54 if ! test -f "$srcdir/lib/asn1/der-protos.h" ||
55 ! test -f "$srcdir/lib/asn1/der-private.h"; then
57 AC_KRB_PERL_MOD(Getopt::Std)
58 AC_KRB_PERL_MOD(File::Compare)
65 AS_IF([$LEX --nounput -V > /dev/null 2>&1 && test $? -eq 0],
66 [AC_SUBST([FLEXNOUNPUTARGS], ["--nounput"])],
67 [AC_SUBST([FLEXNOUNPUTARGS], [""])])
74 libdir="$libdir$abilibdirext"
78 AM_CONDITIONAL(ENABLE_SHARED, test "$enable_shared" = "yes")
83 AC_HELP_STRING([--enable-gcov], [enable gcov code coverage tool]))
84 AM_CONDITIONAL([ENABLE_GCOV], [test "x$enable_gcov" = xyes])
88 dnl Helper bits for cross compiling
91 AM_CONDITIONAL(CROSS_COMPILE, test "${cross_compiling}" = yes)
93 AC_ARG_WITH(cross-tools,
94 AS_HELP_STRING([--with-cross-tools=dir], [use cross tools in dir]),
95 [if test "$withval" = "yes"; then
96 AC_MSG_ERROR([Need path to cross tools])
98 with_cross_tools="${with_cross_tools}/"
101 if test "${cross_compiling}" != yes ; then
103 ASN1_COMPILE="\$(top_builddir)/lib/asn1/asn1_compile\$(EXEEXT)"
104 SLC="\$(top_builddir)/lib/sl/slc"
106 ASN1_COMPILE_DEP="\$(ASN1_COMPILE)"
109 ASN1_COMPILE="${with_cross_tools}asn1_compile"
110 SLC="${with_cross_tools}slc"
115 ac_cv_prog_COMPILE_ET=${with_cross_tools}compile_et
119 AX_CHECK_COMPILE_FLAG([-Wno-error=enum-conversion],
120 [WFLAGS_ENUM_CONV=-Wno-error=enum-conversion],
121 [WFLAGS_ENUM_CONV=], [-Werror])
122 AX_CHECK_COMPILE_FLAG([-Wno-unused-but-set-variable],
123 [WFLAGS_UNUSED_BUT_SET_VAR=-Wno-unused-but-set-variable],
124 [WFLAGS_UNUSED_BUT_SET_VAR=], [-Werror])
126 AC_SUBST([WFLAGS_ENUM_CONV])
127 AC_SUBST([ASN1_COMPILE])
128 AC_SUBST([ASN1_COMPILE_DEP])
134 AC_DEFINE(HEIM_WEAK_CRYPTO, 1, [Define if you want support for weak crypto])
136 rk_TEST_PACKAGE(openldap,
139 [-lldap -llber],,,OPENLDAP)
140 AM_CONDITIONAL(OPENLDAP, test "$with_openldap" != "no")
142 AC_ARG_ENABLE(hdb-openldap-module,
143 AS_HELP_STRING([--enable-hdb-openldap-module],
144 [if you want support to build openldap hdb as shared object]))
145 if test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes; then
146 AC_DEFINE(OPENLDAP_MODULE, 1, [Define if you want support for hdb ldap module])
148 AM_CONDITIONAL(OPENLDAP_MODULE, test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes)
150 AC_ARG_ENABLE(asn1-templating,
151 AS_HELP_STRING([--disable-asn1-templating],
152 [if you want disable to use of the ASN.1 templating compiler]))
153 AM_CONDITIONAL(ASN1_TEMPLATING, test "x$enable_asn1_templating" != xno)
156 dnl Optional modules, pk-init, digest, kx509
159 AC_ARG_ENABLE(pk-init,
160 AS_HELP_STRING([--disable-pk-init],
161 [if you want disable to PK-INIT support]))
162 if test "$enable_pk_init" != no ;then
163 AC_DEFINE([PKINIT], 1, [Define to enable PKINIT.])
165 AM_CONDITIONAL(PKINIT, test "$enable_pk_init" != no)
167 AC_ARG_ENABLE(digest,
168 AS_HELP_STRING([--disable-digest],
169 [if you want disable to DIGEST support]))
170 if test "$enable_digest" != no ;then
171 AC_DEFINE([DIGEST], 1, [Define to enable DIGEST.])
175 AS_HELP_STRING([--disable-kx509],
176 [if you want disable to kx509 support]))
177 if test "$enable_kx509" != no ;then
178 AC_DEFINE([KX509], 1, [Define to enable kx509.])
181 dnl Need to test if pkg-config exists
186 AC_HELP_STRING([--with-capng], [use libcap-ng to drop KDC privileges @<:@default=check@:>@]),
189 if test "$with_capng" != "no"; then
190 PKG_CHECK_MODULES([CAPNG], [libcap-ng >= 0.4.0],
191 [with_capng=yes],[with_capng=no])
193 if test "$with_capng" = "yes"; then
194 AC_DEFINE_UNQUOTED([HAVE_CAPNG], 1, [whether capng is available for privilege reduction])
196 AM_CONDITIONAL([HAVE_CAPNG], [test "$with_capng" != "no"])
197 AC_SUBST([CAPNG_CFLAGS])
198 AC_SUBST([CAPNG_LIBS])
201 AC_ARG_WITH([microhttpd],
202 AC_HELP_STRING([--with-microhttpd], [use microhttpd to serve KDC REST API @<:@default=check@:>@]),
204 [with_microhttpd=check])
205 if test "$with_microhttpd" != "no"; then
206 PKG_CHECK_MODULES([MICROHTTPD], [libmicrohttpd >= 0.9.37],
207 [with_microhttpd=yes],[with_microhttpd=no])
209 if test "$with_microhttpd" = "yes"; then
210 AC_DEFINE_UNQUOTED([HAVE_MICROHTTPD], 1, [whether libmicrohttpd is available for KDC REST API])
212 AM_CONDITIONAL([HAVE_MICROHTTPD], [test "$with_microhttpd" != "no"])
213 AC_SUBST([MICROHTTPD_CFLAGS])
214 AC_SUBST([MICROHTTPD_LIBS])
218 AC_HELP_STRING([--with-cjwt], [(Experimental) use cjwt to validate JWT tokens @<:@default=check@:>@]),
221 if test "$with_cjwt" != "no"; then
222 PKG_CHECK_MODULES([CJWT], [libcjwt >= 1.0.0],
223 [with_cjwt=yes],[with_cjwt=no])
225 if test "$with_cjwt" = "yes"; then
226 AC_DEFINE_UNQUOTED([HAVE_CJWT], 1, [whether libcjwt is available for KDC REST API])
228 AM_CONDITIONAL([HAVE_CJWT], [test "$with_cjwt" != "no"])
229 AC_SUBST([CJWT_CFLAGS])
230 AC_SUBST([CJWT_LIBS])
234 AC_HELP_STRING([--with-cjson], [(Experimental) use cJSON to extract private claims from JWT tokens @<:@default=check@:>@]),
237 if test "$with_cjson" != "no"; then
238 PKG_CHECK_MODULES([CJSON], [libcjson >= 1.0.0],
239 [with_cjson=yes],[with_cjson=no])
241 if test "$with_cjson" = "yes"; then
242 AC_DEFINE_UNQUOTED([HAVE_CJSON], 1, [whether libcjson is available for KDC REST API])
244 AM_CONDITIONAL([HAVE_CJSON], [test "$with_cjson" != "no"])
245 AC_SUBST([CJSON_CFLAGS])
246 AC_SUBST([CJSON_LIBS])
249 AC_ARG_WITH([mitkrb5],
250 AC_HELP_STRING([--with-mitkrb5], [Path to MIT Kerberos for interop testing @<:@default=check@:>@]),
253 AM_CONDITIONAL([MITKRB5], [test "$with_mitkrb5" != "no"])
256 rk_TEST_PACKAGE(sqlite3,
257 [#include <sqlite3.h>
258 #ifndef SQLITE_OPEN_CREATE
261 [-lsqlite3],,,SQLITE3)
263 if test "X$with_sqlite3" != Xyes ; then
264 INCLUDE_sqlite3="-I\$(top_srcdir)/lib/sqlite"
265 LIB_sqlite3="\$(top_builddir)/lib/sqlite/libheimsqlite.la"
267 AM_CONDITIONAL(SQLITE3, test "X$with_sqlite3" = Xyes)
269 AC_DEFINE(HAVE_SQLITE3, 1, [Define if you want support for sqlite in Heimdal.])
271 AC_ARG_ENABLE(sqlite-cache,
272 AS_HELP_STRING([--disable-sqlite-cache],[if you want support for cache in sqlite]))
273 if test "$enable_sqlite_cache" != no; then
274 AC_DEFINE(HAVE_SCC, 1, [Define if you want support for cache in sqlite.])
276 AM_CONDITIONAL(have_scc, test "$enable_sqlite_cache" != no)
279 dnl check for libintl
280 rk_TEST_PACKAGE(libintl,
281 [#include <libintl.h>],
284 dnl path where the hdb directory is stored
285 AC_ARG_WITH([hdbdir],
286 [AS_HELP_STRING([--with-hdbdir],[Default location for KDC database @<:@default=/var/heimdal@:>@])],
288 [with_hdbdir=/var/heimdal])
289 DIR_hdbdir="$with_hdbdir"
290 AC_SUBST([DIR_hdbdir])
293 AM_CONDITIONAL(KRB5, true)
294 AM_CONDITIONAL(do_roken_rename, true)
296 AC_DEFINE(SUPPORT_INETD, 1, [Enable use of inetd style startup.])dnl
299 AC_DEFINE(KRB5, 1, [Enable Kerberos 5 support in applications.])dnl
307 AS_HELP_STRING([--enable-dce],[if you want support for DCE/DFS PAG's]))
308 if test "$enable_dce" = yes; then
309 AC_DEFINE(DCE, 1, [Define if you want support for DCE/DFS PAG's.])
311 AM_CONDITIONAL(DCE, test "$enable_dce" = yes)
313 ## XXX quite horrible:
314 if test -f /etc/ibmcxx.cfg; then
315 dpagaix_ldadd=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/libraries/{;s/^[[^=]]*=\(.*\)/\1/;s/,/ /gp;}'`
316 dpagaix_cflags=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/options/{;s/^[[^=]]*=\(.*\)/\1/;s/-q[^,]*//;s/,/ /gp;}'`
319 dpagaix_cflags="-D_THREAD_SAFE -D_AIX_PTHREADS_D7 -D_AIX32_THREADS=1 -D_AES_SOURCE -D_AIX41 -I/usr/include/dce"
320 dpagaix_ldadd="-L/usr/lib/threads -ldcelibc_r -ldcepthreads -lpthreads_compat lpthreads -lc_r"
321 dpagaix_ldflags="-Wl,-bI:dfspag.exp"
323 AC_SUBST(dpagaix_cflags)
324 AC_SUBST(dpagaix_ldadd)
325 AC_SUBST(dpagaix_ldflags)
327 AC_ARG_ENABLE([afs-support],
328 AS_HELP_STRING([--disable-afs-support],[if you don't want support for AFS]))
329 if test "$enable_afs_support" = no; then
330 AC_DEFINE(NO_AFS, 1, [Define if you don't wan't support for AFS.])
334 AM_CONDITIONAL(NO_AFS, test "$enable_afs_support" = no)
338 dnl AC_ROKEN(10,[/usr/heimdal /usr/athena],[lib/roken],[$(top_builddir)/lib/roken/libroken.la],[-I$(top_builddir)/lib/roken -I$(top_srcdir)/lib/roken])
341 LIBADD_roken="$LIB_roken"
342 AC_SUBST(LIBADD_roken)dnl
343 LIB_roken="\$(top_builddir)/lib/vers/libvers.la $LIB_roken"
352 AS_HELP_STRING([--disable-mmap],[disable use of mmap]))
353 if test "$enable_mmap" = "no"; then
354 AC_DEFINE(NO_MMAP, 1, [Define if you don't want to use mmap.])
357 AC_ARG_ENABLE(afs-string-to-key,
358 AS_HELP_STRING([--disable-afs-string-to-key],
359 [disable use of weak AFS string-to-key functions]),
360 [], [enable_afs_string_to_key=yes])
362 if test "$enable_afs_string_to_key" = "yes"; then
363 AC_DEFINE(ENABLE_AFS_STRING_TO_KEY, 1, [Define if want to use the weak AFS string to key functions.])
364 ENABLE_AFS_STRING_TO_KEY=1
366 AC_SUBST(ENABLE_AFS_STRING_TO_KEY)dnl
371 rk_TEST_PACKAGE(readline,
373 #if defined(HAVE_READLINE_READLINE_H)
374 #include <readline/readline.h>
375 #elif defined(HAVE_READLINE_H)
376 #include <readline.h>
378 ],-lreadline,,, READLINE,, [readline.h readline/readline.h])
380 rk_TEST_PACKAGE(libedit,
382 #if defined(HAVE_READLINE_READLINE_H)
383 #include <readline/readline.h>
384 #elif defined(HAVE_READLINE_H)
385 #include <readline.h>
386 #elif defined(HAVE_EDITLINE_READLINE_H)
387 #include <editline/readline.h>
389 ],-ledit,,, READLINE,, [readline.h readline/readline.h editline/readline.h])
391 AC_CONFIG_SUBDIRS([lib/libedit])
398 dnl Checks for typedefs, structures, and compiler characteristics.
401 AC_CHECK_TYPE_EXTRA(mode_t, unsigned short, [])
402 AC_CHECK_TYPE_EXTRA(sig_atomic_t, int, [#include <signal.h>])
403 AC_HAVE_TYPE([long long])
407 dnl Checks for header files.
411 CommonCrypto/CommonDigest.h \
412 CommonCrypto/CommonCryptor.h \
427 netinet/in6_machtypes.h \
468 dnl On Solaris 8 there's a compilation warning for term.h because
469 dnl it doesn't define `bool'.
470 AC_CHECK_HEADERS(term.h, , , -)
472 dnl aix have asl.h (A/IX screen library) that we don't want
473 AC_CHECK_HEADERS(asl.h, , , [
475 #ifndef ASL_STRING_EMERG
476 #error ASL_STRING_EMERG missing
479 AC_CHECK_HEADERS(net/if.h, , , [AC_INCLUDES_DEFAULT
480 #if HAVE_SYS_SOCKET_H
481 #include <sys/socket.h>
484 AC_CHECK_HEADERS(sys/ptyvar.h, , , [AC_INCLUDES_DEFAULT
489 AC_CHECK_HEADERS(sys/strtty.h, , , [AC_INCLUDES_DEFAULT
493 #if HAVE_SYS_STREAM_H
494 #include <sys/stream.h>
497 AC_CHECK_HEADERS(sys/ucred.h, , , [AC_INCLUDES_DEFAULT
499 #include <sys/types.h>
502 #include <sys/param.h>
505 AC_CHECK_HEADERS(security/pam_modules.h, , , [AC_INCLUDES_DEFAULT
506 #include <security/pam_appl.h>
510 rk_WIN32_EXPORT(BUILD_KRB5_LIB, KRB5_LIB)
511 rk_WIN32_EXPORT(BUILD_ROKEN_LIB, ROKEN_LIB)
512 rk_WIN32_EXPORT(BUILD_GSSAPI_LIB, GSSAPI_LIB)
513 rk_WIN32_EXPORT(BUILD_KDC_LIB, KDC_LIB)
515 dnl Deal with switch fallthrough warnings
517 #if defined(DISPATCH_FALLTHROUGH)
518 # define HEIM_FALLTHROUGH DISPATCH_FALLTHROUGH
520 # if defined(__GNUC__)
522 # define HEIM_FALLTHROUGH __attribute__((fallthrough))
524 # define HEIM_FALLTHROUGH do {} while (0) /* fallthrough */
527 # define HEIM_FALLTHROUGH do {} while (0) /* fallthrough */
532 dnl Checks for libraries.
534 AC_FIND_FUNC_NO_LIBS(openpty, util,[
540 AC_FIND_FUNC_NO_LIBS(tgetent, termcap ncurses curses tinfo,[
541 #ifdef HAVE_TERMCAP_H
549 dnl Checks for library functions.
577 AC_MSG_CHECKING([checking for __sync_add_and_fetch])
578 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>]],
579 [[unsigned int foo, bar; bar = __sync_add_and_fetch(&foo, 1);]])],
580 [ac_rk_have___sync_add_and_fetch=yes], [ac_rk_have___sync_add_and_fetch=no])
581 if test "$ac_rk_have___sync_add_and_fetch" = "yes" ; then
582 AC_DEFINE_UNQUOTED(HAVE___SYNC_ADD_AND_FETCH, 1, [have __sync_add_and_fetch])
584 AC_MSG_RESULT($ac_rk_have___sync_add_and_fetch)
590 AC_CHECK_GETPWNAM_R_POSIX
591 AC_CHECK_GETPWUID_R_POSIX
593 dnl detect doors on solaris
594 if test "$enable_pthread_support" != no; then
596 LIBS="$LIBS $PTHREADS_LIBS"
597 AC_FIND_FUNC_NO_LIBS(door_create, door)
602 AS_HELP_STRING([--enable-kcm],[enable Kerberos Credentials Manager]),
605 if test "$enable_kcm" = yes ; then
606 if test "$ac_cv_header_sys_un_h" != yes -a "$ac_cv_funclib_door_create" != yes ; then
610 if test "$enable_kcm" = yes; then
611 AC_DEFINE(HAVE_KCM, 1,
612 [Define if you want to use the Kerberos Credentials Manager.])
614 AM_CONDITIONAL(KCM, test "$enable_kcm" = yes)
616 dnl detect keyring on Linux
617 if test "$ac_cv_header_keyutils_h" = yes; then
618 AC_CHECK_SIZEOF([key_serial_t],,[
619 #ifdef HAVE_INTTYPES_H
620 #include <inttypes.h>
622 #ifdef HAVE_SYS_TYPES_H
623 #include <sys/types.h>
625 #include <keyutils.h>
629 AC_FIND_FUNC_NO_LIBS(add_key, keyutils)
630 if test -n "$LIB_add_key"; then
632 LIBS="$LIBS $LIB_add_key"
633 AC_CHECK_FUNCS(keyctl_get_persistent)
636 AM_CONDITIONAL(HAVE_KEYUTILS, test "$ac_cv_func_keyctl_get_persistent" = yes)
638 AC_CHECK_SIZEOF([time_t])
640 AX_CHECK_SIGN([time_t],
641 [ AC_DEFINE(TIME_T_SIGNED, 1, [Define if time_t is signed]) ],
642 [ AC_DEFINE(TIME_T_UNSIGNED, 1, [Define if time_t is unsigned]) ], [
649 AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t,
650 u_int8_t, u_int16_t, u_int32_t, u_int64_t,
651 uint8_t, uint16_t, uint32_t, uint64_t],,,[
652 #ifdef HAVE_INTTYPES_H
653 #include <inttypes.h>
655 #ifdef HAVE_SYS_TYPES_H
656 #include <sys/types.h>
658 #ifdef HAVE_SYS_BITYPES_H
659 #include <sys/bitypes.h>
661 #ifdef HAVE_BIND_BITYPES_H
662 #include <bind/bitypes.h>
664 #ifdef HAVE_NETINET_IN6_MACHTYPES_H
665 #include <netinet/in6_machtypes.h>
669 rk_FRAMEWORK_SECURITY
670 rk_FRAMEWORK_COREFOUNDATION
676 dnl Some operating systems already have com_err and compile_et
679 rk_AUTH_MODULES([sia afskauthlib])
683 rk_WFLAGS([-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs])
686 AH_BOTTOM([#ifdef __APPLE__
687 #include <AvailabilityMacros.h>
690 AH_BOTTOM([#ifdef ROKEN_RENAME
691 #include "roken_rename.h"
694 AC_ARG_ENABLE(heimdal-documentation,
695 AS_HELP_STRING([--disable-heimdal-documentation],
696 [if you want disable to heimdal documentation]))
697 AM_CONDITIONAL(HEIMDAL_DOCUMENTATION, test "$enable_heimdal_documentation" != no)
699 AC_CONFIG_FILES(Makefile \
702 include/gssapi/Makefile \
703 include/hcrypto/Makefile \
704 include/kadm5/Makefile \
708 lib/com_err/Makefile \
709 lib/hcrypto/Makefile \
711 lib/gssapi/Makefile \
722 lib/sqlite/Makefile \
725 lib/gss_preauth/Makefile \
734 appl/afsutil/Makefile \
735 appl/dbutils/Makefile \
736 appl/gssmask/Makefile \
740 appl/dceutils/Makefile \
746 tests/ldap/Makefile \
748 tests/java/Makefile \
749 tests/plugin/Makefile \
751 packages/mac/Makefile \
759 dnl This is the release version name-number[beta]
762 if test -d "$srcdir/.git"; then
763 cat > include/newversion.h.in <<EOF
764 #ifndef VERSION_HIDDEN
765 #define VERSION_HIDDEN
767 VERSION_HIDDEN const char *const heimdal_long_version = "@([#])\$Version: $PACKAGE_STRING by @USER@ on @HOST@ @BRANCH@ @TAG@ ($host) @COMMIT@ @DATE@ \$";
768 VERSION_HIDDEN const char *const heimdal_version = "AC_PACKAGE_STRING";
771 cat > include/newversion.h.in <<EOF
772 #ifndef VERSION_HIDDEN
773 #define VERSION_HIDDEN
775 VERSION_HIDDEN const char *const heimdal_long_version = "@([#])\$Version: $PACKAGE_STRING by @USER@ on @HOST@ ($host) @DATE@ \$";
776 VERSION_HIDDEN const char *const heimdal_version = "AC_PACKAGE_STRING";
780 if test -f include/version.h && cmp -s include/newversion.h.in include/version.h.in; then
781 echo "include/version.h is unchanged"
782 rm -f include/newversion.h.in
784 echo "creating include/version.h"
785 if test -n "$SOURCE_DATE_EPOCH"; then
788 date -u -r "$SOURCE_DATE_EPOCH" "+%Y-%m-%dT%H:%M:%SZ" 2>/dev/null ||
790 date -u -d "@${SOURCE_DATE_EPOCH}" 2>/dev/null ||
791 # Illumos -- sorry, no -r/-d here
795 Date=`date -u "+%Y-%m-%dT%H:%M:%SZ"`
797 if test -n "$SOURCE_HOST"; then
802 if test -n "$SOURCE_USER"; then
805 User=${USER:-${LOGNAME:-`id -nu`}}
807 if test -d "$srcdir/.git"; then
808 GitCommit=`cd $srcdir && git rev-parse HEAD`
809 GitBranch=`cd $srcdir && git rev-parse --abbrev-ref HEAD`
810 if test "x$GitBranch" = master; then
811 GitDesc=`cd $srcdir && git describe --all --dirty`
813 GitDesc=`cd $srcdir && \
814 git describe --tags --match 'heimdal-*' --dirty`
817 GitCommit='<commit-unknown>'
818 GitBranch='<branch-unknown>'
819 GitDesc='<tag-unknown>'
821 mv -f include/newversion.h.in include/version.h.in
822 sed -e "s/@HOST@/$Host/" \
823 -e "s;@USER@;$User;" \
824 -e "s;@DATE@;$Date;" \
825 -e "s;@BRANCH@;$GitBranch;" \
826 -e "s;@TAG@;$GitDesc;" \
827 -e "s;@COMMIT@;$GitCommit;" \
828 include/version.h.in > include/version.h