From: Steven R. Loomis Date: Thu, 15 Sep 2011 21:49:17 +0000 (+0000) Subject: ICU-8828 turn off searchengine by default X-Git-Tag: milestone-59-0-1~4514 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eefcfdaff607f918f3ac3c98ba1e202342ec8ecf;p=icu ICU-8828 turn off searchengine by default X-SVN-Rev: 30670 --- diff --git a/icu4c/source/Doxyfile.in b/icu4c/source/Doxyfile.in index 771b99391ff..9600f8f5b04 100644 --- a/icu4c/source/Doxyfile.in +++ b/icu4c/source/Doxyfile.in @@ -1,7 +1,7 @@ # Doxyfile 1.3.7 # ******************************************************************** # * COPYRIGHT: -# * Copyright (c) 2004-2010, International Business Machines Corporation +# * Copyright (c) 2004-2011, International Business Machines Corporation # * and others. All Rights Reserved. # ******************************************************************** @@ -230,4 +230,4 @@ DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- -SEARCHENGINE = YES +SEARCHENGINE = NO diff --git a/icu4c/source/Makefile.in b/icu4c/source/Makefile.in index fa94c48449c..8be914ccc76 100644 --- a/icu4c/source/Makefile.in +++ b/icu4c/source/Makefile.in @@ -1,6 +1,6 @@ #****************************************************************************** # -# Copyright (C) 1998-2010, International Business Machines +# Copyright (C) 1998-2011, International Business Machines # Corporation and others. All Rights Reserved. # #****************************************************************************** @@ -91,12 +91,16 @@ xperf-recursive: all tests @$(MAKE) -C test/perf xperf ifeq ($(DOXYGEN),) -doc: +doc doc-searchengine: @echo you need Doxygen to generate documentation. Doxygen can be found on the Web @echo at http://www.doxygen.org/ else doc: doc/html/index.html +doc-searchengine: Doxyfile $(wildcard ./common/unicode/platform.h $(srcdir)/common/unicode/*.h $(srcdir)/i18n/unicode/*.h $(srcdir)/layout/unicode/*.h $(srcdir)/io/unicode/*.h) + sed < Doxyfile -e 's%[^#]*SEARCHENGINE.*%SEARCHENGINE=YES%' | $(DOXYGEN) - + @echo Docs created - WARNING, probably contains non-GPL .js files + doc/html/index.html: Doxyfile $(wildcard ./common/unicode/platform.h $(srcdir)/common/unicode/*.h $(srcdir)/i18n/unicode/*.h $(srcdir)/layout/unicode/*.h $(srcdir)/io/unicode/*.h) $(DOXYGEN)