| configure.ac (61a3a0ff) | configure.ac (25c8c0ab) |
|---|---|
| 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 --- 1783 unchanged lines hidden (view full) --- 1792 AC_MSG_ERROR([failed ($GNUMAKE version >= 3.81 needed]) 1793fi 1794AC_SUBST(GNUMAKE) 1795 1796dnl =================================================================== 1797dnl Search for a pre-installed dmake 1798dnl =================================================================== 1799AC_MSG_CHECKING([for dmake]) | 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 --- 1783 unchanged lines hidden (view full) --- 1792 AC_MSG_ERROR([failed ($GNUMAKE version >= 3.81 needed]) 1793fi 1794AC_SUBST(GNUMAKE) 1795 1796dnl =================================================================== 1797dnl Search for a pre-installed dmake 1798dnl =================================================================== 1799AC_MSG_CHECKING([for dmake]) |
| 1800AC_PATH_PROG(DMAKE, dmake, no) 1801IS_SYSTEM_DMAKE=NO 1802if test "$DMAKE" != "no"; then 1803 AC_MSG_RESULT([using system dmake]) 1804 DMAKE_PATH="$DMAKE" 1805 IS_SYSTEM_DMAKE=YES | 1800DMAKE="no" 1801# Override system dmake if --with-dmake-path or --with-dmake-url is used. 1802if test -z "$with_dmake_path" && test -z "$with_dmake_url"; then 1803 AC_PATH_PROG(DMAKE, dmake, no) 1804 IS_SYSTEM_DMAKE=NO 1805 if test "$DMAKE" != "no"; then 1806 AC_MSG_RESULT([using system dmake]) 1807 DMAKE_PATH="$DMAKE" 1808 IS_SYSTEM_DMAKE=YES 1809 fi |
| 1806elif test -n "$with_dmake_path" ; then 1807 # Did not find pre-installed dmake. 1808 # Is it at a nonstandard location provided by --with-dmake-path ? 1809 AC_MSG_NOTICE([looking for dmake at $DMAKE_PATH]) 1810 if test -x "$with_dmake_path" ; then 1811 AC_MSG_RESULT([using user provided dmake]) 1812 DMAKE=$with_dmake_path 1813 fi --- 5523 unchanged lines hidden --- | 1810elif test -n "$with_dmake_path" ; then 1811 # Did not find pre-installed dmake. 1812 # Is it at a nonstandard location provided by --with-dmake-path ? 1813 AC_MSG_NOTICE([looking for dmake at $DMAKE_PATH]) 1814 if test -x "$with_dmake_path" ; then 1815 AC_MSG_RESULT([using user provided dmake]) 1816 DMAKE=$with_dmake_path 1817 fi --- 5523 unchanged lines hidden --- |