diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2006-05-11 19:50:29 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2006-05-11 19:50:29 +0000 |
commit | c28c1bb7e5d241cc5e050c2d1f463a061f71ca67 (patch) | |
tree | dc26ee167f638c04995a00e7807cec0324e4a4d1 /editors/abiword | |
parent | 0e1311f0e0259812dc85fed65aec7f8ef24d38b1 (diff) |
Fix the fileselector crash on amd64, bump the PORTREVISION.
Submitted by: Mark Kane <mark@mkproductions.org>
AbiWord Bugzilla: http://bugzilla.abisource.com/show_bug.cgi?id=8776
Notes
Notes:
svn path=/head/; revision=162131
Diffstat (limited to 'editors/abiword')
-rw-r--r-- | editors/abiword/Makefile | 1 | ||||
-rw-r--r-- | editors/abiword/files/patch-fix_fileselector_amd64 | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/editors/abiword/Makefile b/editors/abiword/Makefile index 4a6ac98cf821..08f3025da08b 100644 --- a/editors/abiword/Makefile +++ b/editors/abiword/Makefile @@ -8,6 +8,7 @@ PORTNAME= abiword PORTVERSION= 2.4.4 +PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= http://www.abisource.com/downloads/%SUBDIR%/${PORTVERSION}/source/ MASTER_SITE_SUBDIR= abiword diff --git a/editors/abiword/files/patch-fix_fileselector_amd64 b/editors/abiword/files/patch-fix_fileselector_amd64 new file mode 100644 index 000000000000..49f436657687 --- /dev/null +++ b/editors/abiword/files/patch-fix_fileselector_amd64 @@ -0,0 +1,12 @@ +diff -r -u abiword-2.4.4.orig/abi/src/af/xap/unix/xap_UnixDlg_FileOpenSaveAs.cpp abiword-2.4.4/abi/src/af/xap/unix/xap_UnixDlg_FileOpenSaveAs.cpp +--- src/af/xap/unix/xap_UnixDlg_FileOpenSaveAs.cpp 2005-09-27 00:23:02.000000000 +0200 ++++ src/af/xap/unix/xap_UnixDlg_FileOpenSaveAs.cpp 2006-05-08 01:17:00.000000000 +0200 +@@ -586,7 +586,7 @@ + (!m_bSave ? GTK_FILE_CHOOSER_ACTION_OPEN : GTK_FILE_CHOOSER_ACTION_SAVE), + GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, + GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, +- NULL) ++ (gchar*)NULL) + ); + #endif + |