]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
sntp is now built by default.
authorHarlan Stenn <stenn@ntp.org>
Mon, 26 Sep 2005 06:19:59 +0000 (02:19 -0400)
committerHarlan Stenn <stenn@ntp.org>
Mon, 26 Sep 2005 06:19:59 +0000 (02:19 -0400)
bk: 4337930fK3EXotSXlAad9seXxoj8Pg

configure.ac
flock-build

index b050028b89115aef78794ac084a69c792c74112a..ee0d41405e783d01ea1def7c29f98509e102f053 100644 (file)
@@ -2894,8 +2894,8 @@ AC_MSG_RESULT($ans)
 
 AC_MSG_CHECKING(if we want to try SNTP)
 AC_ARG_WITH(sntp,
-       AC_HELP_STRING([--with-sntp], [- Build SNTP?]),
-[ans=$withval], [ans=no])
+       AC_HELP_STRING([--with-sntp], [+ Build SNTP?]),
+       [ans=$withval], [ans=yes])
 case "$ans" in
  no) ;;
  *)
index f190921cf638881096c12b61d9a81a7c266fc0a4..d9dc9ddc1bf9b87fa8ef1495910b1b0198363c44 100755 (executable)
@@ -3,7 +3,6 @@
 BUILD_ARGS="$@"
 PARSE="--enable-parse-clocks"
 #PARSE=
-SNTP="--with-sntp"
 
 # Backroom:
 #   beauregard    freebsd-4
@@ -42,14 +41,14 @@ do
     echo $i
     case "1" in
      0)
-    ssh $i "cd $c_d ; ./build $SIG $PARSE $SNTP $BUILD_ARGS" &
-    ssh $i "cd $c_d ; ./build $SIG $PARSE $SNTP --without-crypto $BUILD_ARGS" &
-    ssh $i "cd $c_d ; ./build $SIG        $SNTP --disable-all-clocks $BUILD_ARGS" &
+    ssh $i "cd $c_d ; ./build $SIG $PARSE $BUILD_ARGS" &
+    ssh $i "cd $c_d ; ./build $SIG $PARSE --without-crypto $BUILD_ARGS" &
+    ssh $i "cd $c_d ; ./build $SIG        --disable-all-clocks $BUILD_ARGS" &
        ;;
      1) ssh $i "cd $c_d ; \
-./build $SIG $PARSE $SNTP $BUILD_ARGS ; \
-./build $SIG $PARSE $SNTP --without-crypto $BUILD_ARGS ; \
-./build $SIG        $SNTP --disable-all-clocks $BUILD_ARGS" \
+./build $SIG $PARSE $BUILD_ARGS ; \
+./build $SIG $PARSE --without-crypto $BUILD_ARGS ; \
+./build $SIG        --disable-all-clocks $BUILD_ARGS" \
 &
        ;;
     esac