Index: Makefile =================================================================== --- Makefile (revision 439960) +++ Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= doxygen PORTVERSION= 1.8.13 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= devel MASTER_SITES= ftp://ftp.stack.nl/pub/users/dimitri/ \ Index: files/patch-src_xmlgen.cpp =================================================================== --- files/patch-src_xmlgen.cpp (nonexistent) +++ files/patch-src_xmlgen.cpp (working copy) @@ -0,0 +1,15 @@ +fix seg fault +https://bugzilla.gnome.org/show_bug.cgi?id=776791 +https://github.com/doxygen/doxygen/commit/0f02761a158a5e9ddbd5801682482af8986dbc35#diff-dea13e25f9bbae3ddde44cc615b9c9ba + +--- src/xmlgen.cpp.orig 2016-11-29 08:14:16 UTC ++++ src/xmlgen.cpp +@@ -620,7 +620,7 @@ static void generateXMLForMember(MemberD + 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"; Property changes on: files/patch-src_xmlgen.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property