From patchwork Sun Nov 11 19:18:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 198290 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id E76792C0089 for ; Mon, 12 Nov 2012 06:18:57 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1353266339; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:From:To:Subject:CC:Date:Message-ID:User-Agent: MIME-Version:Content-Type:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=7K0io9vKC9sDuD/2RboWz+Q48p0=; b=bsr0gY9pvfOKjOD 8dK69BTbzB5+3L8FYCSkWxnHOMOaiNJNNB0OWjkKjmb6nEBzc9CY5pd1PAesCPP2 rcIFSBf5D5zjh5cW4TMSTHzYrAXNv1/uwDLlNoD4LhWY7k88SSvUMDNjsH1HrWpI Zy8g+H5HBF23lcyRZYG09KmF+UN4= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:X-Auth-Info:Received:Received:From:To:Subject:CC:X-Yow:Date:Message-ID:User-Agent:MIME-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=o26ZUR6Eg6XKTa20N1hQ47S+upuaxeZjVSh02qSP5qrFBeYhVea846SjOMExEU M+33sjvQzsJ4/NDd9DD5mUehwYfSmdfpZVPcyt8UmyfpwWP3tT7WLTiij/N1OqjB TQNncRNm5pjGEtw2dKCwWnzN7Tsx54kwAZ6SUoDaq+RrY=; Received: (qmail 3253 invoked by alias); 11 Nov 2012 19:18:54 -0000 Received: (qmail 3235 invoked by uid 22791); 11 Nov 2012 19:18:53 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from mail-out.m-online.net (HELO mail-out.m-online.net) (212.18.0.9) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 11 Nov 2012 19:18:48 +0000 Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3Y04dd2tkbz4KK7N; Sun, 11 Nov 2012 20:18:45 +0100 (CET) X-Auth-Info: iEYTlq7t/xP8mwyDSVMDnfseXg2v9P/TLYEWw1zxgLM= Received: from igel.home (ppp-93-104-148-16.dynamic.mnet-online.de [93.104.148.16]) by mail.mnet-online.de (Postfix) with ESMTPA id 3Y04dd2FFyzbbfV; Sun, 11 Nov 2012 20:18:45 +0100 (CET) Received: by igel.home (Postfix, from userid 501) id 43EB2CA2A4; Sun, 11 Nov 2012 20:18:43 +0100 (CET) From: Andreas Schwab To: libstdc++@gcc.gnu.org Subject: [PATCH] Check more places for local stylesheet directory CC: gcc-patches@gcc.gnu.org X-Yow: I like your SNOOPY POSTER!! Date: Sun, 11 Nov 2012 20:18:42 +0100 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org /usr/share/xml/docbook/stylesheet/nwalsh5/current is the place used by openSUSE. Andreas. * acinclude.m4 (GLIBCXX_CONFIGURE_DOCBOOK): Also check for /usr/share/xml/docbook/stylesheet/nwalsh5/current. * configure: Regenerate. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 10dac63..8c6f170 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -686,6 +686,10 @@ if test x"$glibcxx_stylesheets" = x"yes"; then glibcxx_local_stylesheets=yes XSL_STYLE_DIR=/usr/share/xml/docbook/stylesheet/docbook-xsl-ns fi + if test -d /usr/share/xml/docbook/stylesheet/nwalsh5/current; then + glibcxx_local_stylesheets=yes + XSL_STYLE_DIR=/usr/share/xml/docbook/stylesheet/nwalsh5/current + fi fi AC_MSG_RESULT($glibcxx_local_stylesheets)