1. 14 12月, 2017 3 次提交
  2. 13 12月, 2017 16 次提交
  3. 12 12月, 2017 19 次提交
  4. 11 12月, 2017 2 次提交
    • D
      Remove incorrect macro for checking stdc headers · c91c2523
      Daniel Gustafsson 提交于
      The AC_INCLUDES_DEFAULT macro expands to a text for the preprocessor
      to include the standard C headers, just running it bare renders an
      error without checking anything. The macro for actually testing the
      standard includes, AC_HEADER_STDC, is deprecated since all standard
      autoconf test macros use AC_INCLUDES_DEFAULT. And if we really find
      ourselves on a system without the C89 headers then testing for them
      specifically wont help us much since lots of other tests will fail
      as well (probably before this one would have a chance to run).
      
      In removing this, the code for checking ORCA headers with C++ was
      injected before testing C headers which caused errors later when
      checking types. Fix by moving the ORCA checks last, and while doing
      so also move library checks to the correct section of the autoconf
      script.
      
      This also performs minor copyediting on header file check error
      messages which were adjacent to the affected code.
      c91c2523
    • D
      Make orafce build without PGXS · b6b19f64
      Daniel Gustafsson 提交于
      While there is a target in gpAux/extensions for building orafuncs,
      we might as well allow it to be built without PGXS as well which is
      handy for quick compile tests. Set the correct path to the builddir
      such that Makefile dependencies can be picked up.
      b6b19f64