1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/emulators/vba/files/patch-src-prof_gmon.h
Alexey Dokuchaev 5658568409 - Add PROFILING_DESC (should be part of r323888)
- Unbreak the build on amd64 (and make it generally type safe)
- Remove gtkmm-2.4 from LIB_DEPENDS, glademm-2.4 implies it
2013-07-29 16:54:35 +00:00

21 lines
487 B
C

--- src/prof/gmon.h.orig 2007-10-04 01:06:18.000000000 +0200
+++ src/prof/gmon.h 2007-10-04 01:06:48.000000000 +0200
@@ -29,6 +29,8 @@
#ifndef gmon_h
#define gmon_h
+#include <inttypes.h>
+
/* Size of the 4.4BSD gmon header */
#define GMON_HDRSIZE_BSD44_32 (4 + 4 + 4 + 4 + 4 + (3 * 4))
#define GMON_HDRSIZE_BSD44_64 (8 + 8 + 4 + 4 + 4 + (3 * 4))
@@ -119,7 +121,7 @@
struct tostruct
{
- char *selfpc;
+ uint32_t selfpc;
int count;
unsigned short link;
};