diff options
Diffstat (limited to 'm4/unlocked-io.m4')
-rw-r--r-- | m4/unlocked-io.m4 | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/m4/unlocked-io.m4 b/m4/unlocked-io.m4 deleted file mode 100644 index 6cbacb0..0000000 --- a/m4/unlocked-io.m4 +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | # unlocked-io.m4 serial 12 | ||
2 | |||
3 | # Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software | ||
4 | # Foundation, Inc. | ||
5 | # | ||
6 | # This file is free software; the Free Software Foundation | ||
7 | # gives unlimited permission to copy and/or distribute it, | ||
8 | # with or without modifications, as long as this notice is preserved. | ||
9 | |||
10 | dnl From Jim Meyering. | ||
11 | dnl | ||
12 | dnl See if the glibc *_unlocked I/O macros or functions are available. | ||
13 | dnl Use only those *_unlocked macros or functions that are declared | ||
14 | dnl (because some of them were declared in Solaris 2.5.1 but were removed | ||
15 | dnl in Solaris 2.6, whereas we want binaries built on Solaris 2.5.1 to run | ||
16 | dnl on Solaris 2.6). | ||
17 | |||
18 | AC_DEFUN([gl_FUNC_GLIBC_UNLOCKED_IO], | ||
19 | [ | ||
20 | AC_LIBSOURCES([unlocked-io.h]) | ||
21 | |||
22 | AC_DEFINE([USE_UNLOCKED_IO], 1, | ||
23 | [Define to 1 if you want getc etc. to use unlocked I/O if available. | ||
24 | Unlocked I/O can improve performance in unithreaded apps, | ||
25 | but it is not safe for multithreaded apps.]) | ||
26 | |||
27 | dnl Persuade glibc and Solaris <stdio.h> to declare | ||
28 | dnl fgets_unlocked(), fputs_unlocked() etc. | ||
29 | AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) | ||
30 | |||
31 | AC_CHECK_DECLS_ONCE( | ||
32 | [clearerr_unlocked feof_unlocked ferror_unlocked | ||
33 | fflush_unlocked fgets_unlocked fputc_unlocked fputs_unlocked | ||
34 | fread_unlocked fwrite_unlocked getc_unlocked | ||
35 | getchar_unlocked putc_unlocked putchar_unlocked]) | ||
36 | ]) | ||