From d339c145870a86c37509debe5d8fa145e192f390 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Fri, 9 Feb 2024 21:09:54 -0500 Subject: ffs: major refresh on top of bastif dpkg --- .../debian/patches/makefile-improvements.patch | 110 +++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 freefilesync/debian/patches/makefile-improvements.patch (limited to 'freefilesync/debian/patches/makefile-improvements.patch') diff --git a/freefilesync/debian/patches/makefile-improvements.patch b/freefilesync/debian/patches/makefile-improvements.patch new file mode 100644 index 0000000..e27a107 --- /dev/null +++ b/freefilesync/debian/patches/makefile-improvements.patch @@ -0,0 +1,110 @@ +Description: put pkg-config and wx-config into variables + When cross-compiling on debian, the build system dh set the name of the + pkg-config command name to use into PKG_CONFIG variable. + For armhf, it is PKG_CONFIG=arm-linux-gnueabihf-pkg-config + . + Since the pkg-config that is installed during cross-compiling is the one + of the build-arch (amd64), and not the one of the host-arch (armhf), + using `pkg-config` instead of `arm-linux-gnueabihf-pkg-config` would + prevent detection of the libraries. + . + freefilesync (11.23-1) UNRELEASED; urgency=medium + . + * Initial release. (Closes: #925512) + Also, set wx-config version + Useful when there are multiple versions of wx-config installed on the system + +Author: Fab Stz +Author: bgstack15 +Origin: self +Forwarded: by-email-to-author-on-2022-08-11 +Last-Update: 2024-02-09 + +--- a/FreeFileSync/Source/Makefile ++++ b/FreeFileSync/Source/Makefile +@@ -2,39 +2,45 @@ CXX ?= g++ + exeName = FreeFileSync + CXX=g++-12 + ++PKG_CONFIG=pkgconf ++WX_CONFIG=wx-config --version=3.2 ++ + CXXFLAGS += -std=c++23 -pipe -DWXINTL_NO_GETTEXT_MACRO -I../.. -I../../zenXml -include "zen/i18n.h" -include "zen/warn_static.h" \ + -Wall -Wfatal-errors -Wmissing-include-dirs -Wswitch-enum -Wcast-align -Wnon-virtual-dtor -Wno-unused-function -Wshadow -Wno-maybe-uninitialized \ +- -DNDEBUG `wx-config --cxxflags --debug=no` -pthread ++ -DNDEBUG `$(WX_CONFIG) --cxxflags --debug=no` -pthread ++ ++LDFLAGS += `$(WX_CONFIG) --libs std, aui, richtext --debug=no` -pthread + +-LDFLAGS += `wx-config --libs std, aui, richtext --debug=no` -pthread + ++CXXFLAGS += `$(PKG_CONFIG) --cflags zlib` ++LDFLAGS += `$(PKG_CONFIG) --libs zlib` + +-CXXFLAGS += `pkg-config --cflags openssl` +-LDFLAGS += `pkg-config --libs openssl` ++CXXFLAGS += `$(PKG_CONFIG) --cflags openssl` ++LDFLAGS += `$(PKG_CONFIG) --libs openssl` + +-CXXFLAGS += `pkg-config --cflags libcurl` +-LDFLAGS += `pkg-config --libs libcurl` ++CXXFLAGS += `$(PKG_CONFIG) --cflags libcurl` ++LDFLAGS += `$(PKG_CONFIG) --libs libcurl` + +-CXXFLAGS += `pkg-config --cflags libssh2` +-LDFLAGS += `pkg-config --libs libssh2` ++CXXFLAGS += `$(PKG_CONFIG) --cflags libssh2` ++LDFLAGS += `$(PKG_CONFIG) --libs libssh2` + +-CXXFLAGS += `pkg-config --cflags gtk+-3.0` +-LDFLAGS += `pkg-config --libs gtk+-3.0` ++CXXFLAGS += `$(PKG_CONFIG) --cflags gtk+-3.0` ++LDFLAGS += `$(PKG_CONFIG) --libs gtk+-3.0` + #treat as system headers so that warnings are hidden: + CXXFLAGS += -isystem/usr/include/gtk-3.0 + + with_notifications ?= YES + ifeq ($(with_notifications),YES) + # package libglibmm-2.4-dev or glibmm24-devel +-cxxFlags += `pkg-config --cflags giomm-2.4` -Dwith_notifications +-linkFlags += `pkg-config --libs giomm-2.4` ++cxxFlags += `$(PKG_CONFIG) --cflags giomm-2.4` -Dwith_notifications ++linkFlags += `$(PKG_CONFIG) --libs giomm-2.4` + endif + + #support for SELinux (optional) +-SELINUX_EXISTING=$(shell pkg-config --exists libselinux && echo YES) ++SELINUX_EXISTING=$(shell $(PKG_CONFIG) --exists libselinux && echo YES) + ifeq ($(SELINUX_EXISTING),YES) +-CXXFLAGS += `pkg-config --cflags libselinux` -DHAVE_SELINUX +-LDFLAGS += `pkg-config --libs libselinux` ++CXXFLAGS += `$(PKG_CONFIG) --cflags libselinux` -DHAVE_SELINUX ++LDFLAGS += `$(PKG_CONFIG) --libs libselinux` + endif + + ifeq ($(DPKG_VENDOR),) +--- a/FreeFileSync/Source/RealTimeSync/Makefile ++++ b/FreeFileSync/Source/RealTimeSync/Makefile +@@ -2,15 +2,18 @@ CXX ?= g++ + exeName = RealTimeSync + CXX=g++-12 + ++PKG_CONFIG=pkgconf ++WX_CONFIG=wx-config --version=3.2 ++ + CXXFLAGS += -std=c++23 -pipe -DWXINTL_NO_GETTEXT_MACRO -I../../.. -I../../../zenXml -include "zen/i18n.h" -include "zen/warn_static.h" \ + -Wall -Wfatal-errors -Wmissing-include-dirs -Wswitch-enum -Wcast-align -Wnon-virtual-dtor -Wno-unused-function -Wshadow -Wno-maybe-uninitialized \ +- -DNDEBUG `wx-config --cxxflags --debug=no` -pthread ++ -DNDEBUG `$(WX_CONFIG) --cxxflags --debug=no` -pthread + +-LDFLAGS += `wx-config --libs std, aui, richtext --debug=no` -pthread ++LDFLAGS += `$(WX_CONFIG) --libs std, aui, richtext --debug=no` -pthread + + #Gtk - support "no button border" +-CXXFLAGS += `pkg-config --cflags gtk+-3.0` +-LDFLAGS += `pkg-config --libs gtk+-3.0` ++CXXFLAGS += `$(PKG_CONFIG) --cflags gtk+-3.0` ++LDFLAGS += `$(PKG_CONFIG) --libs gtk+-3.0` + #treat as system headers so that warnings are hidden: + CXXFLAGS += -isystem/usr/include/gtk-3.0 + -- cgit