Skip to content
Snippets Groups Projects
Commit c536f299 authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Bump version to 3.0.2

parent 6393b1a5
Branches
No related tags found
No related merge requests found
2015-10-03
ALBERTA 3.0.2
Get rid of libltdl when --disable-fem-toolbox is "active" and get rid
of some compiler warnings when including the stuff into C++ code.
Some of the basis function implementations had a chance to return
a pointer to a local non-static buffer.
2014-05-07
ALBERTA 3.0.1
......
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([alberta], [3.0.1], [Claus-Justus.Heine@IANS.Uni-Stuttgart.DE])
AC_INIT([alberta], [3.0.2], [Claus-Justus.Heine@IANS.Uni-Stuttgart.DE])
AC_CONFIG_SRCDIR([alberta/src/Common/alberta.h])
AC_CONFIG_MACRO_DIR([m4])
......@@ -299,6 +299,9 @@ else
with_blas=no
fi
# Check if __attribute__((unused)) is supported
ALBERTA_CHECK_UNUSED
#
# Debugging. Should come first because if not set we can forget about
# ALBERTA_DEBUG_CFLAGS
......@@ -616,10 +619,6 @@ AC_DEFINE([SIZEOF_DOF_FREE_UNIT],
[SIZEOF_LONG],
[size of the integer type used for DOF_FREE_UNIT])
# Check for libltdl
AC_CHECK_LIB([ltdl],[lt_dlinit])
AC_CHECK_HEADERS([ltdl.h])
# try do define HAVE_STRUCT_SIGACTION_SA_SIGACTION for SIGFPE-handler.
AC_CHECK_MEMBERS([struct sigaction.sa_sigaction],,,[#include <signal.h>])
......@@ -667,10 +666,15 @@ ALBERTA_ENABLE_FLAG([graphics],
1,
ALBERTA_USE_GRAPHICS,
[SUBST cond define])
# Check for libltdl
AC_CHECK_LIB([ltdl],[lt_dlinit])
AC_CHECK_HEADERS([ltdl.h])
else
AM_CONDITIONAL(ALBERTA_USE_GRAPHICS, false)
AC_SUBST(ALBERTA_USE_GRAPHICS)
AC_DEFINE(ALBERTA_USE_GRAPHICS, 0, [])
AC_DEFINE(HAVE_LIBLTDL, 0, [])
AC_DEFINE(HAVE_LTDL_H, 0, [])
fi
if test "${ALBERTA_USE_GRAPHICS}" = 1; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment