Make fetchable by updating to 0.8.4. The change log says:
Removed empty branches from filter regexps; this is a nonportable feature of GNU libc which broke on FreeBSD libc.
This commit is contained in:
parent
95319f4cfc
commit
ce0921b5b1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=94860
3 changed files with 3 additions and 20 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= maketool
|
||||
PORTVERSION= 0.8.3
|
||||
PORTVERSION= 0.8.4
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.alphalink.com.au/~gnb/maketool/downloads/
|
||||
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
MD5 (maketool-0.8.3.tar.bz2) = 3b8b1016ee1a2c70db34a48e53f9a0d3
|
||||
$FreeBSD$
|
||||
MD5 (maketool-0.8.4.tar.bz2) = 28b99001dba9c70fad92d37cd9f7dddd
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
$FreeBSD$
|
||||
|
||||
Author: Greg Banks
|
||||
|
||||
--- ui.c 8 Oct 2003 13:27:31 -0000 1.40
|
||||
+++ ui.c 22 Oct 2003 12:13:21 -0000 1.41
|
||||
@@ -347,8 +347,9 @@
|
||||
gtk_menu_append(GTK_MENU(menu), item);
|
||||
else
|
||||
gtk_menu_insert(GTK_MENU(menu), item, position);
|
||||
- gtk_signal_connect(GTK_OBJECT(item), "activate",
|
||||
- GTK_SIGNAL_FUNC(callback), calldata);
|
||||
+ if (callback != 0)
|
||||
+ gtk_signal_connect(GTK_OBJECT(item), "activate",
|
||||
+ GTK_SIGNAL_FUNC(callback), calldata);
|
||||
if (group >= 0)
|
||||
ui_group_add(group, item);
|
||||
|
Loading…
Reference in a new issue