mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-06 02:52:07 +08:00
The pkgconfig files currently hardcode the library directory as
${prefix}/lib, but the library installation directory in config.mk is
set as lib${LIB_SUFFIX}. This causes a mismatch between the library
installation directory and the pkgconfig file on redhat-based 64-bit
systems.
This commit remedies the issue for both the Makefile and CMake build by
modifying the pkgconfig files to use CMAKE_INSTALL_LIBDIR instead of
"lib". In the CMake system, this directly reflects the installation
path. The Makefiles were modified to replace CMAKE_INSTALL_LIBDIR with
lib${LIB_SUFFIX}, matching the libdir definition in config.mk and
following the pattern used in defining the prefix.
Signed-off-by: Rich Mattes <richmattes@gmail.com>
51 lines
1.7 KiB
Makefile
51 lines
1.7 KiB
Makefile
R=../..
|
|
include ${R}/config.mk
|
|
|
|
ifeq ($(or $(findstring $(UNAME),SunOS), $(findstring $(UNAME),AIX)),)
|
|
LOCAL_LDFLAGS+=-Wl,-soname,libmosquittopp.so.${SOVERSION}
|
|
endif
|
|
LOCAL_CPPFLAGS+=
|
|
LOCAL_CXXFLAGS+=-fPIC
|
|
LOCAL_LIBADD+=
|
|
|
|
.PHONY : clean install
|
|
|
|
ALL_DEPS=libmosquittopp.so.${SOVERSION}
|
|
|
|
ifeq ($(WITH_STATIC_LIBRARIES),yes)
|
|
ALL_DEPS+=libmosquittopp.a
|
|
endif
|
|
|
|
all : ${ALL_DEPS}
|
|
|
|
install : all
|
|
$(INSTALL) -d "${DESTDIR}${libdir}/"
|
|
$(INSTALL) ${STRIP_OPTS} libmosquittopp.so.${SOVERSION} "${DESTDIR}${libdir}/libmosquittopp.so.${SOVERSION}"
|
|
ln -sf libmosquittopp.so.${SOVERSION} "${DESTDIR}${libdir}/libmosquittopp.so"
|
|
ifeq ($(WITH_STATIC_LIBRARIES),yes)
|
|
$(INSTALL) libmosquittopp.a "${DESTDIR}${libdir}/libmosquittopp.a"
|
|
ifneq ($(UNAME),AIX)
|
|
${CROSS_COMPILE}${STRIP} -g --strip-unneeded "${DESTDIR}${libdir}/libmosquittopp.a"
|
|
endif
|
|
endif
|
|
$(INSTALL) -d "${DESTDIR}${libdir}/pkgconfig/"
|
|
$(INSTALL) -m644 ${R}/libmosquittopp.pc.in "${DESTDIR}${libdir}/pkgconfig/libmosquittopp.pc"
|
|
sed ${SEDINPLACE} -e "s#@CMAKE_INSTALL_PREFIX@#${prefix}#" -e "s#@CMAKE_INSTALL_LIBDIR@#lib${LIB_SUFFIX}#" -e "s#@VERSION@#${VERSION}#" "${DESTDIR}${libdir}/pkgconfig/libmosquittopp.pc"
|
|
|
|
uninstall :
|
|
-rm -f "${DESTDIR}${libdir}/libmosquittopp.so.${SOVERSION}"
|
|
-rm -f "${DESTDIR}${libdir}/libmosquittopp.so"
|
|
-rm -f "${DESTDIR}${libdir}/libmosquittopp.a"
|
|
|
|
clean :
|
|
-rm -f *.o libmosquittopp.so.${SOVERSION} libmosquittopp.a
|
|
|
|
libmosquittopp.so.${SOVERSION} : mosquittopp.o
|
|
${CROSS_COMPILE}$(CXX) -shared $(LOCAL_LDFLAGS) $< -o $@ ../libmosquitto.so.${SOVERSION} $(LOCAL_LIDADD)
|
|
|
|
libmosquittopp.a : mosquittopp.o
|
|
${CROSS_COMPILE}$(AR) cr $@ $^
|
|
|
|
mosquittopp.o : mosquittopp.cpp ${R}/include/mosquitto/libmosquittopp.h
|
|
${CROSS_COMPILE}$(CXX) $(LOCAL_CPPFLAGS) $(LOCAL_CXXFLAGS) -c $< -o $@
|