~ubuntu-branches/ubuntu/raring/renameutils/raring

« back to all changes in this revision

Viewing changes to gnulib-m4/msvc-inval.m4

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2012-05-06 21:45:54 UTC
  • mfrom: (10.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20120506214554-k531n9odfuwk2451
Tags: 0.12.0-1
* New upstream release (closes: #600411)
* Patch to fix typo in installation target of Makefile

* Bump Standards-Version up to 3.9.3
* Bump debhelper compatibility to 9
* Switch to a minimal debian/rules file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# msvc-inval.m4 serial 1
 
2
dnl Copyright (C) 2011-2012 Free Software Foundation, Inc.
 
3
dnl This file is free software; the Free Software Foundation
 
4
dnl gives unlimited permission to copy and/or distribute it,
 
5
dnl with or without modifications, as long as this notice is preserved.
 
6
 
 
7
AC_DEFUN([gl_MSVC_INVAL],
 
8
[
 
9
  AC_CHECK_FUNCS_ONCE([_set_invalid_parameter_handler])
 
10
  if test $ac_cv_func__set_invalid_parameter_handler = yes; then
 
11
    HAVE_MSVC_INVALID_PARAMETER_HANDLER=1
 
12
    AC_DEFINE([HAVE_MSVC_INVALID_PARAMETER_HANDLER], [1],
 
13
      [Define to 1 on MSVC platforms that have the "invalid parameter handler"
 
14
       concept.])
 
15
  else
 
16
    HAVE_MSVC_INVALID_PARAMETER_HANDLER=0
 
17
  fi
 
18
  AC_SUBST([HAVE_MSVC_INVALID_PARAMETER_HANDLER])
 
19
])