Hello Donald, Thank you for your reply. Here is the output I get: cc -Wall -Wshadow -DBB_FEATURE_UDPCAST_FEC -D_FILE_OFFSET_BITS=64 -DUSE_SYSLOG -DNO_BB -c -o socklib.o socklib.c socklib.c: In function 'udpc_getSendBuf': socklib.c:280: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness socklib.c: In function 'udpc_getRcvBuf': socklib.c:293: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness socklib.c: In function 'udpc_setTtl': socklib.c:323: error: 'SOL_IP' undeclared (first use in this function) socklib.c:323: error: (Each undeclared identifier is reported only once socklib.c:323: error: for each function it appears in.) socklib.c: In function 'mcastOp': socklib.c:368: error: 'SOL_IP' undeclared (first use in this function) make: *** [socklib.o] Error 1 Thank you for your help, Jeffrey Michels
D Teed <dteed@artistic.ca> 09/14/05 9:18 PM >>>
I suggest posting the actual error you got when you tried to make the udpcast binaries. It could be an ordinary dependancy or lib you don't have. Usually the last 6 to 10 lines from a make error tell the tale of what went wrong. I've built udpcast on Sun with Linux, so I don't think there is anything x86 centric about it. --Donald Teed On Wed, 14 Sep 2005, Jeff Michels wrote:
Hello,
I've been using UDPCast for about a year now and it has saved our school district from the cost of a commercial imaging program. I has also saved me many hours. For that I am grateful.
Our district just purchased two Apple Servers. Currently I am using a 500 Mhz PIII box running Debian as our main image server. It has been extermely reliable and UDPCast works great however disk I / O and processing limitations are showing.
I would like to compile UDPCast for OSX. I have a Powerbook with 10.4 and the 2.1 Developer tools installed. I have tried to compile but was unsucessful. I have very limited coding skills so here is the information I need:
1. What do I need to do to get UDPCast to compile on OSX. If a total rewrite is needed, I will to lobby for a new(er) x86 box.
2. If anyone has done this I would like to read your experience.
Thank you in advance for your help.
Regards,
Jeff Michels School District of Beloit Technology Support Specialist _______________________________________________ Udpcast mailing list Udpcast@udpcast.linux.lu https://lll.lgl.lu/mailman/listinfo/udpcast
On Thursday 15 September 2005 23:40, Jeff Michels wrote:
Hello Donald,
Thank you for your reply. Here is the output I get:
cc -Wall -Wshadow -DBB_FEATURE_UDPCAST_FEC -D_FILE_OFFSET_BITS=64 -DUSE_SYSLOG -DNO_BB -c -o socklib.o socklib.c socklib.c: In function 'udpc_getSendBuf': socklib.c:280: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness socklib.c: In function 'udpc_getRcvBuf': socklib.c:293: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness socklib.c: In function 'udpc_setTtl': socklib.c:323: error: 'SOL_IP' undeclared (first use in this function) socklib.c:323: error: (Each undeclared identifier is reported only once socklib.c:323: error: for each function it appears in.) socklib.c: In function 'mcastOp': socklib.c:368: error: 'SOL_IP' undeclared (first use in this function) make: *** [socklib.o] Error 1
Thank you for your help,
Jeffrey Michels
Try inserting the following 3 lines after the #include's in socklib.c and see whether it helps: #ifndef SOL_IP #define SOL_IP IPPROTO_IP #endif Regards, Alain
participants (2)
-
Alain Knaff -
Jeff Michels