scan-tools.sh 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. shopt -s extglob
  4. topdir=$(pwd)
  5. opath=$PATH
  6. out=0
  7. if [ -z $(which gmake 2>/dev/null ) ];then
  8. makecmd=$(which make 2>/dev/null )
  9. else
  10. makecmd=$(which gmake 2>/dev/null )
  11. fi
  12. if [[ $NO_ERROR != @(0|1) ]]; then
  13. echo Please do not invoke this script directly!
  14. exit 1
  15. fi
  16. set -e
  17. rm -rf $topdir/tmp
  18. mkdir -p $topdir/tmp
  19. cd $topdir/tmp
  20. rm -f foo
  21. echo >FOO
  22. if [[ -e foo ]]; then
  23. cat >&2 <<-EOF
  24. ERROR: OpenADK cannot be built in a case-insensitive file system.
  25. EOF
  26. exit 1
  27. fi
  28. rm -f FOO
  29. os=$(uname)
  30. case $os in
  31. Linux)
  32. # supported with no extra quirks at the moment
  33. ;;
  34. FreeBSD)
  35. # supported with no extra quirks at the moment
  36. ;;
  37. MirBSD)
  38. # supported with no extra quirks at the moment
  39. ;;
  40. CYG*)
  41. echo "Building OpenADK on $os needs a small registry change."
  42. echo 'See http://www.cygwin.com/1.7/cygwin-ug-net/using-specialnames.html'
  43. ;;
  44. NetBSD)
  45. echo "Building OpenADK on $os is currently unsupported."
  46. echo "Sorry."
  47. echo
  48. echo There are unresolved issues relating to ncurses not
  49. echo being included in NetBSD®, and these provided by pkgsrc®
  50. echo lack important header files.
  51. ;;
  52. OpenBSD)
  53. # supported with no extra quirks at the moment
  54. # although some packages' autoconf scripts may
  55. # not properly recognise OpenBSD
  56. ;;
  57. *)
  58. # unsupported
  59. echo "Building OpenADK on $os is currently unsupported."
  60. echo "Sorry."
  61. exit 1
  62. ;;
  63. esac
  64. set +e
  65. cat >Makefile <<'EOF'
  66. include ${TOPDIR}/prereq.mk
  67. HOSTCFLAGS+= -O2
  68. all: run-test
  69. test: test.c
  70. ${HOSTCC} ${HOSTCFLAGS} -o $@ $^ ${LDADD}
  71. run-test: test
  72. ./test
  73. EOF
  74. cat >test.c <<-'EOF'
  75. #include <stdio.h>
  76. int
  77. main()
  78. {
  79. printf("Yay! Native compiler works.\n");
  80. return (0);
  81. }
  82. EOF
  83. X=$($makecmd TOPDIR=$topdir 2>&1)
  84. if [[ $X != *@(Native compiler works)* ]]; then
  85. echo "$X" | sed 's/^/| /'
  86. echo Cannot compile a simple test programme.
  87. echo You must install a host make and C compiler,
  88. echo usually GCC, to proceed.
  89. echo
  90. out=1
  91. fi
  92. rm test 2>/dev/null
  93. #if ! which cpp >/dev/null 2>&1; then
  94. # echo You must install a C preprocessor to continue.
  95. # echo
  96. # out=1
  97. #fi
  98. if ! which tar >/dev/null 2>&1; then
  99. echo You must install GNU tar to continue.
  100. echo
  101. out=1
  102. fi
  103. if ! (tar --version | grep GNU) >/dev/null 2>&1;then
  104. if ! which gtar >/dev/null 2>&1; then
  105. echo You must install GNU tar to continue.
  106. echo
  107. out=1
  108. fi
  109. fi
  110. if ! which gzip >/dev/null 2>&1; then
  111. echo You must install gzip to continue.
  112. echo
  113. out=1
  114. fi
  115. if ! which lzma >/dev/null 2>&1; then
  116. echo You must install lzma to continue.
  117. echo
  118. out=1
  119. fi
  120. if ! which bzip2 >/dev/null 2>&1; then
  121. echo You must install bzip2 to continue.
  122. echo
  123. out=1
  124. fi
  125. if ! which cpio >/dev/null 2>&1; then
  126. echo You must install cpio to continue.
  127. echo
  128. out=1
  129. fi
  130. if ! which unzip >/dev/null 2>&1; then
  131. echo You must install unzip to continue.
  132. echo
  133. out=1
  134. fi
  135. if ! which patch >/dev/null 2>&1; then
  136. echo You must install patch to continue.
  137. echo
  138. out=1
  139. fi
  140. cat >test.c <<-'EOF'
  141. #include <stdio.h>
  142. #include <zlib.h>
  143. #ifndef STDIN_FILENO
  144. #define STDIN_FILENO 0
  145. #endif
  146. int
  147. main()
  148. {
  149. gzFile zstdin;
  150. char buf[1024];
  151. int i;
  152. zstdin = gzdopen(STDIN_FILENO, "rb");
  153. i = gzread(zstdin, buf, sizeof (buf));
  154. if ((i > 0) && (i < sizeof (buf)))
  155. buf[i] = '\0';
  156. buf[sizeof (buf) - 1] = '\0';
  157. printf("%s\n", buf);
  158. return (0);
  159. }
  160. EOF
  161. X=$(echo 'Yay! Native compiler works.' | gzip | \
  162. $makecmd TOPDIR=$topdir LDADD=-lz 2>&1)
  163. if [[ $X != *@(Native compiler works)* ]]; then
  164. echo "$X" | sed 's/^/| /'
  165. echo Cannot compile a libz test programm.
  166. echo You must install the zlib development package,
  167. echo usually called libz-dev, and the run-time library.
  168. echo
  169. out=1
  170. fi
  171. [[ -s /usr/include/ncurses.h ]] || if [[ -s /usr/pkg/include/ncurses.h ]]; then
  172. echo 'HOSTCFLAGS+= -isystem /usr/pkg/include' >>$topdir/prereq.mk
  173. echo 'HOSTLDFLAGS+=-L/usr/pkg/lib -Wl,-rpath -Wl,/usr/pkg/lib' >>$topdir/prereq.mk
  174. else
  175. echo Install ncurses header files, please.
  176. echo
  177. out=1
  178. fi
  179. if ! which gawk >/dev/null 2>&1; then
  180. echo You must install GNU awk to continue.
  181. echo
  182. out=1
  183. fi
  184. if ! which sed >/dev/null 2>&1; then
  185. echo You must install GNU sed to continue.
  186. echo
  187. out=1
  188. fi
  189. if ! sed --version 2>/dev/null|grep GNU >/dev/null;then
  190. if ! which gsed >/dev/null 2>&1; then
  191. echo You must install GNU sed to continue.
  192. echo
  193. out=1
  194. fi
  195. fi
  196. if ! which wget >/dev/null 2>&1; then
  197. echo You must install wget to continue.
  198. echo
  199. out=1
  200. fi
  201. if ! which autoconf >/dev/null 2>&1; then
  202. echo You must install autoconf to continue.
  203. echo
  204. out=1
  205. fi
  206. if ! which automake >/dev/null 2>&1; then
  207. echo You must install automake to continue.
  208. echo
  209. out=1
  210. fi
  211. if ! which libtool >/dev/null 2>&1; then
  212. echo You must install libtool to continue.
  213. echo
  214. out=1
  215. fi
  216. if ! which file >/dev/null 2>&1; then
  217. echo You must install \"file\" to continue.
  218. echo
  219. out=1
  220. fi
  221. if ! which perl >/dev/null 2>&1; then
  222. echo You must install perl to continue.
  223. echo
  224. out=1
  225. fi
  226. cd $topdir
  227. rm -rf tmp
  228. exit $out