ports/net/lft has a slight problem on 4.x servers GCC 2.95 does not support atol on 4.x, where as 5.x has atol, to solve this slight problem we must use either a version check, or use depreciated atoll Fix: ### begin patch ### submit patch, test, enjoy. Slight annoyances... but a real problem.--IBlMHc6mrELhLuK6adovvWIAovAWDBwqw1YLndvf5O0RDQcj Content-Type: text/plain; name="file.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="file.diff" --- lft-2.2/lft.c Wed May 7 15:43:30 2003 +++ lft/lft.c Wed Aug 27 17:50:18 2003 @@ -24,7 +24,7 @@ #include "acconfig.h" #include <assert.h> - +#define INT_MAX ((int))~0U>>1)) #ifdef __CYGWIN__ #define __USE_W32_SOCKETS #include "windows.h" @@ -1131,7 +1131,7 @@ dport = atoi (optarg); break; case 'q': - seq_start = atol (optarg); + seq_start = atoll (optarg); break; case 'w': win_len = atoi(optarg); ### end patch ###
State Changed From-To: feedback->closed If this is still a problem with the latest (3.23.58) one, please resubmit the problem. Most likely it was caused by the not running of ldconfig by the port. If it still occures, please add the output of "ldconfig -r" to the PR.
State Changed From-To: open->open euhmm.. I'll redit this PR.
State Changed From-To: open->open
State Changed From-To: open->open Fix synopses.
State Changed From-To: open->open Fix synopses
State Changed From-To: open->open Fix category
State Changed From-To: open->open Fix synopsesFix synopsesFix synopses
State Changed From-To: analyzed->analyzed Fix synopses
State Changed From-To: open->open FIx category
State Changed From-To: feedback->feedback Fix synopses
State Changed From-To: open->closed Commited, thanks!