mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-09 01:30:39 -04:00
build fsaccess
This commit is contained in:
parent
1f5eafd61b
commit
4acd8d2afe
4 changed files with 10 additions and 10 deletions
|
|
@ -31,7 +31,7 @@ CWARNINGS =
|
|||
# Alphabetically
|
||||
UNIXOBJS = @ISC_ISCIPV6_O@ \
|
||||
unix/app.@O@ unix/dir.@O@ unix/entropy.@O@ \
|
||||
unix/errno2result.@O@ unix/file.@O@ \
|
||||
unix/errno2result.@O@ unix/file.@O@ unix/fsaccess.@O@ \
|
||||
unix/interfaceiter.@O@ unix/net.@O@ unix/socket.@O@ \
|
||||
unix/time.@O@ unix/stdio.@O@ unix/stdtime.@O@
|
||||
|
||||
|
|
@ -41,8 +41,8 @@ NLSOBJS = nls/msgcat.@O@
|
|||
PTHREADOBJS = pthreads/condition.@O@ pthreads/thread.@O@
|
||||
|
||||
WIN32OBJS = win32/condition.@O@ win32/dir.@O@ win32/file.@O@ \
|
||||
win32/once.@O@ win32/stdtime.@O@ win32/thread.@O@ \
|
||||
win32/time.@O@
|
||||
win32/fsaccess.@O@ win32/once.@O@ win32/stdtime.@O@ \
|
||||
win32/thread.@O@ win32/time.@O@
|
||||
|
||||
# Alphabetically
|
||||
OBJS = @ISC_EXTRA_OBJS@ \
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ top_srcdir = @top_srcdir@
|
|||
#
|
||||
HEADERS = assertions.h base64.h bitstring.h boolean.h buffer.h \
|
||||
bufferlist.h commandline.h error.h event.h eventclass.h \
|
||||
file.h formatcheck.h heap.h interfaceiter.h \
|
||||
file.h formatcheck.h fsaccess.h heap.h interfaceiter.h \
|
||||
@ISC_IPV6_H@ lang.h lex.h \
|
||||
lfsr.h lib.h list.h log.h magic.h md5.h mem.h msgcat.h \
|
||||
mutexblock.h netaddr.h ondestroy.h platform.h \
|
||||
|
|
|
|||
|
|
@ -29,13 +29,13 @@ CWARNINGS =
|
|||
# Alphabetically
|
||||
OBJS = @ISC_IPV6_O@ \
|
||||
app.@O@ dir.@O@ entropy.@O@ errno2result.@O@ file.@O@ \
|
||||
interfaceiter.@O@ net.@O@ socket.@O@ stdio.@O@ \
|
||||
fsaccess.@O@ interfaceiter.@O@ net.@O@ socket.@O@ stdio.@O@ \
|
||||
stdtime.@O@ time.@O@
|
||||
|
||||
# Alphabetically
|
||||
SRCS = @ISC_IPV6_C@ \
|
||||
app.c dir.c entropy.c errno2result.c file.c \
|
||||
interfaceiter.c net.c socket.c stdio.c \
|
||||
fsaccess.c interfaceiter.c net.c socket.c stdio.c \
|
||||
stdtime.c time.c
|
||||
|
||||
SUBDIRS = include
|
||||
|
|
|
|||
|
|
@ -25,12 +25,12 @@ CDEFINES =
|
|||
CWARNINGS =
|
||||
|
||||
# Alphabetically
|
||||
OBJS = condition.@O@ dir.@O@ file.@O@ once.@O@ stdtime.@O@ \
|
||||
thread.@O@ time.@O@
|
||||
OBJS = condition.@O@ dir.@O@ file.@O@ fsaccess.@O@ once.@O@ \
|
||||
stdtime.@O@ thread.@O@ time.@O@
|
||||
|
||||
# Alphabetically
|
||||
SRCS = condition.c dir.c file.c once.c stdtime.c \
|
||||
thread.c time.c
|
||||
SRCS = condition.c dir.c file.c once.c fsaccess.c \
|
||||
stdtime.c thread.c time.c
|
||||
|
||||
SUBDIRS = include
|
||||
TARGETS = ${OBJS}
|
||||
|
|
|
|||
Loading…
Reference in a new issue