# vim:ts=4 # # Copyright (c) 2003-2008 CubeSoft Communications, Inc. # # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE # USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. my @prefixes = ( '/usr', '/usr/local', '/opt', '/opt/local', ); sub Test { my $test = << "EOF"; #include #include #include #include #include int main(int argc, char *argv[]) { char *inbuf = "foo"; size_t inlen = strlen(inbuf), rv; char *outbuf = malloc(3); size_t outbuflen = 3; iconv_t cd; cd = iconv_open("ISO-8859-1", "UTF-8"); rv = iconv(cd, &inbuf, &inlen, &outbuf, &outbuflen); if (rv == (size_t)-1 && errno == E2BIG) { } iconv_close(cd); return (0); } EOF my $testConst = << "EOF"; #include #include #include #include #include int main(int argc, char *argv[]) { const char *inbuf = "foo"; size_t inlen = strlen(inbuf), rv; char *outbuf = malloc(3); size_t outbuflen = 3; iconv_t cd; cd = iconv_open("ISO-8859-1", "UTF-8"); rv = iconv(cd, &inbuf, &inlen, &outbuf, &outbuflen); if (rv == (size_t)-1 && errno == E2BIG) { } iconv_close(cd); return (0); } EOF MkDefine('ICONV_CFLAGS', ''); MkDefine('ICONV_LIBS', ''); MkCompileC('HAVE_ICONV', '${ICONV_CFLAGS} -Wno-cast-qual', '${ICONV_LIBS}', $test); MkIf('"${HAVE_ICONV}" = "no"'); MkPrintN('checking for iconv() in -liconv...'); foreach my $pfx (@prefixes) { MkIf("-e $pfx/include/iconv.h"); MkDefine('ICONV_CFLAGS', "-I$pfx/include"); MkDefine('ICONV_LIBS', "-L$pfx/lib -liconv"); MkEndif; } MkCompileC('HAVE_ICONV', '${ICONV_CFLAGS} -Wno-cast-qual', '${ICONV_LIBS}', $test); MkIf('"${HAVE_ICONV}" != "yes"'); MkPrintN('checking for iconv() in -liconv (const)...'); MkCompileC('HAVE_ICONV', '${ICONV_CFLAGS} -Wno-cast-qual', '${ICONV_LIBS}', $testConst); MkEndif; MkElse; MkPrintN('checking for iconv() with const...'); MkCompileC('HAVE_ICONV', '${ICONV_CFLAGS} -Wno-cast-qual', '${ICONV_LIBS}', $testConst); MkEndif; MkSaveDefine('ICONV_CFLAGS', 'ICONV_LIBS'); MkSaveMK('ICONV_CFLAGS', 'ICONV_LIBS'); MkIf('"${HAVE_ICONV}" = "yes"'); MkPrintN('checking whether iconv() is const-correct...'); MkCompileC('HAVE_ICONV_CONST', '${ICONV_CFLAGS} -Wcast-qual -Werror', '${ICONV_LIBS}', $testConst); MkElse; MkSaveUndef('HAVE_ICONV_CONST'); MkEndif; } BEGIN { $DESCR{'iconv'} = 'iconv()'; $TESTS{'iconv'} = \&Test; $DEPS{'iconv'} = 'cc'; } ;1