~ubuntu-branches/ubuntu/maverick/clamav/maverick-backports

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran, Stephen Gran, Michael Tautschnig
  • Date: 2010-04-26 21:41:18 UTC
  • mfrom: (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100426214118-i6lo606wnh7ywfj6
Tags: 0.96+dfsg-4
[ Stephen Gran ]
* Fixed typo in clamav-milter's postinst

[ Michael Tautschnig ]
* Fixed typo in clamav-freshclam's postinst (closes: #579271)
* Debconf translation updates
  - Portuguese (closes: #579068)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# This function determins if the the srand48,drand48,lrand48 functions are
 
3
# available on this platform.
 
4
#
 
5
AC_DEFUN([AC_FUNC_RAND48],[
 
6
AC_SINGLE_CXX_CHECK([ac_cv_func_rand48],   
 
7
                    [srand48/lrand48/drand48], [<stdlib.h>],
 
8
                    [srand48(0);lrand48();drand48();])
 
9
if test "$ac_cv_func_rand48" = "yes" ; then
 
10
AC_DEFINE([HAVE_RAND48],1,[Define to 1 if srand48/lrand48/drand48 exist in <stdlib.h>])
 
11
fi
 
12
])