From a96692642a1653de11782a98abe0ba5cd6779269 Mon Sep 17 00:00:00 2001 From: Hans-Joachim Lankenau Date: Fri, 15 Jan 2010 14:55:12 +0100 Subject: ause110: #i106731# remove tarballs from scm and find them in download cache dir --- configure.in | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 17cc81f905f5..7a1b99a5313f 100644 --- a/configure.in +++ b/configure.in @@ -35,6 +35,13 @@ AC_ARG_ENABLE(ldap, [ --disable-ldap Disables the use of LDAP backend via Netscape/Mozilla or OpenLDAP LDAP SDK ],,) +AC_ARG_ENABLE(fetch-external, +[ --disable-fetch-external Disables fetching external tarballs from web sources +],,) +AC_ARG_WITH(external-tar, +[ --with-external-tar= Specify path to tarfiles manually ], +[ TARFILE_LOCATION="$withval" +]) AC_ARG_WITH(openldap, [ --with-openldap Enables the use of the OpenLDAP LDAP SDK instead of the Netscape/Mozilla one @@ -6750,6 +6757,18 @@ else fi AC_SUBST(VERBOSE) +dnl =================================================================== +dnl external tarballs. +dnl =================================================================== +if test -z $TARFILE_LOCATION; then + TARFILE_LOCATION="DEFAULT" +fi +AC_SUBST(TARFILE_LOCATION) + +if test -z "$enable_fetch_external" || test "$enable_fetch_external" = "yes"; then + DO_FETCH_TARBALLS="yes" +fi +AC_SUBST(DO_FETCH_TARBALLS) dnl =================================================================== dnl Setting up the environment. dnl =================================================================== -- cgit