--- Makefile (revision 504245) +++ Makefile (working copy) @@ -1,46 +1,45 @@ # Created by: Ruben # $FreeBSD$ -PORTNAME= dmd -PORTVERSION= 2.073.2 +PORTNAME= dmd +DMD_MAJOR= 2 +DMD_MINOR= 86 +DMD_REV= 1 +PORTVERSION= ${DMD_MAJOR}.0${DMD_MINOR}.${DMD_REV} DISTVERSIONPREFIX= v -CATEGORIES= lang -PKGNAMESUFFIX= 2 +CATEGORIES= lang +PKGNAMESUFFIX= 2 -MAINTAINER= cy@FreeBSD.org -COMMENT= D 2.0 compiler, not officially validated for FreeBSD +MAINTAINER= cy@FreeBSD.org +COMMENT= D 2.0 compiler -LICENSE= ART10 DMD BSL -LICENSE_COMB= multi -LICENSE_NAME_DMD= Digital Mars license -LICENSE_FILE_DMD= ${WRKSRC}/dmd/src/backendlicense.txt -LICENSE_PERMS_DMD= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell auto-accept +LICENSE= ART10 BSL +LICENSE_COMB= multi -BROKEN= fails to build BROKEN_armv6= dumps core: Assertion failed: (!signbit(Port::ldbl_nan)), function PortInitializer, file port.c BROKEN_armv7= dumps core: Assertion failed: (!signbit(Port::ldbl_nan)), function PortInitializer, file port.c BROKEN_mips64= fails to compile: cc1: unrecognized command line option -m32 -BROKEN_powerpc64= fails to build: can't mangle function with unknown linkage (void*()) +BROKEN_powerpc64= fails to build: cannot mangle function with unknown linkage (void*()) BROKEN_sparc64= fails to install: divide-by-zero error -BROKEN_FreeBSD_12= stack corruption in generated dmd tool caused by inode64 resulting in segfault -BROKEN_FreeBSD_13= stack corruption in generated dmd tool caused by inode64 resulting in segfault -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2019-05-08 NOT_FOR_ARCHS= aarch64 NOT_FOR_ARCHS_REASON= no cpu specified, assuming X86 -USE_GITHUB= nodefault -GH_ACCOUNT= dlang -GH_PROJECT= dmd:dmd druntime:druntime phobos:phobos dlang.org:dlang_org -USES= gmake -MAKEFILE= posix.mak -MAKE_ARGS= HOST_DMD=${WRKDIR}/.host_dmd-2.067.1/stage/usr/local/bin/dmd -EXAMPLESDIR= ${PREFIX}/share/examples/dmd2 -DOCSDIR= ${PREFIX}/share/doc/dmd2 -WRKSRC= ${WRKDIR} +USE_GITHUB= nodefault +GH_ACCOUNT= dlang +GH_PROJECT= dmd:dmd druntime:druntime phobos:phobos dlang.org:dlang_org tools:tools -OPTIONS_DEFINE= DOCS EXAMPLES +USES= gmake compiler dcompiler +BUILD_DEPENDS= git:devel/git bash:shells/bash +MAKEFILE= posix.mak +MAKE_ARGS= SHELL=/usr/local/bin/bash HOST_DMD=${DC_COMPAT} +EXAMPLESDIR= ${PREFIX}/share/examples/dmd2 +DOCSDIR= ${PREFIX}/share/doc/dmd2 +WRKSRC= ${WRKDIR} +LIBVER= 0.${DMD_MINOR}.${DMD_REV} + +OPTIONS_DEFINE= DOCS EXAMPLES + .include post-extract: @@ -47,6 +46,7 @@ @${MV} ${WRKSRC_dmd} ${WRKSRC}/dmd @${MV} ${WRKSRC_druntime} ${WRKSRC}/druntime @${MV} ${WRKSRC_phobos} ${WRKSRC}/phobos + @${MV} ${WRKSRC_tools} ${WRKSRC}/tools @${MV} ${WRKSRC_dlang_org} ${WRKSRC}/dlang.org .if ${ARCH} == "amd64" @@ -61,49 +61,57 @@ MAKE_ARGS+= DEBUG_FLAGS=-g\ -DDEBUG=1\ -DUNITTEST BUILD=debug .endif -MODULEDIR= ${PREFIX}/include/d/phobos2 +MODULEDIR= ${PREFIX}/include/dmd post-patch: @${REINPLACE_CMD} -e "s|g++|${CXX}|" \ -e "s|/etc|${PREFIX}/etc|" \ ${WRKSRC}/dmd/src/posix.mak - @${REINPLACE_CMD} -e "s|gcc|${CC}|" ${WRKSRC}/dmd/src/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}/dmd/docs/man/man1/dmd.1 \ ${WRKDIR}/dmd/docs/man/man5/dmd.conf.5 - @${REINPLACE_CMD} -e "s|%@P%/../../src/phobos|${MODULEDIR}|" \ + @${REINPLACE_CMD} -e "s|%@P%/../../src/phobos|${MODULEDIR}/phobos|" \ -e "s|%@P%/../lib|${PREFIX}/lib|" \ - -e "s|%@P%/../../src/druntime|${PREFIX}/include/d/druntime|" \ + -e "s|%@P%/../../src/druntime|${MODULEDIR}/druntime|" \ ${WRKDIR}/dmd/ini/freebsd/bin${MODEL}/dmd.conf @${ECHO_CMD} >> ${WRKDIR}/dmd/ini/freebsd/bin${MODEL}/dmd.conf -make-phobos: +make-phobos: make-druntime cd ${WRKSRC}/phobos && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} ${BUILD} -make-druntime: +make-druntime: make-dmd cd ${WRKSRC}/druntime && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} ${BUILD} -make-dmd: - cd ${WRKSRC}/dmd && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} ${BUILD} +make-dmd: + cd ${WRKSRC}/dmd && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} -j${MAKE_JOBS_NUMBER} ${BUILD} -do-build: make-dmd make-phobos make-druntime +make-tools: make-dmd make-phobos make-druntime + cd ${WRKSRC}/tools && ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} -j${MAKE_JOBS_NUMBER} ${BUILD} +do-build: make-dmd make-phobos make-druntime make-tools + do-install: - ${INSTALL_MAN} ${WRKDIR}/dmd/docs/man/man1/dmd.1 ${STAGEDIR}${MANPREFIX}/man/man1/dmd.1 ${INSTALL_MAN} ${WRKDIR}/dmd/docs/man/man5/dmd.conf.5 ${STAGEDIR}${MANPREFIX}/man/man5/dmd.conf.5 - ${INSTALL_DATA} ${WRKDIR}/dmd/ini/freebsd/bin${MODEL}/dmd.conf ${STAGEDIR}${PREFIX}/etc/dmd.conf - ${INSTALL_PROGRAM} ${WRKSRC}/dmd/src/dmd ${STAGEDIR}${PREFIX}/bin/dmd - ${INSTALL_DATA} ${WRKSRC}/phobos/generated/freebsd/release/${MODEL}/libphobos2.a ${STAGEDIR}${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/dmd/generated/freebsd/release/${MODEL}/dmd.conf ${STAGEDIR}${PREFIX}/etc/dmd.conf + ${INSTALL_PROGRAM} ${WRKSRC}/dmd/generated/freebsd/release/${MODEL}/dmd ${STAGEDIR}${PREFIX}/bin/dmd + ${INSTALL_DATA} ${WRKSRC}/phobos/generated/freebsd/release/${MODEL}/libphobos2.a ${STAGEDIR}${PREFIX}/lib/libphobos2.a + ${INSTALL_LIB} ${WRKSRC}/phobos/generated/freebsd/release/${MODEL}/libphobos2.so.${LIBVER} ${STAGEDIR}${PREFIX}/lib/libphobos2.so.${LIBVER} + ${LN} -sf ${STAGEDIR}${PREFIX}/lib/libphobos2.so.${LIBVER} ${STAGEDIR}${PREFIX}/lib/libphobos2.so.0.${DMD_MINOR} + ${LN} -sf ${STAGEDIR}${PREFIX}/lib/libphobos2.so.${LIBVER} ${STAGEDIR}${PREFIX}/lib/libphobos2.so ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKDIR}/dmd/ini/freebsd/bin${MODEL}/dmd.conf ${STAGEDIR}${PREFIX}/etc/dmd.conf.sample - cd ${WRKDIR}/druntime/import && ${COPYTREE_SHARE} . ${STAGEDIR}${MODULEDIR} - cd ${WRKSRC}/phobos && ${COPYTREE_SHARE} std ${STAGEDIR}${MODULEDIR} - cd ${WRKSRC}/phobos && ${COPYTREE_SHARE} etc ${STAGEDIR}${MODULEDIR} + cd ${WRKDIR}/druntime/import && ${COPYTREE_SHARE} . ${STAGEDIR}${MODULEDIR}/druntime/import + cd ${WRKSRC}/phobos && ${COPYTREE_SHARE} std ${STAGEDIR}${MODULEDIR}/phobos + cd ${WRKSRC}/phobos && ${COPYTREE_SHARE} etc ${STAGEDIR}${MODULEDIR}/phobos + ${INSTALL_PROGRAM} ${WRKSRC}/tools/generated/freebsd/${MODEL}/ddemangle ${STAGEDIR}${PREFIX}/bin/ddemangle + ${INSTALL_PROGRAM} ${WRKSRC}/tools/generated/freebsd/${MODEL}/rdmd ${STAGEDIR}${PREFIX}/bin/rdmd + ${INSTALL_PROGRAM} ${WRKSRC}/tools/generated/freebsd/${MODEL}/dget ${STAGEDIR}${PREFIX}/bin/dget + ${INSTALL_PROGRAM} ${WRKSRC}/tools/generated/freebsd/${MODEL}/dustmite ${STAGEDIR}${PREFIX}/bin/dustmite + ${INSTALL_MAN} ${WRKDIR}/tools/man/man1/rdmd.1 ${STAGEDIR}${MANPREFIX}/man/man1/rdmd.1 -post-install-DOCS-on: +post-install-DOCS-on: make-tools cd ${WRKSRC}/dlang.org && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} -f ${MAKEFILE} html ${BUILD} LATEST=${PORTVERSION} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/dmd/*.md ${STAGEDIR}${DOCSDIR} @@ -114,10 +122,4 @@ ${INSTALL_DATA} ${WRKDIR}/dmd/ini/freebsd/bin32/dmd.conf ${STAGEDIR}${EXAMPLESDIR}/dmd32.conf ${INSTALL_DATA} ${WRKDIR}/dmd/ini/freebsd/bin64/dmd.conf ${STAGEDIR}${EXAMPLESDIR}/dmd64.conf -pre-fetch: - ${MAKE} -f Makefile.bootstrap BOOTDIR=${WRKDIR} checksum - -pre-configure: - ${MAKE} -f Makefile.bootstrap BOOTDIR=${WRKDIR} - .include --- Makefile.bootstrap (revision 504245) +++ Makefile.bootstrap (nonexistent) @@ -1,84 +0,0 @@ -# Created by: Ruben -# $FreeBSD$ - -PORTNAME= dmd -PORTVERSION= 2.067.1 -MASTER_SITES= http://ftp.digitalmars.com/ -CATEGORIES= lang -PKGNAMESUFFIX= 2 -DISTNAME= dmd.${PORTVERSION} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} -DISTINFO_FILE= ${MASTERDIR}/distinfo.bootstrap - -MAINTAINER= cy@FreeBSD.org -COMMENT= D 2.0 compiler bootstrap - -WRKDIR= ${BOOTDIR}/.host_dmd-2.067.1 -PATCHDIR= ${MASTERDIR}/files.bootstrap -USES= gmake zip -MAKEFILE= posix.mak -EXAMPLESDIR= ${PREFIX}/share/examples/dmd2 -DOCSDIR= ${PREFIX}/share/doc/dmd2 -PORTDOCS= *.txt html/ -WRKSRC= ${WRKDIR}/dmd2/src/${PORTNAME} -.undef DEVELOPER - -OPTIONS_DEFINE= DOCS - -BROKEN_sparc64= Does not install: divide-by-zero error - -.include - -.if ${ARCH} == "amd64" -MAKE_ARGS+= MODEL=64 -MODEL= 64 -.else -MAKE_ARGS+= MODEL=32 -MODEL= 32 -.endif - -MODULEDIR= ${PREFIX}/include/d/phobos2 - -post-patch: - @${REINPLACE_CMD} -e "s|g++|${CXX}|" ${WRKSRC}/posix.mak - @${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 '/^SYSCONFDIR=/s|/etc/|${STAGEDIR}${PREFIX}/etc/|' ${WRKSRC}/posix.mak - @${REINPLACE_CMD} -e "s|%@P%/../../src/phobos|${STAGEDIR}${MODULEDIR}|" \ - -e "s|%@P%/../lib32|${STAGEDIR}${PREFIX}/lib|" \ - -e "s|%@P%/../lib64|${STAGEDIR}${PREFIX}/lib|" \ - -e "s|%@P%/../../src/druntime|${STAGEDIR}${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_DATA} ${WRKDIR}/dmd2/freebsd/bin${MODEL}/dmd.conf ${STAGEDIR}${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/dmd ${STAGEDIR}${PREFIX}/bin/dmd - ${INSTALL_DATA} ${WRKSRC}/../../freebsd/lib${MODEL}/libphobos2.a ${STAGEDIR}${PREFIX}/lib - ${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 - - ${LN} -sf ${STAGEDIR}/${PREFIX}/bin/dmd ${WRKDIR}/dmd2/freebsd/bin${MODEL}/dmd - -.include --- distinfo (revision 504245) +++ distinfo (working copy) @@ -1,9 +1,11 @@ TIMESTAMP = 1489142044 -SHA256 (dlang-dmd-v2.073.2_GH0.tar.gz) = 1cd983d73b0fa1a20232fb46dbc3a39434adfa00fc7668563983ec8ca210726a -SIZE (dlang-dmd-v2.073.2_GH0.tar.gz) = 2815046 -SHA256 (dlang-druntime-v2.073.2_GH0.tar.gz) = 9c0c1a818deb6a0d410f83f067450cc5b41287328c44c2d46c0d2e7de84aa68e -SIZE (dlang-druntime-v2.073.2_GH0.tar.gz) = 1496527 -SHA256 (dlang-phobos-v2.073.2_GH0.tar.gz) = 6a3b16649a33bcc3db522404a1fe98f046eedf082a96648f7972ab112c2cb289 -SIZE (dlang-phobos-v2.073.2_GH0.tar.gz) = 2168692 -SHA256 (dlang-dlang.org-v2.073.2_GH0.tar.gz) = 2417617ebca97594ad69a0602813f64d50590fc65b42a7099f44328d3d022bce -SIZE (dlang-dlang.org-v2.073.2_GH0.tar.gz) = 2321393 +SHA256 (dlang-dmd-v2.086.1_GH0.tar.gz) = d9a55bee69a6dd63d93b35687d7154e35ab1f602c17d0df0ba93c6c5387f2df1 +SIZE (dlang-dmd-v2.086.1_GH0.tar.gz) = 3231698 +SHA256 (dlang-druntime-v2.086.1_GH0.tar.gz) = da3213b42d366ec7582314a2cd2868023a479fe78d48c66b946eaa6a0a466f00 +SIZE (dlang-druntime-v2.086.1_GH0.tar.gz) = 1657629 +SHA256 (dlang-phobos-v2.086.1_GH0.tar.gz) = f86a672985deae81f5c2be069ddced3d8882e64e0a426ec4b33564af29840e63 +SIZE (dlang-phobos-v2.086.1_GH0.tar.gz) = 2350666 +SHA256 (dlang-dlang.org-v2.086.1_GH0.tar.gz) = 46400779f6e3159d97b9d5bbccce67bfe805270d15e41737ca64820f52fc8a96 +SIZE (dlang-dlang.org-v2.086.1_GH0.tar.gz) = 3342107 +SHA256 (dlang-tools-v2.086.1_GH0.tar.gz) = a72a5b823b35ebb461ebbdf61733b14736890bcafac0b7ab6f7eb69b98866d96 +SIZE (dlang-tools-v2.086.1_GH0.tar.gz) = 116540 --- distinfo.bootstrap (revision 504245) +++ distinfo.bootstrap (nonexistent) @@ -1,3 +0,0 @@ -TIMESTAMP = 1487049092 -SHA256 (dmd.2.067.1.zip) = 24fd32d3b1401309187a3fcd235014e38c651beb3af29b0e656f6f4add4ec95b -SIZE (dmd.2.067.1.zip) = 56083735 --- files/patch-freebsd__bin64__dmd.conf (revision 504245) +++ files/patch-freebsd__bin64__dmd.conf (working copy) @@ -5,4 +5,4 @@ [Environment64] -DFLAGS=-I%@P%/../../src/phobos -I%@P%/../../src/druntime/import -L-L%@P%/../lib64 -L--export-dynamic -+DFLAGS=-I%@P%/../../src/phobos -I%@P%/../../src/druntime/import -L-L%@P%/../lib -L--export-dynamic ++DFLAGS=-I%@P%/../../src/phobos -I%@P%/../../src/druntime/import -L-L%@P%/../lib -L--export-dynamic -fPIC --- files.bootstrap/patch-src__phobos__posix.mak (revision 504245) +++ files.bootstrap/patch-src__phobos__posix.mak (nonexistent) @@ -1,11 +0,0 @@ ---- ../../src/phobos/posix.mak.orig 2016-04-08 22:04:38.300872000 -0700 -+++ ../../src/phobos/posix.mak 2016-04-08 22:11:33.637271000 -0700 -@@ -121,7 +121,7 @@ - DMD = wine dmd.exe - RUN = wine - else -- DMD = ../dmd/src/dmd -+ DMD = ../dmd/dmd - ifeq ($(OS),win32) - CC = dmc - else --- pkg-descr (revision 504245) +++ pkg-descr (working copy) @@ -17,6 +17,6 @@ This Software is copyrighted and comes with a single user license, and may not be redistributed. If you wish to obtain a redistribution license, please -contact Digital Mars. +contact dlang.org / Digital Mars. -WWW: http://digitalmars.com/d/2.0/ +WWW: https://dlang.org/ --- pkg-plist (revision 504245) +++ pkg-plist (working copy) @@ -1,5 +1,13 @@ -bin/dmd lib/libphobos2.a +lib/libphobos2.so +lib/libphobos2.so.0.86 +lib/libphobos2.so.0.86.1 +man/man5/dmd.conf.5.gz +bin/ddemangle +bin/rdmd +bin/dget +bin/dustmite +man/man1/rdmd.1.gz @sample etc/dmd.conf.sample %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dmd32.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dmd64.conf @@ -29,554 +37,531 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/samples/wc2.d %%PORTEXAMPLES%%%%EXAMPLESDIR%%/samples/winsamp.d %%PORTEXAMPLES%%%%EXAMPLESDIR%%/samples/winsamp.def -include/d/phobos2/core/atomic.d -include/d/phobos2/core/attribute.d -include/d/phobos2/core/bitop.d -include/d/phobos2/core/checkedint.d -include/d/phobos2/core/cpuid.d -include/d/phobos2/core/demangle.d -include/d/phobos2/core/exception.d -include/d/phobos2/core/internal/abort.d -include/d/phobos2/core/internal/convert.d -include/d/phobos2/core/internal/hash.d -include/d/phobos2/core/internal/spinlock.d -include/d/phobos2/core/internal/string.d -include/d/phobos2/core/internal/traits.d -include/d/phobos2/core/math.d -include/d/phobos2/core/memory.d -include/d/phobos2/core/runtime.d -include/d/phobos2/core/simd.d -include/d/phobos2/core/stdc/complex.d -include/d/phobos2/core/stdc/config.d -include/d/phobos2/core/stdc/ctype.d -include/d/phobos2/core/stdc/errno.d -include/d/phobos2/core/stdc/fenv.d -include/d/phobos2/core/stdc/float_.d -include/d/phobos2/core/stdc/inttypes.d -include/d/phobos2/core/stdc/limits.d -include/d/phobos2/core/stdc/locale.d -include/d/phobos2/core/stdc/math.d -include/d/phobos2/core/stdc/signal.d -include/d/phobos2/core/stdc/stdarg.d -include/d/phobos2/core/stdc/stddef.d -include/d/phobos2/core/stdc/stdint.d -include/d/phobos2/core/stdc/stdio.d -include/d/phobos2/core/stdc/stdlib.d -include/d/phobos2/core/stdc/string.d -include/d/phobos2/core/stdc/tgmath.d -include/d/phobos2/core/stdc/time.d -include/d/phobos2/core/stdc/wchar_.d -include/d/phobos2/core/stdc/wctype.d -include/d/phobos2/core/stdcpp/exception.d -include/d/phobos2/core/stdcpp/typeinfo.d -include/d/phobos2/core/sync/barrier.di -include/d/phobos2/core/sync/condition.di -include/d/phobos2/core/sync/config.di -include/d/phobos2/core/sync/exception.di -include/d/phobos2/core/sync/mutex.di -include/d/phobos2/core/sync/rwmutex.di -include/d/phobos2/core/sync/semaphore.di -include/d/phobos2/core/sys/darwin/execinfo.d -include/d/phobos2/core/sys/darwin/mach/dyld.d -include/d/phobos2/core/sys/darwin/mach/getsect.d -include/d/phobos2/core/sys/darwin/mach/kern_return.d -include/d/phobos2/core/sys/darwin/mach/loader.d -include/d/phobos2/core/sys/darwin/mach/port.d -include/d/phobos2/core/sys/darwin/mach/semaphore.d -include/d/phobos2/core/sys/darwin/mach/thread_act.d -include/d/phobos2/core/sys/darwin/pthread.d -include/d/phobos2/core/sys/darwin/sys/cdefs.d -include/d/phobos2/core/sys/darwin/sys/event.d -include/d/phobos2/core/sys/darwin/sys/mman.d -include/d/phobos2/core/sys/freebsd/dlfcn.d -include/d/phobos2/core/sys/freebsd/execinfo.d -include/d/phobos2/core/sys/freebsd/pthread_np.d -include/d/phobos2/core/sys/freebsd/sys/_bitset.d -include/d/phobos2/core/sys/freebsd/sys/_cpuset.d -include/d/phobos2/core/sys/freebsd/sys/cdefs.d -include/d/phobos2/core/sys/freebsd/sys/elf.d -include/d/phobos2/core/sys/freebsd/sys/elf32.d -include/d/phobos2/core/sys/freebsd/sys/elf64.d -include/d/phobos2/core/sys/freebsd/sys/elf_common.d -include/d/phobos2/core/sys/freebsd/sys/event.d -include/d/phobos2/core/sys/freebsd/sys/link_elf.d -include/d/phobos2/core/sys/freebsd/sys/mman.d -include/d/phobos2/core/sys/freebsd/time.d -include/d/phobos2/core/sys/linux/config.d -include/d/phobos2/core/sys/linux/dlfcn.d -include/d/phobos2/core/sys/linux/elf.d -include/d/phobos2/core/sys/linux/epoll.d -include/d/phobos2/core/sys/linux/errno.d -include/d/phobos2/core/sys/linux/execinfo.d -include/d/phobos2/core/sys/linux/fcntl.d -include/d/phobos2/core/sys/linux/ifaddrs.d -include/d/phobos2/core/sys/linux/link.d -include/d/phobos2/core/sys/linux/sched.d -include/d/phobos2/core/sys/linux/sys/auxv.d -include/d/phobos2/core/sys/linux/sys/inotify.d -include/d/phobos2/core/sys/linux/sys/mman.d -include/d/phobos2/core/sys/linux/sys/netinet/tcp.d -include/d/phobos2/core/sys/linux/sys/prctl.d -include/d/phobos2/core/sys/linux/sys/signalfd.d -include/d/phobos2/core/sys/linux/sys/socket.d -include/d/phobos2/core/sys/linux/sys/sysinfo.d -include/d/phobos2/core/sys/linux/sys/time.d -include/d/phobos2/core/sys/linux/sys/xattr.d -include/d/phobos2/core/sys/linux/termios.d -include/d/phobos2/core/sys/linux/time.d -include/d/phobos2/core/sys/linux/timerfd.d -include/d/phobos2/core/sys/linux/tipc.d -include/d/phobos2/core/sys/linux/unistd.d -include/d/phobos2/core/sys/openbsd/dlfcn.d -include/d/phobos2/core/sys/osx/execinfo.d -include/d/phobos2/core/sys/osx/mach/dyld.d -include/d/phobos2/core/sys/osx/mach/getsect.d -include/d/phobos2/core/sys/osx/mach/kern_return.d -include/d/phobos2/core/sys/osx/mach/loader.d -include/d/phobos2/core/sys/osx/mach/port.d -include/d/phobos2/core/sys/osx/mach/semaphore.d -include/d/phobos2/core/sys/osx/mach/thread_act.d -include/d/phobos2/core/sys/osx/pthread.d -include/d/phobos2/core/sys/osx/sys/cdefs.d -include/d/phobos2/core/sys/osx/sys/mman.d -include/d/phobos2/core/sys/posix/arpa/inet.d -include/d/phobos2/core/sys/posix/config.d -include/d/phobos2/core/sys/posix/dirent.d -include/d/phobos2/core/sys/posix/dlfcn.d -include/d/phobos2/core/sys/posix/fcntl.d -include/d/phobos2/core/sys/posix/grp.d -include/d/phobos2/core/sys/posix/iconv.d -include/d/phobos2/core/sys/posix/inttypes.d -include/d/phobos2/core/sys/posix/libgen.d -include/d/phobos2/core/sys/posix/net/if_.d -include/d/phobos2/core/sys/posix/netdb.d -include/d/phobos2/core/sys/posix/netinet/in_.d -include/d/phobos2/core/sys/posix/netinet/tcp.d -include/d/phobos2/core/sys/posix/poll.d -include/d/phobos2/core/sys/posix/pthread.d -include/d/phobos2/core/sys/posix/pwd.d -include/d/phobos2/core/sys/posix/sched.d -include/d/phobos2/core/sys/posix/semaphore.d -include/d/phobos2/core/sys/posix/setjmp.d -include/d/phobos2/core/sys/posix/signal.d -include/d/phobos2/core/sys/posix/stdio.d -include/d/phobos2/core/sys/posix/stdlib.d -include/d/phobos2/core/sys/posix/sys/filio.d -include/d/phobos2/core/sys/posix/sys/ioccom.d -include/d/phobos2/core/sys/posix/sys/ioctl.d -include/d/phobos2/core/sys/posix/sys/ipc.d -include/d/phobos2/core/sys/posix/sys/mman.d -include/d/phobos2/core/sys/posix/sys/resource.d -include/d/phobos2/core/sys/posix/sys/select.d -include/d/phobos2/core/sys/posix/sys/shm.d -include/d/phobos2/core/sys/posix/sys/socket.d -include/d/phobos2/core/sys/posix/sys/stat.d -include/d/phobos2/core/sys/posix/sys/statvfs.d -include/d/phobos2/core/sys/posix/sys/time.d -include/d/phobos2/core/sys/posix/sys/ttycom.d -include/d/phobos2/core/sys/posix/sys/types.d -include/d/phobos2/core/sys/posix/sys/uio.d -include/d/phobos2/core/sys/posix/sys/un.d -include/d/phobos2/core/sys/posix/sys/utsname.d -include/d/phobos2/core/sys/posix/sys/wait.d -include/d/phobos2/core/sys/posix/syslog.d -include/d/phobos2/core/sys/posix/termios.d -include/d/phobos2/core/sys/posix/time.d -include/d/phobos2/core/sys/posix/ucontext.d -include/d/phobos2/core/sys/posix/unistd.d -include/d/phobos2/core/sys/posix/utime.d -include/d/phobos2/core/sys/solaris/dlfcn.d -include/d/phobos2/core/sys/solaris/elf.d -include/d/phobos2/core/sys/solaris/execinfo.d -include/d/phobos2/core/sys/solaris/libelf.d -include/d/phobos2/core/sys/solaris/link.d -include/d/phobos2/core/sys/solaris/sys/elf.d -include/d/phobos2/core/sys/solaris/sys/elf_386.d -include/d/phobos2/core/sys/solaris/sys/elf_SPARC.d -include/d/phobos2/core/sys/solaris/sys/elf_amd64.d -include/d/phobos2/core/sys/solaris/sys/elf_notes.d -include/d/phobos2/core/sys/solaris/sys/elftypes.d -include/d/phobos2/core/sys/solaris/sys/link.d -include/d/phobos2/core/sys/solaris/sys/priocntl.d -include/d/phobos2/core/sys/solaris/sys/procset.d -include/d/phobos2/core/sys/solaris/sys/types.d -include/d/phobos2/core/sys/solaris/time.d -include/d/phobos2/core/sys/windows/accctrl.d -include/d/phobos2/core/sys/windows/aclapi.d -include/d/phobos2/core/sys/windows/aclui.d -include/d/phobos2/core/sys/windows/basetsd.d -include/d/phobos2/core/sys/windows/basetyps.d -include/d/phobos2/core/sys/windows/cderr.d -include/d/phobos2/core/sys/windows/cguid.d -include/d/phobos2/core/sys/windows/com.d -include/d/phobos2/core/sys/windows/comcat.d -include/d/phobos2/core/sys/windows/commctrl.d -include/d/phobos2/core/sys/windows/commdlg.d -include/d/phobos2/core/sys/windows/core.d -include/d/phobos2/core/sys/windows/cpl.d -include/d/phobos2/core/sys/windows/cplext.d -include/d/phobos2/core/sys/windows/custcntl.d -include/d/phobos2/core/sys/windows/dbghelp.d -include/d/phobos2/core/sys/windows/dbghelp_types.d -include/d/phobos2/core/sys/windows/dbt.d -include/d/phobos2/core/sys/windows/dde.d -include/d/phobos2/core/sys/windows/ddeml.d -include/d/phobos2/core/sys/windows/dhcpcsdk.d -include/d/phobos2/core/sys/windows/dlgs.d -include/d/phobos2/core/sys/windows/dll.d -include/d/phobos2/core/sys/windows/docobj.d -include/d/phobos2/core/sys/windows/errorrep.d -include/d/phobos2/core/sys/windows/exdisp.d -include/d/phobos2/core/sys/windows/exdispid.d -include/d/phobos2/core/sys/windows/httpext.d -include/d/phobos2/core/sys/windows/idispids.d -include/d/phobos2/core/sys/windows/imagehlp.d -include/d/phobos2/core/sys/windows/imm.d -include/d/phobos2/core/sys/windows/intshcut.d -include/d/phobos2/core/sys/windows/ipexport.d -include/d/phobos2/core/sys/windows/iphlpapi.d -include/d/phobos2/core/sys/windows/ipifcons.d -include/d/phobos2/core/sys/windows/iprtrmib.d -include/d/phobos2/core/sys/windows/iptypes.d -include/d/phobos2/core/sys/windows/isguids.d -include/d/phobos2/core/sys/windows/lm.d -include/d/phobos2/core/sys/windows/lmaccess.d -include/d/phobos2/core/sys/windows/lmalert.d -include/d/phobos2/core/sys/windows/lmapibuf.d -include/d/phobos2/core/sys/windows/lmat.d -include/d/phobos2/core/sys/windows/lmaudit.d -include/d/phobos2/core/sys/windows/lmbrowsr.d -include/d/phobos2/core/sys/windows/lmchdev.d -include/d/phobos2/core/sys/windows/lmconfig.d -include/d/phobos2/core/sys/windows/lmcons.d -include/d/phobos2/core/sys/windows/lmerr.d -include/d/phobos2/core/sys/windows/lmerrlog.d -include/d/phobos2/core/sys/windows/lmmsg.d -include/d/phobos2/core/sys/windows/lmremutl.d -include/d/phobos2/core/sys/windows/lmrepl.d -include/d/phobos2/core/sys/windows/lmserver.d -include/d/phobos2/core/sys/windows/lmshare.d -include/d/phobos2/core/sys/windows/lmsname.d -include/d/phobos2/core/sys/windows/lmstats.d -include/d/phobos2/core/sys/windows/lmsvc.d -include/d/phobos2/core/sys/windows/lmuse.d -include/d/phobos2/core/sys/windows/lmuseflg.d -include/d/phobos2/core/sys/windows/lmwksta.d -include/d/phobos2/core/sys/windows/lzexpand.d -include/d/phobos2/core/sys/windows/mapi.d -include/d/phobos2/core/sys/windows/mciavi.d -include/d/phobos2/core/sys/windows/mcx.d -include/d/phobos2/core/sys/windows/mgmtapi.d -include/d/phobos2/core/sys/windows/mmsystem.d -include/d/phobos2/core/sys/windows/msacm.d -include/d/phobos2/core/sys/windows/mshtml.d -include/d/phobos2/core/sys/windows/mswsock.d -include/d/phobos2/core/sys/windows/nb30.d -include/d/phobos2/core/sys/windows/nddeapi.d -include/d/phobos2/core/sys/windows/nspapi.d -include/d/phobos2/core/sys/windows/ntdef.d -include/d/phobos2/core/sys/windows/ntdll.d -include/d/phobos2/core/sys/windows/ntldap.d -include/d/phobos2/core/sys/windows/ntsecapi.d -include/d/phobos2/core/sys/windows/ntsecpkg.d -include/d/phobos2/core/sys/windows/oaidl.d -include/d/phobos2/core/sys/windows/objbase.d -include/d/phobos2/core/sys/windows/objfwd.d -include/d/phobos2/core/sys/windows/objidl.d -include/d/phobos2/core/sys/windows/objsafe.d -include/d/phobos2/core/sys/windows/ocidl.d -include/d/phobos2/core/sys/windows/odbcinst.d -include/d/phobos2/core/sys/windows/ole.d -include/d/phobos2/core/sys/windows/ole2.d -include/d/phobos2/core/sys/windows/ole2ver.d -include/d/phobos2/core/sys/windows/oleacc.d -include/d/phobos2/core/sys/windows/oleauto.d -include/d/phobos2/core/sys/windows/olectl.d -include/d/phobos2/core/sys/windows/olectlid.d -include/d/phobos2/core/sys/windows/oledlg.d -include/d/phobos2/core/sys/windows/oleidl.d -include/d/phobos2/core/sys/windows/pbt.d -include/d/phobos2/core/sys/windows/powrprof.d -include/d/phobos2/core/sys/windows/prsht.d -include/d/phobos2/core/sys/windows/psapi.d -include/d/phobos2/core/sys/windows/rapi.d -include/d/phobos2/core/sys/windows/ras.d -include/d/phobos2/core/sys/windows/rasdlg.d -include/d/phobos2/core/sys/windows/raserror.d -include/d/phobos2/core/sys/windows/rassapi.d -include/d/phobos2/core/sys/windows/reason.d -include/d/phobos2/core/sys/windows/regstr.d -include/d/phobos2/core/sys/windows/richedit.d -include/d/phobos2/core/sys/windows/richole.d -include/d/phobos2/core/sys/windows/rpc.d -include/d/phobos2/core/sys/windows/rpcdce.d -include/d/phobos2/core/sys/windows/rpcdce2.d -include/d/phobos2/core/sys/windows/rpcdcep.d -include/d/phobos2/core/sys/windows/rpcndr.d -include/d/phobos2/core/sys/windows/rpcnsi.d -include/d/phobos2/core/sys/windows/rpcnsip.d -include/d/phobos2/core/sys/windows/rpcnterr.d -include/d/phobos2/core/sys/windows/schannel.d -include/d/phobos2/core/sys/windows/secext.d -include/d/phobos2/core/sys/windows/security.d -include/d/phobos2/core/sys/windows/servprov.d -include/d/phobos2/core/sys/windows/setupapi.d -include/d/phobos2/core/sys/windows/shellapi.d -include/d/phobos2/core/sys/windows/shldisp.d -include/d/phobos2/core/sys/windows/shlguid.d -include/d/phobos2/core/sys/windows/shlobj.d -include/d/phobos2/core/sys/windows/shlwapi.d -include/d/phobos2/core/sys/windows/snmp.d -include/d/phobos2/core/sys/windows/sql.d -include/d/phobos2/core/sys/windows/sqlext.d -include/d/phobos2/core/sys/windows/sqltypes.d -include/d/phobos2/core/sys/windows/sqlucode.d -include/d/phobos2/core/sys/windows/sspi.d -include/d/phobos2/core/sys/windows/stacktrace.d -include/d/phobos2/core/sys/windows/stat.d -include/d/phobos2/core/sys/windows/subauth.d -include/d/phobos2/core/sys/windows/threadaux.d -include/d/phobos2/core/sys/windows/tlhelp32.d -include/d/phobos2/core/sys/windows/tmschema.d -include/d/phobos2/core/sys/windows/unknwn.d -include/d/phobos2/core/sys/windows/uuid.d -include/d/phobos2/core/sys/windows/vfw.d -include/d/phobos2/core/sys/windows/w32api.d -include/d/phobos2/core/sys/windows/winbase.d -include/d/phobos2/core/sys/windows/winber.d -include/d/phobos2/core/sys/windows/wincon.d -include/d/phobos2/core/sys/windows/wincrypt.d -include/d/phobos2/core/sys/windows/windef.d -include/d/phobos2/core/sys/windows/windows.d -include/d/phobos2/core/sys/windows/winerror.d -include/d/phobos2/core/sys/windows/wingdi.d -include/d/phobos2/core/sys/windows/winhttp.d -include/d/phobos2/core/sys/windows/wininet.d -include/d/phobos2/core/sys/windows/winioctl.d -include/d/phobos2/core/sys/windows/winldap.d -include/d/phobos2/core/sys/windows/winnetwk.d -include/d/phobos2/core/sys/windows/winnls.d -include/d/phobos2/core/sys/windows/winnt.d -include/d/phobos2/core/sys/windows/winperf.d -include/d/phobos2/core/sys/windows/winreg.d -include/d/phobos2/core/sys/windows/winsock2.d -include/d/phobos2/core/sys/windows/winspool.d -include/d/phobos2/core/sys/windows/winsvc.d -include/d/phobos2/core/sys/windows/winuser.d -include/d/phobos2/core/sys/windows/winver.d -include/d/phobos2/core/sys/windows/wtsapi32.d -include/d/phobos2/core/sys/windows/wtypes.d -include/d/phobos2/core/thread.d -include/d/phobos2/core/time.d -include/d/phobos2/core/vararg.d -include/d/phobos2/etc/c/curl.d -include/d/phobos2/etc/c/odbc/sql.d -include/d/phobos2/etc/c/odbc/sqlext.d -include/d/phobos2/etc/c/odbc/sqltypes.d -include/d/phobos2/etc/c/odbc/sqlucode.d -include/d/phobos2/etc/c/sqlite3.d -include/d/phobos2/etc/c/zlib.d -include/d/phobos2/etc/c/zlib/ChangeLog -include/d/phobos2/etc/c/zlib/README -include/d/phobos2/etc/c/zlib/adler32.c -include/d/phobos2/etc/c/zlib/algorithm.txt -include/d/phobos2/etc/c/zlib/compress.c -include/d/phobos2/etc/c/zlib/crc32.c -include/d/phobos2/etc/c/zlib/crc32.h -include/d/phobos2/etc/c/zlib/deflate.c -include/d/phobos2/etc/c/zlib/deflate.h -include/d/phobos2/etc/c/zlib/example.c -include/d/phobos2/etc/c/zlib/gzclose.c -include/d/phobos2/etc/c/zlib/gzguts.h -include/d/phobos2/etc/c/zlib/gzlib.c -include/d/phobos2/etc/c/zlib/gzread.c -include/d/phobos2/etc/c/zlib/gzwrite.c -include/d/phobos2/etc/c/zlib/infback.c -include/d/phobos2/etc/c/zlib/inffast.c -include/d/phobos2/etc/c/zlib/inffast.h -include/d/phobos2/etc/c/zlib/inffixed.h -include/d/phobos2/etc/c/zlib/inflate.c -include/d/phobos2/etc/c/zlib/inflate.h -include/d/phobos2/etc/c/zlib/inftrees.c -include/d/phobos2/etc/c/zlib/inftrees.h -include/d/phobos2/etc/c/zlib/linux.mak -include/d/phobos2/etc/c/zlib/minigzip.c -include/d/phobos2/etc/c/zlib/osx.mak -include/d/phobos2/etc/c/zlib/trees.c -include/d/phobos2/etc/c/zlib/trees.h -include/d/phobos2/etc/c/zlib/uncompr.c -include/d/phobos2/etc/c/zlib/win32.mak -include/d/phobos2/etc/c/zlib/win64.mak -include/d/phobos2/etc/c/zlib/zconf.h -include/d/phobos2/etc/c/zlib/zlib.3 -include/d/phobos2/etc/c/zlib/zlib.h -include/d/phobos2/etc/c/zlib/zutil.c -include/d/phobos2/etc/c/zlib/zutil.h -include/d/phobos2/etc/linux/memoryerror.d -include/d/phobos2/object.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/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/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/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/stdint.d -include/d/phobos2/std/stdio.d -include/d/phobos2/std/stdiobase.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/dmd/druntime/import/core/sync/config.di +include/dmd/druntime/import/core/sync/exception.di +include/dmd/druntime/import/core/sync/barrier.di +include/dmd/druntime/import/core/sync/condition.di +include/dmd/druntime/import/core/sync/mutex.di +include/dmd/druntime/import/core/sync/rwmutex.di +include/dmd/druntime/import/core/sync/semaphore.di +include/dmd/druntime/import/core/sync/event.d +include/dmd/druntime/import/core/gc/config.d +include/dmd/druntime/import/core/gc/gcinterface.d +include/dmd/druntime/import/core/gc/registry.d +include/dmd/druntime/import/core/atomic.d +include/dmd/druntime/import/core/attribute.d +include/dmd/druntime/import/core/bitop.d +include/dmd/druntime/import/core/checkedint.d +include/dmd/druntime/import/core/cpuid.d +include/dmd/druntime/import/core/demangle.d +include/dmd/druntime/import/core/exception.d +include/dmd/druntime/import/core/lifetime.d +include/dmd/druntime/import/core/runtime.d +include/dmd/druntime/import/core/memory.d +include/dmd/druntime/import/core/math.d +include/dmd/druntime/import/core/simd.d +include/dmd/druntime/import/core/time.d +include/dmd/druntime/import/core/thread.d +include/dmd/druntime/import/core/internal/abort.d +include/dmd/druntime/import/core/internal/convert.d +include/dmd/druntime/import/core/internal/arrayop.d +include/dmd/druntime/import/core/internal/dassert.d +include/dmd/druntime/import/core/internal/hash.d +include/dmd/druntime/import/core/internal/parseoptions.d +include/dmd/druntime/import/core/internal/spinlock.d +include/dmd/druntime/import/core/internal/utf.d +include/dmd/druntime/import/core/internal/traits.d +include/dmd/druntime/import/core/internal/string.d +include/dmd/druntime/import/core/internal/lifetime.d +include/dmd/druntime/import/core/vararg.d +include/dmd/druntime/import/core/stdc/complex.d +include/dmd/druntime/import/core/stdc/config.d +include/dmd/druntime/import/core/stdc/ctype.d +include/dmd/druntime/import/core/stdc/errno.d +include/dmd/druntime/import/core/stdc/assert_.d +include/dmd/druntime/import/core/stdc/fenv.d +include/dmd/druntime/import/core/stdc/limits.d +include/dmd/druntime/import/core/stdc/inttypes.d +include/dmd/druntime/import/core/stdc/float_.d +include/dmd/druntime/import/core/stdc/math.d +include/dmd/druntime/import/core/stdc/locale.d +include/dmd/druntime/import/core/stdc/stdarg.d +include/dmd/druntime/import/core/stdc/stddef.d +include/dmd/druntime/import/core/stdc/stdint.d +include/dmd/druntime/import/core/stdc/signal.d +include/dmd/druntime/import/core/stdc/stdio.d +include/dmd/druntime/import/core/stdc/stdlib.d +include/dmd/druntime/import/core/stdc/tgmath.d +include/dmd/druntime/import/core/stdc/string.d +include/dmd/druntime/import/core/stdc/time.d +include/dmd/druntime/import/core/stdc/wctype.d +include/dmd/druntime/import/core/stdc/wchar_.d +include/dmd/druntime/import/core/stdcpp/allocator.d +include/dmd/druntime/import/core/stdcpp/exception.d +include/dmd/druntime/import/core/stdcpp/array.d +include/dmd/druntime/import/core/stdcpp/new_.d +include/dmd/druntime/import/core/stdcpp/string_view.d +include/dmd/druntime/import/core/stdcpp/typeinfo.d +include/dmd/druntime/import/core/stdcpp/type_traits.d +include/dmd/druntime/import/core/stdcpp/xutility.d +include/dmd/druntime/import/core/sys/darwin/crt_externs.d +include/dmd/druntime/import/core/sys/darwin/dlfcn.d +include/dmd/druntime/import/core/sys/darwin/execinfo.d +include/dmd/druntime/import/core/sys/darwin/mach/dyld.d +include/dmd/druntime/import/core/sys/darwin/mach/kern_return.d +include/dmd/druntime/import/core/sys/darwin/mach/port.d +include/dmd/druntime/import/core/sys/darwin/mach/getsect.d +include/dmd/druntime/import/core/sys/darwin/mach/loader.d +include/dmd/druntime/import/core/sys/darwin/mach/semaphore.d +include/dmd/druntime/import/core/sys/darwin/mach/thread_act.d +include/dmd/druntime/import/core/sys/darwin/pthread.d +include/dmd/druntime/import/core/sys/darwin/netinet/in_.d +include/dmd/druntime/import/core/sys/darwin/sys/event.d +include/dmd/druntime/import/core/sys/darwin/sys/cdefs.d +include/dmd/druntime/import/core/sys/darwin/sys/mman.d +include/dmd/druntime/import/core/sys/freebsd/dlfcn.d +include/dmd/druntime/import/core/sys/freebsd/netinet/in_.d +include/dmd/druntime/import/core/sys/freebsd/execinfo.d +include/dmd/druntime/import/core/sys/freebsd/sys/_bitset.d +include/dmd/druntime/import/core/sys/freebsd/sys/cdefs.d +include/dmd/druntime/import/core/sys/freebsd/sys/elf.d +include/dmd/druntime/import/core/sys/freebsd/sys/_cpuset.d +include/dmd/druntime/import/core/sys/freebsd/sys/elf_common.d +include/dmd/druntime/import/core/sys/freebsd/sys/link_elf.d +include/dmd/druntime/import/core/sys/freebsd/sys/elf32.d +include/dmd/druntime/import/core/sys/freebsd/sys/elf64.d +include/dmd/druntime/import/core/sys/freebsd/sys/event.d +include/dmd/druntime/import/core/sys/freebsd/sys/mman.d +include/dmd/druntime/import/core/sys/freebsd/sys/mount.d +include/dmd/druntime/import/core/sys/freebsd/pthread_np.d +include/dmd/druntime/import/core/sys/freebsd/time.d +include/dmd/druntime/import/core/sys/freebsd/unistd.d +include/dmd/druntime/import/core/sys/dragonflybsd/dlfcn.d +include/dmd/druntime/import/core/sys/dragonflybsd/netinet/in_.d +include/dmd/druntime/import/core/sys/dragonflybsd/execinfo.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/_bitset.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/_cpuset.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/elf_common.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/cdefs.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/elf32.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/elf.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/elf64.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/event.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/mman.d +include/dmd/druntime/import/core/sys/dragonflybsd/sys/link_elf.d +include/dmd/druntime/import/core/sys/dragonflybsd/pthread_np.d +include/dmd/druntime/import/core/sys/dragonflybsd/time.d +include/dmd/druntime/import/core/sys/linux/dlfcn.d +include/dmd/druntime/import/core/sys/linux/config.d +include/dmd/druntime/import/core/sys/linux/elf.d +include/dmd/druntime/import/core/sys/linux/epoll.d +include/dmd/druntime/import/core/sys/linux/fcntl.d +include/dmd/druntime/import/core/sys/linux/errno.d +include/dmd/druntime/import/core/sys/linux/ifaddrs.d +include/dmd/druntime/import/core/sys/linux/execinfo.d +include/dmd/druntime/import/core/sys/linux/sched.d +include/dmd/druntime/import/core/sys/linux/link.d +include/dmd/druntime/import/core/sys/linux/termios.d +include/dmd/druntime/import/core/sys/linux/time.d +include/dmd/druntime/import/core/sys/linux/tipc.d +include/dmd/druntime/import/core/sys/linux/unistd.d +include/dmd/druntime/import/core/sys/linux/timerfd.d +include/dmd/druntime/import/core/sys/linux/netinet/tcp.d +include/dmd/druntime/import/core/sys/linux/netinet/in_.d +include/dmd/druntime/import/core/sys/linux/sys/netinet/tcp.d +include/dmd/druntime/import/core/sys/linux/sys/eventfd.d +include/dmd/druntime/import/core/sys/linux/sys/auxv.d +include/dmd/druntime/import/core/sys/linux/sys/file.d +include/dmd/druntime/import/core/sys/linux/sys/signalfd.d +include/dmd/druntime/import/core/sys/linux/sys/mman.d +include/dmd/druntime/import/core/sys/linux/sys/socket.d +include/dmd/druntime/import/core/sys/linux/sys/inotify.d +include/dmd/druntime/import/core/sys/linux/sys/sysinfo.d +include/dmd/druntime/import/core/sys/linux/sys/xattr.d +include/dmd/druntime/import/core/sys/linux/sys/time.d +include/dmd/druntime/import/core/sys/linux/sys/prctl.d +include/dmd/druntime/import/core/sys/openbsd/dlfcn.d +include/dmd/druntime/import/core/sys/posix/arpa/inet.d +include/dmd/druntime/import/core/sys/posix/aio.d +include/dmd/druntime/import/core/sys/posix/config.d +include/dmd/druntime/import/core/sys/posix/dirent.d +include/dmd/druntime/import/core/sys/posix/fcntl.d +include/dmd/druntime/import/core/sys/posix/dlfcn.d +include/dmd/druntime/import/core/sys/posix/grp.d +include/dmd/druntime/import/core/sys/posix/iconv.d +include/dmd/druntime/import/core/sys/posix/libgen.d +include/dmd/druntime/import/core/sys/posix/inttypes.d +include/dmd/druntime/import/core/sys/posix/netdb.d +include/dmd/druntime/import/core/sys/posix/poll.d +include/dmd/druntime/import/core/sys/posix/pthread.d +include/dmd/druntime/import/core/sys/posix/pwd.d +include/dmd/druntime/import/core/sys/posix/sched.d +include/dmd/druntime/import/core/sys/posix/semaphore.d +include/dmd/druntime/import/core/sys/posix/setjmp.d +include/dmd/druntime/import/core/sys/posix/signal.d +include/dmd/druntime/import/core/sys/posix/spawn.d +include/dmd/druntime/import/core/sys/posix/stdio.d +include/dmd/druntime/import/core/sys/posix/stdlib.d +include/dmd/druntime/import/core/sys/posix/termios.d +include/dmd/druntime/import/core/sys/posix/syslog.d +include/dmd/druntime/import/core/sys/posix/time.d +include/dmd/druntime/import/core/sys/posix/ucontext.d +include/dmd/druntime/import/core/sys/posix/net/if_.d +include/dmd/druntime/import/core/sys/posix/utime.d +include/dmd/druntime/import/core/sys/posix/sys/filio.d +include/dmd/druntime/import/core/sys/posix/sys/ioccom.d +include/dmd/druntime/import/core/sys/posix/sys/mman.d +include/dmd/druntime/import/core/sys/posix/sys/resource.d +include/dmd/druntime/import/core/sys/posix/sys/ipc.d +include/dmd/druntime/import/core/sys/posix/sys/ioctl.d +include/dmd/druntime/import/core/sys/posix/sys/select.d +include/dmd/druntime/import/core/sys/posix/sys/stat.d +include/dmd/druntime/import/core/sys/posix/sys/socket.d +include/dmd/druntime/import/core/sys/posix/sys/shm.d +include/dmd/druntime/import/core/sys/posix/sys/statvfs.d +include/dmd/druntime/import/core/sys/posix/sys/time.d +include/dmd/druntime/import/core/sys/posix/sys/ttycom.d +include/dmd/druntime/import/core/sys/posix/sys/types.d +include/dmd/druntime/import/core/sys/posix/sys/uio.d +include/dmd/druntime/import/core/sys/posix/sys/un.d +include/dmd/druntime/import/core/sys/posix/sys/wait.d +include/dmd/druntime/import/core/sys/posix/sys/utsname.d +include/dmd/druntime/import/core/sys/posix/netinet/in_.d +include/dmd/druntime/import/core/sys/posix/netinet/tcp.d +include/dmd/druntime/import/core/sys/posix/unistd.d +include/dmd/druntime/import/core/sys/solaris/elf.d +include/dmd/druntime/import/core/sys/solaris/dlfcn.d +include/dmd/druntime/import/core/sys/solaris/libelf.d +include/dmd/druntime/import/core/sys/solaris/execinfo.d +include/dmd/druntime/import/core/sys/solaris/sys/elf.d +include/dmd/druntime/import/core/sys/solaris/sys/elf_386.d +include/dmd/druntime/import/core/sys/solaris/sys/elf_amd64.d +include/dmd/druntime/import/core/sys/solaris/sys/elf_notes.d +include/dmd/druntime/import/core/sys/solaris/sys/elf_SPARC.d +include/dmd/druntime/import/core/sys/solaris/sys/elftypes.d +include/dmd/druntime/import/core/sys/solaris/sys/procset.d +include/dmd/druntime/import/core/sys/solaris/sys/types.d +include/dmd/druntime/import/core/sys/solaris/sys/link.d +include/dmd/druntime/import/core/sys/solaris/sys/priocntl.d +include/dmd/druntime/import/core/sys/solaris/link.d +include/dmd/druntime/import/core/sys/solaris/time.d +include/dmd/druntime/import/core/sys/windows/accctrl.d +include/dmd/druntime/import/core/sys/windows/aclapi.d +include/dmd/druntime/import/core/sys/windows/aclui.d +include/dmd/druntime/import/core/sys/windows/basetsd.d +include/dmd/druntime/import/core/sys/windows/basetyps.d +include/dmd/druntime/import/core/sys/windows/com.d +include/dmd/druntime/import/core/sys/windows/cderr.d +include/dmd/druntime/import/core/sys/windows/cguid.d +include/dmd/druntime/import/core/sys/windows/comcat.d +include/dmd/druntime/import/core/sys/windows/core.d +include/dmd/druntime/import/core/sys/windows/commdlg.d +include/dmd/druntime/import/core/sys/windows/cpl.d +include/dmd/druntime/import/core/sys/windows/commctrl.d +include/dmd/druntime/import/core/sys/windows/cplext.d +include/dmd/druntime/import/core/sys/windows/custcntl.d +include/dmd/druntime/import/core/sys/windows/dbghelp.d +include/dmd/druntime/import/core/sys/windows/dbghelp_types.d +include/dmd/druntime/import/core/sys/windows/dbt.d +include/dmd/druntime/import/core/sys/windows/dde.d +include/dmd/druntime/import/core/sys/windows/ddeml.d +include/dmd/druntime/import/core/sys/windows/dhcpcsdk.d +include/dmd/druntime/import/core/sys/windows/dlgs.d +include/dmd/druntime/import/core/sys/windows/dll.d +include/dmd/druntime/import/core/sys/windows/exdispid.d +include/dmd/druntime/import/core/sys/windows/exdisp.d +include/dmd/druntime/import/core/sys/windows/docobj.d +include/dmd/druntime/import/core/sys/windows/errorrep.d +include/dmd/druntime/import/core/sys/windows/idispids.d +include/dmd/druntime/import/core/sys/windows/httpext.d +include/dmd/druntime/import/core/sys/windows/imagehlp.d +include/dmd/druntime/import/core/sys/windows/imm.d +include/dmd/druntime/import/core/sys/windows/intshcut.d +include/dmd/druntime/import/core/sys/windows/ipexport.d +include/dmd/druntime/import/core/sys/windows/iphlpapi.d +include/dmd/druntime/import/core/sys/windows/ipifcons.d +include/dmd/druntime/import/core/sys/windows/iptypes.d +include/dmd/druntime/import/core/sys/windows/iprtrmib.d +include/dmd/druntime/import/core/sys/windows/isguids.d +include/dmd/druntime/import/core/sys/windows/lmaccess.d +include/dmd/druntime/import/core/sys/windows/lmalert.d +include/dmd/druntime/import/core/sys/windows/lm.d +include/dmd/druntime/import/core/sys/windows/lmapibuf.d +include/dmd/druntime/import/core/sys/windows/lmat.d +include/dmd/druntime/import/core/sys/windows/lmaudit.d +include/dmd/druntime/import/core/sys/windows/lmbrowsr.d +include/dmd/druntime/import/core/sys/windows/lmcons.d +include/dmd/druntime/import/core/sys/windows/lmerr.d +include/dmd/druntime/import/core/sys/windows/lmconfig.d +include/dmd/druntime/import/core/sys/windows/lmerrlog.d +include/dmd/druntime/import/core/sys/windows/lmmsg.d +include/dmd/druntime/import/core/sys/windows/lmchdev.d +include/dmd/druntime/import/core/sys/windows/lmremutl.d +include/dmd/druntime/import/core/sys/windows/lmrepl.d +include/dmd/druntime/import/core/sys/windows/lmserver.d +include/dmd/druntime/import/core/sys/windows/lmshare.d +include/dmd/druntime/import/core/sys/windows/lmsname.d +include/dmd/druntime/import/core/sys/windows/lmuse.d +include/dmd/druntime/import/core/sys/windows/lmstats.d +include/dmd/druntime/import/core/sys/windows/lmsvc.d +include/dmd/druntime/import/core/sys/windows/lmwksta.d +include/dmd/druntime/import/core/sys/windows/lmuseflg.d +include/dmd/druntime/import/core/sys/windows/mapi.d +include/dmd/druntime/import/core/sys/windows/lzexpand.d +include/dmd/druntime/import/core/sys/windows/mciavi.d +include/dmd/druntime/import/core/sys/windows/mcx.d +include/dmd/druntime/import/core/sys/windows/mgmtapi.d +include/dmd/druntime/import/core/sys/windows/mmsystem.d +include/dmd/druntime/import/core/sys/windows/mshtml.d +include/dmd/druntime/import/core/sys/windows/msacm.d +include/dmd/druntime/import/core/sys/windows/mswsock.d +include/dmd/druntime/import/core/sys/windows/nb30.d +include/dmd/druntime/import/core/sys/windows/nspapi.d +include/dmd/druntime/import/core/sys/windows/nddeapi.d +include/dmd/druntime/import/core/sys/windows/ntdll.d +include/dmd/druntime/import/core/sys/windows/ntldap.d +include/dmd/druntime/import/core/sys/windows/ntdef.d +include/dmd/druntime/import/core/sys/windows/ntsecapi.d +include/dmd/druntime/import/core/sys/windows/ntsecpkg.d +include/dmd/druntime/import/core/sys/windows/oaidl.d +include/dmd/druntime/import/core/sys/windows/objbase.d +include/dmd/druntime/import/core/sys/windows/objfwd.d +include/dmd/druntime/import/core/sys/windows/objsafe.d +include/dmd/druntime/import/core/sys/windows/objidl.d +include/dmd/druntime/import/core/sys/windows/odbcinst.d +include/dmd/druntime/import/core/sys/windows/ole2.d +include/dmd/druntime/import/core/sys/windows/ole2ver.d +include/dmd/druntime/import/core/sys/windows/ocidl.d +include/dmd/druntime/import/core/sys/windows/ole.d +include/dmd/druntime/import/core/sys/windows/oleauto.d +include/dmd/druntime/import/core/sys/windows/olectl.d +include/dmd/druntime/import/core/sys/windows/olectlid.d +include/dmd/druntime/import/core/sys/windows/oledlg.d +include/dmd/druntime/import/core/sys/windows/oleacc.d +include/dmd/druntime/import/core/sys/windows/oleidl.d +include/dmd/druntime/import/core/sys/windows/pbt.d +include/dmd/druntime/import/core/sys/windows/prsht.d +include/dmd/druntime/import/core/sys/windows/psapi.d +include/dmd/druntime/import/core/sys/windows/powrprof.d +include/dmd/druntime/import/core/sys/windows/ras.d +include/dmd/druntime/import/core/sys/windows/rasdlg.d +include/dmd/druntime/import/core/sys/windows/rapi.d +include/dmd/druntime/import/core/sys/windows/raserror.d +include/dmd/druntime/import/core/sys/windows/reason.d +include/dmd/druntime/import/core/sys/windows/regstr.d +include/dmd/druntime/import/core/sys/windows/richedit.d +include/dmd/druntime/import/core/sys/windows/rassapi.d +include/dmd/druntime/import/core/sys/windows/richole.d +include/dmd/druntime/import/core/sys/windows/rpc.d +include/dmd/druntime/import/core/sys/windows/rpcdce.d +include/dmd/druntime/import/core/sys/windows/rpcdcep.d +include/dmd/druntime/import/core/sys/windows/rpcdce2.d +include/dmd/druntime/import/core/sys/windows/rpcnsi.d +include/dmd/druntime/import/core/sys/windows/rpcndr.d +include/dmd/druntime/import/core/sys/windows/rpcnsip.d +include/dmd/druntime/import/core/sys/windows/rpcnterr.d +include/dmd/druntime/import/core/sys/windows/schannel.d +include/dmd/druntime/import/core/sys/windows/secext.d +include/dmd/druntime/import/core/sys/windows/servprov.d +include/dmd/druntime/import/core/sys/windows/setupapi.d +include/dmd/druntime/import/core/sys/windows/security.d +include/dmd/druntime/import/core/sys/windows/shldisp.d +include/dmd/druntime/import/core/sys/windows/shellapi.d +include/dmd/druntime/import/core/sys/windows/shlguid.d +include/dmd/druntime/import/core/sys/windows/shlwapi.d +include/dmd/druntime/import/core/sys/windows/shlobj.d +include/dmd/druntime/import/core/sys/windows/snmp.d +include/dmd/druntime/import/core/sys/windows/sqlext.d +include/dmd/druntime/import/core/sys/windows/sqltypes.d +include/dmd/druntime/import/core/sys/windows/sql.d +include/dmd/druntime/import/core/sys/windows/sspi.d +include/dmd/druntime/import/core/sys/windows/sqlucode.d +include/dmd/druntime/import/core/sys/windows/stacktrace.d +include/dmd/druntime/import/core/sys/windows/stat.d +include/dmd/druntime/import/core/sys/windows/subauth.d +include/dmd/druntime/import/core/sys/windows/threadaux.d +include/dmd/druntime/import/core/sys/windows/tlhelp32.d +include/dmd/druntime/import/core/sys/windows/tmschema.d +include/dmd/druntime/import/core/sys/windows/unknwn.d +include/dmd/druntime/import/core/sys/windows/vfw.d +include/dmd/druntime/import/core/sys/windows/uuid.d +include/dmd/druntime/import/core/sys/windows/w32api.d +include/dmd/druntime/import/core/sys/windows/winber.d +include/dmd/druntime/import/core/sys/windows/winbase.d +include/dmd/druntime/import/core/sys/windows/windef.d +include/dmd/druntime/import/core/sys/windows/wincon.d +include/dmd/druntime/import/core/sys/windows/wincrypt.d +include/dmd/druntime/import/core/sys/windows/windows.d +include/dmd/druntime/import/core/sys/windows/winerror.d +include/dmd/druntime/import/core/sys/windows/wingdi.d +include/dmd/druntime/import/core/sys/windows/winhttp.d +include/dmd/druntime/import/core/sys/windows/winldap.d +include/dmd/druntime/import/core/sys/windows/winioctl.d +include/dmd/druntime/import/core/sys/windows/wininet.d +include/dmd/druntime/import/core/sys/windows/winnt.d +include/dmd/druntime/import/core/sys/windows/winnls.d +include/dmd/druntime/import/core/sys/windows/winnetwk.d +include/dmd/druntime/import/core/sys/windows/winperf.d +include/dmd/druntime/import/core/sys/windows/winreg.d +include/dmd/druntime/import/core/sys/windows/winsock2.d +include/dmd/druntime/import/core/sys/windows/winspool.d +include/dmd/druntime/import/core/sys/windows/winuser.d +include/dmd/druntime/import/core/sys/windows/winver.d +include/dmd/druntime/import/core/sys/windows/winsvc.d +include/dmd/druntime/import/core/sys/windows/wtsapi32.d +include/dmd/druntime/import/core/sys/windows/wtypes.d +include/dmd/druntime/import/object.d +include/dmd/druntime/import/etc/linux/memoryerror.d +include/dmd/phobos/std/algorithm/comparison.d +include/dmd/phobos/std/algorithm/internal.d +include/dmd/phobos/std/algorithm/iteration.d +include/dmd/phobos/std/algorithm/mutation.d +include/dmd/phobos/std/algorithm/package.d +include/dmd/phobos/std/algorithm/searching.d +include/dmd/phobos/std/algorithm/setops.d +include/dmd/phobos/std/algorithm/sorting.d +include/dmd/phobos/std/array.d +include/dmd/phobos/std/ascii.d +include/dmd/phobos/std/base64.d +include/dmd/phobos/std/bigint.d +include/dmd/phobos/std/bitmanip.d +include/dmd/phobos/std/compiler.d +include/dmd/phobos/std/complex.d +include/dmd/phobos/std/concurrency.d +include/dmd/phobos/std/container/array.d +include/dmd/phobos/std/container/binaryheap.d +include/dmd/phobos/std/container/dlist.d +include/dmd/phobos/std/container/package.d +include/dmd/phobos/std/container/rbtree.d +include/dmd/phobos/std/container/slist.d +include/dmd/phobos/std/container/util.d +include/dmd/phobos/std/conv.d +include/dmd/phobos/std/csv.d +include/dmd/phobos/std/datetime/date.d +include/dmd/phobos/std/datetime/interval.d +include/dmd/phobos/std/datetime/package.d +include/dmd/phobos/std/datetime/stopwatch.d +include/dmd/phobos/std/datetime/systime.d +include/dmd/phobos/std/datetime/timezone.d +include/dmd/phobos/std/demangle.d +include/dmd/phobos/std/digest/crc.d +include/dmd/phobos/std/digest/digest.d +include/dmd/phobos/std/digest/hmac.d +include/dmd/phobos/std/digest/md.d +include/dmd/phobos/std/digest/murmurhash.d +include/dmd/phobos/std/digest/package.d +include/dmd/phobos/std/digest/ripemd.d +include/dmd/phobos/std/digest/sha.d +include/dmd/phobos/std/encoding.d +include/dmd/phobos/std/exception.d +include/dmd/phobos/std/experimental/all.d +include/dmd/phobos/std/experimental/allocator/building_blocks/affix_allocator.d +include/dmd/phobos/std/experimental/allocator/building_blocks/aligned_block_list.d +include/dmd/phobos/std/experimental/allocator/building_blocks/allocator_list.d +include/dmd/phobos/std/experimental/allocator/building_blocks/ascending_page_allocator.d +include/dmd/phobos/std/experimental/allocator/building_blocks/bitmapped_block.d +include/dmd/phobos/std/experimental/allocator/building_blocks/bucketizer.d +include/dmd/phobos/std/experimental/allocator/building_blocks/fallback_allocator.d +include/dmd/phobos/std/experimental/allocator/building_blocks/free_list.d +include/dmd/phobos/std/experimental/allocator/building_blocks/free_tree.d +include/dmd/phobos/std/experimental/allocator/building_blocks/kernighan_ritchie.d +include/dmd/phobos/std/experimental/allocator/building_blocks/null_allocator.d +include/dmd/phobos/std/experimental/allocator/building_blocks/package.d +include/dmd/phobos/std/experimental/allocator/building_blocks/quantizer.d +include/dmd/phobos/std/experimental/allocator/building_blocks/region.d +include/dmd/phobos/std/experimental/allocator/building_blocks/scoped_allocator.d +include/dmd/phobos/std/experimental/allocator/building_blocks/segregator.d +include/dmd/phobos/std/experimental/allocator/building_blocks/stats_collector.d +include/dmd/phobos/std/experimental/allocator/common.d +include/dmd/phobos/std/experimental/allocator/gc_allocator.d +include/dmd/phobos/std/experimental/allocator/mallocator.d +include/dmd/phobos/std/experimental/allocator/mmap_allocator.d +include/dmd/phobos/std/experimental/allocator/package.d +include/dmd/phobos/std/experimental/allocator/showcase.d +include/dmd/phobos/std/experimental/allocator/typed.d +include/dmd/phobos/std/experimental/checkedint.d +include/dmd/phobos/std/experimental/logger/core.d +include/dmd/phobos/std/experimental/logger/filelogger.d +include/dmd/phobos/std/experimental/logger/multilogger.d +include/dmd/phobos/std/experimental/logger/nulllogger.d +include/dmd/phobos/std/experimental/logger/package.d +include/dmd/phobos/std/experimental/typecons.d +include/dmd/phobos/std/file.d +include/dmd/phobos/std/format.d +include/dmd/phobos/std/functional.d +include/dmd/phobos/std/getopt.d +include/dmd/phobos/std/internal/attributes.d +include/dmd/phobos/std/internal/cstring.d +include/dmd/phobos/std/internal/digest/sha_SSSE3.d +include/dmd/phobos/std/internal/math/biguintcore.d +include/dmd/phobos/std/internal/math/biguintnoasm.d +include/dmd/phobos/std/internal/math/biguintx86.d +include/dmd/phobos/std/internal/math/errorfunction.d +include/dmd/phobos/std/internal/math/gammafunction.d +include/dmd/phobos/std/internal/memory.d +include/dmd/phobos/std/internal/scopebuffer.d +include/dmd/phobos/std/internal/test/dummyrange.d +include/dmd/phobos/std/internal/test/range.d +include/dmd/phobos/std/internal/test/uda.d +include/dmd/phobos/std/internal/unicode_comp.d +include/dmd/phobos/std/internal/unicode_decomp.d +include/dmd/phobos/std/internal/unicode_grapheme.d +include/dmd/phobos/std/internal/unicode_norm.d +include/dmd/phobos/std/internal/unicode_tables.d +include/dmd/phobos/std/internal/windows/advapi32.d +include/dmd/phobos/std/json.d +include/dmd/phobos/std/math.d +include/dmd/phobos/std/mathspecial.d +include/dmd/phobos/std/meta.d +include/dmd/phobos/std/mmfile.d +include/dmd/phobos/std/net/curl.d +include/dmd/phobos/std/net/isemail.d +include/dmd/phobos/std/numeric.d +include/dmd/phobos/std/outbuffer.d +include/dmd/phobos/std/package.d +include/dmd/phobos/std/parallelism.d +include/dmd/phobos/std/path.d +include/dmd/phobos/std/process.d +include/dmd/phobos/std/random.d +include/dmd/phobos/std/range/interfaces.d +include/dmd/phobos/std/range/package.d +include/dmd/phobos/std/range/primitives.d +include/dmd/phobos/std/regex/internal/backtracking.d +include/dmd/phobos/std/regex/internal/generator.d +include/dmd/phobos/std/regex/internal/ir.d +include/dmd/phobos/std/regex/internal/kickstart.d +include/dmd/phobos/std/regex/internal/parser.d +include/dmd/phobos/std/regex/internal/tests.d +include/dmd/phobos/std/regex/internal/tests2.d +include/dmd/phobos/std/regex/internal/thompson.d +include/dmd/phobos/std/regex/package.d +include/dmd/phobos/std/signals.d +include/dmd/phobos/std/socket.d +include/dmd/phobos/std/stdint.d +include/dmd/phobos/std/stdio.d +include/dmd/phobos/std/string.d +include/dmd/phobos/std/system.d +include/dmd/phobos/std/traits.d +include/dmd/phobos/std/typecons.d +include/dmd/phobos/std/typetuple.d +include/dmd/phobos/std/uni.d +include/dmd/phobos/std/uri.d +include/dmd/phobos/std/utf.d +include/dmd/phobos/std/uuid.d +include/dmd/phobos/std/variant.d +include/dmd/phobos/std/windows/charset.d +include/dmd/phobos/std/windows/registry.d +include/dmd/phobos/std/windows/syserror.d +include/dmd/phobos/std/xml.d +include/dmd/phobos/std/zip.d +include/dmd/phobos/std/zlib.d +include/dmd/phobos/etc/c/curl.d +include/dmd/phobos/etc/c/odbc/sql.d +include/dmd/phobos/etc/c/odbc/sqlext.d +include/dmd/phobos/etc/c/odbc/sqltypes.d +include/dmd/phobos/etc/c/odbc/sqlucode.d +include/dmd/phobos/etc/c/sqlite3.d +include/dmd/phobos/etc/c/zlib.d %%PORTDOCS%%%%DOCSDIR%%/.dpl_rewrite_map.txt %%PORTDOCS%%%%DOCSDIR%%/.htaccess %%PORTDOCS%%%%DOCSDIR%%/404.html @@ -872,5 +857,3 @@ %%PORTDOCS%%%%DOCSDIR%%/warnings.html %%PORTDOCS%%%%DOCSDIR%%/wc.html %%PORTDOCS%%%%DOCSDIR%%/windbg.html -man/man1/dmd.1.gz -man/man5/dmd.conf.5.gz