diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2010-08-19 15:39:16 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2010-08-19 15:39:16 +0000 |
commit | 583f002c3fe18f003a6ccd42904c07eba868f751 (patch) | |
tree | 2e4b61d978c9068e72b0befeee6fb3558418731a /lang | |
parent | 20b70dd3fc0735a8e9e6d5924770c2687ab558c9 (diff) |
Notes
Diffstat (limited to 'lang')
-rw-r--r-- | lang/Makefile | 1 | ||||
-rw-r--r-- | lang/ldc-devel/Makefile | 74 | ||||
-rw-r--r-- | lang/ldc-devel/distinfo | 6 | ||||
-rw-r--r-- | lang/ldc-devel/pkg-descr | 15 | ||||
-rw-r--r-- | lang/ldc-devel/pkg-plist | 763 |
5 files changed, 859 insertions, 0 deletions
diff --git a/lang/Makefile b/lang/Makefile index df6d31581de1..e8d0db6de584 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -147,6 +147,7 @@ SUBDIR += klone SUBDIR += kroc SUBDIR += lafontaine + SUBDIR += ldc-devel SUBDIR += libhx SUBDIR += libjit SUBDIR += librep diff --git a/lang/ldc-devel/Makefile b/lang/ldc-devel/Makefile new file mode 100644 index 000000000000..68462e5d6ba2 --- /dev/null +++ b/lang/ldc-devel/Makefile @@ -0,0 +1,74 @@ +# New ports collection makefile for: ldc +# Date created: August 18 2010 +# Whom: Ruben <chromium@hybridsource.org> +# +# $FreeBSD$ +# + +PORTNAME= ldc +DISTVERSION= 0.9.2r1655 +CATEGORIES= lang +MASTER_SITES= http://hybridsource.org/ +PKGNAMESUFFIX= -devel +DISTFILES= ldc-0.9.2r1655.tar.bz2 tango-5525.tar.bz2 + +MAINTAINER= chromium@hybridsource.org +COMMENT= D frontend for llvm, with the Tango standard library + +BUILD_DEPENDS= llvm>=2.7:${PORTSDIR}/devel/llvm +LIB_DEPENDS= config.9:${PORTSDIR}/devel/libconfig + +LICENSE_COMB= multi +LICENSE= BSD ART10 +ONLY_FOR_ARCHS= i386 amd64 +USE_BZIP2= yes +USE_CMAKE= 2.6+ +CXXFLAGS+= -DLLVM_REV=102413 +USE_GMAKE= yes +MAKE_JOBS_SAFE= yes +PORTDOCS= LICENSE readme.txt tango/ + +.include <bsd.port.pre.mk> + +MODULEDIR= ${PREFIX}/include/d/tango + +.if ${ARCH} == i386 +BOB= build/bin/freebsd32/bob +.elif ${ARCH} == amd64 +BOB= build/bin/freebsd64/bob +.else #This won't actually be invoked but I thought I'd show + #the adventurous how to build Tango on other architectures. +BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby18 +BOB= build/script/bob.rb +.endif + +post-build: + cd ${WRKSRC}/../tango && \ + ${SETENV} PATH=${PATH}:${WRKSRC}/bin ./${BOB} -vu -r ldc -c ldc . + @${REINPLACE_CMD} -e "s|${WRKSRC}/../tango|${MODULEDIR}|" \ + -e "s|-user-ldc||" ${WRKSRC}/bin/ldc.conf + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/ldc ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/bin/ldmd ${PREFIX}/bin +.if !exists(${PREFIX}/etc/ldc.conf) + ${INSTALL_DATA} ${WRKSRC}/bin/ldc.conf ${PREFIX}/etc +.endif + ${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/bin/ldc.conf ${EXAMPLESDIR} + cd ${WRKSRC} && ${COPYTREE_SHARE} demos ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/../tango/libtango.a ${PREFIX}/lib + ${MKDIR} ${MODULEDIR} + ${INSTALL_DATA} ${WRKSRC}/../tango/object.di ${MODULEDIR} + cd ${WRKSRC}/../tango && ${COPYTREE_SHARE} tango ${MODULEDIR} +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR} + ${MKDIR} ${DOCSDIR}/tango + ${INSTALL_DATA} ${WRKSRC}/../tango/LICENSE.txt ${DOCSDIR}/tango + ${INSTALL_DATA} ${WRKSRC}/../tango/README.txt ${DOCSDIR}/tango + cd ${WRKSRC}/../tango && ${COPYTREE_SHARE} doc ${DOCSDIR}/tango +.endif + +.include <bsd.port.post.mk> diff --git a/lang/ldc-devel/distinfo b/lang/ldc-devel/distinfo new file mode 100644 index 000000000000..e258afa0b5e5 --- /dev/null +++ b/lang/ldc-devel/distinfo @@ -0,0 +1,6 @@ +MD5 (ldc-0.9.2r1655.tar.bz2) = 26cefa4ad0329634662a3e86dd875df7 +SHA256 (ldc-0.9.2r1655.tar.bz2) = a90880c52e9d51612726c692872cc1ba48d05b750aeabec7872d94d9f3ecc40f +SIZE (ldc-0.9.2r1655.tar.bz2) = 1246512 +MD5 (tango-5525.tar.bz2) = 8047ba08103313ea2d4bf937db14be25 +SHA256 (tango-5525.tar.bz2) = 3804b50945f1d64ee772bb8a0e0c4f89bab1a51157e67df17791f8bdd86a50f9 +SIZE (tango-5525.tar.bz2) = 3025710 diff --git a/lang/ldc-devel/pkg-descr b/lang/ldc-devel/pkg-descr new file mode 100644 index 000000000000..109c7d4ec2bc --- /dev/null +++ b/lang/ldc-devel/pkg-descr @@ -0,0 +1,15 @@ +LDC is a compiler for the D programming Language. It is based on the DMD +frontend and uses LLVM as the backend. LLVM provides a fast and modern backend +for high quality code generation. LDC is released under a BSD license with +exceptions for the DMD frontend and code from GDC. + +The development takes place mostly on x86-32 and x86-64 Linux and that is where +LDC works best. Support for other platforms and architectures is under +development, but we are still looking for people to help test and adjust LDC +for those platforms! + +LDC already compiles a lot of D code, but should still be considered beta +quality. Take a look at the tickets to get a better impression of what still +needs to be implemented. + +WWW: http://www.dsource.org/projects/ldc diff --git a/lang/ldc-devel/pkg-plist b/lang/ldc-devel/pkg-plist new file mode 100644 index 000000000000..a6ee9bf52bdc --- /dev/null +++ b/lang/ldc-devel/pkg-plist @@ -0,0 +1,763 @@ +bin/ldc +bin/ldmd +%%EXAMPLESDIR%%/demos/gl.d +%%EXAMPLESDIR%%/demos/glfuncs.d +%%EXAMPLESDIR%%/demos/gltypes.d +%%EXAMPLESDIR%%/demos/qd.d +%%EXAMPLESDIR%%/demos/qd1.d +%%EXAMPLESDIR%%/demos/ray.cpp +%%EXAMPLESDIR%%/demos/ray.d +%%EXAMPLESDIR%%/demos/readme.txt +%%EXAMPLESDIR%%/demos/sdl.d +%%EXAMPLESDIR%%/demos/sdldemo1.d +@unexec if cmp -s %D/%%EXAMPLESDIR%%/ldc.conf %D/etc/ldc.conf; then rm -f %D/etc/ldc.conf; fi +%%EXAMPLESDIR%%/ldc.conf +@exec if [ ! -f %D/etc/ldc.conf ]; then cp -p %D/%%EXAMPLESDIR%%/ldc.conf %D/etc/ldc.conf; fi +lib/libtango.a +include/d/tango/object.di +include/d/tango/tango/core/Array.d +include/d/tango/tango/core/Atomic.d +include/d/tango/tango/core/BitArray.d +include/d/tango/tango/core/BitManip.d +include/d/tango/tango/core/ByteSwap.d +include/d/tango/tango/core/Exception.d +include/d/tango/tango/core/Memory.d +include/d/tango/tango/core/Runtime.d +include/d/tango/tango/core/RuntimeTraits.d +include/d/tango/tango/core/Signal.d +include/d/tango/tango/core/Thread.d +include/d/tango/tango/core/ThreadPool.d +include/d/tango/tango/core/Traits.d +include/d/tango/tango/core/Tuple.d +include/d/tango/tango/core/Vararg.d +include/d/tango/tango/core/Variant.d +include/d/tango/tango/core/Version.d +include/d/tango/tango/core/WeakRef.d +include/d/tango/tango/core/rt/compiler/dmd/OBJDEFS.inc +include/d/tango/tango/core/rt/compiler/dmd/OBJECTDEFS.inc +include/d/tango/tango/core/rt/compiler/dmd/OBJECTDEFS_WIN.inc +include/d/tango/tango/core/rt/compiler/dmd/cConst.c +include/d/tango/tango/core/rt/compiler/dmd/complex.c +include/d/tango/tango/core/rt/compiler/dmd/critical.c +include/d/tango/tango/core/rt/compiler/dmd/darwin/Image.d +include/d/tango/tango/core/rt/compiler/dmd/darwin/dyld.d +include/d/tango/tango/core/rt/compiler/dmd/darwin/dynamic_lib_fixes.c +include/d/tango/tango/core/rt/compiler/dmd/darwin/getsect.d +include/d/tango/tango/core/rt/compiler/dmd/darwin/loader.d +include/d/tango/tango/core/rt/compiler/dmd/gcosx.c +include/d/tango/tango/core/rt/compiler/dmd/ignore.d +include/d/tango/tango/core/rt/compiler/dmd/invariant.d +include/d/tango/tango/core/rt/compiler/dmd/mars.h +include/d/tango/tango/core/rt/compiler/dmd/minit.asm +include/d/tango/tango/core/rt/compiler/dmd/minit.obj +include/d/tango/tango/core/rt/compiler/dmd/monitor.c +include/d/tango/tango/core/rt/compiler/dmd/object_.d +include/d/tango/tango/core/rt/compiler/dmd/posix.mak +include/d/tango/tango/core/rt/compiler/dmd/posix/deh.d +include/d/tango/tango/core/rt/compiler/dmd/posix/llmath.d +include/d/tango/tango/core/rt/compiler/dmd/rt/aApply.d +include/d/tango/tango/core/rt/compiler/dmd/rt/aApplyR.d +include/d/tango/tango/core/rt/compiler/dmd/rt/aaA.d +include/d/tango/tango/core/rt/compiler/dmd/rt/adi.d +include/d/tango/tango/core/rt/compiler/dmd/rt/alloca.d +include/d/tango/tango/core/rt/compiler/dmd/rt/arraybyte.d +include/d/tango/tango/core/rt/compiler/dmd/rt/arraycast.d +include/d/tango/tango/core/rt/compiler/dmd/rt/arraycat.d +include/d/tango/tango/core/rt/compiler/dmd/rt/arraydouble.d +include/d/tango/tango/core/rt/compiler/dmd/rt/arrayfloat.d +include/d/tango/tango/core/rt/compiler/dmd/rt/arrayint.d +include/d/tango/tango/core/rt/compiler/dmd/rt/arrayreal.d +include/d/tango/tango/core/rt/compiler/dmd/rt/arrayshort.d +include/d/tango/tango/core/rt/compiler/dmd/rt/cInterface.d +include/d/tango/tango/core/rt/compiler/dmd/rt/cast_.d +include/d/tango/tango/core/rt/compiler/dmd/rt/cmath2.d +include/d/tango/tango/core/rt/compiler/dmd/rt/compiler.d +include/d/tango/tango/core/rt/compiler/dmd/rt/cover.d +include/d/tango/tango/core/rt/compiler/dmd/rt/dmain2.d +include/d/tango/tango/core/rt/compiler/dmd/rt/invariant_.d +include/d/tango/tango/core/rt/compiler/dmd/rt/lifetime.d +include/d/tango/tango/core/rt/compiler/dmd/rt/memory.d +include/d/tango/tango/core/rt/compiler/dmd/rt/memset.d +include/d/tango/tango/core/rt/compiler/dmd/rt/obj.d +include/d/tango/tango/core/rt/compiler/dmd/rt/qsort.d +include/d/tango/tango/core/rt/compiler/dmd/rt/qsort2.alt +include/d/tango/tango/core/rt/compiler/dmd/rt/switch_.d +include/d/tango/tango/core/rt/compiler/dmd/rt/trace.d +include/d/tango/tango/core/rt/compiler/dmd/std/intrinsic.di +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_AC.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Acdouble.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Acfloat.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Acreal.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Adouble.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Afloat.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Ag.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Aint.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Along.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Areal.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_Ashort.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_C.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_byte.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_cdouble.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_cfloat.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_char.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_creal.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_dchar.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_delegate.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_double.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_float.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_idouble.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_ifloat.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_int.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_ireal.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_long.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_ptr.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_real.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_short.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_ubyte.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_uint.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_ulong.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_ushort.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_void.d +include/d/tango/tango/core/rt/compiler/dmd/typeinfo/ti_wchar.d +include/d/tango/tango/core/rt/compiler/dmd/win32.mak +include/d/tango/tango/core/rt/compiler/dmd/windows/deh.c +include/d/tango/tango/core/rt/compiler/gdc/Makefile.am +include/d/tango/tango/core/rt/compiler/gdc/Makefile.in +include/d/tango/tango/core/rt/compiler/gdc/OBJDEFS.inc +include/d/tango/tango/core/rt/compiler/gdc/aApply.d +include/d/tango/tango/core/rt/compiler/gdc/aApplyR.d +include/d/tango/tango/core/rt/compiler/gdc/aaA.d +include/d/tango/tango/core/rt/compiler/gdc/acinclude.m4 +include/d/tango/tango/core/rt/compiler/gdc/aclocal.m4 +include/d/tango/tango/core/rt/compiler/gdc/adi.d +include/d/tango/tango/core/rt/compiler/gdc/arraycast.d +include/d/tango/tango/core/rt/compiler/gdc/arraycat.d +include/d/tango/tango/core/rt/compiler/gdc/cast.d +include/d/tango/tango/core/rt/compiler/gdc/cmain.d +include/d/tango/tango/core/rt/compiler/gdc/cmath2.d +include/d/tango/tango/core/rt/compiler/gdc/compiler.d +include/d/tango/tango/core/rt/compiler/gdc/config.guess +include/d/tango/tango/core/rt/compiler/gdc/config.h.in +include/d/tango/tango/core/rt/compiler/gdc/config.sub +include/d/tango/tango/core/rt/compiler/gdc/config/config-head +include/d/tango/tango/core/rt/compiler/gdc/config/config-mid +include/d/tango/tango/core/rt/compiler/gdc/config/config-tail +include/d/tango/tango/core/rt/compiler/gdc/config/darwin8/frag-gen +include/d/tango/tango/core/rt/compiler/gdc/config/darwin8/frag-math +include/d/tango/tango/core/rt/compiler/gdc/config/darwin8/frag-unix +include/d/tango/tango/core/rt/compiler/gdc/config/darwin9/frag-gen +include/d/tango/tango/core/rt/compiler/gdc/config/darwin9/frag-math +include/d/tango/tango/core/rt/compiler/gdc/config/darwin9/frag-unix +include/d/tango/tango/core/rt/compiler/gdc/config/gen_config1.c +include/d/tango/tango/core/rt/compiler/gdc/config/gen_math.c +include/d/tango/tango/core/rt/compiler/gdc/config/gen_unix.c +include/d/tango/tango/core/rt/compiler/gdc/config/ldfuncs +include/d/tango/tango/core/rt/compiler/gdc/config/ldfuncs-darwin +include/d/tango/tango/core/rt/compiler/gdc/config/ldfuncs-ppclinux +include/d/tango/tango/core/rt/compiler/gdc/config/ldfuncs33 +include/d/tango/tango/core/rt/compiler/gdc/config/makestruct.h +include/d/tango/tango/core/rt/compiler/gdc/config/mingw/frag-gen +include/d/tango/tango/core/rt/compiler/gdc/config/mingw/frag-math +include/d/tango/tango/core/rt/compiler/gdc/config/noldfuncs +include/d/tango/tango/core/rt/compiler/gdc/config/noldfuncs33 +include/d/tango/tango/core/rt/compiler/gdc/config/nosqrtf +include/d/tango/tango/core/rt/compiler/gdc/config/skyos/frag-gen +include/d/tango/tango/core/rt/compiler/gdc/config/skyos/frag-math +include/d/tango/tango/core/rt/compiler/gdc/config/skyos/frag-unix +include/d/tango/tango/core/rt/compiler/gdc/config/sqrtf +include/d/tango/tango/core/rt/compiler/gdc/config/unix-head +include/d/tango/tango/core/rt/compiler/gdc/config/unix-mid +include/d/tango/tango/core/rt/compiler/gdc/configure +include/d/tango/tango/core/rt/compiler/gdc/configure.in +include/d/tango/tango/core/rt/compiler/gdc/critical.c +include/d/tango/tango/core/rt/compiler/gdc/deh.c +include/d/tango/tango/core/rt/compiler/gdc/dgccmain2.d +include/d/tango/tango/core/rt/compiler/gdc/fpmath.d +include/d/tango/tango/core/rt/compiler/gdc/frag-ac.in +include/d/tango/tango/core/rt/compiler/gdc/gcc/aix_float.h +include/d/tango/tango/core/rt/compiler/gdc/gcc/builtins.di +include/d/tango/tango/core/rt/compiler/gdc/gcc/cbridge_fdset.c +include/d/tango/tango/core/rt/compiler/gdc/gcc/cbridge_math.c +include/d/tango/tango/core/rt/compiler/gdc/gcc/cbridge_stdio.c +include/d/tango/tango/core/rt/compiler/gdc/gcc/cbridge_time.c +include/d/tango/tango/core/rt/compiler/gdc/gcc/configext.d +include/d/tango/tango/core/rt/compiler/gdc/gcc/deh.d +include/d/tango/tango/core/rt/compiler/gdc/gcc/fpmath.d +include/d/tango/tango/core/rt/compiler/gdc/gcc/support.d +include/d/tango/tango/core/rt/compiler/gdc/gcc/threadsem.d +include/d/tango/tango/core/rt/compiler/gdc/gcc/unwind.d +include/d/tango/tango/core/rt/compiler/gdc/genobj.d +include/d/tango/tango/core/rt/compiler/gdc/install-sh +include/d/tango/tango/core/rt/compiler/gdc/invariant.d +include/d/tango/tango/core/rt/compiler/gdc/libgdc.spec.in +include/d/tango/tango/core/rt/compiler/gdc/lifetime.d +include/d/tango/tango/core/rt/compiler/gdc/mars.h +include/d/tango/tango/core/rt/compiler/gdc/memory.d +include/d/tango/tango/core/rt/compiler/gdc/memory_dyld.c +include/d/tango/tango/core/rt/compiler/gdc/memory_freebsd.c +include/d/tango/tango/core/rt/compiler/gdc/memset.d +include/d/tango/tango/core/rt/compiler/gdc/minit.asm +include/d/tango/tango/core/rt/compiler/gdc/missing +include/d/tango/tango/core/rt/compiler/gdc/monitor.c +include/d/tango/tango/core/rt/compiler/gdc/obj.d +include/d/tango/tango/core/rt/compiler/gdc/phobos-ver-syms.in +include/d/tango/tango/core/rt/compiler/gdc/qsort2.d +include/d/tango/tango/core/rt/compiler/gdc/qsortg.d +include/d/tango/tango/core/rt/compiler/gdc/rundmain.d +include/d/tango/tango/core/rt/compiler/gdc/std/intrinsic.d +include/d/tango/tango/core/rt/compiler/gdc/switch.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_AC.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Acdouble.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Acfloat.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Acreal.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Adouble.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Afloat.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Ag.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Aint.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Along.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Areal.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_Ashort.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_C.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_byte.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_cdouble.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_cfloat.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_char.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_creal.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_dchar.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_delegate.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_double.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_float.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_idouble.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_ifloat.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_int.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_ireal.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_long.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_ptr.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_real.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_short.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_ubyte.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_uint.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_ulong.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_ushort.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_void.d +include/d/tango/tango/core/rt/compiler/gdc/typeinfo/ti_wchar.d +include/d/tango/tango/core/rt/compiler/ldc/OBJDEFS.inc +include/d/tango/tango/core/rt/compiler/ldc/OBJECTDEFS.inc +include/d/tango/tango/core/rt/compiler/ldc/cConst.c +include/d/tango/tango/core/rt/compiler/ldc/critical.c +include/d/tango/tango/core/rt/compiler/ldc/ldc.mak +include/d/tango/tango/core/rt/compiler/ldc/mars.h +include/d/tango/tango/core/rt/compiler/ldc/monitor.c +include/d/tango/tango/core/rt/compiler/ldc/object_.d +include/d/tango/tango/core/rt/compiler/ldc/rt/aApply.d +include/d/tango/tango/core/rt/compiler/ldc/rt/aApplyR.d +include/d/tango/tango/core/rt/compiler/ldc/rt/aaA.d +include/d/tango/tango/core/rt/compiler/ldc/rt/adi.d +include/d/tango/tango/core/rt/compiler/ldc/rt/arrayInit.d +include/d/tango/tango/core/rt/compiler/ldc/rt/cInterface.d +include/d/tango/tango/core/rt/compiler/ldc/rt/cast_.d +include/d/tango/tango/core/rt/compiler/ldc/rt/dmain2.d +include/d/tango/tango/core/rt/compiler/ldc/rt/eh.d +include/d/tango/tango/core/rt/compiler/ldc/rt/invariant_.d +include/d/tango/tango/core/rt/compiler/ldc/rt/lifetime.d +include/d/tango/tango/core/rt/compiler/ldc/rt/memory.d +include/d/tango/tango/core/rt/compiler/ldc/rt/qsort2.d +include/d/tango/tango/core/rt/compiler/ldc/rt/switch_.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_AC.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Acdouble.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Acfloat.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Acreal.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Adouble.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Afloat.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Ag.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Aint.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Along.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Areal.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_Ashort.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_C.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_byte.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_cdouble.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_cfloat.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_char.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_creal.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_dchar.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_delegate.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_double.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_float.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_idouble.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_ifloat.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_int.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_ireal.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_long.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_ptr.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_real.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_short.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_ubyte.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_uint.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_ulong.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_ushort.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_void.d +include/d/tango/tango/core/rt/compiler/ldc/typeinfo/ti_wchar.d +include/d/tango/tango/core/rt/compiler/util/OBJDEFS.inc +include/d/tango/tango/core/rt/compiler/util/ThreadASM.S +include/d/tango/tango/core/rt/compiler/util/console.d +include/d/tango/tango/core/rt/compiler/util/cpuid.d +include/d/tango/tango/core/rt/compiler/util/ctype.d +include/d/tango/tango/core/rt/compiler/util/hash.d +include/d/tango/tango/core/rt/compiler/util/string.d +include/d/tango/tango/core/rt/compiler/util/utf.d +include/d/tango/tango/core/rt/compiler/util/wrap.c +include/d/tango/tango/core/rt/gc/basic/OBJDEFS.inc +include/d/tango/tango/core/rt/gc/basic/gc.d +include/d/tango/tango/core/rt/gc/basic/gcalloc.d +include/d/tango/tango/core/rt/gc/basic/gcbits.d +include/d/tango/tango/core/rt/gc/basic/gcstats.d +include/d/tango/tango/core/rt/gc/basic/gcx.d +include/d/tango/tango/core/rt/gc/basic/ldc.mak +include/d/tango/tango/core/rt/gc/basic/posix.mak +include/d/tango/tango/core/rt/gc/basic/win32.mak +include/d/tango/tango/core/rt/gc/stub/gc.d +include/d/tango/tango/core/rt/gc/stub/ldc.mak +include/d/tango/tango/core/rt/gc/stub/posix.mak +include/d/tango/tango/core/rt/gc/stub/win32.mak +include/d/tango/tango/core/sync/Atomic.d +include/d/tango/tango/core/sync/Barrier.d +include/d/tango/tango/core/sync/Condition.d +include/d/tango/tango/core/sync/Config.d +include/d/tango/tango/core/sync/Mutex.d +include/d/tango/tango/core/sync/ReadWriteMutex.d +include/d/tango/tango/core/sync/Semaphore.d +include/d/tango/tango/core/tools/Cpuid.d +include/d/tango/tango/core/tools/Demangler.d +include/d/tango/tango/core/tools/LinuxStackTrace.d +include/d/tango/tango/core/tools/StackTrace.d +include/d/tango/tango/core/tools/TraceExceptions.d +include/d/tango/tango/core/tools/WinStackTrace.d +include/d/tango/tango/core/vendor/gdc/c/stdarg.di +include/d/tango/tango/core/vendor/gdc/stdarg.di +include/d/tango/tango/core/vendor/ldc/bitmanip.d +include/d/tango/tango/core/vendor/ldc/cstdarg.di +include/d/tango/tango/core/vendor/ldc/intrinsics.di +include/d/tango/tango/core/vendor/ldc/llvmasm.di +include/d/tango/tango/core/vendor/ldc/vararg.d +include/d/tango/tango/core/vendor/std/intrinsic.di +include/d/tango/tango/io/Console.d +include/d/tango/tango/io/FilePath.d +include/d/tango/tango/io/FileScan.d +include/d/tango/tango/io/FileSystem.d +include/d/tango/tango/io/Path.d +include/d/tango/tango/io/Stdout.d +include/d/tango/tango/io/UnicodeFile.d +include/d/tango/tango/io/device/Array.d +include/d/tango/tango/io/device/BitBucket.d +include/d/tango/tango/io/device/Conduit.d +include/d/tango/tango/io/device/Device.d +include/d/tango/tango/io/device/File.d +include/d/tango/tango/io/device/FileMap.d +include/d/tango/tango/io/device/SerialPort.d +include/d/tango/tango/io/device/TempFile.d +include/d/tango/tango/io/device/ThreadPipe.d +include/d/tango/tango/io/model/IConduit.d +include/d/tango/tango/io/model/IFile.d +include/d/tango/tango/io/selector/AbstractSelector.d +include/d/tango/tango/io/selector/EpollSelector.d +include/d/tango/tango/io/selector/PollSelector.d +include/d/tango/tango/io/selector/SelectSelector.d +include/d/tango/tango/io/selector/Selector.d +include/d/tango/tango/io/selector/SelectorException.d +include/d/tango/tango/io/selector/model/ISelector.d +include/d/tango/tango/io/stream/Buffered.d +include/d/tango/tango/io/stream/Bzip.d +include/d/tango/tango/io/stream/Data.d +include/d/tango/tango/io/stream/DataFile.d +include/d/tango/tango/io/stream/Delimiters.d +include/d/tango/tango/io/stream/Digester.d +include/d/tango/tango/io/stream/Endian.d +include/d/tango/tango/io/stream/Format.d +include/d/tango/tango/io/stream/Greedy.d +include/d/tango/tango/io/stream/Iterator.d +include/d/tango/tango/io/stream/Lines.d +include/d/tango/tango/io/stream/Map.d +include/d/tango/tango/io/stream/Patterns.d +include/d/tango/tango/io/stream/Quotes.d +include/d/tango/tango/io/stream/Snoop.d +include/d/tango/tango/io/stream/Text.d +include/d/tango/tango/io/stream/TextFile.d +include/d/tango/tango/io/stream/Typed.d +include/d/tango/tango/io/stream/Utf.d +include/d/tango/tango/io/stream/Zlib.d +include/d/tango/tango/io/vfs/FileFolder.d +include/d/tango/tango/io/vfs/FtpFolder.d +include/d/tango/tango/io/vfs/LinkedFolder.d +include/d/tango/tango/io/vfs/VirtualFolder.d +include/d/tango/tango/io/vfs/ZipFolder.d +include/d/tango/tango/io/vfs/model/Vfs.d +include/d/tango/tango/math/Bessel.d +include/d/tango/tango/math/BigInt.d +include/d/tango/tango/math/Bracket.d +include/d/tango/tango/math/Elliptic.d +include/d/tango/tango/math/ErrorFunction.d +include/d/tango/tango/math/GammaFunction.d +include/d/tango/tango/math/IEEE.d +include/d/tango/tango/math/Math.d +include/d/tango/tango/math/Probability.d +include/d/tango/tango/math/internal/BignumNoAsm.d +include/d/tango/tango/math/internal/BignumX86.d +include/d/tango/tango/math/internal/BiguintCore.d +include/d/tango/tango/math/random/ExpSource.d +include/d/tango/tango/math/random/Kiss.d +include/d/tango/tango/math/random/NormalSource.d +include/d/tango/tango/math/random/Random.d +include/d/tango/tango/math/random/Twister.d +include/d/tango/tango/math/random/Ziggurat.d +include/d/tango/tango/math/random/engines/ArraySource.d +include/d/tango/tango/math/random/engines/CMWC.d +include/d/tango/tango/math/random/engines/KISS.d +include/d/tango/tango/math/random/engines/KissCmwc.d +include/d/tango/tango/math/random/engines/Sync.d +include/d/tango/tango/math/random/engines/Twister.d +include/d/tango/tango/math/random/engines/URandom.d +include/d/tango/tango/net/InternetAddress.d +include/d/tango/tango/net/Uri.d +include/d/tango/tango/net/device/Berkeley.d +include/d/tango/tango/net/device/Datagram.d +include/d/tango/tango/net/device/LocalSocket.d +include/d/tango/tango/net/device/Multicast.d +include/d/tango/tango/net/device/SSLSocket.d +include/d/tango/tango/net/device/Socket.d +include/d/tango/tango/net/ftp/FtpClient.d +include/d/tango/tango/net/ftp/Telnet.d +include/d/tango/tango/net/http/ChunkStream.d +include/d/tango/tango/net/http/HttpClient.d +include/d/tango/tango/net/http/HttpConst.d +include/d/tango/tango/net/http/HttpCookies.d +include/d/tango/tango/net/http/HttpGet.d +include/d/tango/tango/net/http/HttpHeaders.d +include/d/tango/tango/net/http/HttpParams.d +include/d/tango/tango/net/http/HttpPost.d +include/d/tango/tango/net/http/HttpStack.d +include/d/tango/tango/net/http/HttpTokens.d +include/d/tango/tango/net/http/HttpTriplet.d +include/d/tango/tango/net/http/model/HttpParamsView.d +include/d/tango/tango/net/model/UriView.d +include/d/tango/tango/net/util/MemCache.d +include/d/tango/tango/net/util/PKI.d +include/d/tango/tango/net/util/c/OpenSSL.d +include/d/tango/tango/stdc/complex.d +include/d/tango/tango/stdc/config.d +include/d/tango/tango/stdc/ctype.d +include/d/tango/tango/stdc/errno.d +include/d/tango/tango/stdc/fenv.d +include/d/tango/tango/stdc/inttypes.d +include/d/tango/tango/stdc/limits.d +include/d/tango/tango/stdc/locale.d +include/d/tango/tango/stdc/math.d +include/d/tango/tango/stdc/posix/arpa/inet.d +include/d/tango/tango/stdc/posix/config.d +include/d/tango/tango/stdc/posix/dirent.d +include/d/tango/tango/stdc/posix/dlfcn.d +include/d/tango/tango/stdc/posix/fcntl.d +include/d/tango/tango/stdc/posix/inttypes.d +include/d/tango/tango/stdc/posix/langinfo.d +include/d/tango/tango/stdc/posix/net/if_.d +include/d/tango/tango/stdc/posix/netinet/in_.d +include/d/tango/tango/stdc/posix/netinet/tcp.d +include/d/tango/tango/stdc/posix/poll.d +include/d/tango/tango/stdc/posix/pthread.d +include/d/tango/tango/stdc/posix/pwd.d +include/d/tango/tango/stdc/posix/sched.d +include/d/tango/tango/stdc/posix/semaphore.d +include/d/tango/tango/stdc/posix/setjmp.d +include/d/tango/tango/stdc/posix/signal.d +include/d/tango/tango/stdc/posix/stdio.d +include/d/tango/tango/stdc/posix/stdlib.d +include/d/tango/tango/stdc/posix/sys/ipc.d +include/d/tango/tango/stdc/posix/sys/mman.d +include/d/tango/tango/stdc/posix/sys/select.d +include/d/tango/tango/stdc/posix/sys/shm.d +include/d/tango/tango/stdc/posix/sys/socket.d +include/d/tango/tango/stdc/posix/sys/stat.d +include/d/tango/tango/stdc/posix/sys/statvfs.d +include/d/tango/tango/stdc/posix/sys/time.d +include/d/tango/tango/stdc/posix/sys/types.d +include/d/tango/tango/stdc/posix/sys/uio.d +include/d/tango/tango/stdc/posix/sys/utsname.d +include/d/tango/tango/stdc/posix/sys/wait.d +include/d/tango/tango/stdc/posix/termios.d +include/d/tango/tango/stdc/posix/time.d +include/d/tango/tango/stdc/posix/ucontext.d +include/d/tango/tango/stdc/posix/unistd.d +include/d/tango/tango/stdc/posix/utime.d +include/d/tango/tango/stdc/signal.d +include/d/tango/tango/stdc/stdarg.d +include/d/tango/tango/stdc/stddef.d +include/d/tango/tango/stdc/stdint.d +include/d/tango/tango/stdc/stdio.d +include/d/tango/tango/stdc/stdlib.d +include/d/tango/tango/stdc/string.d +include/d/tango/tango/stdc/stringz.d +include/d/tango/tango/stdc/tgmath.d +include/d/tango/tango/stdc/time.d +include/d/tango/tango/stdc/wctype.d +include/d/tango/tango/sys/Common.d +include/d/tango/tango/sys/Environment.d +include/d/tango/tango/sys/HomeFolder.d +include/d/tango/tango/sys/Pipe.d +include/d/tango/tango/sys/Process.d +include/d/tango/tango/sys/SharedLib.d +include/d/tango/tango/sys/consts/errno.d +include/d/tango/tango/sys/consts/fcntl.d +include/d/tango/tango/sys/consts/socket.d +include/d/tango/tango/sys/consts/sysctl.d +include/d/tango/tango/sys/consts/unistd.d +include/d/tango/tango/sys/darwin/consts/errno.d +include/d/tango/tango/sys/darwin/consts/fcntl.d +include/d/tango/tango/sys/darwin/consts/machine.d +include/d/tango/tango/sys/darwin/consts/socket.d +include/d/tango/tango/sys/darwin/consts/sysctl.d +include/d/tango/tango/sys/darwin/consts/unistd.d +include/d/tango/tango/sys/darwin/darwin.d +include/d/tango/tango/sys/freebsd/consts/errno.d +include/d/tango/tango/sys/freebsd/consts/fcntl.d +include/d/tango/tango/sys/freebsd/consts/socket.d +include/d/tango/tango/sys/freebsd/consts/sysctl.d +include/d/tango/tango/sys/freebsd/consts/unistd.d +include/d/tango/tango/sys/freebsd/freebsd.d +include/d/tango/tango/sys/linux/consts/errno.d +include/d/tango/tango/sys/linux/consts/fcntl.d +include/d/tango/tango/sys/linux/consts/socket.d +include/d/tango/tango/sys/linux/consts/sysctl.d +include/d/tango/tango/sys/linux/consts/unistd.d +include/d/tango/tango/sys/linux/epoll.d +include/d/tango/tango/sys/linux/inotify.d +include/d/tango/tango/sys/linux/linux.d +include/d/tango/tango/sys/linux/tipc.d +include/d/tango/tango/sys/solaris/consts/errno.d +include/d/tango/tango/sys/solaris/consts/fcntl.d +include/d/tango/tango/sys/solaris/consts/socket.d +include/d/tango/tango/sys/solaris/consts/sysctl.d +include/d/tango/tango/sys/solaris/consts/unistd.d +include/d/tango/tango/sys/solaris/solaris.d +include/d/tango/tango/sys/win32/CodePage.d +include/d/tango/tango/sys/win32/IUnknown.d +include/d/tango/tango/sys/win32/Macros.d +include/d/tango/tango/sys/win32/Process.d +include/d/tango/tango/sys/win32/SpecialPath.d +include/d/tango/tango/sys/win32/Types.d +include/d/tango/tango/sys/win32/UserGdi.d +include/d/tango/tango/sys/win32/WsaSock.d +include/d/tango/tango/sys/win32/consts/errno.d +include/d/tango/tango/sys/win32/consts/fcntl.d +include/d/tango/tango/sys/win32/consts/socket.d +include/d/tango/tango/sys/win32/consts/sysctl.d +include/d/tango/tango/sys/win32/consts/unistd.d +include/d/tango/tango/text/Arguments.d +include/d/tango/tango/text/Ascii.d +include/d/tango/tango/text/Regex.d +include/d/tango/tango/text/Search.d +include/d/tango/tango/text/Text.d +include/d/tango/tango/text/Unicode.d +include/d/tango/tango/text/UnicodeData.d +include/d/tango/tango/text/Util.d +include/d/tango/tango/text/convert/DateTime.d +include/d/tango/tango/text/convert/Float.d +include/d/tango/tango/text/convert/Format.d +include/d/tango/tango/text/convert/Integer.d +include/d/tango/tango/text/convert/Layout.d +include/d/tango/tango/text/convert/TimeStamp.d +include/d/tango/tango/text/convert/UnicodeBom.d +include/d/tango/tango/text/convert/Utf.d +include/d/tango/tango/text/json/Json.d +include/d/tango/tango/text/json/JsonEscape.d +include/d/tango/tango/text/json/JsonParser.d +include/d/tango/tango/text/locale/Collation.d +include/d/tango/tango/text/locale/Convert.d +include/d/tango/tango/text/locale/Core.d +include/d/tango/tango/text/locale/Data.d +include/d/tango/tango/text/locale/Locale.d +include/d/tango/tango/text/locale/Parse.d +include/d/tango/tango/text/locale/Posix.d +include/d/tango/tango/text/locale/Win32.d +include/d/tango/tango/text/xml/DocEntity.d +include/d/tango/tango/text/xml/DocPrinter.d +include/d/tango/tango/text/xml/DocTester.d +include/d/tango/tango/text/xml/Document.d +include/d/tango/tango/text/xml/PullParser.d +include/d/tango/tango/text/xml/SaxParser.d +include/d/tango/tango/time/Clock.d +include/d/tango/tango/time/ISO8601.d +include/d/tango/tango/time/StopWatch.d +include/d/tango/tango/time/Time.d +include/d/tango/tango/time/WallClock.d +include/d/tango/tango/time/chrono/Calendar.d +include/d/tango/tango/time/chrono/Gregorian.d +include/d/tango/tango/time/chrono/GregorianBased.d +include/d/tango/tango/time/chrono/Hebrew.d +include/d/tango/tango/time/chrono/Hijri.d +include/d/tango/tango/time/chrono/Japanese.d +include/d/tango/tango/time/chrono/Korean.d +include/d/tango/tango/time/chrono/Taiwan.d +include/d/tango/tango/time/chrono/ThaiBuddhist.d +include/d/tango/tango/util/Convert.d +include/d/tango/tango/util/MinMax.d +include/d/tango/tango/util/cipher/AES.d +include/d/tango/tango/util/cipher/Blowfish.d +include/d/tango/tango/util/cipher/ChaCha.d +include/d/tango/tango/util/cipher/Cipher.d +include/d/tango/tango/util/cipher/RC4.d +include/d/tango/tango/util/cipher/RC6.d +include/d/tango/tango/util/cipher/Salsa20.d +include/d/tango/tango/util/cipher/TEA.d +include/d/tango/tango/util/cipher/XTEA.d +include/d/tango/tango/util/compress/Zip.d +include/d/tango/tango/util/compress/c/bzlib.d +include/d/tango/tango/util/compress/c/zlib.d +include/d/tango/tango/util/container/CircularList.d +include/d/tango/tango/util/container/Clink.d +include/d/tango/tango/util/container/Container.d +include/d/tango/tango/util/container/HashMap.d +include/d/tango/tango/util/container/HashSet.d +include/d/tango/tango/util/container/LinkedList.d +include/d/tango/tango/util/container/RedBlack.d +include/d/tango/tango/util/container/Slink.d +include/d/tango/tango/util/container/SortedMap.d +include/d/tango/tango/util/container/model/IContainer.d +include/d/tango/tango/util/container/more/BitSet.d +include/d/tango/tango/util/container/more/CacheMap.d +include/d/tango/tango/util/container/more/HashFile.d +include/d/tango/tango/util/container/more/Heap.d +include/d/tango/tango/util/container/more/Stack.d +include/d/tango/tango/util/container/more/StackMap.d +include/d/tango/tango/util/container/more/Vector.d +include/d/tango/tango/util/digest/Crc32.d +include/d/tango/tango/util/digest/Digest.d +include/d/tango/tango/util/digest/Md2.d +include/d/tango/tango/util/digest/Md4.d +include/d/tango/tango/util/digest/Md5.d +include/d/tango/tango/util/digest/MerkleDamgard.d +include/d/tango/tango/util/digest/Ripemd128.d +include/d/tango/tango/util/digest/Ripemd160.d +include/d/tango/tango/util/digest/Ripemd256.d +include/d/tango/tango/util/digest/Ripemd320.d +include/d/tango/tango/util/digest/Sha0.d +include/d/tango/tango/util/digest/Sha01.d +include/d/tango/tango/util/digest/Sha1.d +include/d/tango/tango/util/digest/Sha256.d +include/d/tango/tango/util/digest/Sha512.d +include/d/tango/tango/util/digest/Tiger.d +include/d/tango/tango/util/digest/Whirlpool.d +include/d/tango/tango/util/encode/Base16.d +include/d/tango/tango/util/encode/Base32.d +include/d/tango/tango/util/encode/Base64.d +include/d/tango/tango/util/log/AppendConsole.d +include/d/tango/tango/util/log/AppendFile.d +include/d/tango/tango/util/log/AppendFiles.d +include/d/tango/tango/util/log/AppendMail.d +include/d/tango/tango/util/log/AppendSocket.d +include/d/tango/tango/util/log/Config.d +include/d/tango/tango/util/log/ConfigProps.d +include/d/tango/tango/util/log/LayoutChainsaw.d +include/d/tango/tango/util/log/LayoutDate.d +include/d/tango/tango/util/log/Log.d +include/d/tango/tango/util/log/Trace.d +include/d/tango/tango/util/log/model/ILogger.d +include/d/tango/tango/util/uuid/NamespaceGenV3.d +include/d/tango/tango/util/uuid/NamespaceGenV5.d +include/d/tango/tango/util/uuid/RandomGen.d +include/d/tango/tango/util/uuid/Uuid.d +@dirrm %%EXAMPLESDIR%%/demos +@dirrm %%EXAMPLESDIR%% +@dirrm include/d/tango/tango/util/uuid +@dirrm include/d/tango/tango/util/log/model +@dirrm include/d/tango/tango/util/log +@dirrm include/d/tango/tango/util/encode +@dirrm include/d/tango/tango/util/digest +@dirrm include/d/tango/tango/util/container/more +@dirrm include/d/tango/tango/util/container/model +@dirrm include/d/tango/tango/util/container +@dirrm include/d/tango/tango/util/compress/c +@dirrm include/d/tango/tango/util/compress +@dirrm include/d/tango/tango/util/cipher +@dirrm include/d/tango/tango/util +@dirrm include/d/tango/tango/time/chrono +@dirrm include/d/tango/tango/time +@dirrm include/d/tango/tango/text/xml +@dirrm include/d/tango/tango/text/locale +@dirrm include/d/tango/tango/text/json +@dirrm include/d/tango/tango/text/convert +@dirrm include/d/tango/tango/text +@dirrm include/d/tango/tango/sys/win32/consts +@dirrm include/d/tango/tango/sys/win32 +@dirrm include/d/tango/tango/sys/solaris/consts +@dirrm include/d/tango/tango/sys/solaris +@dirrm include/d/tango/tango/sys/linux/consts +@dirrm include/d/tango/tango/sys/linux +@dirrm include/d/tango/tango/sys/freebsd/consts +@dirrm include/d/tango/tango/sys/freebsd +@dirrm include/d/tango/tango/sys/darwin/consts +@dirrm include/d/tango/tango/sys/darwin +@dirrm include/d/tango/tango/sys/consts +@dirrm include/d/tango/tango/sys +@dirrm include/d/tango/tango/stdc/posix/sys +@dirrm include/d/tango/tango/stdc/posix/netinet +@dirrm include/d/tango/tango/stdc/posix/net +@dirrm include/d/tango/tango/stdc/posix/arpa +@dirrm include/d/tango/tango/stdc/posix +@dirrm include/d/tango/tango/stdc +@dirrm include/d/tango/tango/net/util/c +@dirrm include/d/tango/tango/net/util +@dirrm include/d/tango/tango/net/model +@dirrm include/d/tango/tango/net/http/model +@dirrm include/d/tango/tango/net/http +@dirrm include/d/tango/tango/net/ftp +@dirrm include/d/tango/tango/net/device +@dirrm include/d/tango/tango/net +@dirrm include/d/tango/tango/math/random/engines +@dirrm include/d/tango/tango/math/random +@dirrm include/d/tango/tango/math/internal +@dirrm include/d/tango/tango/math +@dirrm include/d/tango/tango/io/vfs/model +@dirrm include/d/tango/tango/io/vfs +@dirrm include/d/tango/tango/io/stream +@dirrm include/d/tango/tango/io/selector/model +@dirrm include/d/tango/tango/io/selector +@dirrm include/d/tango/tango/io/model +@dirrm include/d/tango/tango/io/device +@dirrm include/d/tango/tango/io +@dirrm include/d/tango/tango/core/vendor/std +@dirrm include/d/tango/tango/core/vendor/ldc +@dirrm include/d/tango/tango/core/vendor/gdc/c +@dirrm include/d/tango/tango/core/vendor/gdc +@dirrm include/d/tango/tango/core/vendor +@dirrm include/d/tango/tango/core/tools +@dirrm include/d/tango/tango/core/sync +@dirrm include/d/tango/tango/core/rt/gc/stub +@dirrm include/d/tango/tango/core/rt/gc/basic +@dirrm include/d/tango/tango/core/rt/gc +@dirrm include/d/tango/tango/core/rt/compiler/util +@dirrm include/d/tango/tango/core/rt/compiler/ldc/typeinfo +@dirrm include/d/tango/tango/core/rt/compiler/ldc/rt +@dirrm include/d/tango/tango/core/rt/compiler/ldc +@dirrm include/d/tango/tango/core/rt/compiler/gdc/typeinfo +@dirrm include/d/tango/tango/core/rt/compiler/gdc/std +@dirrm include/d/tango/tango/core/rt/compiler/gdc/rt +@dirrm include/d/tango/tango/core/rt/compiler/gdc/gcc +@dirrm include/d/tango/tango/core/rt/compiler/gdc/config/skyos +@dirrm include/d/tango/tango/core/rt/compiler/gdc/config/mingw +@dirrm include/d/tango/tango/core/rt/compiler/gdc/config/darwin9 +@dirrm include/d/tango/tango/core/rt/compiler/gdc/config/darwin8 +@dirrm include/d/tango/tango/core/rt/compiler/gdc/config +@dirrm include/d/tango/tango/core/rt/compiler/gdc +@dirrm include/d/tango/tango/core/rt/compiler/dmd/windows +@dirrm include/d/tango/tango/core/rt/compiler/dmd/typeinfo +@dirrm include/d/tango/tango/core/rt/compiler/dmd/std +@dirrm include/d/tango/tango/core/rt/compiler/dmd/rt +@dirrm include/d/tango/tango/core/rt/compiler/dmd/posix +@dirrm include/d/tango/tango/core/rt/compiler/dmd/darwin +@dirrm include/d/tango/tango/core/rt/compiler/dmd +@dirrm include/d/tango/tango/core/rt/compiler +@dirrm include/d/tango/tango/core/rt +@dirrm include/d/tango/tango/core +@dirrm include/d/tango/tango +@dirrm include/d/tango +@dirrm include/d |