svn commit: r325855 - in head/devel/libtool: . files
Bernhard Froehlich
decke at FreeBSD.org
Sun Sep 1 13:02:57 UTC 2013
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
More information about the svn-ports-head
mailing list