From b7c807faeb18a87dc8ad5bc1ae68ca5cb3999a66 Mon Sep 17 00:00:00 2001 From: Pranav Kant Date: Mon, 18 Jan 2016 01:12:37 +0530 Subject: configure: Add a missing option, --with-gcc-home --enable-icecream option mentions this in its documentation, but it had been missing till now. This option is also necessary when operating systems installs icecc wrappers in locations other than /usr/lib/icecc, /opt/icecream, which is what GCC_HOME gets set to by default with --enable-icecream. Change-Id: Ib2b6ec010271467949e7ac9f1d01624cb360c5a5 Reviewed-on: https://gerrit.libreoffice.org/21551 Tested-by: Jenkins Reviewed-by: Katarina Behrens --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure.ac b/configure.ac index 07bf6fd7a793..bf96369e419c 100644 --- a/configure.ac +++ b/configure.ac @@ -1514,6 +1514,13 @@ dnl =================================================================== dnl Optional Packages (--with/without-) dnl =================================================================== +AC_ARG_WITH(gcc-home, + AS_HELP_STRING([--with-gcc-home], + [Specify the location of gcc/g++ manually. This can be used in conjunction + with --enable-icecream when icecream gcc/g++ wrappers are installed in a + non-default path.]), +,) + AC_ARG_WITH(gnu-patch, AS_HELP_STRING([--with-gnu-patch], [Specify location of GNU patch on Solaris or FreeBSD.]), -- cgit