autoconf-archive-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Autoconf Archive branch, master, updated. v2012.04.07-31-g635720c


From: Receive an e-mail notifications whenever the Git repository changes.
Subject: Autoconf Archive branch, master, updated. v2012.04.07-31-g635720c
Date: Sat, 8 Sep 2012 07:00:23 +0200

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Autoconf Archive".

The branch, master has been updated
       via  635720c554c7c02abcc0c9b5d531af20e4ab7dbe (commit)
       via  bf4d179c75c2abf354b5c9c555bcc619360fbb3e (commit)
       via  1acb2a797f945d99634d891aa9cb07bdec7a6dcc (commit)
       via  51a683a671403afe0fc3bb1838d28f42b89d1fe1 (commit)
       via  25c967b2c1572fe1bfdd2de410986c0b52d01039 (commit)
       via  99407098092a2770b487f5b87d2899880f6797d4 (commit)
       via  9ed38de69235707cba595813e5eb87f41fcb1085 (commit)
       via  3572c400902b69258141ddc579c9788aeb29145d (commit)
       via  0888e48d5057dac7a305960cda499ce47fd92409 (commit)
       via  96209d066670dc81aa50ee1bfa4e5690a546e861 (commit)
       via  e381c32954e6dc899d76d30c68fa9a3b9cf086f3 (commit)
       via  8d4fb7842889783f527e5be233c2bb0cdb3dbce3 (commit)
       via  c78c8c763254ad0086bc8bd5c714cba0425080b2 (commit)
      from  2d6f7df85ade8b2f5decc424f036584b0c116c9b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 635720c554c7c02abcc0c9b5d531af20e4ab7dbe
Author: Christopher Gilbreth <address@hidden>
Date:   Fri Sep 7 11:36:13 2012 +0200

    AX_BLAS: improve the detection of the Intel Math Kernel Library (MKL)
    
    New versions of the MKL cannot be linked with "-lmkl -lguide -lpthread", but
    instead require variations on "-lmkl_intel_lp64 -lmkl_sequential -lmkl_core
    -lpthread",depending on architecture, compiler & other variables. See
    <http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/>.
    
    The present patch detects the architecture (x86_64 or i686) and compiler
    (gfortran or others), but not the interface layer (assumes lp64 for x86_64),
    threading (assumes sequential), static vs. dynamic (assumes dynamic), etc.
    
    Tested on a number of different systems using gfortran and ifort.
    
    See <http://savannah.gnu.org/patch/?7807> for further details.

