mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
5658568409
- Unbreak the build on amd64 (and make it generally type safe) - Remove gtkmm-2.4 from LIB_DEPENDS, glademm-2.4 implies it
21 lines
487 B
C
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;
|
|
};
|