Hi, On 2022-09-30 11:45:35 -0400, Tom Lane wrote: > Andres Freund <and...@anarazel.de> writes: > > One concern with that is that default would also apply to windows - autoconf > > didn't have to care about that. I just tried it, and it "just" ends up > > installing it into c:/usr/local/pgsql (assuming the build dir is in > > c:/<something>). I think that's something we could live with, but it's > > worth > > thinking about. > > Can we have a platform-dependent default?
Not easily in that spot, I think. > What was the default behavior with the MSVC scripts? The install script always needs a target directory. And pg_config_paths is always set to: print $o <<EOF; #define PGBINDIR "/bin" #define PGSHAREDIR "/share" #define SYSCONFDIR "/etc" #define INCLUDEDIR "/include" #define PKGINCLUDEDIR "/include" #define INCLUDEDIRSERVER "/include/server" #define LIBDIR "/lib" #define PKGLIBDIR "/lib" #define LOCALEDIR "/share/locale" #define DOCDIR "/doc" #define HTMLDIR "/doc" #define MANDIR "/man" EOF Greetings, Andres Freund