Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installing on FreeBSD after 4.2.1 #126

Open
5u623l20 opened this issue Jul 19, 2022 · 3 comments
Open

Installing on FreeBSD after 4.2.1 #126

5u623l20 opened this issue Jul 19, 2022 · 3 comments

Comments

@5u623l20
Copy link

5u623l20 commented Jul 19, 2022

Since the upgrade to 4.2.1 I am unable to compile this module in FreeBSD. While building I get the following error at configure stage:

checking for zlib... 1.2.11
checking whether zlib version 1.2.11 >= 1.2.0.4... ok
checking whether zlib can be linked... yes
./configure: ${CPPFLAGS:$...}: Bad substitution

Is it possible to update the compatibility of autoconf? There has been lots of changes in autoconf2.70.

@m6w6
Copy link
Owner

m6w6 commented Aug 9, 2022

Duh, that might look like shell issue; I prolly introduced some bashisms?

@kvsmirnov
Copy link

kvsmirnov commented Mar 14, 2023

/bin/sh must be the bash to compile w/o errors
rename sh and make symlink to INSTALLED bash
cd /bin
mv sh sh.bak
ln -s /usr/local/bin/bash sh

Then compile. After compile you need to restore original sh
cd /bin
rm sh
mv sh.bak sh

@m6w6
Copy link
Owner

m6w6 commented Mar 20, 2023

Wouldn't it just work with bash ./configure?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants