Date: Sun, 1 Sep 2013 13:02:56 +0000 (UTC) From: Bernhard Froehlich <decke@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325855 - in head/devel/libtool: . files Message-ID: <201309011302.r81D2uWx001887@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: decke Date: Sun Sep 1 13:02:56 2013 New Revision: 325855 URL: http://svnweb.freebsd.org/changeset/ports/325855 Log: - Add support for lang/clang33 from ports which installs it's binaries as clang33 and clang++33. Right now libtool fails for various ports and aks for a "--tag" flag because it tries to detect tag based on the binary name but doesn't know about clang33. PR: ports/179809 Submitted by: myself Approved by: maintainer timeout (9 weeks) Modified: head/devel/libtool/Makefile (contents, props changed) head/devel/libtool/files/patch-libltdl_config_ltmain.sh (contents, props changed) Modified: head/devel/libtool/Makefile ============================================================================== --- head/devel/libtool/Makefile Sun Sep 1 12:58:10 2013 (r325854) +++ head/devel/libtool/Makefile Sun Sep 1 13:02:56 2013 (r325855) @@ -7,6 +7,7 @@ PORTNAME?= libtool PORTVERSION= 2.4.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= libtool Modified: head/devel/libtool/files/patch-libltdl_config_ltmain.sh ============================================================================== --- head/devel/libtool/files/patch-libltdl_config_ltmain.sh Sun Sep 1 12:58:10 2013 (r325854) +++ head/devel/libtool/files/patch-libltdl_config_ltmain.sh Sun Sep 1 13:02:56 2013 (r325855) @@ -4,8 +4,8 @@ $opt_debug + + # FreeBSD-specific: where we install compilers with non-standard names -+ tag_compilers_CC="*cc cc* *gcc gcc* clang" -+ tag_compilers_CXX="*c++ c++* *g++ g++* clang++" ++ tag_compilers_CC="*cc cc* *gcc gcc* clang*" ++ tag_compilers_CXX="*c++ c++* *g++ g++* clang++*" + base_compiler=`set -- "$@"; echo $1` + + # If $tagname isn't set, then try to infer if the default "CC" tag applies
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309011302.r81D2uWx001887>