1ffd6897dd
This is basically ea68de2968
but
for LDFLAGS. A number of external libs cannot use this because
their libtool mishandles -fuse-ld.
Change-Id: Idee379eb0a3afb475b536519ee3de064b4e218f4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133639
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
63 lines
2 KiB
Makefile
63 lines
2 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
$(eval $(call gb_ExternalProject_ExternalProject,libwps))
|
|
|
|
$(eval $(call gb_ExternalProject_use_autoconf,libwps,build))
|
|
|
|
$(eval $(call gb_ExternalProject_register_targets,libwps,\
|
|
build \
|
|
))
|
|
|
|
$(eval $(call gb_ExternalProject_use_externals,libwps,\
|
|
revenge \
|
|
))
|
|
|
|
libwps_CPPFLAGS+=$(gb_COMPILERDEFS_STDLIB_DEBUG)
|
|
|
|
libwps_CXXFLAGS=$(gb_CXXFLAGS) $(call gb_ExternalProject_get_build_flags,libwps)
|
|
|
|
libwps_LDFLAGS=$(call gb_ExternalProject_get_link_flags,libwps)
|
|
ifeq ($(OS),LINUX)
|
|
ifeq ($(SYSTEM_REVENGE),)
|
|
libwps_LDFLAGS+=-Wl,-z,origin -Wl,-rpath,\$$$$ORIGIN
|
|
endif
|
|
endif
|
|
|
|
$(call gb_ExternalProject_get_state_target,libwps,build) :
|
|
$(call gb_Trace_StartRange,libwps,EXTERNAL)
|
|
$(call gb_ExternalProject_run,build,\
|
|
export PKG_CONFIG="" \
|
|
&& $(gb_RUN_CONFIGURE) ./configure \
|
|
--with-pic \
|
|
$(if $(DISABLE_DYNLOADING), \
|
|
--enable-static --disable-shared \
|
|
, \
|
|
--enable-shared --disable-static \
|
|
) \
|
|
--with-sharedptr=c++11 \
|
|
--without-docs \
|
|
--disable-tools \
|
|
$(if $(ENABLE_DEBUG),--enable-debug,--disable-debug) \
|
|
--disable-werror \
|
|
$(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
|
|
$(if $(libwps_CXXFLAGS),CXXFLAGS='$(libwps_CXXFLAGS)') \
|
|
$(if $(libwps_CPPFLAGS),CPPFLAGS='$(libwps_CPPFLAGS)') \
|
|
$(if $(libwps_LDFLAGS),LDFLAGS='$(libwps_LDFLAGS)') \
|
|
$(gb_CONFIGURE_PLATFORMS) \
|
|
$(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \
|
|
&& $(MAKE) \
|
|
$(if $(filter MACOSX,$(OS)),\
|
|
&& $(PERL) $(SRCDIR)/solenv/bin/macosx-change-install-names.pl shl OOO \
|
|
$(EXTERNAL_WORKDIR)/src/lib/.libs/libwps-0.4.4.dylib \
|
|
) \
|
|
)
|
|
$(call gb_Trace_EndRange,libwps,EXTERNAL)
|
|
|
|
# vim: set noet sw=4 ts=4:
|