Index: head/lang/dmd2/Makefile =================================================================== --- head/lang/dmd2/Makefile (revision 434059) +++ head/lang/dmd2/Makefile (revision 434060) @@ -1,119 +1,122 @@ # Created by: Ruben # $FreeBSD$ PORTNAME= dmd -PORTVERSION= 2.071.1 +PORTVERSION= 2.073.0 CATEGORIES= lang MASTER_SITES= http://ftp.digitalmars.com/ PKGNAMESUFFIX= 2 DISTNAME= dmd.${PORTVERSION} MAINTAINER= cy@FreeBSD.org COMMENT= D 2.0 compiler, not officially validated for FreeBSD LICENSE= ART10 DMD BSL LICENSE_COMB= multi LICENSE_NAME_DMD= Digital Mars license LICENSE_FILE_DMD= ${WRKSRC}/backendlicense.txt LICENSE_PERMS_DMD= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell auto-accept EXTRACT_ONLY= ${DISTNAME}.freebsd-64${EXTRACT_SUFX} DISTFILES= ${DISTNAME}.freebsd-64${EXTRACT_SUFX} \ dmd.2.067.1.zip # The souces in the following files can be used instead. Either way the # binaries in the distribution are ignored. This port builds its own # binaries using the sources that come with the distribution. # DISTFILES= ${DISTNAME}.freebsd-32${EXTRACT_SUFX} # DISTFILES= ${DISTNAME}.linux${EXTRACT_SUFX} USES= gmake zip MAKEFILE= posix.mak MAKE_ARGS= AUTO_BOOTSTRAP=1 MAKE_ENV+= WRKDIR=${WRKDIR} EXAMPLESDIR= ${PREFIX}/share/examples/dmd2 DOCSDIR= ${PREFIX}/share/doc/dmd2 PORTDOCS= *.txt html/ WRKSRC= ${WRKDIR}/dmd2/src/${PORTNAME} BROKEN_aarch64= Does not configure: no cpu specified, assuming X86 BROKEN_mips64= Does not compile: cc1: error: unrecognized command line option -m32 BROKEN_powerpc64= Does not build BROKEN_sparc64= Does not install: divide-by-zero error OPTIONS_DEFINE= DOCS .include .if ${ARCH} == "amd64" MAKE_ARGS+= MODEL=64 MODEL= 64 .else MAKE_ARGS+= MODEL=32 MODEL= 32 .endif .if defined(WITH_DEBUG) BUILD= debug MAKE_ARGS+= DEBUG_FLAGS=-g\ -DDEBUG=1\ -DUNITTEST .endif MODULEDIR= ${PREFIX}/include/d/phobos2 + +pre-patch: + @${MKDIR} ${WRKDIR}/dmd2/src/res post-patch: @${MKDIR} ${WRKDIR}/dmd2/freebsd/bin32 \ ${WRKDIR}/dmd2/freebsd/bin64 \ ${WRKDIR}/dmd2/freebsd/lib32 \ ${WRKDIR}/dmd2/freebsd/lib64 @${REINPLACE_CMD} -e "s|g++|${CXX}|" \ -e "s|/etc|${PREFIX}/etc|" \ ${WRKSRC}/posix.mak @${REINPLACE_CMD} -e "s|gcc|${CC}|" ${WRKSRC}/link.d @${REINPLACE_CMD} -e "s|cc|${CC}|" ${WRKSRC}/../phobos/posix.mak @${REINPLACE_CMD} -e "s|/etc|${PREFIX}/etc|" \ -e "s|\(dmd\)|\12|gI" \ -e "s|\\\BR|.BR|" \ ${WRKDIR}/dmd2/man/man1/dmd.1 \ ${WRKDIR}/dmd2/man/man5/dmd.conf.5 @${REINPLACE_CMD} -e "s|%@P%/../../src/phobos|${MODULEDIR}|" \ -e "s|%@P%/../lib|${PREFIX}/lib|" \ -e "s|%@P%/../../src/druntime|${PREFIX}/include/d/druntime|" \ ${WRKDIR}/dmd2/freebsd/bin${MODEL}/dmd.conf @${ECHO_CMD} >> ${WRKDIR}/dmd2/freebsd/bin${MODEL}/dmd.conf make-phobos: cd ${WRKSRC}/../phobos && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} ${BUILD} make-druntime: cd ${WRKSRC}/../druntime && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} ${BUILD} make-dmd: cd ${WRKSRC} && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} ${BUILD} do-build: make-dmd make-phobos make-druntime do-install: ${INSTALL_MAN} ${WRKDIR}/dmd2/man/man1/dmd.1 ${STAGEDIR}${MANPREFIX}/man/man1/dmd.1 ${INSTALL_MAN} ${WRKDIR}/dmd2/man/man5/dmd.conf.5 ${STAGEDIR}${MANPREFIX}/man/man5/dmd.conf.5 ${INSTALL_DATA} ${WRKDIR}/dmd2/freebsd/bin${MODEL}/dmd.conf ${STAGEDIR}${PREFIX}/etc/dmd.conf.sample ${INSTALL_PROGRAM} ${WRKSRC}/dmd ${STAGEDIR}${PREFIX}/bin/dmd ${INSTALL_DATA} ${WRKSRC}/../../src/phobos/generated/freebsd/release/${MODEL}/libphobos2.a ${STAGEDIR}${PREFIX}/lib ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKDIR}/dmd2/freebsd/bin32/dmd.conf ${STAGEDIR}${EXAMPLESDIR}/dmd32.conf ${INSTALL_DATA} ${WRKDIR}/dmd2/freebsd/bin64/dmd.conf ${STAGEDIR}${EXAMPLESDIR}/dmd64.conf cd ${WRKDIR}/dmd2 && ${COPYTREE_SHARE} samples ${STAGEDIR}${EXAMPLESDIR} ${MKDIR} ${STAGEDIR}${MODULEDIR}/etc/c ${INSTALL_DATA} ${WRKSRC}/../phobos/*.d ${STAGEDIR}${MODULEDIR} ${INSTALL_DATA} ${WRKSRC}/../phobos/etc/c/zlib.d ${STAGEDIR}${MODULEDIR}/etc/c ${INSTALL_DATA} ${WRKSRC}/../phobos/etc/c/curl.d ${STAGEDIR}${MODULEDIR}/etc/c ${INSTALL_DATA} ${WRKSRC}/../phobos/etc/c/sqlite3.d ${STAGEDIR}${MODULEDIR}/etc/c cd ${WRKSRC}/../phobos && ${COPYTREE_SHARE} std ${STAGEDIR}${MODULEDIR} ${MKDIR} ${STAGEDIR}${MODULEDIR}/../druntime cd ${WRKSRC}/../druntime && ${COPYTREE_SHARE} import ${STAGEDIR}${MODULEDIR}/../druntime ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.txt ${STAGEDIR}${DOCSDIR} cd ${WRKDIR}/dmd2 && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} pre-configure: ${MAKE} -f Makefile.bootstrap BOOTDIR=${WRKDIR} .include Index: head/lang/dmd2/distinfo =================================================================== --- head/lang/dmd2/distinfo (revision 434059) +++ head/lang/dmd2/distinfo (revision 434060) @@ -1,5 +1,5 @@ -TIMESTAMP = 1467132324 -SHA256 (dmd.2.071.1.freebsd-64.zip) = 8e078b2b35783ef3fd84652b328311f366b06990d2e58de52318fc3b84f0f998 -SIZE (dmd.2.071.1.freebsd-64.zip) = 25188858 +TIMESTAMP = 1487021115 +SHA256 (dmd.2.073.0.freebsd-64.zip) = c7a78632af08e48e0f48fbcfedc228d7b56a35cf1f64f5bee33f79d1d00de4a8 +SIZE (dmd.2.073.0.freebsd-64.zip) = 29122274 SHA256 (dmd.2.067.1.zip) = 24fd32d3b1401309187a3fcd235014e38c651beb3af29b0e656f6f4add4ec95b SIZE (dmd.2.067.1.zip) = 56083735 Index: head/lang/dmd2/files/patch-src__dmd__posix.mak =================================================================== --- head/lang/dmd2/files/patch-src__dmd__posix.mak (revision 434059) +++ head/lang/dmd2/files/patch-src__dmd__posix.mak (revision 434060) @@ -1,49 +1,109 @@ ---- ../../src/dmd/posix.mak.orig 2016-04-05 20:46:46.000000000 -0700 -+++ ../../src/dmd/posix.mak 2016-04-07 06:19:55.204336000 -0700 -@@ -66,14 +66,11 @@ - HOST_DMD_RUN:=$(HOST_DMD) +--- ../../src/dmd/posix.mak.orig 2017-01-22 15:46:00.000000000 -0800 ++++ ../../src/dmd/posix.mak 2017-02-13 13:44:37.379009000 -0800 +@@ -19,7 +19,7 @@ + endif + + INSTALL_DIR=../../install +-SYSCONFDIR=/etc ++SYSCONFDIR=/usr/local/etc + PGO_DIR=$(abspath pgo) + + C=backend +@@ -42,11 +42,11 @@ + + # determine whether CXX is gcc or clang based + CXX_VERSION:=$(shell $(CXX) --version) +-ifneq (,$(findstring g++,$(CXX_VERSION))$(findstring gcc,$(CXX_VERSION))$(findstring GCC,$(CXX_VERSION))) +- CXX_KIND=g++ ++ifneq (,$(findstring c++,$(CXX_VERSION))$(findstring gcc,$(CXX_VERSION))$(findstring GCC,$(CXX_VERSION))) ++ CXX_KIND=c++ + endif + ifneq (,$(findstring clang,$(CXX_VERSION))) +- CXX_KIND=clang++ ++ CXX_KIND=clanc++ + endif + + HOST_DC?= +@@ -67,14 +67,12 @@ else # Auto-bootstrapping, will download dmd automatically + # Keep var below in sync with other occurrences of that variable, e.g. in circleci.sh - HOST_DMD_VER=2.068.2 - HOST_DMD_ROOT=/tmp/.host_dmd-$(HOST_DMD_VER) -- # dmd.2.068.2.osx.zip or dmd.2.068.2.linux.tar.xz + HOST_DMD_VER=2.067.1 + HOST_DMD_ROOT=${WRKDIR}/.host_dmd-$(HOST_DMD_VER) + # dmd.2.068.2.osx.zip or dmd.2.068.2.linux.tar.xz HOST_DMD_BASENAME=dmd.$(HOST_DMD_VER).$(OS)$(if $(filter $(OS),freebsd),-$(MODEL),) - # http://downloads.dlang.org/releases/2.x/2.068.2/dmd.2.068.2.linux.tar.xz - HOST_DMD_URL=http://downloads.dlang.org/releases/2.x/$(HOST_DMD_VER)/$(HOST_DMD_BASENAME) HOST_DMD=$(HOST_DMD_ROOT)/dmd2/$(OS)/$(if $(filter $(OS),osx),bin,bin$(MODEL))/dmd - HOST_DMD_PATH=$(HOST_DMD) + HOST_DMD_PATH=$(HOST_DMD_ROOT)/stage/usr/local/bin/dmd HOST_DMD_RUN=$(HOST_DMD) -conf=$(dir $(HOST_DMD))dmd.conf endif -@@ -333,19 +330,6 @@ +@@ -103,7 +101,7 @@ + -Wno-unused-value \ + -Wno-unused-variable + # GCC Specific +-ifeq ($(CXX_KIND), g++) ++ifeq ($(CXX_KIND), c++) + WARNINGS += \ + -Wno-logical-op \ + -Wno-narrowing \ +@@ -111,7 +109,7 @@ + -Wno-uninitialized + endif + # Clang Specific +-ifeq ($(HOST_CXX_KIND), clang++) ++ifeq ($(HOST_CXX_KIND), clanc++) + WARNINGS += \ + -Wno-tautological-constant-out-of-range-compare \ + -Wno-tautological-compare \ +@@ -123,7 +121,7 @@ + # Default Warnings + WARNINGS := -Wno-deprecated -Wstrict-aliasing + # Clang Specific +-ifeq ($(CXX_KIND), clang++) ++ifeq ($(CXX_KIND), clanc++) + WARNINGS += \ + -Wno-logical-op-parentheses \ + -Wno-dynamic-class-memaccess \ +@@ -141,7 +139,7 @@ + -D__pascal= -DMARS=1 -DTARGET_$(OS_UPCASE)=1 -DDM_TARGET_CPU_$(TARGET_CPU)=1 \ + $(MODEL_FLAG) + # GCC Specific +-ifeq ($(CXX_KIND), g++) ++ifeq ($(CXX_KIND), c++) + CXXFLAGS += \ + -std=gnu++98 + endif +@@ -342,19 +340,6 @@ verstr.h SYSCONFDIR.imp core *.cov *.deps *.gcda *.gcno *.a *.lst @[ ! -d ${PGO_DIR} ] || echo You should issue manually: rm -rf ${PGO_DIR} -######## Download and install the last dmd buildable without dmd - -ifneq (,$(AUTO_BOOTSTRAP)) -$(HOST_DMD_PATH): - mkdir -p ${HOST_DMD_ROOT} -ifneq (,$(shell which xz 2>/dev/null)) - curl -fsSL ${HOST_DMD_URL}.tar.xz | tar -C ${HOST_DMD_ROOT} -Jxf - || rm -rf ${HOST_DMD_ROOT} -else - TMPFILE=$$(mktemp deleteme.XXXXXXXX) && curl -fsSL ${HOST_DMD_URL}.zip > $${TMPFILE}.zip && \ - unzip -qd ${HOST_DMD_ROOT} $${TMPFILE}.zip && rm $${TMPFILE}.zip; -endif -endif - ######## generate a default dmd.conf define DEFAULT_DMD_CONF -@@ -452,7 +436,7 @@ +@@ -461,7 +446,7 @@ $(eval bin_dir=$(if $(filter $(OS),osx), bin, bin$(MODEL))) mkdir -p $(INSTALL_DIR)/$(OS)/$(bin_dir) cp dmd $(INSTALL_DIR)/$(OS)/$(bin_dir)/dmd - cp ../ini/$(OS)/$(bin_dir)/dmd.conf $(INSTALL_DIR)/$(OS)/$(bin_dir)/dmd.conf + cp ../../$(OS)/$(bin_dir)/dmd.conf $(INSTALL_DIR)/$(OS)/$(bin_dir)/dmd.conf cp backendlicense.txt $(INSTALL_DIR)/dmd-backendlicense.txt cp boostlicense.txt $(INSTALL_DIR)/dmd-boostlicense.txt Index: head/lang/dmd2/files/patch-src__res__default_ddoc_theme.ddoc =================================================================== --- head/lang/dmd2/files/patch-src__res__default_ddoc_theme.ddoc (nonexistent) +++ head/lang/dmd2/files/patch-src__res__default_ddoc_theme.ddoc (revision 434060) @@ -0,0 +1,116 @@ +--- ../../src/res/default_ddoc_theme.ddoc.orig 2017-02-13 14:01:32.569832000 -0800 ++++ ../../src/res/default_ddoc_theme.ddoc 2017-02-13 14:01:36.105742000 -0800 +@@ -0,0 +1,113 @@ ++DDOC = ++ $(DDOC_COMMENT Generated by Ddoc from $(SRCFILENAME)) ++ ++ $(TITLE) ++ ++

