mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 17:10:33 -04:00
- Correct enabling of all targets, add patches to fix new clang build issues raised by this change - Fix WWW: line PR: ports/176103 Submitted by: Luca Pizzamiglio <luca.pizzamiglio@gmail.com> (maintainer)
11 lines
337 B
C
11 lines
337 B
C
--- bfd/ecoff.c.orig 2013-03-11 12:42:03.000000000 +0100
|
|
+++ bfd/ecoff.c 2013-03-11 12:44:29.000000000 +0100
|
|
@@ -1888,7 +1888,7 @@
|
|
ret = (bfd_coff_filhsz (abfd)
|
|
+ bfd_coff_aoutsz (abfd)
|
|
+ c * bfd_coff_scnhsz (abfd));
|
|
- return BFD_ALIGN (ret, 16);
|
|
+ return (int)BFD_ALIGN (ret, 16);
|
|
}
|
|
|
|
/* Get the contents of a section. */
|