summaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-02-14 12:38:49 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:09:20 +0200
commit32eaca334b6f2be81812706ffaa2600f398769df (patch)
tree7a3446711a4a2175b4e2b8bf0d0d85d9a071f734 /m4
parent0c02a421db644e3077762ecc40fd69b4a8974831 (diff)
downloadexternal_gettext-32eaca334b6f2be81812706ffaa2600f398769df.zip
external_gettext-32eaca334b6f2be81812706ffaa2600f398769df.tar.gz
external_gettext-32eaca334b6f2be81812706ffaa2600f398769df.tar.bz2
Move m4/getline.m4 to gettext-tools/m4/getline.m4.
Diffstat (limited to 'm4')
-rw-r--r--m4/getline.m454
1 files changed, 0 insertions, 54 deletions
diff --git a/m4/getline.m4 b/m4/getline.m4
deleted file mode 100644
index 9919a7c..0000000
--- a/m4/getline.m4
+++ /dev/null
@@ -1,54 +0,0 @@
-# getline.m4 serial 6 (gettext-0.11.6)
-dnl Copyright (C) 1998-2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License. As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
-
-AC_PREREQ(2.52)
-
-dnl See if there's a working, system-supplied version of the getline function.
-dnl We can't just do AC_REPLACE_FUNCS(getline) because some systems
-dnl have a function by that name in -linet that doesn't have anything
-dnl to do with the function we need.
-AC_DEFUN([AM_FUNC_GETLINE],
-[dnl
- am_getline_needs_run_time_check=no
- AC_CHECK_FUNC(getline,
- dnl Found it in some library. Verify that it works.
- am_getline_needs_run_time_check=yes,
- am_cv_func_working_getline=no)
- if test $am_getline_needs_run_time_check = yes; then
- AC_CACHE_CHECK([for working getline function], am_cv_func_working_getline,
- [echo fooN |tr -d '\012'|tr N '\012' > conftest.data
- AC_TRY_RUN([
-# include <stdio.h>
-# include <stdlib.h>
-# include <string.h>
- int main ()
- { /* Based on a test program from Karl Heuer. */
- char *line = NULL;
- size_t siz = 0;
- int len;
- FILE *in = fopen ("./conftest.data", "r");
- if (!in)
- return 1;
- len = getline (&line, &siz, in);
- exit ((len == 4 && line && strcmp (line, "foo\n") == 0) ? 0 : 1);
- }
- ], am_cv_func_working_getline=yes dnl The library version works.
- , am_cv_func_working_getline=no dnl The library version does NOT work.
- , am_cv_func_working_getline=no dnl We're cross compiling.
- )])
- fi
-
- if test $am_cv_func_working_getline = no; then
- dnl We must choose a different name for our function, since on ELF systems
- dnl a broken getline() in libc.so would override our getline() in
- dnl libgettextlib.so.
- AC_DEFINE([getline], [gnu_getline],
- [Define to a replacement function name for getline().])
- AC_LIBOBJ(getline)
- fi
-])