diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2007-01-24 22:47:25 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2007-01-24 22:47:25 (GMT) |
commit | fe856aa957978504137c1d425815d4ed8a22be40 (patch) | |
tree | a5bb46ce0e64b2056f75700eadbf27aba7c39418 /m4/iconv.m4 | |
parent | 210f39bc84cfbb21cd72dc054e43f13815ee0616 (diff) | |
download | monitoring-plugins-fe856aa957978504137c1d425815d4ed8a22be40.tar.gz |
Sync with gnulib - lots of extraneous code removed in preference to GNU code
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1580 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'm4/iconv.m4')
-rw-r--r-- | m4/iconv.m4 | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/m4/iconv.m4 b/m4/iconv.m4 deleted file mode 100644 index 654c415..0000000 --- a/m4/iconv.m4 +++ /dev/null | |||
@@ -1,101 +0,0 @@ | |||
1 | # iconv.m4 serial AM4 (gettext-0.11.3) | ||
2 | dnl Copyright (C) 2000-2002 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 | dnl From Bruno Haible. | ||
8 | |||
9 | AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], | ||
10 | [ | ||
11 | dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. | ||
12 | AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) | ||
13 | AC_REQUIRE([AC_LIB_RPATH]) | ||
14 | |||
15 | dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV | ||
16 | dnl accordingly. | ||
17 | AC_LIB_LINKFLAGS_BODY([iconv]) | ||
18 | ]) | ||
19 | |||
20 | AC_DEFUN([AM_ICONV_LINK], | ||
21 | [ | ||
22 | dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and | ||
23 | dnl those with the standalone portable GNU libiconv installed). | ||
24 | |||
25 | dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV | ||
26 | dnl accordingly. | ||
27 | AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) | ||
28 | |||
29 | dnl Add $INCICONV to CPPFLAGS before performing the following checks, | ||
30 | dnl because if the user has installed libiconv and not disabled its use | ||
31 | dnl via --without-libiconv-prefix, he wants to use it. The first | ||
32 | dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. | ||
33 | am_save_CPPFLAGS="$CPPFLAGS" | ||
34 | AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) | ||
35 | |||
36 | AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ | ||
37 | am_cv_func_iconv="no, consider installing GNU libiconv" | ||
38 | am_cv_lib_iconv=no | ||
39 | AC_TRY_LINK([#include <stdlib.h> | ||
40 | #include <iconv.h>], | ||
41 | [iconv_t cd = iconv_open("",""); | ||
42 | iconv(cd,NULL,NULL,NULL,NULL); | ||
43 | iconv_close(cd);], | ||
44 | am_cv_func_iconv=yes) | ||
45 | if test "$am_cv_func_iconv" != yes; then | ||
46 | am_save_LIBS="$LIBS" | ||
47 | LIBS="$LIBS $LIBICONV" | ||
48 | AC_TRY_LINK([#include <stdlib.h> | ||
49 | #include <iconv.h>], | ||
50 | [iconv_t cd = iconv_open("",""); | ||
51 | iconv(cd,NULL,NULL,NULL,NULL); | ||
52 | iconv_close(cd);], | ||
53 | am_cv_lib_iconv=yes | ||
54 | am_cv_func_iconv=yes) | ||
55 | LIBS="$am_save_LIBS" | ||
56 | fi | ||
57 | ]) | ||
58 | if test "$am_cv_func_iconv" = yes; then | ||
59 | AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) | ||
60 | fi | ||
61 | if test "$am_cv_lib_iconv" = yes; then | ||
62 | AC_MSG_CHECKING([how to link with libiconv]) | ||
63 | AC_MSG_RESULT([$LIBICONV]) | ||
64 | else | ||
65 | dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV | ||
66 | dnl either. | ||
67 | CPPFLAGS="$am_save_CPPFLAGS" | ||
68 | LIBICONV= | ||
69 | LTLIBICONV= | ||
70 | fi | ||
71 | AC_SUBST(LIBICONV) | ||
72 | AC_SUBST(LTLIBICONV) | ||
73 | ]) | ||
74 | |||
75 | AC_DEFUN([AM_ICONV], | ||
76 | [ | ||
77 | AM_ICONV_LINK | ||
78 | if test "$am_cv_func_iconv" = yes; then | ||
79 | AC_MSG_CHECKING([for iconv declaration]) | ||
80 | AC_CACHE_VAL(am_cv_proto_iconv, [ | ||
81 | AC_TRY_COMPILE([ | ||
82 | #include <stdlib.h> | ||
83 | #include <iconv.h> | ||
84 | extern | ||
85 | #ifdef __cplusplus | ||
86 | "C" | ||
87 | #endif | ||
88 | #if defined(__STDC__) || defined(__cplusplus) | ||
89 | size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); | ||
90 | #else | ||
91 | size_t iconv(); | ||
92 | #endif | ||
93 | ], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") | ||
94 | am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) | ||
95 | am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` | ||
96 | AC_MSG_RESULT([$]{ac_t:- | ||
97 | }[$]am_cv_proto_iconv) | ||
98 | AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, | ||
99 | [Define as const if the declaration of iconv() needs const.]) | ||
100 | fi | ||
101 | ]) | ||