diff options
Diffstat (limited to 'sysinfo')
-rwxr-xr-x | sysinfo/host/host.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/sysinfo/host/host.sh b/sysinfo/host/host.sh index e4079ee..b3975ae 100755 --- a/sysinfo/host/host.sh +++ b/sysinfo/host/host.sh @@ -21,36 +21,6 @@ host_test() exit 2 } -host_endian_h() -{ - mb_header='endian.h' - rm -f "$mb_hdrdir"/$mb_header - - # portable - printf "#include <$mb_header>" | $mb_compiler $mb_cflags \ - -E - > /dev/null 2>/dev/null \ - && return 0 - - # non-portable - mb_hosthdr= - - [ -z $mb_hosthdr ] && printf "#include <sys/$mb_header>" | $mb_compiler $mb_cflags \ - -E - > /dev/null 2>/dev/null \ - && mb_hosthdr='sys/'$mb_header - - [ -z $mb_hosthdr ] && printf "#include <machine/$mb_header>" | $mb_compiler $mb_cflags \ - -E - > /dev/null 2>/dev/null \ - && mb_hosthdr='machine/'$mb_header - - if [ -z "$mb_hosthdr" ]; then - error_msg "config error: could not find an alternate <$mb_header>." - exit 2 - fi - - printf "#include <%s>\\n" $mb_hosthdr > "$mb_hdrdir"/$mb_header || exit 2 -} - - # one: args for arg ; do case "$arg" in @@ -74,9 +44,5 @@ done host_test -# three: headers -host_endian_h - - # all done exit 0 |