$(TITLE)

++$(BODY) ++
$(SMALL Page generated by $(LINK2 http://dlang.org/ddoc.html, Ddoc). $(COPYRIGHT)) ++ ++ ++B = $0 ++I = $0 ++U = $0 ++P =

$0

++DL =
$0
++DT =
$0
++DD =
$0
++TABLE = $0
++TR = $0 ++TH = $0 ++TD = $0 ++OL =
    $0
++UL =
    $0
++LI =
  • $0
  • ++BIG = $0 ++SMALL = $0 ++BR =
    ++LINK = $0 ++LINK2 = $+ ++LPAREN= ( ++RPAREN= ) ++BACKTICK= ` ++DOLLAR= $ ++DEPRECATED= $0 ++ ++RED = $0 ++BLUE = $0 ++GREEN = $0 ++YELLOW =$0 ++BLACK = $0 ++WHITE = $0 ++ ++D_CODE =
    $0
    ++DDOC_BACKQUOTED = $(D_INLINECODE $0) ++D_INLINECODE =
    $0
    ++D_COMMENT = $(GREEN $0) ++D_STRING = $(RED $0) ++D_KEYWORD = $(BLUE $0) ++D_PSYMBOL = $(U $0) ++D_PARAM = $(I $0) ++ ++DDOC_COMMENT = ++DDOC_DECL = $(DT $(BIG $0)) ++DDOC_DECL_DD = $(DD $0) ++DDOC_DITTO = $(BR)$0 ++DDOC_SECTIONS = $0 ++DDOC_SUMMARY = $0$(BR)$(BR) ++DDOC_DESCRIPTION = $0$(BR)$(BR) ++DDOC_AUTHORS = $(B Authors:)$(BR) ++$0$(BR)$(BR) ++DDOC_BUGS = $(RED BUGS:)$(BR) ++$0$(BR)$(BR) ++DDOC_COPYRIGHT = $(B Copyright:)$(BR) ++$0$(BR)$(BR) ++DDOC_DATE = $(B Date:)$(BR) ++$0$(BR)$(BR) ++DDOC_DEPRECATED = $(RED Deprecated:)$(BR) ++$0$(BR)$(BR) ++DDOC_EXAMPLES = $(B Examples:)$(BR) ++$0$(BR)$(BR) ++DDOC_HISTORY = $(B History:)$(BR) ++$0$(BR)$(BR) ++DDOC_LICENSE = $(B License:)$(BR) ++$0$(BR)$(BR) ++DDOC_RETURNS = $(B Returns:)$(BR) ++$0$(BR)$(BR) ++DDOC_SEE_ALSO = $(B See Also:)$(BR) ++$0$(BR)$(BR) ++DDOC_STANDARDS = $(B Standards:)$(BR) ++$0$(BR)$(BR) ++DDOC_THROWS = $(B Throws:)$(BR) ++$0$(BR)$(BR) ++DDOC_VERSION = $(B Version:)$(BR) ++$0$(BR)$(BR) ++DDOC_SECTION_H = $(B $0)$(BR) ++DDOC_SECTION = $0$(BR)$(BR) ++DDOC_MEMBERS = $(DL $0) ++DDOC_MODULE_MEMBERS = $(DDOC_MEMBERS $0) ++DDOC_CLASS_MEMBERS = $(DDOC_MEMBERS $0) ++DDOC_STRUCT_MEMBERS = $(DDOC_MEMBERS $0) ++DDOC_ENUM_MEMBERS = $(DDOC_MEMBERS $0) ++DDOC_TEMPLATE_MEMBERS = $(DDOC_MEMBERS $0) ++DDOC_ENUM_BASETYPE = $0 ++DDOC_PARAMS = $(B Params:)$(BR) ++$(TABLE $0)$(BR) ++DDOC_PARAM_ROW = $(TR $0) ++DDOC_PARAM_ID = $(TD $0) ++DDOC_PARAM_DESC = $(TD $0) ++DDOC_BLANKLINE = $(BR)$(BR) ++ ++DDOC_ANCHOR = ++DDOC_PSYMBOL = $(U $0) ++DDOC_PSUPER_SYMBOL = $(U $0) ++DDOC_KEYWORD = $(B $0) ++DDOC_PARAM = $(I $0) ++DDOC_CONSTRAINT = $(DDOC_CONSTRAINT) if ($0) ++DDOC_OVERLOAD_SEPARATOR = ++DDOC_TEMPLATE_PARAM_LIST = $0 ++DDOC_TEMPLATE_PARAM = $0 ++ ++ESCAPES = //>/ ++ /&/&/ Property changes on: head/lang/dmd2/files/patch-src__res__default_ddoc_theme.ddoc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/lang/dmd2/pkg-plist =================================================================== --- head/lang/dmd2/pkg-plist (revision 434059) +++ head/lang/dmd2/pkg-plist (revision 434060) @@ -1,515 +1,545 @@ bin/dmd lib/libphobos2.a @sample etc/dmd.conf.sample %%EXAMPLESDIR%%/dmd32.conf %%EXAMPLESDIR%%/dmd64.conf %%EXAMPLESDIR%%/samples/d/all.sh %%EXAMPLESDIR%%/samples/d/build.bat %%EXAMPLESDIR%%/samples/d/chello.d %%EXAMPLESDIR%%/samples/d/clean.bat %%EXAMPLESDIR%%/samples/d/d2html.d %%EXAMPLESDIR%%/samples/d/d2html.kwd %%EXAMPLESDIR%%/samples/d/dclient.d %%EXAMPLESDIR%%/samples/d/dhry.d %%EXAMPLESDIR%%/samples/d/dserver.d %%EXAMPLESDIR%%/samples/d/dserver.def %%EXAMPLESDIR%%/samples/d/hello.d %%EXAMPLESDIR%%/samples/d/htmlget.d %%EXAMPLESDIR%%/samples/d/listener.d %%EXAMPLESDIR%%/samples/d/mydll/build.bat %%EXAMPLESDIR%%/samples/d/mydll/dll.d %%EXAMPLESDIR%%/samples/d/mydll/mydll.d %%EXAMPLESDIR%%/samples/d/mydll/mydll.def %%EXAMPLESDIR%%/samples/d/mydll/mydll.di %%EXAMPLESDIR%%/samples/d/mydll/test.d %%EXAMPLESDIR%%/samples/d/pi.d %%EXAMPLESDIR%%/samples/d/posix.mak %%EXAMPLESDIR%%/samples/d/sieve.d %%EXAMPLESDIR%%/samples/d/wc.d %%EXAMPLESDIR%%/samples/d/wc2.d %%EXAMPLESDIR%%/samples/d/winsamp.d %%EXAMPLESDIR%%/samples/d/winsamp.def include/d/druntime/import/core/atomic.d include/d/druntime/import/core/attribute.d include/d/druntime/import/core/bitop.d include/d/druntime/import/core/checkedint.d include/d/druntime/import/core/cpuid.d include/d/druntime/import/core/demangle.d include/d/druntime/import/core/exception.d include/d/druntime/import/core/internal/abort.d include/d/druntime/import/core/internal/convert.d include/d/druntime/import/core/internal/hash.d include/d/druntime/import/core/internal/spinlock.d include/d/druntime/import/core/internal/string.d include/d/druntime/import/core/internal/traits.d include/d/druntime/import/core/math.d include/d/druntime/import/core/memory.d include/d/druntime/import/core/runtime.d include/d/druntime/import/core/simd.d include/d/druntime/import/core/stdc/complex.d include/d/druntime/import/core/stdc/config.d include/d/druntime/import/core/stdc/ctype.d include/d/druntime/import/core/stdc/errno.d include/d/druntime/import/core/stdc/fenv.d include/d/druntime/import/core/stdc/float_.d include/d/druntime/import/core/stdc/inttypes.d include/d/druntime/import/core/stdc/limits.d include/d/druntime/import/core/stdc/locale.d include/d/druntime/import/core/stdc/math.d include/d/druntime/import/core/stdc/signal.d include/d/druntime/import/core/stdc/stdarg.d include/d/druntime/import/core/stdc/stddef.d include/d/druntime/import/core/stdc/stdint.d include/d/druntime/import/core/stdc/stdio.d include/d/druntime/import/core/stdc/stdlib.d include/d/druntime/import/core/stdc/string.d include/d/druntime/import/core/stdc/tgmath.d include/d/druntime/import/core/stdc/time.d include/d/druntime/import/core/stdc/wchar_.d +include/d/druntime/import/core/stdc/wctype.d include/d/druntime/import/core/stdcpp/exception.d include/d/druntime/import/core/stdcpp/typeinfo.d -include/d/druntime/import/core/stdc/wctype.d include/d/druntime/import/core/sync/barrier.di include/d/druntime/import/core/sync/condition.di include/d/druntime/import/core/sync/config.di include/d/druntime/import/core/sync/exception.di include/d/druntime/import/core/sync/mutex.di include/d/druntime/import/core/sync/rwmutex.di include/d/druntime/import/core/sync/semaphore.di +include/d/druntime/import/core/sys/darwin/execinfo.d +include/d/druntime/import/core/sys/darwin/mach/dyld.d +include/d/druntime/import/core/sys/darwin/mach/getsect.d +include/d/druntime/import/core/sys/darwin/mach/kern_return.d +include/d/druntime/import/core/sys/darwin/mach/loader.d +include/d/druntime/import/core/sys/darwin/mach/port.d +include/d/druntime/import/core/sys/darwin/mach/semaphore.d +include/d/druntime/import/core/sys/darwin/mach/thread_act.d +include/d/druntime/import/core/sys/darwin/pthread.d +include/d/druntime/import/core/sys/darwin/sys/cdefs.d +include/d/druntime/import/core/sys/darwin/sys/event.d +include/d/druntime/import/core/sys/darwin/sys/mman.d include/d/druntime/import/core/sys/freebsd/dlfcn.d include/d/druntime/import/core/sys/freebsd/execinfo.d +include/d/druntime/import/core/sys/freebsd/pthread_np.d +include/d/druntime/import/core/sys/freebsd/sys/_bitset.d +include/d/druntime/import/core/sys/freebsd/sys/_cpuset.d include/d/druntime/import/core/sys/freebsd/sys/cdefs.d include/d/druntime/import/core/sys/freebsd/sys/elf.d include/d/druntime/import/core/sys/freebsd/sys/elf32.d include/d/druntime/import/core/sys/freebsd/sys/elf64.d include/d/druntime/import/core/sys/freebsd/sys/elf_common.d include/d/druntime/import/core/sys/freebsd/sys/event.d include/d/druntime/import/core/sys/freebsd/sys/link_elf.d include/d/druntime/import/core/sys/freebsd/sys/mman.d include/d/druntime/import/core/sys/freebsd/time.d include/d/druntime/import/core/sys/linux/config.d include/d/druntime/import/core/sys/linux/dlfcn.d include/d/druntime/import/core/sys/linux/elf.d include/d/druntime/import/core/sys/linux/epoll.d include/d/druntime/import/core/sys/linux/errno.d include/d/druntime/import/core/sys/linux/execinfo.d include/d/druntime/import/core/sys/linux/fcntl.d +include/d/druntime/import/core/sys/linux/ifaddrs.d include/d/druntime/import/core/sys/linux/link.d +include/d/druntime/import/core/sys/linux/sched.d +include/d/druntime/import/core/sys/linux/sys/auxv.d include/d/druntime/import/core/sys/linux/sys/inotify.d include/d/druntime/import/core/sys/linux/sys/mman.d +include/d/druntime/import/core/sys/linux/sys/netinet/tcp.d +include/d/druntime/import/core/sys/linux/sys/prctl.d include/d/druntime/import/core/sys/linux/sys/signalfd.d include/d/druntime/import/core/sys/linux/sys/socket.d include/d/druntime/import/core/sys/linux/sys/sysinfo.d +include/d/druntime/import/core/sys/linux/sys/time.d include/d/druntime/import/core/sys/linux/sys/xattr.d include/d/druntime/import/core/sys/linux/termios.d include/d/druntime/import/core/sys/linux/time.d include/d/druntime/import/core/sys/linux/timerfd.d include/d/druntime/import/core/sys/linux/tipc.d include/d/druntime/import/core/sys/linux/unistd.d +include/d/druntime/import/core/sys/openbsd/dlfcn.d include/d/druntime/import/core/sys/osx/execinfo.d include/d/druntime/import/core/sys/osx/mach/dyld.d include/d/druntime/import/core/sys/osx/mach/getsect.d include/d/druntime/import/core/sys/osx/mach/kern_return.d include/d/druntime/import/core/sys/osx/mach/loader.d include/d/druntime/import/core/sys/osx/mach/port.d include/d/druntime/import/core/sys/osx/mach/semaphore.d include/d/druntime/import/core/sys/osx/mach/thread_act.d include/d/druntime/import/core/sys/osx/pthread.d include/d/druntime/import/core/sys/osx/sys/cdefs.d include/d/druntime/import/core/sys/osx/sys/mman.d include/d/druntime/import/core/sys/posix/arpa/inet.d include/d/druntime/import/core/sys/posix/config.d include/d/druntime/import/core/sys/posix/dirent.d include/d/druntime/import/core/sys/posix/dlfcn.d include/d/druntime/import/core/sys/posix/fcntl.d include/d/druntime/import/core/sys/posix/grp.d +include/d/druntime/import/core/sys/posix/iconv.d include/d/druntime/import/core/sys/posix/inttypes.d +include/d/druntime/import/core/sys/posix/libgen.d include/d/druntime/import/core/sys/posix/net/if_.d include/d/druntime/import/core/sys/posix/netdb.d include/d/druntime/import/core/sys/posix/netinet/in_.d include/d/druntime/import/core/sys/posix/netinet/tcp.d include/d/druntime/import/core/sys/posix/poll.d include/d/druntime/import/core/sys/posix/pthread.d include/d/druntime/import/core/sys/posix/pwd.d include/d/druntime/import/core/sys/posix/sched.d include/d/druntime/import/core/sys/posix/semaphore.d include/d/druntime/import/core/sys/posix/setjmp.d include/d/druntime/import/core/sys/posix/signal.d include/d/druntime/import/core/sys/posix/stdio.d include/d/druntime/import/core/sys/posix/stdlib.d +include/d/druntime/import/core/sys/posix/sys/filio.d +include/d/druntime/import/core/sys/posix/sys/ioccom.d include/d/druntime/import/core/sys/posix/sys/ioctl.d include/d/druntime/import/core/sys/posix/sys/ipc.d include/d/druntime/import/core/sys/posix/sys/mman.d include/d/druntime/import/core/sys/posix/sys/resource.d include/d/druntime/import/core/sys/posix/sys/select.d include/d/druntime/import/core/sys/posix/sys/shm.d include/d/druntime/import/core/sys/posix/sys/socket.d include/d/druntime/import/core/sys/posix/sys/stat.d include/d/druntime/import/core/sys/posix/sys/statvfs.d include/d/druntime/import/core/sys/posix/sys/time.d +include/d/druntime/import/core/sys/posix/sys/ttycom.d include/d/druntime/import/core/sys/posix/sys/types.d include/d/druntime/import/core/sys/posix/sys/uio.d include/d/druntime/import/core/sys/posix/sys/un.d include/d/druntime/import/core/sys/posix/sys/utsname.d include/d/druntime/import/core/sys/posix/sys/wait.d include/d/druntime/import/core/sys/posix/syslog.d include/d/druntime/import/core/sys/posix/termios.d include/d/druntime/import/core/sys/posix/time.d include/d/druntime/import/core/sys/posix/ucontext.d include/d/druntime/import/core/sys/posix/unistd.d include/d/druntime/import/core/sys/posix/utime.d include/d/druntime/import/core/sys/solaris/dlfcn.d include/d/druntime/import/core/sys/solaris/elf.d include/d/druntime/import/core/sys/solaris/execinfo.d include/d/druntime/import/core/sys/solaris/libelf.d include/d/druntime/import/core/sys/solaris/link.d include/d/druntime/import/core/sys/solaris/sys/elf.d include/d/druntime/import/core/sys/solaris/sys/elf_386.d include/d/druntime/import/core/sys/solaris/sys/elf_SPARC.d include/d/druntime/import/core/sys/solaris/sys/elf_amd64.d include/d/druntime/import/core/sys/solaris/sys/elf_notes.d include/d/druntime/import/core/sys/solaris/sys/elftypes.d include/d/druntime/import/core/sys/solaris/sys/link.d include/d/druntime/import/core/sys/solaris/sys/priocntl.d include/d/druntime/import/core/sys/solaris/sys/procset.d include/d/druntime/import/core/sys/solaris/sys/types.d include/d/druntime/import/core/sys/solaris/time.d include/d/druntime/import/core/sys/windows/accctrl.d include/d/druntime/import/core/sys/windows/aclapi.d include/d/druntime/import/core/sys/windows/aclui.d include/d/druntime/import/core/sys/windows/basetsd.d include/d/druntime/import/core/sys/windows/basetyps.d include/d/druntime/import/core/sys/windows/cderr.d include/d/druntime/import/core/sys/windows/cguid.d include/d/druntime/import/core/sys/windows/com.d include/d/druntime/import/core/sys/windows/comcat.d include/d/druntime/import/core/sys/windows/commctrl.d include/d/druntime/import/core/sys/windows/commdlg.d include/d/druntime/import/core/sys/windows/core.d include/d/druntime/import/core/sys/windows/cpl.d include/d/druntime/import/core/sys/windows/cplext.d include/d/druntime/import/core/sys/windows/custcntl.d include/d/druntime/import/core/sys/windows/dbghelp.d include/d/druntime/import/core/sys/windows/dbghelp_types.d include/d/druntime/import/core/sys/windows/dbt.d include/d/druntime/import/core/sys/windows/dde.d include/d/druntime/import/core/sys/windows/ddeml.d include/d/druntime/import/core/sys/windows/dhcpcsdk.d include/d/druntime/import/core/sys/windows/dlgs.d include/d/druntime/import/core/sys/windows/dll.d include/d/druntime/import/core/sys/windows/docobj.d include/d/druntime/import/core/sys/windows/errorrep.d include/d/druntime/import/core/sys/windows/exdisp.d include/d/druntime/import/core/sys/windows/exdispid.d include/d/druntime/import/core/sys/windows/httpext.d include/d/druntime/import/core/sys/windows/idispids.d include/d/druntime/import/core/sys/windows/imagehlp.d include/d/druntime/import/core/sys/windows/imm.d include/d/druntime/import/core/sys/windows/intshcut.d include/d/druntime/import/core/sys/windows/ipexport.d include/d/druntime/import/core/sys/windows/iphlpapi.d include/d/druntime/import/core/sys/windows/ipifcons.d include/d/druntime/import/core/sys/windows/iprtrmib.d include/d/druntime/import/core/sys/windows/iptypes.d include/d/druntime/import/core/sys/windows/isguids.d include/d/druntime/import/core/sys/windows/lm.d include/d/druntime/import/core/sys/windows/lmaccess.d include/d/druntime/import/core/sys/windows/lmalert.d include/d/druntime/import/core/sys/windows/lmapibuf.d include/d/druntime/import/core/sys/windows/lmat.d include/d/druntime/import/core/sys/windows/lmaudit.d include/d/druntime/import/core/sys/windows/lmbrowsr.d include/d/druntime/import/core/sys/windows/lmchdev.d include/d/druntime/import/core/sys/windows/lmconfig.d include/d/druntime/import/core/sys/windows/lmcons.d include/d/druntime/import/core/sys/windows/lmerr.d include/d/druntime/import/core/sys/windows/lmerrlog.d include/d/druntime/import/core/sys/windows/lmmsg.d include/d/druntime/import/core/sys/windows/lmremutl.d include/d/druntime/import/core/sys/windows/lmrepl.d include/d/druntime/import/core/sys/windows/lmserver.d include/d/druntime/import/core/sys/windows/lmshare.d include/d/druntime/import/core/sys/windows/lmsname.d include/d/druntime/import/core/sys/windows/lmstats.d include/d/druntime/import/core/sys/windows/lmsvc.d include/d/druntime/import/core/sys/windows/lmuse.d include/d/druntime/import/core/sys/windows/lmuseflg.d include/d/druntime/import/core/sys/windows/lmwksta.d include/d/druntime/import/core/sys/windows/lzexpand.d include/d/druntime/import/core/sys/windows/mapi.d include/d/druntime/import/core/sys/windows/mciavi.d include/d/druntime/import/core/sys/windows/mcx.d include/d/druntime/import/core/sys/windows/mgmtapi.d include/d/druntime/import/core/sys/windows/mmsystem.d include/d/druntime/import/core/sys/windows/msacm.d include/d/druntime/import/core/sys/windows/mshtml.d include/d/druntime/import/core/sys/windows/mswsock.d include/d/druntime/import/core/sys/windows/nb30.d include/d/druntime/import/core/sys/windows/nddeapi.d include/d/druntime/import/core/sys/windows/nspapi.d include/d/druntime/import/core/sys/windows/ntdef.d include/d/druntime/import/core/sys/windows/ntdll.d include/d/druntime/import/core/sys/windows/ntldap.d include/d/druntime/import/core/sys/windows/ntsecapi.d include/d/druntime/import/core/sys/windows/ntsecpkg.d include/d/druntime/import/core/sys/windows/oaidl.d include/d/druntime/import/core/sys/windows/objbase.d include/d/druntime/import/core/sys/windows/objfwd.d include/d/druntime/import/core/sys/windows/objidl.d include/d/druntime/import/core/sys/windows/objsafe.d include/d/druntime/import/core/sys/windows/ocidl.d include/d/druntime/import/core/sys/windows/odbcinst.d include/d/druntime/import/core/sys/windows/ole.d include/d/druntime/import/core/sys/windows/ole2.d include/d/druntime/import/core/sys/windows/ole2ver.d include/d/druntime/import/core/sys/windows/oleacc.d include/d/druntime/import/core/sys/windows/oleauto.d include/d/druntime/import/core/sys/windows/olectl.d include/d/druntime/import/core/sys/windows/olectlid.d include/d/druntime/import/core/sys/windows/oledlg.d include/d/druntime/import/core/sys/windows/oleidl.d include/d/druntime/import/core/sys/windows/pbt.d include/d/druntime/import/core/sys/windows/powrprof.d include/d/druntime/import/core/sys/windows/prsht.d include/d/druntime/import/core/sys/windows/psapi.d include/d/druntime/import/core/sys/windows/rapi.d include/d/druntime/import/core/sys/windows/ras.d include/d/druntime/import/core/sys/windows/rasdlg.d include/d/druntime/import/core/sys/windows/raserror.d include/d/druntime/import/core/sys/windows/rassapi.d include/d/druntime/import/core/sys/windows/reason.d include/d/druntime/import/core/sys/windows/regstr.d include/d/druntime/import/core/sys/windows/richedit.d include/d/druntime/import/core/sys/windows/richole.d include/d/druntime/import/core/sys/windows/rpc.d include/d/druntime/import/core/sys/windows/rpcdce.d include/d/druntime/import/core/sys/windows/rpcdce2.d include/d/druntime/import/core/sys/windows/rpcdcep.d include/d/druntime/import/core/sys/windows/rpcndr.d include/d/druntime/import/core/sys/windows/rpcnsi.d include/d/druntime/import/core/sys/windows/rpcnsip.d include/d/druntime/import/core/sys/windows/rpcnterr.d include/d/druntime/import/core/sys/windows/schannel.d include/d/druntime/import/core/sys/windows/secext.d include/d/druntime/import/core/sys/windows/security.d include/d/druntime/import/core/sys/windows/servprov.d include/d/druntime/import/core/sys/windows/setupapi.d include/d/druntime/import/core/sys/windows/shellapi.d include/d/druntime/import/core/sys/windows/shldisp.d include/d/druntime/import/core/sys/windows/shlguid.d include/d/druntime/import/core/sys/windows/shlobj.d include/d/druntime/import/core/sys/windows/shlwapi.d include/d/druntime/import/core/sys/windows/snmp.d include/d/druntime/import/core/sys/windows/sql.d include/d/druntime/import/core/sys/windows/sqlext.d include/d/druntime/import/core/sys/windows/sqltypes.d include/d/druntime/import/core/sys/windows/sqlucode.d include/d/druntime/import/core/sys/windows/sspi.d include/d/druntime/import/core/sys/windows/stacktrace.d include/d/druntime/import/core/sys/windows/stat.d include/d/druntime/import/core/sys/windows/subauth.d include/d/druntime/import/core/sys/windows/threadaux.d include/d/druntime/import/core/sys/windows/tlhelp32.d include/d/druntime/import/core/sys/windows/tmschema.d include/d/druntime/import/core/sys/windows/unknwn.d include/d/druntime/import/core/sys/windows/uuid.d include/d/druntime/import/core/sys/windows/vfw.d include/d/druntime/import/core/sys/windows/w32api.d include/d/druntime/import/core/sys/windows/winbase.d include/d/druntime/import/core/sys/windows/winber.d include/d/druntime/import/core/sys/windows/wincon.d include/d/druntime/import/core/sys/windows/wincrypt.d include/d/druntime/import/core/sys/windows/windef.d include/d/druntime/import/core/sys/windows/windows.d include/d/druntime/import/core/sys/windows/winerror.d include/d/druntime/import/core/sys/windows/wingdi.d include/d/druntime/import/core/sys/windows/winhttp.d include/d/druntime/import/core/sys/windows/wininet.d include/d/druntime/import/core/sys/windows/winioctl.d include/d/druntime/import/core/sys/windows/winldap.d include/d/druntime/import/core/sys/windows/winnetwk.d include/d/druntime/import/core/sys/windows/winnls.d include/d/druntime/import/core/sys/windows/winnt.d include/d/druntime/import/core/sys/windows/winperf.d include/d/druntime/import/core/sys/windows/winreg.d include/d/druntime/import/core/sys/windows/winsock2.d include/d/druntime/import/core/sys/windows/winspool.d include/d/druntime/import/core/sys/windows/winsvc.d include/d/druntime/import/core/sys/windows/winuser.d include/d/druntime/import/core/sys/windows/winver.d include/d/druntime/import/core/sys/windows/wtsapi32.d include/d/druntime/import/core/sys/windows/wtypes.d include/d/druntime/import/core/thread.d include/d/druntime/import/core/time.d include/d/druntime/import/core/vararg.d include/d/druntime/import/etc/linux/memoryerror.d include/d/druntime/import/object.d include/d/phobos2/etc/c/curl.d include/d/phobos2/etc/c/sqlite3.d include/d/phobos2/etc/c/zlib.d include/d/phobos2/index.d include/d/phobos2/std/algorithm/comparison.d include/d/phobos2/std/algorithm/internal.d include/d/phobos2/std/algorithm/iteration.d include/d/phobos2/std/algorithm/mutation.d include/d/phobos2/std/algorithm/package.d include/d/phobos2/std/algorithm/searching.d include/d/phobos2/std/algorithm/setops.d include/d/phobos2/std/algorithm/sorting.d include/d/phobos2/std/array.d include/d/phobos2/std/ascii.d include/d/phobos2/std/base64.d include/d/phobos2/std/bigint.d include/d/phobos2/std/bitmanip.d include/d/phobos2/std/c/fenv.d include/d/phobos2/std/c/freebsd/socket.d include/d/phobos2/std/c/linux/linux.d include/d/phobos2/std/c/linux/linuxextern.d include/d/phobos2/std/c/linux/pthread.d include/d/phobos2/std/c/linux/socket.d include/d/phobos2/std/c/linux/termios.d include/d/phobos2/std/c/linux/tipc.d include/d/phobos2/std/c/locale.d include/d/phobos2/std/c/math.d include/d/phobos2/std/c/osx/socket.d include/d/phobos2/std/c/process.d include/d/phobos2/std/c/stdarg.d include/d/phobos2/std/c/stddef.d include/d/phobos2/std/c/stdio.d include/d/phobos2/std/c/stdlib.d include/d/phobos2/std/c/string.d include/d/phobos2/std/c/time.d include/d/phobos2/std/c/wcharh.d include/d/phobos2/std/c/windows/com.d include/d/phobos2/std/c/windows/stat.d include/d/phobos2/std/c/windows/windows.d include/d/phobos2/std/c/windows/winsock.d include/d/phobos2/std/compiler.d include/d/phobos2/std/complex.d include/d/phobos2/std/concurrency.d include/d/phobos2/std/concurrencybase.d include/d/phobos2/std/container/array.d include/d/phobos2/std/container/binaryheap.d include/d/phobos2/std/container/dlist.d include/d/phobos2/std/container/package.d include/d/phobos2/std/container/rbtree.d include/d/phobos2/std/container/slist.d include/d/phobos2/std/container/util.d include/d/phobos2/std/conv.d -include/d/phobos2/std/cstream.d include/d/phobos2/std/csv.d include/d/phobos2/std/datetime.d include/d/phobos2/std/demangle.d include/d/phobos2/std/digest/crc.d include/d/phobos2/std/digest/digest.d include/d/phobos2/std/digest/hmac.d include/d/phobos2/std/digest/md.d +include/d/phobos2/std/digest/murmurhash.d include/d/phobos2/std/digest/ripemd.d include/d/phobos2/std/digest/sha.d include/d/phobos2/std/encoding.d include/d/phobos2/std/exception.d include/d/phobos2/std/experimental/allocator/building_blocks/affix_allocator.d include/d/phobos2/std/experimental/allocator/building_blocks/allocator_list.d include/d/phobos2/std/experimental/allocator/building_blocks/bitmapped_block.d include/d/phobos2/std/experimental/allocator/building_blocks/bucketizer.d include/d/phobos2/std/experimental/allocator/building_blocks/fallback_allocator.d include/d/phobos2/std/experimental/allocator/building_blocks/free_list.d include/d/phobos2/std/experimental/allocator/building_blocks/free_tree.d include/d/phobos2/std/experimental/allocator/building_blocks/kernighan_ritchie.d include/d/phobos2/std/experimental/allocator/building_blocks/null_allocator.d include/d/phobos2/std/experimental/allocator/building_blocks/package.d include/d/phobos2/std/experimental/allocator/building_blocks/quantizer.d include/d/phobos2/std/experimental/allocator/building_blocks/region.d include/d/phobos2/std/experimental/allocator/building_blocks/scoped_allocator.d include/d/phobos2/std/experimental/allocator/building_blocks/segregator.d include/d/phobos2/std/experimental/allocator/building_blocks/stats_collector.d include/d/phobos2/std/experimental/allocator/common.d include/d/phobos2/std/experimental/allocator/gc_allocator.d include/d/phobos2/std/experimental/allocator/mallocator.d include/d/phobos2/std/experimental/allocator/mmap_allocator.d include/d/phobos2/std/experimental/allocator/package.d include/d/phobos2/std/experimental/allocator/showcase.d include/d/phobos2/std/experimental/allocator/typed.d include/d/phobos2/std/experimental/logger/core.d include/d/phobos2/std/experimental/logger/filelogger.d include/d/phobos2/std/experimental/logger/multilogger.d include/d/phobos2/std/experimental/logger/nulllogger.d include/d/phobos2/std/experimental/logger/package.d include/d/phobos2/std/experimental/ndslice/internal.d include/d/phobos2/std/experimental/ndslice/iteration.d include/d/phobos2/std/experimental/ndslice/package.d include/d/phobos2/std/experimental/ndslice/selection.d include/d/phobos2/std/experimental/ndslice/slice.d include/d/phobos2/std/experimental/note.md +include/d/phobos2/std/experimental/typecons.d include/d/phobos2/std/file.d include/d/phobos2/std/format.d include/d/phobos2/std/functional.d include/d/phobos2/std/getopt.d include/d/phobos2/std/internal/cstring.d include/d/phobos2/std/internal/digest/sha_SSSE3.d +include/d/phobos2/std/internal/encodinginit.d include/d/phobos2/std/internal/math/biguintcore.d include/d/phobos2/std/internal/math/biguintnoasm.d include/d/phobos2/std/internal/math/biguintx86.d include/d/phobos2/std/internal/math/errorfunction.d include/d/phobos2/std/internal/math/gammafunction.d include/d/phobos2/std/internal/processinit.d include/d/phobos2/std/internal/scopebuffer.d include/d/phobos2/std/internal/test/dummyrange.d include/d/phobos2/std/internal/test/uda.d include/d/phobos2/std/internal/unicode_comp.d include/d/phobos2/std/internal/unicode_decomp.d include/d/phobos2/std/internal/unicode_grapheme.d include/d/phobos2/std/internal/unicode_norm.d include/d/phobos2/std/internal/unicode_tables.d include/d/phobos2/std/internal/windows/advapi32.d include/d/phobos2/std/json.d include/d/phobos2/std/math.d include/d/phobos2/std/mathspecial.d include/d/phobos2/std/meta.d include/d/phobos2/std/mmfile.d include/d/phobos2/std/net/curl.d include/d/phobos2/std/net/isemail.d include/d/phobos2/std/numeric.d include/d/phobos2/std/outbuffer.d include/d/phobos2/std/parallelism.d include/d/phobos2/std/path.d include/d/phobos2/std/process.d include/d/phobos2/std/random.d include/d/phobos2/std/range/interfaces.d include/d/phobos2/std/range/package.d include/d/phobos2/std/range/primitives.d include/d/phobos2/std/regex/internal/backtracking.d +include/d/phobos2/std/regex/internal/bitnfa.d include/d/phobos2/std/regex/internal/generator.d include/d/phobos2/std/regex/internal/ir.d -include/d/phobos2/std/regex/internal/kickstart.d include/d/phobos2/std/regex/internal/parser.d +include/d/phobos2/std/regex/internal/shiftor.d include/d/phobos2/std/regex/internal/tests.d +include/d/phobos2/std/regex/internal/tests2.d +include/d/phobos2/std/regex/internal/tests3.d include/d/phobos2/std/regex/internal/thompson.d include/d/phobos2/std/regex/package.d include/d/phobos2/std/signals.d include/d/phobos2/std/socket.d -include/d/phobos2/std/socketstream.d include/d/phobos2/std/stdint.d include/d/phobos2/std/stdio.d include/d/phobos2/std/stdiobase.d -include/d/phobos2/std/stream.d include/d/phobos2/std/string.d include/d/phobos2/std/system.d include/d/phobos2/std/traits.d include/d/phobos2/std/typecons.d include/d/phobos2/std/typetuple.d include/d/phobos2/std/uni.d include/d/phobos2/std/uri.d include/d/phobos2/std/utf.d include/d/phobos2/std/uuid.d include/d/phobos2/std/variant.d include/d/phobos2/std/windows/charset.d include/d/phobos2/std/windows/iunknown.d include/d/phobos2/std/windows/registry.d include/d/phobos2/std/windows/syserror.d include/d/phobos2/std/xml.d include/d/phobos2/std/zip.d include/d/phobos2/std/zlib.d include/d/phobos2/unittest.d man/man1/dmd.1.gz man/man5/dmd.conf.5.gz