svn commit: r269865 - in head/lib/libc: . md

Hajimu UMEMOTO ume at FreeBSD.org
Tue Aug 12 12:25:57 UTC 2014


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


More information about the svn-src-all mailing list