Skip to content

Commit

Permalink
Merge ^/head r364051 through r364081.
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitryAndric committed Aug 10, 2020
2 parents a303050 + a08d04f commit 8460d75
Show file tree
Hide file tree
Showing 38 changed files with 2,441 additions and 978 deletions.
7 changes: 7 additions & 0 deletions RELNOTES
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ r363180:
r363084:
nc(1) now implements SCTP mode, enabled by specifying the --sctp option.

r362681:
A new implementation of bc and dc has been imported. It offers
better standards compliance, performance, localization and comes
with extensive test cases that are optionally installed.
Use WITHOUT_GH_BC=yes to build and install the world with the
previous version instead of the new one, if required.

r362158, r362163:
struct export_args has changed so that the "user" specified for
the -maproot and -mapall exports(5) options may be in more than
Expand Down
4 changes: 4 additions & 0 deletions lib/libclang_rt/fuzzer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@ SRCS+= fuzzer/FuzzerUtil.cpp
SRCS+= fuzzer/FuzzerUtilLinux.cpp
SRCS+= fuzzer/FuzzerUtilPosix.cpp

.PATH: ${CRTSRC}/include/fuzzer
INCSDIR= ${CLANGDIR}/include/fuzzer
INCS+= FuzzedDataProvider.h

.include <bsd.lib.mk>
4 changes: 4 additions & 0 deletions lib/libclang_rt/profile/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,8 @@ SRCS+= profile/InstrProfilingUtil.c
SRCS+= profile/InstrProfilingValue.c
SRCS+= profile/InstrProfilingWriter.c

.PATH: ${CRTSRC}/include/profile
INCSDIR= ${CLANGDIR}/include/profile
INCS+= InstrProfData.inc

.include <bsd.lib.mk>
6 changes: 6 additions & 0 deletions lib/libclang_rt/xray/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@ SRCS+= xray/xray_trampoline_x86_64.S
SRCS+= xray/xray_utils.cpp
SRCS+= xray/xray_x86_64.cpp

.PATH: ${CRTSRC}/include/xray
INCSDIR= ${CLANGDIR}/include/xray
INCS+= xray_interface.h
INCS+= xray_log_interface.h
INCS+= xray_records.h

.include <bsd.lib.mk>
21 changes: 18 additions & 3 deletions lib/libifconfig/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,30 @@ SRCS= libifconfig.c \
libifconfig_inet6.c \
libifconfig_internal.c \
libifconfig_lagg.c \
libifconfig_media.c
libifconfig_media.c \
libifconfig_sfp.c

GEN= libifconfig_sfp_tables.h \
libifconfig_sfp_tables.c \
libifconfig_sfp_tables_internal.h

SRCS+= ${GEN}

.include <src.lua.mk>

.SUFFIXES: .tpl.c .tpl.h
.tpl.c.c .tpl.h.h: sfp.lua
${LUA} ${.CURDIR}/sfp.lua ${.IMPSRC} >${.TARGET}

CLEANFILES+= ${GEN}

# If libifconfig become public uncomment those two lines
#INCSDIR= ${INCLUDEDIR}
#INCS= libifconfig.h
#INCS= libifconfig.h libifconfig_sfp.h libifconfig_sfp_tables.h

#MAN= libifconfig.3

CFLAGS+= -I${.CURDIR}
CFLAGS+= -I${.CURDIR} -I${.OBJDIR}
NO_WCAST_ALIGN= yes

.include <bsd.lib.mk>
4 changes: 4 additions & 0 deletions lib/libifconfig/libifconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@

#pragma once

#include <sys/types.h>

#include <net/if.h>

#include <netinet/in.h>
#include <netinet6/in6_var.h>

Expand Down
Loading

0 comments on commit 8460d75

Please sign in to comment.