svn commit: r324715 - in head/comms/gnokii: . files
Guido Falsi
madpilot at FreeBSD.org
Wed Aug 14 13:00:16 UTC 2013
Author: madpilot
Date: Wed Aug 14 13:00:15 2013
New Revision: 324715
URL: http://svnweb.freebsd.org/changeset/ports/324715
Log:
- Add patch to avoid a bus error while starting the software.
Many thanks to the Mike Bernard for reporting and helping me debug
this problem.
While here remove obsolete MAKE_JOBS_SFE flag
Reported by: Mike Barnard Kwatampora <mike.barnardq at gmail.com>
Added:
head/comms/gnokii/files/patch-common-cfgreader.c (contents, props changed)
Modified:
head/comms/gnokii/Makefile
Modified: head/comms/gnokii/Makefile
==============================================================================
--- head/comms/gnokii/Makefile Wed Aug 14 12:50:28 2013 (r324714)
+++ head/comms/gnokii/Makefile Wed Aug 14 13:00:15 2013 (r324715)
@@ -3,7 +3,7 @@
PORTNAME= gnokii
PORTVERSION= 0.6.31
-PORTREVISION= 2
+PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= comms
MASTER_SITES= http://www.gnokii.org/download/gnokii/ \
@@ -23,7 +23,6 @@ USE_BZIP2= yes
USES= gettext gmake
USE_LDCONFIG= yes
USE_CSTD= gnu89
-MAKE_JOBS_SAFE= yes
WANT_GNOME= yes
USE_GNOME= intltool
GNU_CONFIGURE= yes
Added: head/comms/gnokii/files/patch-common-cfgreader.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/comms/gnokii/files/patch-common-cfgreader.c Wed Aug 14 13:00:15 2013 (r324715)
@@ -0,0 +1,20 @@
+--- common/cfgreader.c.orig 2011-12-02 15:53:04.000000000 +0100
++++ common/cfgreader.c 2013-08-13 13:25:46.836652059 +0200
+@@ -991,7 +991,7 @@
+ #define CHECK_SIZE() if (*retval >= size) { \
+ void *aux; \
+ size *= 2; \
+- aux = realloc(config_file_locations, size); \
++ aux = realloc(config_file_locations, size * sizeof(char *)); \
+ if (aux) \
+ config_file_locations = aux; \
+ else {\
+@@ -1107,7 +1107,7 @@
+ if (i >= xcd_size) {
+ void *aux;
+ xcd_size *= 2;
+- aux = realloc(xdg_config_dir, xcd_size);
++ aux = realloc(xdg_config_dir, xcd_size * sizeof(char *));
+ if (aux)
+ xdg_config_dir = aux;
+ else {
More information about the svn-ports-head
mailing list