mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
bugfix for old systems without stdint.h
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26918 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b4a40cc24c
commit
3698d0d7d5
3 changed files with 5 additions and 6 deletions
|
@ -1,6 +1,8 @@
|
||||||
2008-10-14 Richard Frith-Macdonald <rfm@gnu.org>
|
2008-10-14 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/GSSocketStream.m: Fix for #24564
|
* Source/GSSocketStream.m: Fix for #24564
|
||||||
|
* Source/inet_pton.c: Fix for #24563
|
||||||
|
* Source/inet_ntop.c: Fix for #24563
|
||||||
|
|
||||||
2008-10-12 Larry Campbelln
|
2008-10-12 Larry Campbelln
|
||||||
|
|
||||||
|
|
|
@ -17,14 +17,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "GNUstepBase/GSConfig.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#ifdef HAVE_STDINT_H
|
|
||||||
#include <stdint.h>
|
|
||||||
#endif
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include "GSNetwork.h"
|
#include "GSNetwork.h"
|
||||||
|
|
|
@ -19,12 +19,11 @@
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
#include "GNUstepBase/GSConfig.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#ifdef HAVE_STDINT_H
|
|
||||||
#include <stdint.h>
|
|
||||||
#endif
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include "GSNetwork.h"
|
#include "GSNetwork.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue