1. 15 10月, 2000 1 次提交
    • B
      The configure script fails to find <netinet/tcp.h>. · 0f07d644
      Bruce Momjian 提交于
      As a result, backend/libpq/pqcomm.c and interfaces/libpq/fe-connect.c
      fail to compile.
      
      The <netinet/tcp.h> header needs to be preceded by <netinet/in.h>, at
      least on IRIX, Solaris and AIX.  The simple configure test fails.
      (That header on Linux is idempotent.)
      
      The basic problem is that <netinet/tcp.h> is a BSD header.  The
      correct header for TCP internals such as TCP_NODELAY on a UNIX system
      is <xti.h>.  By UNIX I mean UNIX95 (aka XPG4v2 or SUSv1) or later.
      The current UNIX standard (UNIX98 aka SUSv2) is available online at
      <http://www.opengroup.org/onlinepubs/7908799/>.
      
      The fix is to add header support for <xti.h> into configure.in and
      config.h.in.
      
      The 2 files which conditionally include <netinet/tcp.h> need also to
      conditionally include <xti.h>.
      
      Pete Forman
      0f07d644
  2. 11 10月, 2000 1 次提交
  3. 10 10月, 2000 1 次提交
  4. 09 10月, 2000 1 次提交
  5. 08 10月, 2000 1 次提交
    • B
      This removes the LDFLAGS from the template and adds an autoconf check · ed059eca
      Bruce Momjian 提交于
      for the library.  not sure if this will cause problems on other
      platforms, but if it does it can be easily fixed.  Also remove the
      references to the GeekGadgets includes as the majority of users don't
      have them installed and they foul the build process.  We can document
      that adding them if you have them installed is a good idea.
      
      David Reid
      ed059eca
  6. 07 10月, 2000 2 次提交
    • B
      Beos regression patch. · 8e469b4f
      Bruce Momjian 提交于
      8e469b4f
    • B
      The beos port in the source tree doesn't even compile. and even · 7ea8403c
      Bruce Momjian 提交于
      after that dynamic loading isn't working and shared memory handling is
      broken.
      
              Attached with this message, there is a Zip file which contain :
      
              * beos.diff = patch file generated with difforig
              * beos = folder with beos support files which need to be moved in /
      src/backend/port
              * expected = foler with three file for message and precision
      difference in regression test
              * regression.diff = rule problem (need to kill the backend manualy)
              * dynloader = dynloader files (they are also in the pacth files,
      but there is so much modification that I have join full files)
      
              Everything works except a problem in 'rules' Is there some problems
      with rules in the current tree ? It used to works with last week tree.
      
      Cyril VELTER
      7ea8403c
  7. 04 10月, 2000 1 次提交
  8. 03 10月, 2000 5 次提交
    • P
    • B
      Update configure.in · e846c2bb
      Bruce Momjian 提交于
      e846c2bb
    • B
      Add configure.in change. · 99f7c157
      Bruce Momjian 提交于
      99f7c157
    • B
      New diff that now covers the entire tree. Applying this gets postgresql · 87c0e623
      Bruce Momjian 提交于
      working on the VERY latest version of BeOS.  I'm sure there will be
      alot of comments, but then if there weren't I'd be disappointed!
      
      Thanks for your continuing efforts to get this into your tree.
      
      Haven't bothered with the new files as they haven't changed.
      
      BTW Peter, the compiler is "broken" about the bool define and so on.
      I'm filing a bug report to try and get it addressed.  Hopefully then we
      can tidy up the code a bit.
      
      I await the replies with interest :)
      
      David Reid
      87c0e623
    • B
      Here is the first batch of files and diffs for the BeOS port. I've run into · 7a7e0240
      Bruce Momjian 提交于
      problems with some bits of it, but when all the patches are in it'll build
      and we can fix it from there :)  I've got a version that builds and runs and
      that is the basis for these patches.
      
      The first file has the new additional files that are required,
          template/beos
          backend/port/dynloader/beos.c
          backend/port/dynloader/beos.h
          include/port/beos.h
          makefiles/Makefile.beos
      
      The second is a tarball of diffs against a few files.  I've added sys/ipc.h
      to configure and config.h via configure.in and config.h.in and then started
      adding the check as this file isn't needed on BeOS and having loads of
      #ifdef BEOS isn't as obvious as #ifdef HAVE_SYS_IPC_H and isn't as
      autconf'ish :)
      Files touched are
          include/c.h
          configure.in
          include/config.h.in
          include/storage/ipc.h
          include/utils/int8.h
      
      Let me know how these go.  I'll await a response before submitting any more.
      
      Any problems just get in touch.
      
      David Reid
      7a7e0240
  9. 30 9月, 2000 2 次提交
  10. 27 9月, 2000 1 次提交
  11. 26 9月, 2000 1 次提交
  12. 22 9月, 2000 1 次提交
  13. 12 9月, 2000 1 次提交
    • B
      Attached is a small patch that fixes a small "bug" with specifying the · 7ef9db82
      Bruce Momjian 提交于
      souce directory of OpenSSL as argument to the --with-openssl - argument.
      
      ./configure --with-openssl=/tmp/openssl-0.9.5/ - the libcrypto.a is in
      the
      "base" directory, not lib/.
      
      Also, there's 2-3 typo fixes to the documentation for SSL - it should be
      "server.crt", not "server.cert".
      
      Dominic J. Eidson
      7ef9db82
  14. 29 8月, 2000 1 次提交
  15. 28 8月, 2000 2 次提交
  16. 25 8月, 2000 1 次提交
  17. 20 8月, 2000 1 次提交
  18. 28 7月, 2000 1 次提交
  19. 23 7月, 2000 1 次提交
  20. 20 7月, 2000 1 次提交
    • P
      Add distprep target to take some of the job of the release_prep script. · 32163099
      Peter Eisentraut 提交于
      The latter updated accordingly. Also add `dist' and `distcheck' targets
      to play with, but caveat packager.
      
      Updated backend/bootstrap and backend/parser makefile to make them
      marginally builddir aware and fix the usual set of things.
      
      Add rule to automatically remake config.h dependent on config.h.in and
      config.status. (Adopted from Autoconf manual and about every other
      package.) On a good day we should now have a complete and accurate set
      of dependencies throughout everything.
      32163099
  21. 18 7月, 2000 1 次提交
  22. 16 7月, 2000 1 次提交
  23. 15 7月, 2000 1 次提交
  24. 13 7月, 2000 1 次提交
    • P
      Remove a bunch of unused configure tests, in particular cases where · cb292206
      Peter Eisentraut 提交于
      * the result is not recorded anywhere
      * the result is not used anywhere
      * the result is only used in some places, whereas others have been getting away with it
      * the result is used improperly
      
      Also make command line options handling a little better (e.g., --disable-locale,
      while redundant, should really still *dis*able).
      cb292206
  25. 09 7月, 2000 1 次提交
    • P
      Another round of those unportable config/build changes :-/ · 74618e2b
      Peter Eisentraut 提交于
      * Add option to build with OpenSSL out of the box. Fix thusly exposed
        bit rot. Although it compiles now, getting this to do something
        useful is left as an exercise.
      
      * Fix Kerberos options to defer checking for required libraries until
        all the other libraries are checked for.
      
      * Change default odbcinst.ini and krb5.srvtab path to PREFIX/etc.
      
      * Install work around for Autoconf's install-sh relative path anomaly.
        Get rid of old INSTL_*_OPTS variables, now that we don't need them
        anymore.
      
      * Use `gunzip -c' instead of g?zcat. Reportedly broke on AIX.
      
      * Look for only one of readline.h or readline/readline.h, not both.
      
      * Make check for PS_STRINGS cacheable. Don't test for the header files
        separately.
      
      * Disable fcntl(F_SETLK) test on Linux.
      
      * Substitute the standard GCC warnings set into CFLAGS in configure,
        don't add it on in Makefile.global.
      
      * Sweep through contrib tree to teach makefiles standard semantics.
      
      ... and in completely unrelated news:
      
      * Make postmaster.opts arbitrary options-aware. I still think we need to
        save the environment as well.
      74618e2b
  26. 07 7月, 2000 1 次提交
    • P
      Backend makefile cleanup. make maintainer-clean is now completely · f0b4ae69
      Peter Eisentraut 提交于
      functional.
      
      Handle include file installation in src/include/Makefile
      
      genbki.sh improvements: Don't substitute anything by config.status,
      instead pass in AWK and CPP through environment. Change calling
      convention to support named output files, so we get to see error
      messages on stderr.
      
      Rename bootstrap template files and install them into PREFIX/share.
      Update initdb to that effect and other readability improvements
      in initdb.
      f0b4ae69
  27. 06 7月, 2000 2 次提交
    • M
      · 8bef6890
      Marc G. Fournier 提交于
      add check for libz compression library for pg_dump
      8bef6890
    • B
      attached to this mail is a patch from a colleague that makes · 411cf2da
      Bruce Momjian 提交于
      PostgreSQL-7.0.2 run on Linux for the Intel-IA64 architecture. It also
      fixes a bug in the configure scripts that caused configure to fail on
      the fcntl(F_SETLK) test.
      
      This fix triggered a bug in the fcntl(F_SETLK) code of the Linux
      kernel when used on unix domain sockets resulting in postmaster to
      segfault immediately after startup. There is a fix available and
      included in the kernel that will be on SuSE Linux 7.0, but kernels <=
      2.2.16 still have this bug.
      
      Reinhard Max
      411cf2da
  28. 02 7月, 2000 2 次提交
  29. 01 7月, 2000 2 次提交
  30. 29 6月, 2000 1 次提交
    • P
      Makefile cleanup for interface tree. Now essentially with all the · 44f64dd3
      Peter Eisentraut 提交于
      standard targets and behaviour. Replaced Makefile.in's with
      Makefile's and declared the respective variables in Makefile.global.
      
      maintainer-clean target now available at top level, although it does
      not work in the backend tree yet.
      
      Cleanup pass over Makefile.shlib, renamed some targets and variables.
      The shared library symlink tests are now done by make, not the shell.
      
      ecpg: Remove one warning in sloppy flex output.
      
      PL/Perl and Perl interface: the MakeMaker documentation is confusing,
      the realclean target *does* "delete derived files", but it also
      uninstalls them. Don't use that.
      
      The submake targets in the various bin directories that update libpq
      should `make all', not `make libpq.a'. That is a) unportable, and
      b) doesn't build the shared library.
      44f64dd3