diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2016-04-13 15:54:04 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2016-04-13 17:46:06 +0300 |
commit | 99137f11feb22edc583aa2dc2a13243dc5e9c650 (patch) | |
tree | 599fc70526c4b956908ff69dfb783ce81ef6d856 /dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch | |
parent | profiles/base/package.use.stable.mask: mask dev-lang/go[gccgo] (diff) | |
download | gentoo-99137f11feb22edc583aa2dc2a13243dc5e9c650.tar.gz gentoo-99137f11feb22edc583aa2dc2a13243dc5e9c650.tar.bz2 gentoo-99137f11feb22edc583aa2dc2a13243dc5e9c650.zip |
dev-libs/libtecla: version bump
- fix parallel build failure (bug 514506);
- update to EAPI=6;
- update rework patches so that they are suitable for upstream.
Package-Manager: portage-2.2.28
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
Diffstat (limited to 'dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch')
-rw-r--r-- | dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch b/dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch new file mode 100644 index 000000000000..b88940e49b8b --- /dev/null +++ b/dev-libs/libtecla/files/libtecla-1.6.3-static-libs.patch @@ -0,0 +1,25 @@ +--- libtecla/configure.in.orig 2016-04-13 11:12:15.000000000 +0300 ++++ libtecla/configure.in 2016-04-13 11:43:05.632287268 +0300 +@@ -426,6 +426,9 @@ + AC_ARG_WITH(file-system, AC_HELP_STRING([--with-file-system], [Does the target have a filesystem (default=yes)]), + AC_DEFINE(WITHOUT_FILE_SYSTEM), ) + ++dnl Some users may be not interested in static libs ++AC_ARG_ENABLE([static-libs], AC_HELP_STRING([--enable-static-libs], [Enable static libs if shared libs will be also build (default=yes)])) ++ + dnl The following bourne shell case statement is where system + dnl dependencies can be added. In particular, if your system supports + dnl shared library creation, the following switch is the place to +@@ -571,7 +574,11 @@ + dnl libraries to the list of libraries to be built. + + if test "$LINK_SHARED"_ != "_"; then +- TARGET_LIBS="static shared" ++ if test "$enable_static_libs"_ != "_"; then ++ TARGET_LIBS="static shared" ++ else ++ TARGET_LIBS="shared" ++ fi + else + TARGET_LIBS="static" + LINK_SHARED="@:" |