mirror of
https://github.com/anope/anope.git
synced 2026-07-03 08:33:12 +02:00
BUILD : 1.7.15 (1146) BUGS : 583 NOTES : Fixed mass compiler warnings with make strict on FC5 (patch by Trystan)
git-svn-id: svn://svn.anope.org/anope/trunk@1146 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@869 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
cd1d095290
commit
651507491d
@@ -11,6 +11,7 @@ Provided by Trystan <trystan@nomadirc.net> - 2006
|
||||
08/20 F Fixed several compiler warnings. [#584]
|
||||
08/20 F log.c rewrite. [#582]
|
||||
08/20 F Fixed bsd compier warning. [#578]
|
||||
09/10 F Fixed mass compiler warnings on FC5 with make strict. [#583]
|
||||
|
||||
Provided by ThaPrince <jon@vile.com> - 2006
|
||||
08/22 F Plexus3 svid_mode3 support fixed. [ #00]
|
||||
|
||||
@@ -25,7 +25,9 @@
|
||||
|
||||
/* Some Linux boxes (or maybe glibc includes) require this for the
|
||||
* prototype of strsignal(). */
|
||||
#ifndef _GNU_SOURCE
|
||||
#define _GNU_SOURCE
|
||||
#endif
|
||||
|
||||
/* Some SUN fixs */
|
||||
#ifdef __sun
|
||||
|
||||
@@ -177,11 +177,21 @@
|
||||
|
||||
/* We KNOW these are not ansi, we are defining them here to suppress the warning
|
||||
* * s messages on a "make strict" compile */
|
||||
#ifndef snprintf
|
||||
int snprintf(char *str, size_t size, const char *format, ...);
|
||||
#endif
|
||||
#ifndef vprintf
|
||||
int vprintf(const char *format, va_list ap);
|
||||
#endif
|
||||
#ifndef vfprintf
|
||||
int vfprintf(FILE *stream, const char *format, va_list ap);
|
||||
#endif
|
||||
#ifndef vsprintf
|
||||
int vsprintf(char *str, const char *format, va_list ap);
|
||||
#endif
|
||||
#ifndef vsnprintf
|
||||
int vsnprintf(char *str, size_t size, const char *format, va_list ap);
|
||||
#endif
|
||||
|
||||
FILE *popen(const char *command, const char *type);
|
||||
int pclose(FILE *stream);
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="15"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="1145"
|
||||
VERSION_BUILD="1146"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.15 (1146)
|
||||
# BUGS : 583
|
||||
# NOTES : Fixed mass compiler warnings with make strict on FC5 (patch by Trystan)
|
||||
#
|
||||
# BUILD : 1.7.15 (1145)
|
||||
# BUGS : 579
|
||||
# NOTES : Fixed make strict issues with src/tools
|
||||
|
||||
Reference in New Issue
Block a user