Remove unneeded patch files for version 0.9.1 to make it compile.

This commit is contained in:
Patrick S. Gardella 2004-02-04 16:16:51 +00:00
parent 0bdeb82558
commit abbbf730a2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=99981
3 changed files with 0 additions and 44 deletions

View file

@ -1,13 +0,0 @@
--- src/callbacks_qsoframe.c.orig Tue Nov 5 11:02:05 2002
+++ src/callbacks_qsoframe.c Tue Nov 5 11:16:32 2002
@@ -25,6 +25,10 @@
#include <time.h>
#include <math.h>
#include <ctype.h>
+#ifdef __FreeBSD__
+#include <machine/param.h>
+#include <sys/types.h>
+#endif
#include <sys/ipc.h>
#include <sys/shm.h>
#include <errno.h>

View file

@ -1,20 +0,0 @@
--- src/utils.c.orig Tue Nov 5 11:22:20 2002
+++ src/utils.c Tue Nov 5 11:23:06 2002
@@ -284,7 +284,7 @@
str = g_new0(gchar, 100);
- fr = atoll(arg);
+ fr = strtoll(arg, (char **)NULL, 10);
if (fr > 1325) /* no dot */
{
@@ -295,7 +295,7 @@
str[strlen(str) - 6] = '\0';
else if (strlen(str) > 3)
str[strlen(str) - 3] = '\0';
- fr = atoll(str);
+ fr = strtoll(str, (char **)NULL, 10);
}
switch (fr)

View file

@ -1,11 +0,0 @@
--- intl/dcigettext.c.orig Tue Nov 5 11:32:40 2002
+++ intl/dcigettext.c Tue Nov 5 11:33:55 2002
@@ -58,7 +58,7 @@
#include <stdlib.h>
#include <string.h>
-#if !HAVE_STRCHR && !defined _LIBC
+#if !HAVE_STRCHR && !defined _LIBC && !defined __FreeBSD__
# ifndef strchr
# define strchr index
# endif