diff options
author | Unit 193 <32967979+Unit193@users.noreply.github.com> | 2023-08-21 05:24:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-21 11:24:25 +0200 |
commit | d49c75370ae6ffcec4b3d11cd959fe7d251ef67c (patch) | |
tree | 87400080db5b30f47efcea4f79c90305a1a1ccf0 /src/Makefile | |
parent | fd0d2e3353ede2ca1acaf0eca30822dc44995e0d (diff) | |
download | VeraCrypt-d49c75370ae6ffcec4b3d11cd959fe7d251ef67c.tar.gz VeraCrypt-d49c75370ae6ffcec4b3d11cd959fe7d251ef67c.zip |
Allow cross compilation. (#1182)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index f6ec5041..356f0a7b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -49,6 +49,7 @@ C_CXX_FLAGS := -MMD -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -I export ASFLAGS := -D __GNUC__ -D __YASM__ export LFLAGS := +export PKG_CONFIG ?= pkg-config export PKG_CONFIG_PATH ?= /usr/local/lib/pkgconfig export WX_CONFIG ?= wx-config @@ -101,8 +102,8 @@ ifeq "$(origin INDICATOR)" "command line" else INDICATOR_LIBRARY=ayatana-appindicator-0.1 endif - export LIBS += $(shell pkg-config --libs $(INDICATOR_LIBRARY)) - C_CXX_FLAGS += $(shell pkg-config --cflags $(INDICATOR_LIBRARY)) -DHAVE_INDICATORS + export AYATANA_LIBS += $(shell $(PKG_CONFIG) --libs $(INDICATOR_LIBRARY)) + C_CXX_FLAGS += $(shell $(PKG_CONFIG) --cflags $(INDICATOR_LIBRARY)) -DHAVE_INDICATORS endif #------ Release configuration ------ |