Merge pull request #1519 from terrelln/play-bsd
[cirrus] Run playTests.sh
This commit is contained in:
commit
ae7380d2af
@ -10,6 +10,7 @@ task:
|
|||||||
install_script:
|
install_script:
|
||||||
- sed -i.bak -e 's,pkg+http://pkg.FreeBSD.org/\${ABI}/quarterly,pkg+http://pkg.FreeBSD.org/\${ABI}/latest,' /etc/pkg/FreeBSD.conf
|
- sed -i.bak -e 's,pkg+http://pkg.FreeBSD.org/\${ABI}/quarterly,pkg+http://pkg.FreeBSD.org/\${ABI}/latest,' /etc/pkg/FreeBSD.conf
|
||||||
- pkg upgrade -y
|
- pkg upgrade -y
|
||||||
- pkg install -y gmake
|
- pkg install -y gmake coreutils
|
||||||
script:
|
script: |
|
||||||
- CFLAGS="-Werror" gmake -j all
|
MOREFLAGS="-Werror" gmake -j all
|
||||||
|
gmake shortest
|
||||||
|
@ -92,11 +92,12 @@ U32 UTIL_isLink(const char* infilename)
|
|||||||
/* macro guards, as defined in : https://linux.die.net/man/2/lstat */
|
/* macro guards, as defined in : https://linux.die.net/man/2/lstat */
|
||||||
#ifndef __STRICT_ANSI__
|
#ifndef __STRICT_ANSI__
|
||||||
#if defined(_BSD_SOURCE) \
|
#if defined(_BSD_SOURCE) \
|
||||||
|| defined(__OpenBSD__) \
|
|
||||||
|| (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)) \
|
|| (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)) \
|
||||||
|| (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) \
|
|| (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) \
|
||||||
|| (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L)) \
|
|| (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L)) \
|
||||||
|| (defined(__APPLE__) && defined(__MACH__))
|
|| (defined(__APPLE__) && defined(__MACH__)) \
|
||||||
|
|| defined(__OpenBSD__) \
|
||||||
|
|| defined(__FreeBSD__)
|
||||||
int r;
|
int r;
|
||||||
stat_t statbuf;
|
stat_t statbuf;
|
||||||
r = lstat(infilename, &statbuf);
|
r = lstat(infilename, &statbuf);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user