~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to m4/unittest++.m4

  • Committer: cecilios
  • Date: 2011-08-18 15:04:04 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:branches/TRY-5.0:688
cleaning and commit recent work

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Configure paths for libunittest++
2
 
# Antonio Nicolás 2010-03-05, based on libagg.m4 by Kirill Smelkov
3
 
 
4
 
# AC_CHECK_LIBUNITTESTPP([MINIMUM-VERSION [, ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]]])
5
 
# Test for libunittest++, and define LIBUNITTESTPP_CFLAGS and LIBUNITTESTPP_LIBS
6
 
#
7
 
AC_DEFUN([AC_CHECK_LIBUNITTESTPP],
8
 
[
9
 
  # Get the cflags and libraries from pkg-config libunittest++ ...
10
 
  AC_ARG_WITH([libunittestpp],
11
 
    AS_HELP_STRING([--with-libunittestpp=PREFIX],
12
 
                   [Prefix where libunittest++ is installed (optional)]),
13
 
    [libunittestpp_prefix="$withval"],
14
 
    [libunittestpp_prefix=""])
15
 
 
16
 
  libunittestpp_name="unittest++"
17
 
  if test "x$libunittestpp_prefix" != "x"; then
18
 
    libunittestpp_name="$libunittestpp_prefix/lib/pkgconfig/unittest++.pc"
19
 
  fi
20
 
 
21
 
  PKG_CHECK_MODULES([UNITTESTPP], "$libunittestpp_name", success=yes, success=no)
22
 
 
23
 
  if test "x$success" = xyes; then
24
 
    ifelse([$2], , :, [$2])
25
 
 
26
 
    AC_SUBST([UNITTESTPP_CFLAGS])
27
 
    AC_SUBST([UNITTESTPP_LIBS])
28
 
  else
29
 
    ifelse([$3], , :, [$3])
30
 
  fi
31
 
])
32
 
 
33
 
# end of libunittest++.m4