View | Details | Raw Unified | Return to bug 118900
Collapse All | Expand All

(-)Makefile (-7 / +1 lines)
Lines 26-39 Link Here
26
		CPPFLAGS="-I${LOCALBASE}/include" \
26
		CPPFLAGS="-I${LOCALBASE}/include" \
27
		LDFLAGS="-L${LOCALBASE}/lib"
27
		LDFLAGS="-L${LOCALBASE}/lib"
28
28
29
.include <bsd.port.pre.mk>
30
31
.if ${OSVERSION} >= 700042
32
BROKEN=		Broken with gcc 4.2
33
.endif
34
35
post-patch:
29
post-patch:
36
	@${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \
30
	@${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \
37
		${WRKSRC}/configure ${WRKSRC}/libmutt/configure
31
		${WRKSRC}/configure ${WRKSRC}/libmutt/configure
38
32
39
.include <bsd.port.post.mk>
33
.include <bsd.port.mk>
(-)files/patch-libmutt_keymap.h (+11 lines)
Added Link Here
1
--- libmutt/keymap.h.orig	2007-12-20 19:31:26.000000000 +0100
2
+++ libmutt/keymap.h	2007-12-20 19:32:04.000000000 +0100
3
@@ -77,7 +77,7 @@
4
 /* dokey() records the last real key pressed  */
5
 extern int LastKey;
6
 
7
-extern struct mapping_t Menus[];
8
+extern struct mapping_t *Menus;
9
 
10
 struct binding_t
11
 {
(-)files/patch-libmutt_sort.h (+8 lines)
Added Link Here
1
--- libmutt/sort.h.orig	2007-12-20 19:32:43.000000000 +0100
2
+++ libmutt/sort.h	2007-12-20 19:32:55.000000000 +0100
3
@@ -45,4 +45,4 @@
4
 WHERE short SortAux INITVAL (SORT_DATE); /* auxiallary sorting method */
5
 WHERE short SortAlias INITVAL (SORT_ALIAS);
6
 
7
-extern const struct mapping_t SortMethods[];
8
+extern const struct mapping_t *SortMethods;

Return to bug 118900