| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | 1999-07-17 | 5 | -11/+4 |
| | | |||||
| * | Final cleanup. | Bruce Momjian | 1999-07-16 | 4 | -8/+9 |
| | | |||||
| * | Update #include cleanups | Bruce Momjian | 1999-07-16 | 17 | -28/+28 |
| | | |||||
| * | Change #include's to use <> and "" as appropriate. | Bruce Momjian | 1999-07-15 | 10 | -23/+23 |
| | | |||||
| * | Remove unused #includes in *.c files. | Bruce Momjian | 1999-07-15 | 2 | -7/+1 |
| | | |||||
| * | Clean up #include in /include directory. Add scripts for checking includes. | Bruce Momjian | 1999-07-15 | 3 | -5/+2 |
| | | |||||
| * | Redefine cpu's as __cpu__. Only for 6.6 branch. | Bruce Momjian | 1999-07-13 | 2 | -6/+6 |
| | | |||||
| * | pgindent run over code. | Bruce Momjian | 1999-05-25 | 1 | -1/+1 |
| | | |||||
| * | Apply freebsd specific patches dealign with ELF system from FreeBSD's | Marc G. Fournier | 1999-05-17 | 1 | -0/+2 |
| | | | | | ports collection ... | ||||
| * | small error message improvement from Dmitry Samersoff | Bruce Momjian | 1999-05-05 | 1 | -1/+1 |
| | | |||||
| * | We have tested the patches on three platforms: | Bruce Momjian | 1999-03-14 | 1 | -0/+2 |
| | | | | | | | | | | | | | | NetBSD/macppc LinuxPPC FreeBSD 2.2.6-RELEASE All of them seem happy with the regression test. Note that, however, compiling with optimization enabled on NetBSD/macppc causes an initdb failure (other two platforms are ok). After checking the asm code, we are suspecting that might be a compiler(egcs) bug. Tatsuo Ishii | ||||
| * | From: Tatsuo Ishii <t-ishii@sra.co.jp> | Marc G. Fournier | 1999-02-21 | 1 | -2/+2 |
| | | | | | | | Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical. | ||||
| * | Change my-function-name-- to my_function_name, and optimizer renames. | Bruce Momjian | 1999-02-13 | 22 | -40/+40 |
| | | |||||
| * | Add missing Windows files. | Bruce Momjian | 1999-01-18 | 2 | -0/+38 |
| | | |||||
| * | Replace direct inclusions of c.h with inclusion of postgres.h, | Tom Lane | 1999-01-17 | 3 | -5/+5 |
| | | | | | to ensure that config.h is included as well. | ||||
| * | Don't forget to create the dynloader files... | Marc G. Fournier | 1998-10-27 | 2 | -0/+152 |
| | | |||||
| * | OK, folks, here is the pgindent output. | Bruce Momjian | 1998-09-01 | 17 | -32/+32 |
| | | |||||
| * | Renaming cleanup, no pgindent yet. | Bruce Momjian | 1998-09-01 | 5 | -13/+13 |
| | | |||||
| * | re-integrate nextstep dynloader functionality | Marc G. Fournier | 1998-08-25 | 2 | -0/+108 |
| | | | | | From: Jacek Lasecki <jacek@sound.eti.pg.gda.pl> | ||||
| * | My mailer munged the intro text in my last post. Here is the text | Bruce Momjian | 1998-07-19 | 2 | -0/+38 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in a more readable form. -- I am submitting the following patches to the June 6, 1998 snapshot of PostgreSQL. These patches implement a port of PostgreSQL to SCO UnixWare 7, and updates the Univel port (UnixWare 2.x). The patched files, and the reason for the patch are: File Reason for the patch --------------- --------------------------------------------------------------- src/backend/port/dynloader/unixware.c src/backend/port/dynloader/unixware.h src/include/port/unixware.h src/makefiles/Makefile.unixware src/template/unixware Created for the UNIXWARE port. src/include/port/univel.h Modifed this file to work with the changes made to s_lock.[ch]. src/backend/storage/buffer/s_lock.c src/include/storage/s_lock.h Moved the UNIXWARE (and Univel) tas() function from s_lock.c to s_lock.h. The UnixWare compiler asm construct is treated as a macro and needs to be in the s_lock.h file. I also reworked the tas() function to correct some errors in the code. src/include/version.h.in The use of the ## operator with quoted strings in the VERSION macro caused problems with the UnixWare C compiler. I removed the ## operators since they were not needed in this case. The macro expands into a sequence of quoted strings that will be concatenated by any ANSI C compiler. src/config.guess This script was modified to recognize SCO UnixWare 7. src/configure src/configure.in The configure script was modified to recognize SCO UnixWare 7. Billy G. Allie | ||||
| * | Solaris cleanup. | Bruce Momjian | 1998-06-19 | 4 | -4/+4 |
| | | |||||
| * | Remove un-needed braces around single statements. | Bruce Momjian | 1998-06-15 | 5 | -19/+3 |
| | | |||||
| * | Remove fork()/exec() and only do fork(). Small cleanups. | Bruce Momjian | 1998-05-29 | 1 | -1/+1 |
| | | |||||
| * | Get the ultrix4 ports back in sync... | Marc G. Fournier | 1998-03-10 | 2 | -0/+198 |
| | | |||||
| * | From: "Billy G. Allie" <Bill.Allie@mug.org> | Marc G. Fournier | 1998-03-01 | 2 | -19/+19 |
| | | | | | | | | | | | | The following patches will allow postgreSQL 6.3 to compile and run on a UNIXWARE 2.1.2 system with the native C compiler with the following library change: The alloca function must be copied from the libucb.a archive and added to the libgen.a archive. Also, the GNU flex program is needed to successfully build postgreSQL. | ||||
| * | pgindent run before 6.3 release, with Thomas' requested changes. | Bruce Momjian | 1998-02-26 | 10 | -57/+57 |
| | | |||||
| * | Forgot about the svr4 dynloader stuff | Marc G. Fournier | 1998-02-24 | 2 | -0/+38 |
| | | | | | From: Frank Ridderbusch <ridderbusch.pad@sni.de> | ||||
| * | Just another missing dummy file | Marc G. Fournier | 1998-02-17 | 1 | -0/+4 |
| | | |||||
| * | From: Brian E Gallew <geek+@cmu.edu> | Marc G. Fournier | 1998-02-14 | 2 | -109/+16 |
| | | | | | | | | | dgux 5.4R4.11 Missing port-protos.h (not needed, I think). Wants dld.h. Should really use the system dl stuff (like i386_solaris). Needs to include <netinet/in.h> before <arpa/inet.h>. Here are some patches... | ||||
| * | From: Tom I Helbekkmo <tih@Hamartun.Priv.NO> | Marc G. Fournier | 1998-02-13 | 1 | -3/+4 |
| | | | | | | | | | | Apart from this Makefile hack, all I've done is to make dynamically loaded code modules fail properly (as was already done for __mips__, although I think this is too loose: I believe NetBSD for the pmax can do dynamic linking), and to add test-and-set lock handling. As Bruce suggested, this is done in a maximally efficient inlined way: I was not aware that this code was so important, speed-wise. | ||||
| * | Goodbye register keyword. Compiler knows better. | Bruce Momjian | 1998-02-11 | 1 | -10/+10 |
| | | |||||
| * | Just another dummy file | Marc G. Fournier | 1998-02-03 | 1 | -0/+4 |
| | | |||||
| * | Add an irix5.c dummy file for irix5 port | Marc G. Fournier | 1998-02-02 | 1 | -0/+4 |
| | | |||||
| * | Fix up the alpha port/dynloader for configure | Marc G. Fournier | 1998-02-02 | 2 | -0/+39 |
| | | |||||
| * | Fixes: | Marc G. Fournier | 1998-02-02 | 1 | -2/+2 |
| | | | | | | | dynloader.c:25: port-protos.h: No such file or directory In HPUX port | ||||
| * | Missed adding new univel files and removing univel subdirectory | Marc G. Fournier | 1998-02-01 | 2 | -0/+38 |
| | | |||||
| * | Try this to fix HP/UX port compile | Marc G. Fournier | 1998-01-26 | 1 | -0/+22 |
| | | |||||
| * | A dummy file so that configure under solaris works | Marc G. Fournier | 1998-01-23 | 1 | -0/+4 |
| | | |||||
| * | Add a 'dummy' file for i386_solaris.c for configure | Marc G. Fournier | 1998-01-13 | 1 | -0/+4 |
| | | |||||
| * | Goodbye ABORT. Hello ERROR for all errors. | Bruce Momjian | 1998-01-07 | 1 | -2/+2 |
| | | |||||
| * | Change elog(WARN) to elog(ERROR) and elog(ABORT). | Bruce Momjian | 1998-01-05 | 1 | -2/+2 |
| | | |||||
| * | need to include postgres.h before HAVE_DLD_H | Marc G. Fournier | 1998-01-02 | 1 | -2/+4 |
| | | | | | | | need to include string.h for strdup() From: Bryan Henderson <bryanh@giraffe-data.com> | ||||
| * | Test for __ELF__ rather than LINUX_ELF in headers. | Thomas G. Lockhart | 1998-01-01 | 2 | -6/+8 |
| | | | | | | | Comment-out dynamic link function declarations since they are all provided by the system. Should we bother continuing to support non-elf Linux systems?? | ||||
| * | Move more to dynloader subdir | Marc G. Fournier | 1997-12-20 | 3 | -0/+190 |
| | | |||||
| * | fix so that dynloader.h is included instead of port-protos.h | Marc G. Fournier | 1997-12-20 | 3 | -4/+4 |
| | | |||||
| * | Oops, forgot to add what I took away | Marc G. Fournier | 1997-12-20 | 2 | -0/+70 |
| | | |||||
| * | More cleanups... | Marc G. Fournier | 1997-12-20 | 1 | -0/+38 |
| | | |||||
| * | More ports switched over | Marc G. Fournier | 1997-12-20 | 2 | -0/+68 |
| | | |||||
| * | Move over the BSDi port files | Marc G. Fournier | 1997-12-20 | 2 | -0/+140 |
| | | |||||
| * | This should get the linux port to work... | Marc G. Fournier | 1997-12-20 | 2 | -0/+156 |
| | | |||||
