From: Harlan Stenn Date: Wed, 24 Apr 2002 04:55:13 +0000 (-0400) Subject: The HOPF serial and PCI drivers were in the wrong place and X-Git-Tag: NTP_4_1_1C_RC1~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a1300fc223938ab0daab2b0271ca673f8cbe01a;p=thirdparty%2Fntp.git The HOPF serial and PCI drivers were in the wrong place and not being selected. bk: 3cc63ab1A7VlwLqRvtxxHOWqVY7DyA --- diff --git a/configure.in b/configure.in index 470b926cd1..166d778181 100644 --- a/configure.in +++ b/configure.in @@ -1553,24 +1553,6 @@ dnl AC_SUBST(UNIXCERT) ntp_refclock=no -AC_MSG_CHECKING(for hopf serial clock device) -AC_ARG_ENABLE(HOPFSERIAL, [ --enable-HOPFSERIAL + hopf serial clock device], - [ntp_ok=$enableval], [ntp_ok=$ntp_eac]) - if test "$ntp_ok" = "yes"; then - ntp_refclock=yes - AC_DEFINE(CLOCK_HOPF_SERIAL) - fi - AC_MSG_RESULT($ntp_ok) - -AC_MSG_CHECKING(for hopf PCI clock 6039) -AC_ARG_ENABLE(HOPFPCI, [ --enable-HOPFPCI + hopf 6039 PCI board], - [ntp_ok=$enableval], [ntp_ok=$ntp_eac]) -if test "$ntp_ok" = "yes"; then - ntp_refclock=yes - AC_DEFINE(CLOCK_HOPF_PCI) -fi -AC_MSG_RESULT($ntp_ok) - # HPUX only, and by explicit request AC_MSG_CHECKING(Datum/Bancomm bc635/VME interface) AC_ARG_ENABLE(BANCOMM, [ --enable-BANCOMM - Datum/Bancomm bc635/VME interface], @@ -1774,6 +1756,24 @@ if test "$ntp_ok" = "yes"; then fi AC_MSG_RESULT($ntp_ok) +AC_MSG_CHECKING(for hopf serial clock device) +AC_ARG_ENABLE(HOPFSERIAL, [ --enable-HOPFSERIAL + hopf serial clock device], + [ntp_ok=$enableval], [ntp_ok=$ntp_eac]) + if test "$ntp_ok" = "yes"; then + ntp_refclock=yes + AC_DEFINE(CLOCK_HOPF_SERIAL) + fi + AC_MSG_RESULT($ntp_ok) + +AC_MSG_CHECKING(for hopf PCI clock 6039) +AC_ARG_ENABLE(HOPFPCI, [ --enable-HOPFPCI + hopf 6039 PCI board], + [ntp_ok=$enableval], [ntp_ok=$ntp_eac]) +if test "$ntp_ok" = "yes"; then + ntp_refclock=yes + AC_DEFINE(CLOCK_HOPF_PCI) +fi +AC_MSG_RESULT($ntp_ok) + AC_MSG_CHECKING(HP 58503A GPS receiver) AC_ARG_ENABLE(HPGPS, [ --enable-HPGPS + HP 58503A GPS receiver], [ntp_ok=$enableval], [ntp_ok=$ntp_eac])