Skip to content

Commit

Permalink
Merge pull request #1 from lsst/tickets/DM-4891
Browse files Browse the repository at this point in the history
Update doxygen version
  • Loading branch information
timj committed Sep 19, 2017
2 parents 323f995 + 4349aea commit e029824
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 95 deletions.
95 changes: 0 additions & 95 deletions patches/0001-Correct-version-detectection-for-flex-2.6.patch

This file was deleted.

24 changes: 24 additions & 0 deletions patches/0001-protected-against-NULL-pointer.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
From 0f02761a158a5e9ddbd5801682482af8986dbc35 Mon Sep 17 00:00:00 2001
From: albert-github <albert.tests@gmail.com>
Date: Wed, 4 Jan 2017 12:24:55 +0100
Subject: [PATCH] Bug 776791 - [1.8.13 Regression] Segfault building the
breathe docs

Protected against NULL pointer of variable al
---
src/xmlgen.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index fe95c7af5..70e198ae2 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -620,7 +620,7 @@ static void generateXMLForMember(MemberDef *md,FTextStream &ti,FTextStream &t,De
if (md->isInline()) t << "yes"; else t << "no";
t << "\"";

- if (al->refQualifier!=RefQualifierNone)
+ if (al!=0 && al->refQualifier!=RefQualifierNone)
{
t << " refqual=\"";
if (al->refQualifier==RefQualifierLValue) t << "lvalue"; else t << "rvalue";
6 changes: 6 additions & 0 deletions ups/eupspkg.cfg.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# EupsPkg config file. Sourced by 'eupspkg'

config()
{
cmake . -DCMAKE_INSTALL_PREFIX=${PREFIX}
}
Binary file added upstream/doxygen-1.8.13.src.tar.gz
Binary file not shown.
Binary file removed upstream/doxygen-1.8.5.src.tar.gz
Binary file not shown.

0 comments on commit e029824

Please sign in to comment.