summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath <[email protected]>2007-02-06 04:47:44 +0000
committerRoland McGrath <[email protected]>2007-02-06 04:47:44 +0000
commitf82a1ec3ed061c892dd1f11fc09bf14290334234 (patch)
treea138f6060e612351577e6e4bd3c8f6e5672e89d9
parentb5da2578153fbf4bb1b8ade50caa079bb61877a5 (diff)
2007-02-05 Roland McGrath <[email protected]>
* ar.c: Include <limits.h>, since we use LONG_MAX.
-rw-r--r--config/elfutils.spec.in2
-rw-r--r--src/ChangeLog4
-rw-r--r--src/ar.c1
3 files changed, 6 insertions, 1 deletions
diff --git a/config/elfutils.spec.in b/config/elfutils.spec.in
index a6b19816..f3e88228 100644
--- a/config/elfutils.spec.in
+++ b/config/elfutils.spec.in
@@ -1,5 +1,5 @@
# -*- rpm-spec-*-
-Summary: A collection of utilities and DSOs to handle compiled objects
+Summary: A collection of utilities and DSOs to handle compiled objects.
Name: elfutils
Version: @PACKAGE_VERSION@
Release: 1
diff --git a/src/ChangeLog b/src/ChangeLog
index 9a3b2eea..26920df1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2007-02-05 Roland McGrath <[email protected]>
+
+ * ar.c: Include <limits.h>, since we use LONG_MAX.
+
2007-02-05 Ulrich Drepper <[email protected]>
* ar.r: Add ugly hack to work around gcc complaining that we
diff --git a/src/ar.c b/src/ar.c
index 37fa3e03..92487ac8 100644
--- a/src/ar.c
+++ b/src/ar.c
@@ -33,6 +33,7 @@
#include <fcntl.h>
#include <gelf.h>
#include <libintl.h>
+#include <limits.h>
#include <locale.h>
#include <mcheck.h>
#include <search.h>