Changed BidEndianOrdered to BigEndianOrdered in datstrm.h
Seek and Tell do the right thing in wxIn/OutputStream now Check for GNU extension in configure.in: this is needed for GLIBC 2.1/GCC 2.95 -> this enables _GNU_SOURCE git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3293 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -626,7 +626,7 @@ if (socket->m_iocalls[event] && \
|
||||
new_ival.it_interval.tv_sec = socket->m_timeout / 1000; \
|
||||
new_ival.it_interval.tv_usec = (socket->m_timeout % 1000) * 1000; \
|
||||
setitimer(ITIMER_REAL, &new_ival, &old_ival); \
|
||||
old_timer_sig = signal(SIGALRM, _GSocket_Timer);
|
||||
old_timer_sig = signal(SIGALRM, SIG_DFL);
|
||||
|
||||
#define DISABLE_TIMEOUT(socket) \
|
||||
signal(SIGALRM, old_timer_sig); \
|
||||
|
Reference in New Issue
Block a user