From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Paul Förster <paul(dot)foerster(at)gmail(dot)com> |
Cc: | Daniel Gustafsson <daniel(at)yesql(dot)se>, pgsql-hackers(at)lists(dot)postgresql(dot)org |
Subject: | Re: Building 12.3 from source on Mac |
Date: | 2020-07-23 14:03:48 |
Message-ID: | 194215.1595513028@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
=?utf-8?Q?Paul_F=C3=B6rster?= <paul(dot)foerster(at)gmail(dot)com> writes:
>> On 23. Jul, 2020, at 15:42, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>> However, Apple's toolchain doesn't search /usr/local by default,
>> I believe. You'll need to add something along the line of
>> --with-includes=/usr/local/include --with-libs=/usr/local/lib
>> to your configure command.
> I tried with your options. Still, same effect. Ok, worth a try.
I might be wrong about that. But this shows another issue:
> paul(at)meerkat:~$ mdfind -name libintl | egrep -vi "/(share|man|bin|system)/"
> /usr/local/lib/libintl.3.4.3.dylib
> /usr/local/lib/libintl.a
> /usr/local/lib/libintl.la
> /usr/local/include/libintl.h
Looks like what you lack is a symlink libintl.dylib -> libintl.3.4.3.dylib
in /usr/local/lib. It's not real clear to me why you'd have .a and .la
files and no versionless symlink, because all of those files would
just be used for linking dependent software.
> But I did not *knowingly* install that. I guess it comes as part of Xcode but I really don't know. I'm not a developer, I just want to build PostgreSQL for my Mac.
These files absolutely, positively, gold-plated 100% did not come
with XCode. Homebrew installs stuff under /usr/local though.
Not sure about MacPorts.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Justin Pryzby | 2020-07-23 14:14:54 | Re: Open Item: Should non-text EXPLAIN always show properties? |
Previous Message | Paul Förster | 2020-07-23 13:56:27 | Re: Building 12.3 from source on Mac |