~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/moocho/config/tac_arg_with_libdirs.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_LIBDIRS
2
 
dnl
3
 
dnl Test for --with-libdirs="-Llibdir1 -Llibdir2".  if defined, 
4
 
dnl prepend "-Llibdir1 -Llibdir2" to LDFLAGS
5
 
dnl
6
 
dnl Use this macro to facilitate addition of directories to library search path.
7
 
dnl 
8
 
dnl
9
 
dnl @author Mike Heroux <mheroux@cs.sandia.gov>
10
 
dnl
11
 
AC_DEFUN([TAC_ARG_WITH_LIBDIRS],
12
 
[
13
 
AC_MSG_CHECKING([whether additional library search paths defined])
14
 
AC_ARG_WITH(libdirs,
15
 
AC_HELP_STRING([--with-libdirs], 
16
 
[OBSOLETE use --with-ldflags instead.  (ex. --with-ldflags="-L<DIR> -L<DIR2>")]),
17
 
[
18
 
LDFLAGS="${withval} ${LDFLAGS}"
19
 
AC_MSG_RESULT([${withval}])
20
 
],
21
 
AC_MSG_RESULT(no)
22
 
)
23
 
])
24