mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 10:51:05 +00:00
Do not include stropts.h for most OS's anymore.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@35480 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8152e6b4ee
commit
df3d681858
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2012-08-30 Riccardo Mottola <rm@gnu.org>
|
||||||
|
|
||||||
|
* Modules/Debuggers/ProjectCenter/PTYView.m
|
||||||
|
Do not include stropts.h for most OS's anymore.
|
||||||
|
|
||||||
2012-08-09 Riccardo Mottola <rm@gnu.org>
|
2012-08-09 Riccardo Mottola <rm@gnu.org>
|
||||||
|
|
||||||
* English.lproj/ProjectCenter.gorm
|
* English.lproj/ProjectCenter.gorm
|
||||||
|
|
|
@ -42,9 +42,6 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#if !defined(__OpenBSD__) && !defined(__FreeBSD__) && !(defined (__NetBSD__))
|
|
||||||
#include <stropts.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef NOTIFICATION_CENTER
|
#ifndef NOTIFICATION_CENTER
|
||||||
#define NOTIFICATION_CENTER [NSNotificationCenter defaultCenter]
|
#define NOTIFICATION_CENTER [NSNotificationCenter defaultCenter]
|
||||||
|
@ -56,6 +53,11 @@
|
||||||
#define USE_FORKPTY_REPLACEMENT 1
|
#define USE_FORKPTY_REPLACEMENT 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__SOLARIS__)
|
||||||
|
#include <stropts.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if !(defined (__NetBSD__)) && !(defined (__SOLARIS__)) && !(defined (__OpenBSD__)) && !(defined(__FreeBSD__))
|
#if !(defined (__NetBSD__)) && !(defined (__SOLARIS__)) && !(defined (__OpenBSD__)) && !(defined(__FreeBSD__))
|
||||||
# include <pty.h>
|
# include <pty.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue