Changes between Version 2 and Version 3 of postgresql


Ignore:
Timestamp:
11/19/2010 10:29:02 PM (13 years ago)
Author:
ken@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • postgresql

    v2 v3  
    44The kernel needs the '''"System V IPC"''' enabled. Find that in '''"General setup"''' in the kernel config.
    55
     6== static libs ==
     7There is no obvious way to prevent the static versions of the libs being installed.
     8
     9== scripting ==
     10if you script the full set of commands to prove the new server works, you will need to wait for the server to start before you try to create the test database.
     11
     12== installing for a client ==
     13If you are only building a client to connect to a server on another machine, you can save some time and space (specifically, the postgres program and the postmaster symlink, the charset modules, and the server data in /usr/share/postgresql) if you configure and make as normal, but replace the install with
     14{{{
     15make -C src/bin install
     16make -C src/include install
     17make -C src/interfaces install
     18}}}
     19 You will probably want to make install-docs as with a server install.
     20
    621[wiki:Databases Up][[br]]
    722[wiki:BlfsNotes Top]