View | Details | Raw Unified
Collapse All | Expand All

(-) aMule-2.0.0rc8/configure.in (-1 / +1 lines)
 Lines 389-395   AC_TYPE_SIGNAL Link Here 
AC_FUNC_STAT
AC_FUNC_STAT
AC_FUNC_STRFTIME
AC_FUNC_STRFTIME
AC_FUNC_STRTOD
AC_FUNC_STRTOD
AC_CHECK_FUNCS([__argz_count __argz_next __argz_stringify endpwent floor ftruncate getcwd gethostbyaddr gethostbyname gethostname getmntent getmntinfo getpass gettimeofday inet_ntoa memchr memmove mempcpy memset munmap nl_langinfo select setlocale socket sqrt stpcpy strcasecmp strchr strcspn strdup strerror strncasecmp strrchr strstr strtoul])
AC_CHECK_FUNCS([__argz_count __argz_next __argz_stringify endpwent floor ftruncate getcwd gethostbyaddr gethostbyname gethostname getmntent getmntinfo getpass gettimeofday inet_ntoa isatty memchr memmove mempcpy memset munmap nl_langinfo select setlocale socket sqrt stpcpy strcasecmp strchr strcspn strdup strerror strncasecmp strrchr strstr strtoul])
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# End of autoscan stuff
# End of autoscan stuff
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
(-) aMule-2.0.0rc8/src/ExternalConnector.cpp (-5 / +11 lines)
 Lines 264-274   void CaMuleExternalConnector::TextShell( Link Here 
	wxString buf;
	wxString buf;
	bool The_End = false;
	bool The_End = false;
	do {
#ifdef HAVE_ISATTY
		GetCommand(prompt, buffer, 256);
	if ( ! isatty(0) ) {
		buf = char2unicode(buffer);
		while(m_isConnected);
		The_End = Parse_Command(buf, commands);
		return;
	} while ((!The_End) && (m_isConnected));
	}
#endif
		do {
			GetCommand(prompt, buffer, 256);
			buf = char2unicode(buffer);
			The_End = Parse_Command(buf, commands);
		} while ((!The_End) && (m_isConnected));
}
}
CECPacket *CaMuleExternalConnector::SendRecvMsg_v2(CECPacket *request)
CECPacket *CaMuleExternalConnector::SendRecvMsg_v2(CECPacket *request)