]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - contrib/ntp/sntp/m4/ntp_prog_cc.m4
Fix multiple vulnerabilities of ntp. [SA-17:03]
[FreeBSD/releng/10.3.git] / contrib / ntp / sntp / m4 / ntp_prog_cc.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 ======================================================================