~ubuntu-branches/ubuntu/trusty/diffutils/trusty-proposed

« back to all changes in this revision

Viewing changes to m4/setmode.m4

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2010-02-13 11:49:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100213114900-09lz8jx6wct52qp8
Tags: 1:2.9-1
* New upstream release, now under GPL version 3 or later.
* There is now a --tab-size option. Closes: #82923.
* Manpage for cmp describes exit status. Closes: #200614.
* Manpage for diff describes exit status. Closes: #228441, #473233.
* The file de.po is now more recent. Closes: #313686.
* Fixed bad sdiff behaviour. Closes: #320222.
* Added wdiff to Suggests. Closes: #324627.
* Fixed cmp behaviour regarding stdout and stderr. Closes: #356083.
* The file ru.po is now more recent. Closes: #409274.
* The file es.po is now more recent. Closes: #418005, #481708.
* The file nl.po is now more recent. Closes: #427370.
* Modified watch file to use http instead of ftp.
* Removed .comment section from executables.
* Added Homepage field to control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Check for setmode, DOS style.
2
 
 
3
 
# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4
 
 
5
 
# This program is free software; you can redistribute it and/or modify
6
 
# it under the terms of the GNU General Public License as published by
7
 
# the Free Software Foundation; either version 2, or (at your option)
8
 
# any later version.
9
 
 
10
 
# This program is distributed in the hope that it will be useful,
11
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
# GNU General Public License for more details.
14
 
 
15
 
# You should have received a copy of the GNU General Public License
16
 
# along with this program; if not, write to the Free Software
17
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18
 
# 02111-1307, USA.
19
 
 
20
 
AC_DEFUN([AC_FUNC_SETMODE_DOS],
21
 
  [AC_CHECK_HEADERS(fcntl.h unistd.h)
22
 
   AC_CACHE_CHECK([for DOS-style setmode],
23
 
     [ac_cv_func_setmode_dos],
24
 
     [AC_TRY_LINK(
25
 
        [#include <io.h>
26
 
         #if HAVE_FCNTL_H
27
 
         # include <fcntl.h>
28
 
         #endif
29
 
         #if HAVE_UNISTD_H
30
 
         # include <unistd.h>
31
 
         #endif],
32
 
        [int ret = setmode && setmode (1, O_BINARY);],
33
 
        [ac_cv_func_setmode_dos=yes],
34
 
        [ac_cv_func_setmode_dos=no])])
35
 
   if test $ac_cv_func_setmode_dos = yes; then
36
 
     AC_DEFINE(HAVE_SETMODE_DOS, 1,
37
 
       [Define to 1 if you have the DOS-style `setmode' function.])
38
 
   fi])