+2001-07-17 Andreas Jaeger <aj@suse.de>
+
+ * elf/ldconfig.c: Add new variable hwcap_mask to honour LD_HWCAP_MASK.
+ (is_hwcap_platform): Use it.
+ (set_hwcap): New function to set hwcap_mask.
+ (main): Call set_hwcap.
+
+2001-07-17 Jakub Jelinek <jakub@redhat.com>
+
+ * time/getdate.c (__getdate_r): Initialize tm_isdst, tm_gmtoff and
+ tm_zone before calling strptime.
+
2001-07-17 Andreas Schwab <schwab@suse.de>
* sysdeps/unix/sysv/linux/m68k/getpagesize.c: Fix last change.
/* Configuration file. */
static const char *config_file;
+/* Mask to use for important hardware capabilities. */
+static unsigned long int hwcap_mask = HWCAP_IMPORTANT;
+
/* Name and version of program. */
static void print_version (FILE *stream, struct argp_state *state);
void (*argp_program_version_hook) (FILE *, struct argp_state *)
{
int hwcap_idx = _dl_string_hwcap (name);
- if (hwcap_idx != -1 && ((1 << hwcap_idx) & HWCAP_IMPORTANT))
+ if (hwcap_idx != -1 && ((1 << hwcap_idx) & hwcap_mask))
return 1;
hwcap_idx = _dl_string_platform (name);
fclose (file);
}
+/* Honour LD_HWCAP_MASK. */
+static void
+set_hwcap (void)
+{
+ char *mask = getenv ("LD_HWCAP_MASK");
+
+ if (mask)
+ hwcap_mask = strtoul (mask, NULL, 0);
+}
+
int
main (int argc, char **argv)
add_dir (argv[i]);
}
+ set_hwcap ();
+
if (opt_chroot)
{
/* Normalize the path a bit, we might need it for printing later. */