summaryrefslogtreecommitdiffstats
path: root/m4/unlocked-io.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/unlocked-io.m4')
-rw-r--r--m4/unlocked-io.m418
1 files changed, 16 insertions, 2 deletions
diff --git a/m4/unlocked-io.m4 b/m4/unlocked-io.m4
index f8e98f1..6cbacb0 100644
--- a/m4/unlocked-io.m4
+++ b/m4/unlocked-io.m4
@@ -1,4 +1,11 @@
1#serial 8 -*- autoconf -*- 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.
2 9
3dnl From Jim Meyering. 10dnl From Jim Meyering.
4dnl 11dnl
@@ -8,8 +15,15 @@ dnl (because some of them were declared in Solaris 2.5.1 but were removed
8dnl in Solaris 2.6, whereas we want binaries built on Solaris 2.5.1 to run 15dnl in Solaris 2.6, whereas we want binaries built on Solaris 2.5.1 to run
9dnl on Solaris 2.6). 16dnl on Solaris 2.6).
10 17
11AC_DEFUN([jm_FUNC_GLIBC_UNLOCKED_IO], 18AC_DEFUN([gl_FUNC_GLIBC_UNLOCKED_IO],
12[ 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
13 dnl Persuade glibc and Solaris <stdio.h> to declare 27 dnl Persuade glibc and Solaris <stdio.h> to declare
14 dnl fgets_unlocked(), fputs_unlocked() etc. 28 dnl fgets_unlocked(), fputs_unlocked() etc.
15 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) 29 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])