From 26efb69ff40850cdba0a4460eb0a08f8094956d3 Mon Sep 17 00:00:00 2001 From: Robert Kausch Date: Mon, 2 Mar 2020 23:58:14 +0100 Subject: [PATCH] Adjustments for compiling on Solaris/illumos. --- Makefile-options | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile-options b/Makefile-options index ed5922500..862abe599 100644 --- a/Makefile-options +++ b/Makefile-options @@ -132,6 +132,11 @@ endif LDCONFIG = /sbin/ldconfig INSTALL = install + +ifeq ($(BUILD_SOLARIS),True) + INSTALL = ginstall +endif + INSTALL_PROGRAM = $(INSTALL) INSTALL_DATA = $(INSTALL) -m 644 @@ -191,6 +196,8 @@ else ifeq ($(findstring systemliburiparser,$(config)),systemliburiparser) else ifeq ($(BUILD_OSX),True) USE_BUNDLED_LIBURIPARSER = True + else ifeq ($(BUILD_SOLARIS),True) + USE_BUNDLED_LIBURIPARSER = True else ifeq ($(BUILD_WIN32),True) USE_BUNDLED_LIBURIPARSER = True endif