View Issue Details

IDProjectCategoryView StatusLast Update
0003125unrealinstallingpublic2006-11-24 15:26
ReporterSchak Assigned Tosyzop  
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
PlatformsparcOSSolarisOS Version5.10
Product Version3.2.5 
Fixed in Version3.2.6 
Summary0003125: INADDR_NONE is not defined
Description./Config runs without problems.
'make' aborts immediately with

timesynch.c: In function `unreal_time_synch':
timesynch.c:178: error: `INADDR_NONE' undeclared (first use in this function)
timesynch.c:178: error: (Each undeclared identifier is reported only once
timesynch.c:178: error: for each function it appears in.)
*** Error code 1
make: Fatal error: Command failed for target `timesynch.o'
Steps To Reproducesimply execute "make" after ./Config
Additional InformationBugfix:

Add the following lines to src/include/common.h:

#ifndef INADDR_NONE
#define INADDR_NONE ((unsigned long) -1)
#endif


It is known, that INADDR_NONE is not defined on Solaris.
TagsNo tags attached.
3rd party modules

Activities

syzop

2006-11-24 15:26

administrator   ~0012719

Should be fixed in CVS, thanks.

I've put it in include/inet.h btw.

Issue History

Date Modified Username Field Change
2006-11-22 16:56 Schak New Issue
2006-11-24 15:26 syzop Status new => resolved
2006-11-24 15:26 syzop Fixed in Version => 3.2.6
2006-11-24 15:26 syzop Resolution open => fixed
2006-11-24 15:26 syzop Assigned To => syzop
2006-11-24 15:26 syzop Note Added: 0012719