~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/epetra/config/tac_arg_with_libs.m4

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl @synopsis TAC_ARG_WITH_LIBS
2
 
dnl
3
 
dnl Test for --with-libs="name(s)".
4
 
dnl 
5
 
dnl Prepends the specified name(s) to the list of libraries to link 
6
 
dnl with.  
7
 
dnl
8
 
dnl Example use
9
 
dnl
10
 
dnl TAC_ARG_WITH_LIBS
11
 
dnl 
12
 
dnl tests for --with-libs and pre-pends to LIBS
13
 
dnl
14
 
dnl @author Jim Willenbring <jmwille@sandia.gov>
15
 
dnl
16
 
AC_DEFUN([TAC_ARG_WITH_LIBS],
17
 
[
18
 
AC_MSG_CHECKING([whether additional libraries are needed])
19
 
AC_ARG_WITH(libs,
20
 
AC_HELP_STRING([--with-libs], 
21
 
[List additional libraries here.  For example, --with-libs=-lsuperlu
22
 
or --with-libs=/path/libsuperlu.a]),
23
 
[
24
 
LIBS="${withval} ${LIBS}"
25
 
AC_MSG_RESULT([LIBS = ${LIBS}])
26
 
],
27
 
AC_MSG_RESULT(no)
28
 
)
29
 
]
30
 
)