mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add a patch that fixes build for certain GCC versions, i.e. the
one available on FreeBSD 5.5. PR: ports/118705 Submitted by: delphij Approved by: maintainer
This commit is contained in:
parent
1c7bd9564f
commit
5c4dd9bc72
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=203701
1 changed files with 11 additions and 0 deletions
11
devel/doxygen/files/patch-gcc3
Normal file
11
devel/doxygen/files/patch-gcc3
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- src/fortranscanner.cpp.orig 2007-10-26 03:21:58.000000000 -0700
|
||||
+++ src/fortranscanner.cpp 2007-12-14 12:23:07.750937915 -0800
|
||||
@@ -4226,7 +4226,7 @@
|
||||
{
|
||||
//cout<<"addFortranParameter(): "<<name<<" DOCS:"<<(docs.isNull()?QString("null"):docs)<<endl;
|
||||
Argument *ret = 0;
|
||||
- if (current_root->argList==0) return FALSE;
|
||||
+ if (current_root->argList==0) return NULL;
|
||||
ArgumentListIterator ali(*current_root->argList);
|
||||
Argument *a;
|
||||
for (ali.toFirst();(a=ali.current());++ali)
|
Loading…
Add table
Reference in a new issue