refix htc bug and fix dependences
[termux-packages] / disabled-packages / apt / methods-connect.cc.patch
CommitLineData
6ad26efe 1--- ../cache/apt-1.4.7/methods/connect.cc 2017-07-14 07:45:39.000000000 +1000
f61c9c79 2+++ ./methods/connect.cc 2017-07-23 10:50:27.755510218 +1000
6ad26efe 3@@ -129,7 +129,7 @@
4
5 // Check the socket for an error condition
6 unsigned int Err;
7- unsigned int Len = sizeof(Err);
8+ socklen_t Len = sizeof(Err);
9 if (getsockopt(Fd,SOL_SOCKET,SO_ERROR,&Err,&Len) != 0)
10 return _error->Errno("getsockopt",_("Failed"));
11
f61c9c79 12@@ -301,7 +301,10 @@
13 if(LastHost != Host || LastPort != Port)
14 {
15 SrvRecords.clear();
16- if (_config->FindB("Acquire::EnableSrvRecords", true) == true)
17+ /* Disable by default in Termux due to it breaking on (some) HTC
18+ devices (https://github.com/termux/termux-packages/issues/99). */
19+
20+ if (_config->FindB("Acquire::EnableSrvRecords", false) == true)
21 {
22 GetSrvRecords(Host, DefPort, SrvRecords);
23 // RFC2782 defines that a lonely '.' target is an abort reason