| configure.ac (31353920) | configure.ac (3ee2ad5b) |
|---|---|
| 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 2809 unchanged lines hidden (view full) --- 2818dnl Custom build version 2819dnl =================================================================== 2820 2821AC_MSG_CHECKING([whether to add custom build version]) 2822if test "z$with_build_version" != "z"; then 2823 BUILD_VER_STRING=$with_build_version 2824 AC_MSG_RESULT([yes, $BUILD_VER_STRING]) 2825else | 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 2809 unchanged lines hidden (view full) --- 2818dnl Custom build version 2819dnl =================================================================== 2820 2821AC_MSG_CHECKING([whether to add custom build version]) 2822if test "z$with_build_version" != "z"; then 2823 BUILD_VER_STRING=$with_build_version 2824 AC_MSG_RESULT([yes, $BUILD_VER_STRING]) 2825else |
| 2826 if test "x$SOURCE_DATE_EPOCH" != "x" ; then 2827 BUILD_VER_STRING=`date -u -d "${SOURCE_DATE_EPOCH}"` 2828 else 2829 BUILD_VER_STRING=`date +"%Y-%m-%d %H:%M:%S (%a, %d %b %Y)"` 2830 fi | 2826 BUILD_VER_STRING= |
| 2831 AC_MSG_RESULT([no]) 2832fi 2833AC_SUBST(BUILD_VER_STRING) 2834 2835dnl =================================================================== 2836dnl Java support enable 2837dnl =================================================================== 2838AC_MSG_CHECKING([whether to build with Java support]) --- 4464 unchanged lines hidden --- | 2827 AC_MSG_RESULT([no]) 2828fi 2829AC_SUBST(BUILD_VER_STRING) 2830 2831dnl =================================================================== 2832dnl Java support enable 2833dnl =================================================================== 2834AC_MSG_CHECKING([whether to build with Java support]) --- 4464 unchanged lines hidden --- |