aad09bc5e2
exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery)
72 lines
2.5 KiB
Makefile
72 lines
2.5 KiB
Makefile
# $FreeBSD$
|
|
#
|
|
# Bring libtool scripts up to date.
|
|
#
|
|
# Feature: libtool
|
|
# Usage: USES=libtool or USES=libtool:args
|
|
# Valid args: keepla Normally libtool libraries (*.la) are not installed.
|
|
# With this option they are. This is needed as long
|
|
# as there are dependent ports with .la libraries that
|
|
# refer to .la libraries in this port. As soon as all
|
|
# those dependent ports have some form of USES=libtool
|
|
# keepla can be removed.
|
|
#
|
|
# MAINTAINER: autotools@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_LIBTOOL_MK)
|
|
_INCLUDE_USES_LIBTOOL_MK= yes
|
|
_USES_POST+= libtool
|
|
libtool_ARGS?=
|
|
.endif
|
|
|
|
.if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_LIBTOOL_POST_MK)
|
|
_INCLUDE_USES_LIBTOOL_POST_MK= yes
|
|
|
|
patch-libtool:
|
|
@${FIND} ${WRKDIR} \( -name configure -or -name ltconfig \) \
|
|
-type f | ${XARGS} ${REINPLACE_CMD} \
|
|
-e '/dragonfly\*/!s/^ *freebsd\*[ )]/dragonfly* | &/' \
|
|
-e '/gcc_dir=\\`/s/gcc /$$CC /' \
|
|
-e '/gcc_ver=\\`/s/gcc /$$CC /' \
|
|
-e '/link_all_deplibs[0-9A-Z_]*=/s/=unknown/=no/' \
|
|
-e '/objformat=/s/echo aout/echo elf/' \
|
|
-e "/freebsd-elf\\*)/,/;;/ { \
|
|
/deplibs_check_method=/s/=.*/=pass_all/; }"
|
|
|
|
@${FIND} ${WRKDIR} -type f -name ltmain.sh | \
|
|
${XARGS} ${REINPLACE_CMD} \
|
|
-e 's/|-p|-pg|/|-B*|-p|-pg|/'
|
|
|
|
.if ! ${libtool_ARGS:Moldver}
|
|
@${FIND} ${WRKDIR} \( -name configure -or -name ltconfig \) \
|
|
-type f | ${XARGS} ${REINPLACE_CMD} \
|
|
-e "/freebsd-elf\\*)/,/;;/ { \
|
|
/library_names_spec=.*\\.so/ \
|
|
s/=.*/='\$$libname\$$release.so\$$versuffix \
|
|
\$$libname\$$release.so\$$major \$$libname.so' \
|
|
soname_spec='\$$libname\$$release.so\$$major'/; \
|
|
/library_names_spec=.*shared_ext/ \
|
|
s/=.*/='\$$libname\$$release\$$shared_ext\$$versuffix \
|
|
\$$libname\$$release\$$shared_ext\$$major \
|
|
\$$libname\$$shared_ext' \
|
|
soname_spec='\$$libname\$$release\$$shared_ext\$$major'/; }"
|
|
|
|
@${FIND} ${WRKDIR} -type f -name ltmain.sh | \
|
|
${XARGS} ${REINPLACE_CMD} \
|
|
-e '/case $$version_type in/,+2 \
|
|
s/darwin|linux|/darwin|freebsd-elf|linux|/' \
|
|
-e '/freebsd-elf)/,+2 { \
|
|
/major=/s/=.*/=.$$(($$current - $$age))/; \
|
|
/versuffix=/s/=.*/="$$major.$$age.$$revision"/; }'
|
|
.endif
|
|
|
|
patch-lafiles:
|
|
.if ${libtool_ARGS} == keepla || ${libtool_ARGS} == oldver
|
|
@${FIND} ${STAGEDIR} -type f -name '*.la' | \
|
|
${XARGS} ${SED} -i '' -e "/dependency_libs=/s/=.*/=''/"
|
|
.else
|
|
@${FIND} ${STAGEDIR} -type f -name '*.la' | \
|
|
${XARGS} ${GREP} -l 'libtool library' | ${XARGS} ${RM}
|
|
.endif
|
|
|
|
.endif
|