Openwrt/tools
Alexandru Ardelean 00d1e6c75e firmware-utils: fix compilation on MacOS X
Looking into /usr/include/stdlib.h, there's a `devname()` function defined
under some #ifdef's which conflicts with the `static char *devname` definition
in `src/mkwrggimg.c`.

Defining `_ANSI_SOURCE` in the `src/mkwrggimg.c` file, omits that part of the
header.

Another more intrusive approach is to rename `devname` to something like
`g_devname` in `src/mkwrggimg.c`. But I think the `_ANSI_SOURCE` define should
be enough.

Compilation error is:

    src/mkwrggimg.c:64:14: error: redefinition of 'devname' as different kind of symbol
    static char *devname;
                 ^
    /usr/include/stdlib.h:286:7: note: previous definition is here
    char    *devname(dev_t, mode_t);
             ^
    src/mkwrggimg.c:147:12: error: non-object type 'char *(dev_t, mode_t)' (aka 'char *(int, unsigned short)') is not assignable
                            devname = optarg;
                            ~~~~~~~ ^
    src/mkwrggimg.c:192:6: warning: comparison of function 'devname' equal to a null pointer is always false [-Wtautological-pointer-compare]
            if (devname == NULL) {
                ^~~~~~~    ~~~~
    src/mkwrggimg.c:192:6: note: prefix with the address-of operator to silence this warning
            if (devname == NULL) {
                ^
                &
    src/mkwrggimg.c:251:27: warning: incompatible pointer types passing 'char *(dev_t, mode_t)' (aka 'char *(int, unsigned short)') to parameter of type 'const char *' [-Wincompatible-pointer-types]
            strncpy(header->devname, devname, sizeof(header->devname));
                                     ^~~~~~~
    /usr/include/secure/_string.h:119:34: note: expanded from macro 'strncpy'
      __builtin___strncpy_chk (dest, src, len, __darwin_obsz (dest))

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
[Jo-Philipp Wich: slightly reformat commit message]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2016-10-31 12:39:09 +01:00
..
autoconf
automake
b43-tools source: Switch to xz for packages and tools where possible 2016-10-06 12:16:56 +02:00
bc
bison
ccache ccache: disable assembler support, it breaks kernel initramfs images 2016-10-05 10:13:04 +02:00
cloog
cmake
coreutils
dosfstools dosfstools: fix autotools dependency 2016-10-12 12:22:38 +02:00
e2fsprogs
elftosb
expat
findutils
firmware-utils firmware-utils: fix compilation on MacOS X 2016-10-31 12:39:09 +01:00
flex
flock
genext2fs
gengetopt
gmp
include
isl
kernel2minor
libelf
libressl tools/libressl: Update to 2.5.0 and use mirrors 2016-10-15 11:36:51 +02:00
libtool source: Switch to xz for packages and tools where possible 2016-10-06 12:16:56 +02:00
lzma
lzma-old
m4
make-ext4fs source: Switch to xz for packages and tools where possible 2016-10-06 12:16:56 +02:00
missing-macros
mkimage
mklibs
mm-macros
mpc
mpfr
mtd-utils source: Switch to xz for packages and tools where possible 2016-10-06 12:16:56 +02:00
mtools
padjffs2
patch
patch-image
patchelf tools/patchelf: Update to 0.9 and remove patch 2016-10-04 11:50:48 +02:00
pkg-config
ppl
qemu
quilt
scons
sdimage source: Switch to xz for packages and tools where possible 2016-10-06 12:16:56 +02:00
sed
sparse
squashfs
squashfs4
sstrip
tar tools: tar: use .bz2 archive 2016-10-06 14:12:46 +02:00
upslug2 source: Switch to xz for packages and tools where possible 2016-10-06 12:16:56 +02:00
upx
wrt350nv2-builder
xz tools: xz: force building without ccache 2016-10-06 15:29:33 +02:00
yaffs2 source: Switch to xz for packages and tools where possible 2016-10-06 12:16:56 +02:00
Makefile tools: add missing dependency for dosfstools 2016-10-12 12:25:27 +02:00