Re: Building libpq independently of server
Tom Lane <[email protected]> Sun, 24 Mar 2019 01:15:57 -0400
| Newsgroups | gmane.comp.db.postgresql.odbc |
|---|---|
| Message-ID | <[email protected]> |
Igor Korot <[email protected]> writes: > I just tried to build the libpq from sources on the Oracle Solaris 11.4. > Below is the console output: > igor@solaris:~/dbhandlerSol/libpq$ ./configure > ... > igor@solaris:~/dbhandlerSol/libpq$ cd src/interfaces/libpq/ > igor@solaris:~/dbhandlerSol/libpq/src/interfaces/libpq$ make > make: Fatal error in reader: ../../../src/Makefile.global, line 45: > Unexpected end of line seen The first thing that occurs to me is that "make" on your system is not GNU make, so that you need to use "gmake" instead. regards, tom lane