James Brown:
> > On 24 Feb 2023, at 11:57 pm, Wietse Venema <[email protected]> wrote:
> >
> > James Brown:
> >> Sorry if this is a bit of a basic question, but I?m trying to compile from
> >> source on macOS 13.21.1 but the makefile has lines commented out.
> >>
> >> I'm trying:
> >>
> >> make -f Makefile.init makefiles \
> >> CCARGS='-DUSE_TLS -DUSE_SASL_AUTH \
> > ...
> >> -DHAS_MYSQL -I/opt/homebrew/Cellar/mysql/8.0.32/include/' \
> > ...
> >
> > Try using " instead of '
> >
> > Someone has "improved"(*) the shell and broke command examples that
> > I wrote 20+ years ago.
> >
> > Wietse
> >
> > (*) Or worse, some standard committee "improved" the spec.
> >
>
> Thanks for your help Wietse. (The shell is zsh)
>
> % make -f Makefile.init makefiles CCARGS="-DUSE_TLS -DUSE_SASL_AUTH \
> -DDEF_SERVER_SASL_TYPE=\"dovecot\" \
Try:
make -f Makefile.init makefiles CCARGS="-DUSE_TLS -DUSE_SASL_AUTH \
-DDEF_SERVER_SASL_TYPE=\\\"dovecot\\\" \
...
That's three backslashes where there was one.
Wietse