Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 71108 | Differences between
and this patch

Collapse All | Expand All

(-)aMule-2.0.0rc8/configure.in (-1 / +1 lines)
Lines 389-395 AC_TYPE_SIGNAL Link Here
389
AC_FUNC_STAT
389
AC_FUNC_STAT
390
AC_FUNC_STRFTIME
390
AC_FUNC_STRFTIME
391
AC_FUNC_STRTOD
391
AC_FUNC_STRTOD
392
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])
392
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])
393
#-------------------------------------------------------------------------------
393
#-------------------------------------------------------------------------------
394
# End of autoscan stuff
394
# End of autoscan stuff
395
#-------------------------------------------------------------------------------
395
#-------------------------------------------------------------------------------
(-)aMule-2.0.0rc8/src/ExternalConnector.cpp (-5 / +11 lines)
Lines 264-274 void CaMuleExternalConnector::TextShell( Link Here
264
	wxString buf;
264
	wxString buf;
265
265
266
	bool The_End = false;
266
	bool The_End = false;
267
	do {
267
#ifdef HAVE_ISATTY
268
		GetCommand(prompt, buffer, 256);
268
	if ( ! isatty(0) ) {
269
		buf = char2unicode(buffer);
269
		while(m_isConnected);
270
		The_End = Parse_Command(buf, commands);
270
		return;
271
	} while ((!The_End) && (m_isConnected));
271
	}
272
#endif
273
		do {
274
			GetCommand(prompt, buffer, 256);
275
			buf = char2unicode(buffer);
276
			The_End = Parse_Command(buf, commands);
277
		} while ((!The_End) && (m_isConnected));
272
}
278
}
273
279
274
CECPacket *CaMuleExternalConnector::SendRecvMsg_v2(CECPacket *request)
280
CECPacket *CaMuleExternalConnector::SendRecvMsg_v2(CECPacket *request)

Return to bug 71108