Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Dec 2015 00:40:33 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r292481 - stable/10/lib/libc/regex/grot
Message-ID:  <201512200040.tBK0eXP3013670@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sun Dec 20 00:40:33 2015
New Revision: 292481
URL: https://svnweb.freebsd.org/changeset/base/292481

Log:
  MFC r292153:
  
  Add -static to CFLAGS to unbreak the tests by using a libc.a with
  the xlocale private symbols exposed which aren't exposed publicly
  via the DSO
  
  PR: 191354
  Sponsored by: EMC / Isilon Storage Division

Modified:
  stable/10/lib/libc/regex/grot/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/regex/grot/Makefile
==============================================================================
--- stable/10/lib/libc/regex/grot/Makefile	Sat Dec 19 23:02:18 2015	(r292480)
+++ stable/10/lib/libc/regex/grot/Makefile	Sun Dec 20 00:40:33 2015	(r292481)
@@ -8,7 +8,7 @@
 PATHS= ${.CURDIR}/.. ${.CURDIR}/../../locale ${.CURDIR}/../../../../include
 .PATH: ${PATHS}
 
-CFLAGS+= -DPOSIX_MISTAKE -DREDEBUG $(REGCFLAGS)
+CFLAGS+= -static -DPOSIX_MISTAKE -DREDEBUG $(REGCFLAGS)
 .for incpath in ${PATHS}
 CFLAGS+= -I${incpath}
 .endfor



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512200040.tBK0eXP3013670>