mirror of
https://github.com/openzfs/zfs.git
synced 2025-10-01 19:56:28 +00:00

All these errors are now either addressed in a gcc-* topic branch, or in whatever branch the original warning was introduced by (i.e. I fixed the bug which just went unnoticed until now due to the compiler flags)
10 lines
405 B
Plaintext
10 lines
405 B
Plaintext
DEFAULT_INCLUDES = -I${top_srcdir}
|
|
|
|
# FIXME: Add -Wshadow once everything is working
|
|
AM_CFLAGS = -Wall -Wstrict-prototypes -fno-strict-aliasing -Werror
|
|
|
|
# Expected defines not covered by zfs_config.h or spl_config.h
|
|
AM_CFLAGS += -D_GNU_SOURCE -D__EXTENSIONS__ -D_REENTRANT
|
|
AM_CFLAGS += -D_POSIX_PTHREAD_SEMANTICS -D_FILE_OFFSET_BITS=64
|
|
AM_CFLAGS += -D_LARGEFILE64_SOURCE -DTEXT_DOMAIN=\"zfs-linux-user\"
|