From 22208ddbd72bb6d9cadc8a824b2a9f36d6c2000b Mon Sep 17 00:00:00 2001 From: "C. Mangla" Date: Thu, 9 Nov 2023 08:06:53 +0000 Subject: [PATCH 1/2] Update README More details for macOS build example --- README | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README b/README index 7271879..05fec29 100644 --- a/README +++ b/README @@ -131,14 +131,16 @@ For example on Ubuntu 16.04: On macOS, for example: - $ brew install autoconf automake + $ brew install autoconf automake pkg-config libtool lzo xz $ glibtoolize --force $ aclocal $ autoheader $ automake --force-missing --add-missing $ autoconf - $ ./configure - $ make + $ ./configure --prefix=/Users/me/.local/ \ + --with-lzo=/usr/local/Cellar/lzo/2.10 \ + --with-xz=/usr/local/Cellar/xz/5.4.4 + $ make install 2f. Usage --------- From e4b41e1eb61d3dbea91e160514ac8fc1c0c8c990 Mon Sep 17 00:00:00 2001 From: "C. Mangla" Date: Fri, 10 Nov 2023 08:16:07 +0000 Subject: [PATCH 2/2] More sensible install dir on macOS example --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 05fec29..3ca37a8 100644 --- a/README +++ b/README @@ -137,7 +137,7 @@ On macOS, for example: $ autoheader $ automake --force-missing --add-missing $ autoconf - $ ./configure --prefix=/Users/me/.local/ \ + $ ./configure --prefix=/usr/local/ \ --with-lzo=/usr/local/Cellar/lzo/2.10 \ --with-xz=/usr/local/Cellar/xz/5.4.4 $ make install