~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to m4/acinclude.m4

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-03-12 11:30:04 UTC
  • mfrom: (0.41.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100312113004-b0fop4bkycszdd0z
Tags: 0.96~rc1+dfsg-0ubuntu1
* New upstream RC - FFE (LP: #537636):
  - Add OfficialDatabaseOnly option to clamav-base.postinst.in
  - Add LocalSocketGroup option to clamav-base.postinst.in
  - Add LocalSocketMode option to clamav-base.postinst.in
  - Add CrossFilesystems option to clamav-base.postinst.in
  - Add ClamukoScannerCount option to clamav-base.postinst.in
  - Add BytecodeSecurity opiton to clamav-base.postinst.in
  - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
  - Add Bytecode option to clamav-freshclam.postinst.in
  - Add MilterSocketGroup option to clamav-milter.postinst.in
  - Add MilterSocketMode option to clamav-milter.postinst.in
  - Add ReportHostname option to clamav-milter.postinst.in
  - Bump libclamav SO version to 6.1.0 in libclamav6.install
  - Drop clamdmon from clamav.examples (no longer shipped by upstream)
  - Drop libclamav.a from libclamav-dev.install (not built by upstream)
  - Update SO version for lintian override for libclamav6
  - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  - Add build-depends on python and python-setuptools for new test suite
  - Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

Show diffs side-by-side

added added

removed removed

Lines of Context:
609
609
fi
610
610
 
611
611
])
 
612
have_autoitea06="no"
612
613
case $ac_cv_c_fpu_bigendian in
613
614
        yes)
614
615
                AC_DEFINE([FPU_WORDS_BIGENDIAN], 1, [FPU byte ordering is big endian])
 
616
                have_autoitea06="yes"
615
617
                ;;
616
618
        no)
617
619
                AC_DEFINE([FPU_WORDS_BIGENDIAN], 0, [FPU byte ordering is little endian])
 
620
                have_autoitea06="yes"
618
621
                ;;
619
622
        *)
620
623
                AC_MSG_WARN([Unable to determine FPU endianess, some features may not be available in this build])
755
758
                AC_MSG_CHECKING([for multiarch libdir])
756
759
                # Based on http://lists.gnu.org/archive/html/autoconf/2008-09/msg00072.html
757
760
                if test "$GCC" = yes; then
758
 
                        ac_multilibdir=`$CC -print-multi-os-directory $CFLAGS $CPPFLAGS $LDFLAGS`
 
761
                        ac_multilibdir=`$CC -print-multi-os-directory $CFLAGS $CPPFLAGS $LDFLAGS` || ac_multilibdir=.
759
762
                else
760
763
                        ac_multilibdir=.
761
764
                fi
778
781
                                        */lib64 ) acl_libdirstem=lib64 ;;
779
782
                                   esac
780
783
                        esac
781
 
                fi      
 
784
                fi
782
785
        fi
783
786
])
784
787
 
 
788
dnl CL_MSG_STATUS([featurename],[have_feature], [enable_feature])
 
789
AC_DEFUN([CL_MSG_STATUS],
 
790
[
 
791
   m4_if($#,3,,[m4_fatal([$0: invalid number of arguments: $#])])
 
792
   AS_ECHO_N(["              $1: "])
 
793
   AS_IF([test "x$3" = "xno"], [AS_ECHO(["$2 (disabled)"])],
 
794
         [test "x$3" = "xyes"], [AS_ECHO(["$2"])],
 
795
         [test "x$3" = "x"], [AS_ECHO(["$2"])],
 
796
         [AS_ECHO(["$2 ($3)"])])
 
797
])