From 134d0eb114ac67693eb62bb030dd537eca71c48d Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 19 Jun 2010 20:07:23 +0200 Subject: [PATCH] cosmetics on top of Dan's patches Signed-off-by: Denys Vlasenko --- archival/libunarchive/unxz/xz_config.h | 4 ++-- networking/ipcalc.c | 4 +--- scripts/trylink | 1 - 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/archival/libunarchive/unxz/xz_config.h b/archival/libunarchive/unxz/xz_config.h index a4141e136..187e1cbed 100644 --- a/archival/libunarchive/unxz/xz_config.h +++ b/archival/libunarchive/unxz/xz_config.h @@ -32,9 +32,9 @@ #define memeq(a, b, size) (memcmp(a, b, size) == 0) #define memzero(buf, size) memset(buf, 0, size) -#ifndef min +#undef min +#undef min_t #define min(x, y) ((x) < (y) ? (x) : (y)) -#endif #define min_t(type, x, y) min(x, y) /* diff --git a/networking/ipcalc.c b/networking/ipcalc.c index 87f31fdb5..265009ad8 100644 --- a/networking/ipcalc.c +++ b/networking/ipcalc.c @@ -11,10 +11,8 @@ * * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ - #include "libbb.h" - -#include +/* After libbb.h, because on some systems it needs other includes */ #include #define CLASS_A_NETMASK ntohl(0xFF000000) diff --git a/scripts/trylink b/scripts/trylink index 021374aa9..5994a757b 100755 --- a/scripts/trylink +++ b/scripts/trylink @@ -87,7 +87,6 @@ SORT_SECTION=`check_cc "-Wl,--sort-section,alignment" ""` START_GROUP="-Wl,--start-group" END_GROUP="-Wl,--end-group" - INFO_OPTS="-Wl,--warn-common -Wl,-Map,$EXE.map -Wl,--verbose" # gold may not support --sort-common (yet)