use Unix line ending when compiling with Apple DevTools
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c31ad41d80
commit
f3ff38139d
@ -351,7 +351,7 @@ wxTextOutputStream::wxTextOutputStream(wxOutputStream& s, wxEOL mode)
|
||||
{
|
||||
#if defined(__WXMSW__) || defined(__WXPM__)
|
||||
m_mode = wxEOL_DOS;
|
||||
#elif defined(__WXMAC__)
|
||||
#elif defined(__WXMAC__) && !defined(__DARWIN__)
|
||||
m_mode = wxEOL_MAC;
|
||||
#else
|
||||
m_mode = wxEOL_UNIX;
|
||||
@ -370,7 +370,7 @@ void wxTextOutputStream::SetMode(wxEOL mode)
|
||||
{
|
||||
#if defined(__WXMSW__) || defined(__WXPM__)
|
||||
m_mode = wxEOL_DOS;
|
||||
#elif defined(__WXMAC__)
|
||||
#elif defined(__WXMAC__) && !defined(__DARWIN__)
|
||||
m_mode = wxEOL_MAC;
|
||||
#else
|
||||
m_mode = wxEOL_UNIX;
|
||||
|
Loading…
Reference in New Issue
Block a user