nixpkgs/pkgs/tools/filesystems/xfsprogs/4.3.0-sharedlibs.patch

90 lines
2.6 KiB
Diff
Raw Normal View History

2016-08-08 15:45:56 +02:00
--- xfsprogs-4.3.0/include/buildmacros
+++ xfsprogs-4.3.0/include/buildmacros
2014-12-17 00:22:53 +01:00
@@ -70,18 +70,9 @@
# /usr/lib.
ifeq ($(ENABLE_SHARED),yes)
INSTALL_LTLIB_DEV = \
- cd $(TOPDIR)/$(LIBNAME)/.libs; \
- ../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \
- ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_LIB_DIR); \
- ../$(INSTALL) -m 644 $(LIBNAME).lai $(PKG_LIB_DIR)/$(LIBNAME).la ; \
- ../$(INSTALL) -m 755 -d $(PKG_ROOT_LIB_DIR); \
- ../$(INSTALL) -T so_base $(LIBNAME).lai $(PKG_ROOT_LIB_DIR); \
- if [ "x$(shell readlink -f $(PKG_LIB_DIR))" != \
2015-09-18 22:19:59 +02:00
- "x$(shell readlink -f $(PKG_ROOT_LIB_DIR))" ]; then \
2014-12-17 00:22:53 +01:00
- ../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).a $(PKG_ROOT_LIB_DIR)/$(LIBNAME).a; \
- ../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).la $(PKG_ROOT_LIB_DIR)/$(LIBNAME).la; \
- ../$(INSTALL) -S $(PKG_ROOT_LIB_DIR)/$(LIBNAME).so $(PKG_LIB_DIR)/$(LIBNAME).so; \
- fi
+ set -e; cd $(TOPDIR)/$(LIBNAME); \
+ $(INSTALL) -m 755 -d $(PKG_LIB_DIR); \
+ env -uDIST_ROOT $(LTINSTALL) $(TOPDIR)/$(LIBNAME)/$(LIBNAME).la $(DIST_ROOT)$(PKG_LIB_DIR)/$(LIBNAME).la
else
INSTALL_LTLIB_DEV = $(INSTALL_LTLIB_STATIC)
endif
2016-08-08 15:45:56 +02:00
--- xfsprogs-4.3.0/libxcmd/Makefile
+++ xfsprogs-4.3.0/libxcmd/Makefile
2015-09-18 22:19:59 +02:00
@@ -34,6 +34,9 @@
2014-09-20 03:21:05 +02:00
include $(BUILDRULES)
2015-09-18 22:19:59 +02:00
-install install-dev: default
2014-09-20 03:21:05 +02:00
+install: default
+
2015-09-18 22:19:59 +02:00
+install-dev: default
2014-09-20 03:21:05 +02:00
+ $(INSTALL_LTLIB_DEV)
2014-12-17 00:22:53 +01:00
-include .ltdep
2016-08-08 15:45:56 +02:00
--- xfsprogs-4.3.0/libxfs/Makefile
+++ xfsprogs-4.3.0/libxfs/Makefile
2015-09-18 22:19:59 +02:00
@@ -138,6 +138,7 @@
2014-09-20 03:21:05 +02:00
2015-09-18 22:19:59 +02:00
install-dev: install
$(INSTALL) -m 644 $(PKGHFILES) $(PKG_INC_DIR)
2014-09-20 03:21:05 +02:00
+ $(INSTALL_LTLIB_DEV)
2015-09-18 22:19:59 +02:00
# We need to install the headers before building the dependencies. If we
# include the .ltdep file, the makefile decides that it needs to build the
2016-08-08 15:45:56 +02:00
--- xfsprogs-4.3.0/libxlog/Makefile
+++ xfsprogs-4.3.0/libxlog/Makefile
2014-09-20 03:21:05 +02:00
@@ -12,6 +12,8 @@
CFILES = xfs_log_recover.c util.c
+LTLIBS = $(LIBUUID) $(LIBXFS)
+
# don't want to link xfs_repair with a debug libxlog.
DEBUG = -DNDEBUG
2015-09-18 22:19:59 +02:00
@@ -19,6 +21,9 @@
2014-09-20 03:21:05 +02:00
include $(BUILDRULES)
2015-09-18 22:19:59 +02:00
-install install-dev: default
2014-09-20 03:21:05 +02:00
+install: default
+
+install-dev: default
+ $(INSTALL_LTLIB_DEV)
2014-12-17 00:22:53 +01:00
-include .ltdep
2016-08-08 15:45:56 +02:00
--- xfsprogs-4.3.0/quota/Makefile
+++ xfsprogs-4.3.0/quota/Makefile
@@ -16,7 +16,6 @@ LSRCFILES = $(shell echo $(PCFILES) | sed -e "s/$(PKG_PLATFORM).c//g")
LLDLIBS = $(LIBXCMD)
LTDEPENDENCIES = $(LIBXCMD)
-LLDFLAGS = -static
ifeq ($(ENABLE_READLINE),yes)
LLDLIBS += $(LIBREADLINE) $(LIBTERMCAP)
2016-08-08 15:45:56 +02:00
--- xfsprogs-4.3.0/mdrestore/Makefile
+++ xfsprogs-4.3.0/mdrestore/Makefile
@@ -10,7 +10,6 @@ CFILES = xfs_mdrestore.c
LLDLIBS = $(LIBXFS) $(LIBRT) $(LIBPTHREAD) $(LIBUUID)
LTDEPENDENCIES = $(LIBXFS)
-LLDFLAGS = -static
default: depend $(LTCOMMAND)