Differences From Artifact [f8a99adefe]:
- File src/OFSocket.m — part of check-in [d5310a5145] at 2022-11-04 23:30:20 on branch trunk — configure: Check for if_{indextoname,nametoindex} (user: js, size: 27477) [annotate] [blame] [check-ins using]
To Artifact [d36d90a400]:
- File
src/OFSocket.m
— part of check-in
[6235989999]
at
2022-11-05 10:01:08
on branch trunk
— Don't include <net/if.h> on MorphOS
MorphOS has the header, but it's broken and including it makes the
compiler fail. (user: js, size: 27529) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
22 23 24 25 26 27 28 | #ifdef OF_NINTENDO_3DS # include <malloc.h> /* For memalign() */ #endif #include <errno.h> | > | | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | #ifdef OF_NINTENDO_3DS # include <malloc.h> /* For memalign() */ #endif #include <errno.h> #include "platform.h" #if defined(HAVE_NET_IF_H) && !defined(OF_MORPHOS) # include <net/if.h> #endif #import "OFArray.h" #import "OFCharacterSet.h" #import "OFLocale.h" #ifdef OF_HAVE_THREADS |
| ︙ | ︙ |