s48_cc.m4 290 B

12345678910111213141516
  1. ### s48_cc.m4 --- S48_CC macro -*- Autoconf -*-
  2. # serial 1
  3. dnl
  4. dnl
  5. dnl On AIX, we need xlc_r or cc_r if not explicitly set
  6. AC_DEFUN([S48_CC], [dnl
  7. case "$target" in
  8. *-*-aix*) dnl
  9. if test -z "$CC" ; then
  10. AC_CHECK_PROGS(CC,cc_r xlc_r cc)
  11. fi
  12. ;;
  13. esac
  14. ])
  15. ### s48_cc.m4 ends here