1. 19 7月, 1999 2 次提交
  2. 18 7月, 1999 1 次提交
  3. 10 7月, 1999 1 次提交
  4. 13 6月, 1999 1 次提交
  5. 05 6月, 1999 1 次提交
  6. 26 5月, 1999 1 次提交
  7. 16 5月, 1999 1 次提交
    • B
      I've got 2 pretty small patches. · de81fbd0
      Bruce Momjian 提交于
      configtype.patch simply fixes a typo in config.h.in
      pg_dump.c.patch Updates a bunch of error messages to include a reason
      from
                      the backend, and also removes a couple of unnecessary
      if's
      
      Ole Gjerde
      de81fbd0
  8. 06 4月, 1999 2 次提交
  9. 02 4月, 1999 1 次提交
    • T
      Remove overly presumptuous use of __STDC__ in c.h, replacing · f620241d
      Tom Lane 提交于
      it with configure-script tests to see whether const, inline, volatile, etc
      work or not.  (Curiously, configure was already doing the work to see if
      const and inline were OK, but the results were not getting plugged into
      config.h :-(.)
      f620241d
  10. 26 3月, 1999 1 次提交
  11. 15 3月, 1999 1 次提交
  12. 08 3月, 1999 1 次提交
    • M
      · 75007a72
      Marc G. Fournier 提交于
      Have configure check for use of %lld for int64, and if that fails, check for
      use of %qd...a more generic solution then having #ifdef __<INSERT OS HERE>__
      in the code...
      75007a72
  13. 21 2月, 1999 1 次提交
    • T
      Rearrange handling of MAXBACKENDS a little bit. The default setting · 9d197856
      Tom Lane 提交于
      of MAXBACKENDS is now 1024, since all it's costing is about 32 bytes of memory
      per array slot.  configure's --with-maxbackends switch now controls DEF_MAXBACKENDS
      which is simply the default value of the postmaster's -N switch.  Thus,
      the out-of-the-box configuration will still limit you to 64 backends,
      but you can go up to 1024 backends simply by restarting the postmaster with
      a different -N switch --- no rebuild required.
      9d197856
  14. 19 2月, 1999 1 次提交
    • T
      Allow maximum number of backends to be set at configure time · e77b630c
      Tom Lane 提交于
      (--with-maxbackends).  Add a postmaster switch (-N backends) that allows
      the limit to be reduced at postmaster start time.  (You can't increase it,
      sorry to say, because there are still some fixed-size arrays.)
      Grab the number of semaphores indicated by min(MAXBACKENDS, -N) at
      postmaster startup, so that this particular form of bogus configuration
      is exposed immediately rather than under heavy load.
      e77b630c
  15. 08 2月, 1999 1 次提交
  16. 18 1月, 1999 1 次提交
  17. 17 1月, 1999 1 次提交
  18. 30 12月, 1998 1 次提交
  19. 14 12月, 1998 1 次提交
    • T
      Use standard AC_PROG_INSTALL macro to search for install program, · a10b38f2
      Tom Lane 提交于
      instead of our own halfway-there code.  Add AC_STRUCT_TIMEZONE call
      to check whether tm_zone exists in struct tm.  Revise reading of template
      file so that templates can define any variables they feel like (and,
      indeed, can execute arbitrary shell code) rather than being constrained
      to a fixed set of variable names.
      a10b38f2
  20. 29 11月, 1998 1 次提交
  21. 14 10月, 1998 1 次提交
    • M
      · 4fff1dad
      Marc G. Fournier 提交于
      From: Peter Gucwa <pg@softcomputer.com>
      
      Here are patches needed to complie under AIX 4.2.
      I changed configure.in, pqcomm.c, config.h.in, and fe-connect.c.
      Also I had to install flex because lex did not want to translate pgc.l.
      4fff1dad
  22. 09 10月, 1998 1 次提交
    • T
      Do not enable TCL_ARRAYS feature by default, because it · 60fee725
      Tom Lane 提交于
      is wrong and dangerous unless you are using contrib/string.  We really
      need a thorough look at the issue of making the backend and the FE/BE
      protocols completely 8-bit-clean for string data, but that's a task
      for some future release.
      60fee725
  23. 07 10月, 1998 1 次提交
  24. 06 10月, 1998 1 次提交
    • T
      Add configure test to make sure fcntl(SETLK) is available, · 9e23ab9b
      Tom Lane 提交于
      and make backend/libpq/pqcomm.c only try to lock the socket file when
      the call exists.  Also, change open-RDONLY to open-WRONLY; at least
      on my platform, you can't get a write lock on a file you didn't open
      for writing.
      9e23ab9b
  25. 12 9月, 1998 2 次提交
  26. 11 9月, 1998 2 次提交
  27. 26 8月, 1998 1 次提交
    • M
      · 1acf0d85
      Marc G. Fournier 提交于
      From: Massimo Dal Zotto <dz@cs.unitn.it>
      
      config.patch
      
              remove old defines no more used in the code.
      1acf0d85
  28. 24 8月, 1998 1 次提交
    • B
      Attached is a patch that uses autoconf to determine whether there · 07ae591c
      Bruce Momjian 提交于
      is a working 64-bit-int type available.
      
      In playing around with it on my machine, I found that gcc provides
      perfectly fine support for "long long" arithmetic ... but sprintf()
      and sscanf(), which are system-supplied, don't work :-(.  So the
      autoconf test program does a cursory test on them too.
      
      If we find that a lot of systems are like this, it might be worth
      the trouble to implement binary<->ASCII conversion of int64 ourselves
      rather than relying on sprintf/sscanf to handle the data type.
      
      			regards, tom lane
      07ae591c
  29. 02 8月, 1998 1 次提交
    • M
      · 0668aa88
      Marc G. Fournier 提交于
      Adrian Hall reported a problem to me that snprintf() doesn't exist in, at
      least, Solaris 2.5.1.  We use it in backend/utils/adt/int8.c.
      
      Add a check to configure so that we see if it exists or not, and, if not,
      compile in snprintf.c from backend/port, which was taken from, and falls under
      the same Berkeley license as us, the FreeBSD libc/stdio ...
      0668aa88
  30. 13 5月, 1998 2 次提交
    • M
      · 9391dd36
      Marc G. Fournier 提交于
      Add a check for DBL_MIN problem...not sure if this is right...needs
      testing...
      9391dd36
    • B
      The attached patch corrects two problems with autoconfiguration of · 982c695f
      Bruce Momjian 提交于
      psql in Postgres 6.3.2.  Both of these problems were complained of
      recently in pgsql-questions:
      
      1. In the right circumstances, psql.c will fail to compile due to
      trying
         to include a nonexistent <history.h>.  (Thread "Compile-time
         error" around 17 Apr 98.) 2. In other circumstances, psql will
      compile but does not provide
         command history capability, even though the underlying readline
         library supports it.  (Various threads, most recently "query
         repetition in psql" around 29 Apr.)
      
      Tom Lane
      982c695f
  31. 07 4月, 1998 2 次提交
  32. 06 4月, 1998 1 次提交
    • B
      this patch solve 2 problemes : · fdb37f07
      Bruce Momjian 提交于
      probleme number 1 :
      
      - configure can find the library readline , but don't
        find the header file . so in this case we don't use lib readline
        .
      
      probleme number 2 :
      
      - when you have postgres 6.2.1 and readline installed
        with the same prefix( and generally all your software ) .  you
        can compile the version 6.3 .  I use this prefix , when configure
        ask me for "Additional directories to search for include files"
        .
      
        ( because there a conflict in the header when you
          compile psql.c ) In this case, you must permut the sequence of
        directive -I .
      
      Erwan MAS
      fdb37f07
  33. 31 3月, 1998 1 次提交
    • M
      Pointed out by: Doug Winterburn <dlw@seavme.xroads.com> · 92c6bf97
      Marc G. Fournier 提交于
      2) Add "#define gettimeofday(a,b) gettimeofday(a) to src/include/config.h
              On the 88k SVR4, gettimeofday only has one argument.  This is
              checked for in a few other packages by configure, so there should
              be some examples of the configure test out there.
      92c6bf97
  34. 24 2月, 1998 1 次提交
    • M
      From: "Denis V. Dmitrienko" <denis@null.net> · 0227a4e1
      Marc G. Fournier 提交于
      What it does:
      It solves stupid problem with cyrillic charsets IP-based on-fly recoding.
      take a look at /data/charset.conf for details.
      You can use any tables for any charset.
      Tables are from Russian Apache project.
      Tables in this patch contains also Ukrainian characters.
      
      Then run ./configure --enable-recode
      0227a4e1