--- src/include/misc.h.orig Fri Jun 27 18:45:01 2003 +++ src/include/misc.h Fri Jun 27 18:48:07 2003 @@ -24,7 +24,11 @@ #ifdef __WXMAC__ #define atolonglong(str) strtoll(str, (char **)NULL, 10) #else +#ifdef __FreeBSD__ +#define atolonglong(str) strtoll(str, (char **)NULL, 10) +#else #define atolonglong atoll +#endif #endif #endif --- src/utils/misc.cpp.orig Fri Jun 27 19:10:57 2003 +++ src/utils/misc.cpp Fri Jun 27 19:11:21 2003 @@ -33,7 +33,11 @@ #ifdef __WXMAC__ #define atolonglong(str) strtoll(str, (char **)NULL, 10) #else +#ifdef __FreeBSD__ +#define atolonglong(str) strtoll(str, (char **)NULL, 10) +#else #define atolonglong atoll +#endif #endif #endif