From owner-svn-src-user@FreeBSD.ORG Tue Feb 21 13:10:18 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 404031065670; Tue, 21 Feb 2012 13:10:18 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 15FC28FC1A; Tue, 21 Feb 2012 13:10:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q1LDAHpR000822; Tue, 21 Feb 2012 13:10:17 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q1LDAHCE000819; Tue, 21 Feb 2012 13:10:17 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201202211310.q1LDAHCE000819@svn.freebsd.org> From: Gabor Kovesdan Date: Tue, 21 Feb 2012 13:10:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r231970 - in user/gabor/tre-integration: include lib/libc/regex X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Feb 2012 13:10:18 -0000 Author: gabor Date: Tue Feb 21 13:10:17 2012 New Revision: 231970 URL: http://svn.freebsd.org/changeset/base/231970 Log: - Hook up new files to the build Modified: user/gabor/tre-integration/include/Makefile user/gabor/tre-integration/lib/libc/regex/Makefile.inc Modified: user/gabor/tre-integration/include/Makefile ============================================================================== --- user/gabor/tre-integration/include/Makefile Tue Feb 21 13:08:56 2012 (r231969) +++ user/gabor/tre-integration/include/Makefile Tue Feb 21 13:10:17 2012 (r231970) @@ -13,8 +13,8 @@ INCS= a.out.h ar.h assert.h bitstring.h fstab.h fts.h ftw.h getopt.h glob.h grp.h gssapi.h \ ieeefp.h ifaddrs.h \ inttypes.h iso646.h kenv.h langinfo.h libgen.h limits.h link.h \ - locale.h malloc.h malloc_np.h memory.h monetary.h mpool.h mqueue.h \ - ndbm.h netconfig.h \ + locale.h malloc.h malloc_np.h memory.h monetary.h mpool.h mregex.h \ + mqueue.h ndbm.h netconfig.h \ netdb.h nl_types.h nlist.h nss.h nsswitch.h paths.h \ printf.h proc_service.h pthread.h \ pthread_np.h pwd.h ranlib.h readpassphrase.h regex.h \ Modified: user/gabor/tre-integration/lib/libc/regex/Makefile.inc ============================================================================== --- user/gabor/tre-integration/lib/libc/regex/Makefile.inc Tue Feb 21 13:08:56 2012 (r231969) +++ user/gabor/tre-integration/lib/libc/regex/Makefile.inc Tue Feb 21 13:10:17 2012 (r231970) @@ -5,10 +5,10 @@ CFLAGS+=-DHAVE_CONFIG_H -DTRE_LIBC_BUILD -I${.CURDIR}/../../contrib/tre -SRCS+= hashtable.c regcomp.c regerror.c regexec.c tre-ast.c \ - tre-compile.c tre-fastmatch.c tre-heuristic.c tre-match-approx.c \ - tre-match-backtrack.c tre-match-parallel.c tre-mem.c tre-parse.c \ - tre-stack.c xmalloc.c +SRCS+= hashtable.c mregcomp.c mregexec.c regcomp.c regerror.c regexec.c \ + tre-ast.c tre-compile.c tre-fastmatch.c tre-heuristic.c \ + tre-match-approx.c tre-match-backtrack.c tre-match-parallel.c \ + tre-mfastmatch.c tre-mem.c tre-parse.c tre-stack.c xmalloc.c MAN+= regex.3 re_format.7