Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | dnl This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | dnl License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | dnl file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 4 | |
michael@0 | 5 | dnl ====================================================== |
michael@0 | 6 | dnl = Enable compiling with ccache |
michael@0 | 7 | dnl ====================================================== |
michael@0 | 8 | AC_DEFUN([MOZ_CHECK_CCACHE], |
michael@0 | 9 | [ |
michael@0 | 10 | MOZ_ARG_WITH_STRING(ccache, |
michael@0 | 11 | [ --with-ccache[=path/to/ccache] |
michael@0 | 12 | Enable compiling with ccache], |
michael@0 | 13 | CCACHE=$withval, CCACHE="no") |
michael@0 | 14 | |
michael@0 | 15 | if test "$CCACHE" != "no"; then |
michael@0 | 16 | if test -z "$CCACHE" -o "$CCACHE" = "yes"; then |
michael@0 | 17 | CCACHE= |
michael@0 | 18 | else |
michael@0 | 19 | if test ! -e "$CCACHE"; then |
michael@0 | 20 | AC_MSG_ERROR([$CCACHE not found]) |
michael@0 | 21 | fi |
michael@0 | 22 | fi |
michael@0 | 23 | MOZ_PATH_PROGS(CCACHE, $CCACHE ccache) |
michael@0 | 24 | if test -z "$CCACHE" -o "$CCACHE" = ":"; then |
michael@0 | 25 | AC_MSG_ERROR([ccache not found]) |
michael@0 | 26 | elif test -x "$CCACHE"; then |
michael@0 | 27 | CC="$CCACHE $CC" |
michael@0 | 28 | CXX="$CCACHE $CXX" |
michael@0 | 29 | MOZ_USING_CCACHE=1 |
michael@0 | 30 | else |
michael@0 | 31 | AC_MSG_ERROR([$CCACHE is not executable]) |
michael@0 | 32 | fi |
michael@0 | 33 | fi |
michael@0 | 34 | |
michael@0 | 35 | AC_SUBST(MOZ_USING_CCACHE) |
michael@0 | 36 | ]) |