diff options
author | Mihai Moldovan <ionic@ionic.de> | 2017-12-16 07:47:17 +0100 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2017-12-16 07:47:17 +0100 |
commit | 779a116ff3a4de2333ce647b32a253a80cbfc2a5 (patch) | |
tree | d134265a5e453426c7b687133b95cc8c44e222a9 /nx-X11/programs/Xserver/hw/nxagent/Imakefile | |
parent | e92c2a87808ec922b6bc90d5d5002ca77318f697 (diff) | |
download | nx-libs-779a116ff3a4de2333ce647b32a253a80cbfc2a5.tar.gz nx-libs-779a116ff3a4de2333ce647b32a253a80cbfc2a5.tar.bz2 nx-libs-779a116ff3a4de2333ce647b32a253a80cbfc2a5.zip |
Support building with legacy zlib versions that do not ship a pkg-config file.
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Imakefile')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Imakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Imakefile b/nx-X11/programs/Xserver/hw/nxagent/Imakefile index c5773215c..a67b2accf 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Imakefile +++ b/nx-X11/programs/Xserver/hw/nxagent/Imakefile @@ -175,7 +175,7 @@ INCLUDES = \ $(VFBINCLUDES) \ `pkg-config --cflags-only-I libxml-2.0` \ `pkg-config --cflags-only-I pixman-1` \ - `pkg-config --cflags-only-I zlib` \ + $$(pkg-config --exists 'zlib' >/dev/null 2>&1 && pkg-config --libs 'zlib' || echo "-lz") \ `pkg-config --cflags-only-I libpng` \ $(NULL) #else @@ -199,7 +199,7 @@ INCLUDES = \ $(VFBINCLUDES) \ `pkg-config --cflags-only-I libxml-2.0` \ `pkg-config --cflags-only-I pixman-1` \ - `pkg-config --cflags-only-I zlib` \ + $$(pkg-config --exists 'zlib' >/dev/null 2>&1 && pkg-config --libs 'zlib' || echo "-lz") \ `pkg-config --cflags-only-I libpng` \ $(NULL) #endif |