mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WERROR=yes buildworld. Not currently touching the numerous instances in ^/tools. MFC after: 1 week
38 lines
706 B
Makefile
38 lines
706 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE=lib${LIB}
|
|
PRIVATELIB= yes
|
|
LIB= sqlite3
|
|
SHLIB_MAJOR?= 0
|
|
LIBADD+= pthread
|
|
|
|
SRCS= sqlite3.c
|
|
INCS= sqlite3.h sqlite3ext.h
|
|
|
|
SQLITE= ${SRCTOP}/contrib/sqlite3
|
|
.PATH: ${SQLITE}
|
|
|
|
WARNS?= 3
|
|
CFLAGS+= -I${SQLITE} \
|
|
-DUSE_PREAD=1 \
|
|
-DSTDC_HEADERS=1 \
|
|
-DHAVE_SYS_TYPES_H=1 \
|
|
-DHAVE_SYS_STAT_H=1 \
|
|
-DHAVE_STDLIB_H=1 \
|
|
-DHAVE_STRING_H=1 \
|
|
-DHAVE_MEMORY_H=1 \
|
|
-DHAVE_STRINGS_H=1 \
|
|
-DHAVE_INTTYPES_H=1 \
|
|
-DHAVE_STDINT_H=1 \
|
|
-DHAVE_UNISTD_H=1 \
|
|
-DHAVE_DLFCN_H=1 \
|
|
-DHAVE_USLEEP=1 \
|
|
-DHAVE_LOCALTIME_R=1 \
|
|
-DHAVE_GMTIME_R=1 \
|
|
-DHAVE_DECL_STRERROR_R=1 \
|
|
-DHAVE_STRERROR_R=1 \
|
|
-DHAVE_POSIX_FALLOCATE=1 \
|
|
-D_REENTRANT=1 \
|
|
-DSQLITE_THREADSAFE=1
|
|
|
|
.include <bsd.lib.mk>
|