Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Aug 2014 12:25:56 +0000 (UTC)
From:      Hajimu UMEMOTO <ume@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r269865 - in head/lib/libc: . md
Message-ID:  <53ea07d4.6244.7ff9af9b@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ume
Date: Tue Aug 12 12:25:56 2014
New Revision: 269865
URL: http://svnweb.freebsd.org/changeset/base/269865

Log:
  Bring the md5 functions into libc for internal use only.
  It is required to support ID randomization for our stub
  resolver.

Added:
  head/lib/libc/md/
  head/lib/libc/md/Makefile.inc   (contents, props changed)
Modified:
  head/lib/libc/Makefile

Modified: head/lib/libc/Makefile
==============================================================================
--- head/lib/libc/Makefile	Tue Aug 12 12:22:39 2014	(r269864)
+++ head/lib/libc/Makefile	Tue Aug 12 12:25:56 2014	(r269865)
@@ -75,6 +75,7 @@ NOASM=
 .include "${LIBC_SRCTOP}/inet/Makefile.inc"
 .include "${LIBC_SRCTOP}/isc/Makefile.inc"
 .include "${LIBC_SRCTOP}/locale/Makefile.inc"
+.include "${LIBC_SRCTOP}/md/Makefile.inc"
 .include "${LIBC_SRCTOP}/nameser/Makefile.inc"
 .include "${LIBC_SRCTOP}/net/Makefile.inc"
 .include "${LIBC_SRCTOP}/nls/Makefile.inc"

Added: head/lib/libc/md/Makefile.inc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lib/libc/md/Makefile.inc	Tue Aug 12 12:25:56 2014	(r269865)
@@ -0,0 +1,5 @@
+# $FreeBSD$
+
+.PATH: ${LIBC_SRCTOP}/../libmd
+
+SRCS+=	md5c.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53ea07d4.6244.7ff9af9b>