| configure.ac (09a06707) | configure.ac (a3f0327c) |
|---|---|
| 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 --- 910 unchanged lines hidden (view full) --- 919 Usage: --with-arm-target=7 920],with_arm_target=$withval,with_arm_target=4) 921 922BUILD_TYPE="OOo" 923ADDITIONAL_REPOSITORIES="../ext_libraries" 924SCPDEFS="" 925 926dnl =================================================================== | 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 --- 910 unchanged lines hidden (view full) --- 919 Usage: --with-arm-target=7 920],with_arm_target=$withval,with_arm_target=4) 921 922BUILD_TYPE="OOo" 923ADDITIONAL_REPOSITORIES="../ext_libraries" 924SCPDEFS="" 925 926dnl =================================================================== |
| 927dnl Check configure script vs. configure.in 928dnl =================================================================== 929AC_MSG_CHECKING([whether configure is up-to-date]) 930if test "configure" -ot "configure.in"; then 931 AC_MSG_RESULT([no]) 932 AC_MSG_ERROR([configure is not up-to-date, run autoconf first!]) 933else 934 AC_MSG_RESULT([yes]) 935fi 936dnl =================================================================== |
|
| 927dnl Message. 928dnl =================================================================== 929echo "********************************************************************" 930echo "* *" 931echo "* Apache OpenOffice build configuration. *" 932echo "* *" 933echo "* The configure process checks your platform to see whether *" 934echo "* you can build Apache OpenOffice on it. *" --- 13 unchanged lines hidden (view full) --- 948echo "* *" 949echo "********************************************************************" 950echo "" 951dnl =================================================================== 952dnl Configure pre-requisites. 953dnl =================================================================== 954cat /dev/null > warn 955 | 937dnl Message. 938dnl =================================================================== 939echo "********************************************************************" 940echo "* *" 941echo "* Apache OpenOffice build configuration. *" 942echo "* *" 943echo "* The configure process checks your platform to see whether *" 944echo "* you can build Apache OpenOffice on it. *" --- 13 unchanged lines hidden (view full) --- 958echo "* *" 959echo "********************************************************************" 960echo "" 961dnl =================================================================== 962dnl Configure pre-requisites. 963dnl =================================================================== 964cat /dev/null > warn 965 |
| 956AC_MSG_CHECKING([whether configure is up-to-date]) 957if test "configure" -ot "configure.in"; then 958 AC_MSG_RESULT([no]) 959 AC_MSG_ERROR([configure is not up-to-date, run autoconf first!]) 960else 961 AC_MSG_RESULT([yes]) 962fi 963 | |
| 964AC_PROG_EGREP 965AC_PROG_AWK 966AC_PATH_PROG( AWK, $AWK) 967if test -z "$AWK"; then 968 AC_MSG_ERROR([install awk to run this script]) 969fi 970 971AC_PATH_PROGS(SED, sed ) --- 6519 unchanged lines hidden --- | 966AC_PROG_EGREP 967AC_PROG_AWK 968AC_PATH_PROG( AWK, $AWK) 969if test -z "$AWK"; then 970 AC_MSG_ERROR([install awk to run this script]) 971fi 972 973AC_PATH_PROGS(SED, sed ) --- 6519 unchanged lines hidden --- |