~ubuntu-branches/debian/sid/clamav/sid

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/autoconf/m4/check_gnu_make.m4

  • Committer: Package Import Robot
  • Author(s): Andreas Cadhalpun, Andreas Cadhalpun, Sebastian Andrzej Siewior, Frans Spiesschaert
  • Date: 2014-10-15 06:50:20 UTC
  • mfrom: (1.3.13) (42.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20141015065020-0cpy1hdueggaw35s
Tags: 0.98.5~rc1+dfsg-1
[ Andreas Cadhalpun ]
* Import new upstream release candidate.
* Drop patches included upstream and update the others.
* Add 4 new symbols to libclamav6.symbols.
* Fix debian/copyright.
* Update lintian overrides.
* Update Standards-Version to 3.9.6 (no changes needed).
* Add Breaks and Replaces for old clamd package to clamdscan.
* Remove unnecessary shlibs:Depends from clamav-dbg.
* Add patches to support LLVM 3.5.

[ Sebastian Andrzej Siewior ]
* Add embedded copy of libmspack to be used as fallback, when libmspack-dev
  is not available.

[ Frans Spiesschaert ]
* Updated Dutch Debconf template translation (Closes: #763634)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Check for GNU Make.  This is originally from
3
 
# http://www.gnu.org/software/ac-archive/htmldoc/check_gnu_make.html
4
 
#
5
 
AC_DEFUN([AC_CHECK_GNU_MAKE],
6
 
[AC_CACHE_CHECK([for GNU make],[llvm_cv_gnu_make_command],
7
 
dnl Search all the common names for GNU make
8
 
[llvm_cv_gnu_make_command=''
9
 
 for a in "$MAKE" make gmake gnumake ; do
10
 
  if test -z "$a" ; then continue ; fi ;
11
 
  if  ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null ) 
12
 
  then
13
 
   llvm_cv_gnu_make_command=$a ;
14
 
   break;
15
 
  fi
16
 
 done])
17
 
dnl If there was a GNU version, then set @ifGNUmake@ to the empty string, 
18
 
dnl '#' otherwise
19
 
 if test "x$llvm_cv_gnu_make_command" != "x"  ; then
20
 
   ifGNUmake='' ;
21
 
 else
22
 
   ifGNUmake='#' ;
23
 
   AC_MSG_RESULT("Not found");
24
 
 fi
25
 
 AC_SUBST(ifGNUmake)
26
 
])