Home | History | Annotate | Line # | Download | only in m4
      1 dnl ######################################################################
      2 dnl NTP compiler basics
      3 dnl
      4 AC_DEFUN([NTP_PROG_CC], [
      5 case "$build" in
      6  *-*-freebsd1?.*)
      7     cclist=cc
      8     ;;
      9  *)
     10     cclist="cc gcc"
     11     ;;
     12 esac
     13 
     14 dnl  we need to check for cross compile tools for vxWorks here
     15 
     16 dnl must come before AC_PROG_CC or similar
     17 #AC_USE_SYSTEM_EXTENSIONS
     18 
     19 AC_PROG_CC([$cclist])
     20 
     21 ])dnl
     22 dnl ======================================================================
     23