summaryrefslogtreecommitdiff
path: root/sysinfo
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-03 12:43:40 -0400
committermidipix <writeonce@midipix.org>2016-05-03 12:43:40 -0400
commit93fb792fbe04424ca1e70dfe068eb24d57902b35 (patch)
treee1713d6274a464b2608038d859c32cb3d6aa4371 /sysinfo
parent3895afa953a49e842fa99fa08842268d6f58aae9 (diff)
downloadslibtool-93fb792fbe04424ca1e70dfe068eb24d57902b35.tar.bz2
slibtool-93fb792fbe04424ca1e70dfe068eb24d57902b35.tar.xz
build system: sysinfo/host.sh: remove host_endian_h, as it is no longer needed.
Diffstat (limited to 'sysinfo')
-rwxr-xr-xsysinfo/host/host.sh34
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