Fix macro warning on HAVE_PT_CHOWN
authorAndreas Schwab <schwab@suse.de>
Tue, 13 May 2014 15:04:27 +0000 (17:04 +0200)
committerAndreas Schwab <schwab@suse.de>
Wed, 14 May 2014 07:46:54 +0000 (09:46 +0200)
ChangeLog
config.h.in
sysdeps/unix/grantpt.c

index e66dafc..7d9a8b7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-05-14  Andreas Schwab  <schwab@suse.de>
+
+       * config.h.in (HAVE_PT_CHOWN): Define as 0.
+       * sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
+       not definedness.
+
 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES):
index b6e3623..a9ff1e3 100644 (file)
 #undef HAVE_ARM_PCS_VFP
 
 /* The pt_chown binary is being built and used by grantpt.  */
-#undef HAVE_PT_CHOWN
+#define HAVE_PT_CHOWN 0
 
 /* ports/sysdeps/mips/configure.in  */
 /* Define if using the IEEE 754-2008 NaN encoding on the MIPS target.  */
index 410dc50..2cb277c 100644 (file)
@@ -176,7 +176,7 @@ grantpt (int fd)
   /* We have to use the helper program if it is available.  */
  helper:;
 
-#ifdef HAVE_PT_CHOWN
+#if HAVE_PT_CHOWN
   pid_t pid = __fork ();
   if (pid == -1)
     goto cleanup;