]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
Removed sntp/m4/ntp_bindir.m4 - no longer needed
authorHarlan Stenn <stenn@ntp.org>
Tue, 26 Jul 2011 05:57:56 +0000 (01:57 -0400)
committerHarlan Stenn <stenn@ntp.org>
Tue, 26 Jul 2011 05:57:56 +0000 (01:57 -0400)
bk: 4e2e5764xMLS2ACod3U-0hanUwC_9Q

ChangeLog
sntp/m4/ntp_bindir.m4 [deleted file]

index 56f8609f99aa94db8079b319d93ff052cfacbc64..3fa227653dc0ae0e942b359f787981bebc692032 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 * [Bug 1972] from 4.2.6p4-RC2: checking for struct rtattr fails.
 * [Bug 1973] Widen reference clock mode from 8 to 32 bits.
+* Removed sntp/m4/ntp_bindir.m4 - no longer needed.
 (4.2.7p195) 2011/07/25 Released by Harlan Stenn <stenn@ntp.org>
 * Added loc/redhat.
 (4.2.7p194) 2011/07/25 Released by Harlan Stenn <stenn@ntp.org>
diff --git a/sntp/m4/ntp_bindir.m4 b/sntp/m4/ntp_bindir.m4
deleted file mode 100644 (file)
index bddbe7e..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-dnl ######################################################################
-dnl Installation binary directory.  This may only apply to ntpd, not sntp
-AC_DEFUN([NTP_BINDIR], [
-
-AC_MSG_CHECKING([for bin subdirectory])
-AC_ARG_WITH(
-    [binsubdir],
-    [AS_HELP_STRING(
-       [--with-binsubdir],
-       [bin ={bin,sbin}]
-    )],
-    [use_binsubdir="$withval"],
-    [use_binsubdir="bin"]
-)
-case "$use_binsubdir" in
- bin)
-    ;;
- sbin)
-    ;;
- *)
-    AC_MSG_ERROR([<$use_binsubdir> is illegal - must be "bin" or "sbin"])
-    ;;
-esac
-AC_MSG_RESULT([$use_binsubdir])
-
-BINSUBDIR=$use_binsubdir
-AC_SUBST([BINSUBDIR])
-AM_CONDITIONAL([NTP_BINSUBDIR_IS_BIN], [test "bin" = "$BINSUBDIR"])
-
-])dnl
-dnl ======================================================================