]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
--disable-md5password -> --disable-md5-password
authorokuji <okuji@localhost>
Tue, 17 Oct 2000 14:39:15 +0000 (14:39 +0000)
committerokuji <okuji@localhost>
Tue, 17 Oct 2000 14:39:15 +0000 (14:39 +0000)
ChangeLog
config.h.in
configure
configure.in

index 6d80f71ccd7ee71b3651ed890c3caa6fdbe6d22a..a2e8dea10038772177aa0b94cd9b4041dea5b805 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-17  OKUJI Yoshinori  <okuji@gnu.org>
+
+       * configure.in (--disable-md5password): Renamed to ...
+       (--disable-md5-password): ... this. Just for my preference.
+       
 2000-10-17  Jochen Hoenicke  <jochen@gnu.org>
 
        Added MD5 passwords and extended password command:
index d04a7eb0a667652ae3a2f53582c922f89329edfc..56db8bd271f274f4745fb43d3f35fc59e66b458b 100644 (file)
 /* Defined if an absolute indirect call/jump must NOT be prefixed with `*'.  */
 #undef ABSOLUTE_WITHOUT_ASTERISK
 
-/* Define it to "addr32" or "addr32;" to make GAS happy */
-#undef ADDR32
-
-/* Define it to "data32" or "data32;" to make GAS happy */
-#undef DATA32
-
-/* Define if C symbols get an underscore after compilation */
-#undef HAVE_ASM_USCORE
-
-/* Define if you have the <curses.h> header file. */
+/* Define if you have the <curses.h> header file.  */
 #undef HAVE_CURSES_H
 
-/* Define if you have the `curses' library (-lcurses). */
-#undef HAVE_LIBCURSES
-
-/* Define if you have the `ncurses' library (-lncurses). */
-#undef HAVE_LIBNCURSES
-
-/* Define if you have the `util' library (-lutil). */
-#undef HAVE_LIBUTIL
+/* Define if you have the <ncurses.h> header file.  */
+#undef HAVE_NCURSES_H
 
-/* Define if you have the <ncurses/curses.h> header file. */
+/* Define if you have the <ncurses/curses.h> header file.  */
 #undef HAVE_NCURSES_CURSES_H
 
-/* Define if you have the <ncurses.h> header file. */
-#undef HAVE_NCURSES_H
-
-/* Define if opendisk() in -lutil can be used */
-#undef HAVE_OPENDISK
+/* Define if you have the <string.h> header file.  */
+#undef HAVE_STRING_H
 
-/* Define if you have the <strings.h> header file. */
+/* Define if you have the <strings.h> header file.  */
 #undef HAVE_STRINGS_H
 
-/* Define if you have the <string.h> header file. */
-#undef HAVE_STRING_H
-
 /* Name of package */
 #undef PACKAGE
 
 /* Version number of package */
 #undef VERSION
+
+/* Define if C symbols get an underscore after compilation */
+#undef HAVE_ASM_USCORE
+
+/* Define it to "addr32" or "addr32;" to make GAS happy */
+#undef ADDR32
+
+/* Define it to "data32" or "data32;" to make GAS happy */
+#undef DATA32
+
+/* Define if opendisk() in -lutil can be used */
+#undef HAVE_OPENDISK
+
index 662a27df2732744cd959097eebabb76768912a0f..afb17d96c5253c00aa62a8a2d788517d2a9744fc 100644 (file)
--- a/configure
+++ b/configure
@@ -34,7 +34,7 @@ ac_help="$ac_help
 ac_help="$ac_help
   --disable-gunzip        disable decompression in Stage 2"
 ac_help="$ac_help
-  --disable-md5password   disable MD5 passwords in Stage 2"
+  --disable-md5-password  disable MD5 password support in Stage 2"
 ac_help="$ac_help
   --disable-packet-retransmission
                           turn off packet retransmission"
@@ -782,7 +782,7 @@ else
   echo "configure: warning: ${am_backtick}missing' script is too old or missing" 1>&2
 fi
 
-for ac_prog in mawk gawk nawk awk
+for ac_prog in gawk mawk nawk awk
 do
 # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
@@ -2423,13 +2423,13 @@ if test x"$enable_gunzip" = xno; then
   FSYS_CFLAGS="$FSYS_CFLAGS -DNO_DECOMPRESSION=1"
 fi
 
-# Check whether --enable-md5password or --disable-md5password was given.
-if test "${enable_md5password+set}" = set; then
-  enableval="$enable_md5password"
+# Check whether --enable-md5-password or --disable-md5-password was given.
+if test "${enable_md5_password+set}" = set; then
+  enableval="$enable_md5_password"
   :
 fi
 
-if test "x$enable_md5password" != xno; then
+if test "x$enable_md5_password" != xno; then
   CFLAGS="$CFLAGS -DUSE_MD5_PASSWORDS=1"
 fi
 
index 5649e2f17ff61a21b6bf1911f5005920b4ce029d..19746bb5977ae359f1f866fb2b3f2a9efc05146b 100644 (file)
@@ -230,9 +230,9 @@ if test x"$enable_gunzip" = xno; then
   FSYS_CFLAGS="$FSYS_CFLAGS -DNO_DECOMPRESSION=1"
 fi
 
-AC_ARG_ENABLE(md5password,
-  [  --disable-md5password   disable MD5 passwords in Stage 2])
-if test "x$enable_md5password" != xno; then
+AC_ARG_ENABLE(md5-password,
+  [  --disable-md5-password  disable MD5 password support in Stage 2])
+if test "x$enable_md5_password" != xno; then
   CFLAGS="$CFLAGS -DUSE_MD5_PASSWORDS=1"
 fi