diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2004-08-19 18:27:12 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2004-08-19 18:27:12 +0000 |
commit | 87fc99e551eca988937f6d831717e53b9f7208ab (patch) | |
tree | fcdb9c5967a22d65fa75b08d41b547f4624ad23c /devel/ace+tao | |
parent | f14e7de3d2a926669818c9cdb293e2f74e10a822 (diff) |
ACE builds fine with gcc 3.4. So build only ACE, not TAO.
Noticed by: Barney Wolff <barney@databus.com>
Notes
Notes:
svn path=/head/; revision=116717
Diffstat (limited to 'devel/ace+tao')
-rw-r--r-- | devel/ace+tao/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/devel/ace+tao/Makefile b/devel/ace+tao/Makefile index 995397d900c6..6c1dd31b2c40 100644 --- a/devel/ace+tao/Makefile +++ b/devel/ace+tao/Makefile @@ -44,15 +44,20 @@ TAO_ROOT= ${ACE_ROOT}/TAO PLIST_SUB+= TAO=${TAO} TESTS=${TESTS} \ ACE_VERSION=${ACE_VERSION} TAO_VERSION=${TAO_VERSION} -.if defined(WITHOUT_TAO) -TAO= "@comment " -PKGNAMESUFFIX?= -notao -.endif - .include <bsd.port.pre.mk> .if ${OSVERSION} >= 502125 -BROKEN= Does not build with gcc 3.4 +WITHOUT_TAO= yes +pre-extract: + @${ECHO_MSG} "****************************************************"; \ + ${ECHO_MSG} "* TAO is not build with gcc 3.4 *"; \ + ${ECHO_MSG} "* so only ACE will build and install *"; \ + ${ECHO_MSG} "****************************************************" +.endif + +.if defined(WITHOUT_TAO) +TAO= "@comment " +PKGNAMESUFFIX?= -notao .endif post-patch: |