Add Ubuntu/debian note for configure script#5
Add Ubuntu/debian note for configure script#5mkgrgis wants to merge 3 commits intoibarwick:masterfrom
Conversation
|
I don't understand the need to provide this oddly specific information for a particular distribution family at this point. As a general note, if you are sending in PRs and realise changes are needed, please rebase into a single commit nd force-push; it's much easier to review that way. |
|
I think default configuration of |
|
The default value for |
|
Excuse me, @ibarwick, but what about ibarwick/firebird_fdw@4ce1f1a ? No problem with separate
both For Debian there is something similar but I don't know why Debian and Ubuntu not stick to the usual practice of Unix filesystems. |
|
I still don't understand what problem you are trying to solve here. It's normal for directories under You can, if you wish, configure |
Maybe real problem is near search paths (LD_LIBRARY_PATH ?) for
|
|
Other form of problem of search addresses is described here https://github.com/ibarwick/libfq/blob/master/INSTALL.md#known-ibaseh-locations |
|
@ibarwick , maybe you can add a check clause like distr=$(cat /etc/issue | cut -f 1 -d ' ');
if [ "$distr" == "Debian" ] || [ "$distr" == "Ubuntu" ] || [ "$distr" == "Mint" ]; then
ac_default_prefix=/usr
else
ac_default_prefix=/usr /local
finear Line 581 in f9d0e2c configure i other repos scripts resolve this Debain-derivative case?
|
No description provided.