commit bf4d179c75c2abf354b5c9c555bcc619360fbb3e
Author: Leo Davis <address@hidden>
Date:   Fri Sep 7 11:28:32 2012 +0200

    AX_CHECK_CLASS did not use the `uudecode' found by AX_PROG_JAVA_WORKS.
    
    See <http://savannah.gnu.org/patch/?7835> for further details.

commit 1acb2a797f945d99634d891aa9cb07bdec7a6dcc
Author: Leo Davis <address@hidden>
Date:   Fri Sep 7 11:25:56 2012 +0200

    AX_PROG_JAVA_WORKS would never find a 'uudecode' that could decode base64, 
even if one was on the path.
    
    See <http://savannah.gnu.org/patch/?7835> for further details.

commit 51a683a671403afe0fc3bb1838d28f42b89d1fe1
Author: Leo Davis <address@hidden>
Date:   Fri Sep 7 11:24:42 2012 +0200

    AX_PROG_JAVA had old macro name documentation.
    
    See <http://savannah.gnu.org/patch/?7835> for further details.

commit 25c967b2c1572fe1bfdd2de410986c0b52d01039
Author: Leo Davis <address@hidden>
Date:   Fri Sep 7 11:23:32 2012 +0200

    AX_TRY_RUN_JAVA had old macro name documentation and was missing an
    AU_ALIAS. I renamed the .m4 file to match the documented macro name.
    
    See <http://savannah.gnu.org/patch/?7835> for further details.

commit 99407098092a2770b487f5b87d2899880f6797d4
Author: Leo Davis <address@hidden>
Date:   Fri Sep 7 11:12:05 2012 +0200

    AX_INCLUDE_STRCASECMP: initial version
    
    The macro detects which header file defines the strcasecmp() function.
    See <http://savannah.gnu.org/patch/?7836> for further details.

commit 9ed38de69235707cba595813e5eb87f41fcb1085
Author: Peter Simons <address@hidden>
Date:   Fri Sep 7 11:02:52 2012 +0200

    AX_LIB_ORACLE_OCCI: initial version
    
    The macro detects the availability of the Oracle OCCI API of particular 
version
    or newer. Further details can be found at 
<http://savannah.gnu.org/patch/?7834>.

commit 3572c400902b69258141ddc579c9788aeb29145d
Author: Peter Simons <address@hidden>
Date:   Fri Sep 7 10:52:36 2012 +0200

    AX_CHECK_POSTGRES_DB: version bump and cosmetic

commit 0888e48d5057dac7a305960cda499ce47fd92409
Author: Olivier Mehani <address@hidden>
Date:   Fri Aug 17 10:59:58 2012 +1000

    Add -Idir to CPPFLAGS rather than CFLAGS
    
    Signed-off-by: Olivier Mehani <address@hidden>

commit 96209d066670dc81aa50ee1bfa4e5690a546e861
Author: Olivier Mehani <address@hidden>
Date:   Thu Aug 16 17:28:35 2012 +1000

    Substantial rewrite of AX_CHECK_POSTGRES_DB.
    
    It still behaves the same by default, AC_DEFINing HAVE_LIBPQ and setting
    variables PQINCPATH and PQLIBPATH, while erroring when either header or
    library is found in the default or specified paths.
    
    The logic is however different, where the specified prefixes and/or
    incdir and libdir are temporarily added to CFLAGS and LDFLAGS. The
    normal detection logic (AC_CHECK_HEADER and AC_CHECK_LIB) is used next,
    only, and once.
    
    In addition, two optional arguments to the macro, ACTION-IF-FOUND and
    ACTION-IF-NOT-FOUND are now available to extend the logic. The default
    ACTION-IF-FOUND is to do nothing (apart from defining the variables and
    substitutions, which is always done). The default ACTION-IF-NOT-FOUND is
    to error out; it is replaced by the ACTION-IF-NOT-FOUND if specified
    to, e.g., gracefully remove configure PGSQL out when it's only optional.
    
    Bump serial from 5 to 6.
    
    Signed-off-by: Olivier Mehani <address@hidden>

commit e381c32954e6dc899d76d30c68fa9a3b9cf086f3
Author: Olivier Mehani <address@hidden>
Date:   Thu Aug 16 16:09:02 2012 +1000

    Use AS_HELP_STRING in ax_check_postgres_db.m4
    
    Signed-off-by: Olivier Mehani <address@hidden>

commit 8d4fb7842889783f527e5be233c2bb0cdb3dbce3
Author: Tudor Bosman <address@hidden>
Date:   Fri Sep 7 10:45:21 2012 +0200

    AX_CXX_RVALUE_REFERENCES: initial version
    
    See <http://savannah.gnu.org/patch/?7833> for further details.

commit c78c8c763254ad0086bc8bd5c714cba0425080b2
Author: Peter Simons <address@hidden>
Date:   Fri Sep 7 10:40:03 2012 +0200

    AX_BLAS: add support for the (free-software, BSD-licensed) OpenBLAS 
library, a descendant of GotoBLAS (http://xianyi.github.com/OpenBLAS/).
    
    See <http://savannah.gnu.org/patch/?7828> for further details.

-----------------------------------------------------------------------

Summary of changes:
 NEWS                                               |   28 ++++
 m4/ax_blas.m4                                      |   39 +++++-
 m4/ax_check_class.m4                               |    4 +-
 m4/ax_check_postgres_db.m4                         |  124 +++++++++-------
 m4/ax_cxx_rvalue_references.m4                     |   50 +++++++
 m4/ax_include_strcasecmp.m4                        |   55 +++++++
 m4/{ax_lib_oracle_oci.m4 => ax_lib_oracle_occi.m4} |  155 +++++++++++---------
 m4/ax_prog_java.m4                                 |    6 +-
 m4/ax_prog_java_works.m4                           |    6 +-
 m4/{ax_try_run_javac.m4 => ax_try_run_java.m4}     |   11 +-
 10 files changed, 340 insertions(+), 138 deletions(-)
 create mode 100644 m4/ax_cxx_rvalue_references.m4
 create mode 100644 m4/ax_include_strcasecmp.m4
 copy m4/{ax_lib_oracle_oci.m4 => ax_lib_oracle_occi.m4} (61%)
 rename m4/{ax_try_run_javac.m4 => ax_try_run_java.m4} (86%)


hooks/post-receive
-- 
Autoconf Archive



reply via email to

[Prev in Thread] Current Thread [Next in Thread]