cconv-0.6.2/0000777000076400007640000000000011340646025007645 500000000000000cconv-0.6.2/config.guess0000755000076400007640000012463411320004150012074 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. timestamp='2005-07-08' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerppc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[45]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; x86:Interix*:[34]*) echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' exit ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #ifdef __INTEL_COMPILER LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit } test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in *86) UNAME_PROCESSOR=i686 ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: cconv-0.6.2/install-sh0000755000076400007640000002202111320004150011543 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2005-05-14.22 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. It can only install one file at a time, a restriction # shared with many OS's install programs. # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" chmodcmd="$chmodprog 0755" chowncmd= chgrpcmd= stripcmd= rmcmd="$rmprog -f" mvcmd="$mvprog" src= dst= dir_arg= dstarg= no_target_directory= usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: -c (ignored) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. --help display this help and exit. --version display version info and exit. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test -n "$1"; do case $1 in -c) shift continue;; -d) dir_arg=true shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; --help) echo "$usage"; exit $?;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -s) stripcmd=$stripprog shift continue;; -t) dstarg=$2 shift shift continue;; -T) no_target_directory=true shift continue;; --version) echo "$0 $scriptversion"; exit $?;; *) # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. test -n "$dir_arg$dstarg" && break # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dstarg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dstarg" shift # fnord fi shift # arg dstarg=$arg done break;; esac done if test -z "$1"; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi for src do # Protect names starting with `-'. case $src in -*) src=./$src ;; esac if test -n "$dir_arg"; then dst=$src src= if test -d "$dst"; then mkdircmd=: chmodcmd= else mkdircmd=$mkdirprog fi else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dstarg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dstarg # Protect names starting with `-'. case $dst in -*) dst=./$dst ;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dstarg: Is a directory" >&2 exit 1 fi dst=$dst/`basename "$src"` fi fi # This sed command emulates the dirname command. dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` # Make sure that the destination directory exists. # Skip lots of stat calls in the usual case. if test ! -d "$dstdir"; then defaultIFS=' ' IFS="${IFS-$defaultIFS}" oIFS=$IFS # Some sh's can't handle IFS=/ for some reason. IFS='%' set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` shift IFS=$oIFS pathcomp= while test $# -ne 0 ; do pathcomp=$pathcomp$1 shift if test ! -d "$pathcomp"; then $mkdirprog "$pathcomp" # mkdir can fail with a `File exist' error in case several # install-sh are creating the directory concurrently. This # is OK. test -d "$pathcomp" || exit fi pathcomp=$pathcomp/ done fi if test -n "$dir_arg"; then $doit $mkdircmd "$dst" \ && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } else dstfile=`basename "$dst"` # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 trap '(exit $?); exit' 1 2 13 15 # Copy the file name to the temp name. $doit $cpprog "$src" "$dsttmp" && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && # Now rename the file to the real destination. { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \ || { # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { if test -f "$dstdir/$dstfile"; then $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ || { echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 (exit 1); exit 1 } else : fi } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" } } fi || { (exit 1); exit 1; } done # The final little trick to "correctly" pass the exit status to the exit trap. { (exit 0); exit 0 } # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: cconv-0.6.2/NEWS0000664000076400007640000000000011320000165010233 00000000000000cconv-0.6.2/cconv.c0000664000076400007640000003232211340645153011042 00000000000000/* * Copyright (C) 2008, 2009 * Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * \author Yang Jianyu */ #include #include #include #include #include #include #include "cconv.h" #include "cconv_table.h" #include "unicode.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif typedef struct cconv_struct { cconv_type cconv_cd; iconv_t iconv_cd; iconv_t gb_utf8; iconv_t bg_utf8; iconv_t utf8_gb; iconv_t utf8_bg; int size_factor; char options[16]; } cconv_struct; static size_t cconv_utf8( const char** inbuf, size_t* inleft , char** outbuf , size_t* outleft , const language_zh_map *m, int map_size ); static int find_keyword( const char* inbytes , size_t* length , const language_zh_map *m , int begin , int end , const int whence ); static int binary_find( const char* inbytes , size_t* length , const language_zh_map *m , int begin , int end ); static int match_cond( const factor_zh_map* cond , const char* str , int klen , const int whence ); static int match_real_cond( const char* mc , const char* str , int head , const int whence ); /* {{{ cconv_t cconv_open(const char* tocode, const char* fromcode) */ /** * Open a cconv handle. * * @param tocode Convert to-code. * @param fromcode Convert from-code. * @retval t_handle Cconv handle,(-1: error). */ cconv_t cconv_open(const char* tocode, const char* fromcode) { char code[8] = {0, }; char *ptr; cconv_struct* cd = (cconv_struct*)malloc(sizeof(cconv_struct)); cd->cconv_cd = CCONV_NULL; cd->iconv_cd = NULL; cd->gb_utf8 = NULL; cd->bg_utf8 = NULL; cd->utf8_gb = NULL; cd->utf8_bg = NULL; cd->size_factor = 4; /* //IGNORE //TRANSPORT etc. */ if((ptr = strstr(fromcode, "//")) != NULL) { strncpy(cd->options, ptr , 16); strncpy(code , fromcode, ptr - fromcode); fromcode = code; } if(0 == strcasecmp(CCONV_CODE_GBL, fromcode)) { cd->gb_utf8 = iconv_open(CCONV_CODE_UTF, CCONV_CODE_GBL); if(0 == strcasecmp(CCONV_CODE_UHT, tocode) || 0 == strcasecmp(CCONV_CODE_UHK, tocode) ||0 == strcasecmp(CCONV_CODE_UTW, tocode)) { cd->cconv_cd = CCONV_GBL_TO_UHT; } else if(0 == strcasecmp(CCONV_CODE_UHS, tocode) || 0 == strcasecmp(CCONV_CODE_UCN, tocode)) cd->cconv_cd = CCONV_GBL_TO_UHS; else if(0 == strcasecmp(CCONV_CODE_BIG, tocode)) { cd->cconv_cd = CCONV_GBL_TO_BIG; cd->utf8_bg = iconv_open(CCONV_CODE_BIG, CCONV_CODE_UTF); } else if(0 == strcasecmp(CCONV_CODE_GHS, tocode)) { cd->cconv_cd = CCONV_GBL_TO_GHS; cd->utf8_gb = iconv_open(CCONV_CODE_GBL, CCONV_CODE_UTF); } else if(0 == strcasecmp(CCONV_CODE_GHT, tocode)) { cd->cconv_cd = CCONV_GBL_TO_GHT; cd->utf8_gb = iconv_open(CCONV_CODE_GBL, CCONV_CODE_UTF); } } else if(0 == strcasecmp(CCONV_CODE_UTF, fromcode) ||0 == strcasecmp(CCONV_CODE_UHS, fromcode) ||0 == strcasecmp(CCONV_CODE_UHT, fromcode) ||0 == strcasecmp(CCONV_CODE_UCN, fromcode) ||0 == strcasecmp(CCONV_CODE_UHK, fromcode) ||0 == strcasecmp(CCONV_CODE_UTW, fromcode) ) { if(0 == strcasecmp(CCONV_CODE_UHS, tocode) || 0 == strcasecmp(CCONV_CODE_UCN, tocode)) cd->cconv_cd = CCONV_UTF_TO_UHS; else if(0 == strcasecmp(CCONV_CODE_UHT, tocode) || 0 == strcasecmp(CCONV_CODE_UHK, tocode) || 0 == strcasecmp(CCONV_CODE_UTW, tocode)) cd->cconv_cd = CCONV_UTF_TO_UHT; else if(0 == strcasecmp(CCONV_CODE_GBL, tocode)) { cd->cconv_cd = CCONV_UTF_TO_GBL; cd->utf8_gb = iconv_open(CCONV_CODE_GBL, CCONV_CODE_UTF); } else if(0 == strcasecmp(CCONV_CODE_BIG, tocode)) { cd->cconv_cd = CCONV_UTF_TO_BIG; cd->utf8_bg = iconv_open(CCONV_CODE_BIG, CCONV_CODE_UTF); } cd->size_factor = 1; } else if(0 == strcasecmp(CCONV_CODE_BIG, fromcode)) { if(0 == strcasecmp(CCONV_CODE_GBL, tocode)) { cd->cconv_cd = CCONV_BIG_TO_GBL; cd->bg_utf8 = iconv_open(CCONV_CODE_UTF, CCONV_CODE_BIG); cd->utf8_gb = iconv_open(CCONV_CODE_GBL, CCONV_CODE_UTF); } else if(0 == strcasecmp(CCONV_CODE_UHS, tocode) || 0 == strcasecmp(CCONV_CODE_UCN, tocode)) { cd->cconv_cd = CCONV_BIG_TO_UHS; cd->bg_utf8 = iconv_open(CCONV_CODE_UTF, CCONV_CODE_BIG); } /* just use iconv to do others. */ } if(cd->cconv_cd == CCONV_NULL) cd->iconv_cd = iconv_open(tocode, fromcode); if( cd->iconv_cd == (iconv_t)(-1) || cd->gb_utf8 == (iconv_t)(-1) || cd->bg_utf8 == (iconv_t)(-1) || cd->utf8_gb == (iconv_t)(-1) || cd->utf8_bg == (iconv_t)(-1)) { cconv_close(cd); return (cconv_t)(CCONV_ERROR); } return cd; } /* }}} */ #define cconv_iconv_first(cd) \ ps_outbuf = ps_midbuf = (char*)malloc(o_proc); \ if(iconv(cd, inbuf, inbytesleft, &ps_outbuf, &o_proc) == -1) { \ free(ps_midbuf); return (size_t)(-1); \ } \ *ps_outbuf = '\0'; \ #define cconv_cconv_second(n, o) \ cd_struct->cconv_cd = n; \ ps_inbuf = ps_midbuf; \ o_proc = strlen(ps_midbuf); \ if((i_proc = cconv(cd, &ps_inbuf, &o_proc, outbuf, outbytesleft)) == -1) { \ free(ps_midbuf); return (size_t)(-1); \ } \ free(ps_midbuf); \ cd_struct->cconv_cd = o; \ return i_proc; #define cconv_cconv_first(n, o) \ ps_outbuf = ps_midbuf = (char*)malloc(o_proc); \ cd_struct->cconv_cd = n; \ if((i_proc = cconv(cd, inbuf, inbytesleft, &ps_outbuf, &o_proc)) == -1) { \ free(ps_midbuf); return (size_t)(-1); \ } \ cd_struct->cconv_cd = o; \ #define cconv_iconv_second(c) \ ps_outbuf = *outbuf; \ ps_inbuf = ps_midbuf; \ if(iconv(c, &ps_inbuf, &i_proc, outbuf, outbytesleft) == -1) { \ free(ps_midbuf); return (size_t)(-1); \ } \ free(ps_midbuf); \ return *outbuf - ps_outbuf; #define const_bin_c_str(x) (const unsigned char*)(x) #define EMPTY_END_SIZE 8 /* {{{ size_t cconv() */ /** * Convert character code. * * @param in_charset Cconv input charset. * @param out_charset Cconv output charset. * @param inbuf Input buffer. * @param inbytesleft Input buffer left. * @retval t_handle Cconv handle,(-1: error). */ size_t cconv(cconv_t cd, #ifdef FreeBSD const char** inbuf, #else char** inbuf, #endif size_t* inbytesleft, char** outbuf, size_t* outbytesleft) { size_t i_proc = 0, o_proc = 0; #ifdef FreeBSD const char *ps_inbuf = NULL; #else char *ps_inbuf = NULL; #endif char *ps_midbuf, *ps_outbuf = NULL; language_zh_map *m; int map_size; if(NULL == inbuf || NULL == *inbuf || NULL == inbytesleft || NULL == outbuf || NULL == *outbuf || NULL == outbytesleft) return(size_t)(-1); cconv_struct *cd_struct = cd; ps_inbuf = *inbuf; ps_outbuf = *outbuf; o_proc = cd_struct->size_factor * (*inbytesleft) + EMPTY_END_SIZE; if((cconv_t)(CCONV_ERROR) == cd) return(size_t)(-1); switch(cd_struct->cconv_cd) { case CCONV_UTF_TO_UHT: case CCONV_UTF_TO_UHS: m = zh_map (cd_struct->cconv_cd); map_size = zh_map_size(cd_struct->cconv_cd); return cconv_utf8((const char**)inbuf, inbytesleft, outbuf, outbytesleft, m, map_size); case CCONV_UTF_TO_GBL: cconv_cconv_first(CCONV_UTF_TO_UHS, CCONV_UTF_TO_GBL); cconv_iconv_second(cd_struct->utf8_gb); case CCONV_UTF_TO_BIG: cconv_cconv_first(CCONV_UTF_TO_UHT, CCONV_UTF_TO_BIG); cconv_iconv_second(cd_struct->utf8_bg); case CCONV_GBL_TO_UHT: cconv_iconv_first(cd_struct->gb_utf8); cconv_cconv_second(CCONV_UTF_TO_UHT, CCONV_GBL_TO_UHT); case CCONV_GBL_TO_UHS: cconv_iconv_first(cd_struct->gb_utf8); cconv_cconv_second(CCONV_UTF_TO_UHS, CCONV_GBL_TO_UHS); case CCONV_GBL_TO_BIG: cconv_cconv_first(CCONV_GBL_TO_UHT, CCONV_GBL_TO_BIG); cconv_iconv_second(cd_struct->utf8_bg); case CCONV_GBL_TO_GHS: cconv_cconv_first(CCONV_GBL_TO_UHS, CCONV_GBL_TO_GHS); cconv_iconv_second(cd_struct->utf8_gb); case CCONV_GBL_TO_GHT: cconv_cconv_first(CCONV_GBL_TO_UHT, CCONV_GBL_TO_GHT); cconv_iconv_second(cd_struct->utf8_gb); case CCONV_BIG_TO_UHS: cconv_iconv_first(cd_struct->bg_utf8); cconv_cconv_second(CCONV_UTF_TO_UHS, CCONV_BIG_TO_UHS); case CCONV_BIG_TO_GBL: cconv_cconv_first(CCONV_BIG_TO_UHS, CCONV_BIG_TO_GBL); cconv_iconv_second(cd_struct->utf8_gb); case CCONV_NULL: default: break; } // switch ps_outbuf = *outbuf; if(iconv(cd_struct->iconv_cd, inbuf, inbytesleft, outbuf, outbytesleft) == -1) return (size_t)(-1); return *outbuf - ps_outbuf; } /* }}} */ /* {{{ int cconv_close( cconv_t cd ) */ /** * Close a cconv handle. * * @param cd Cconv handle. * @return 0: succ, -1: fail. */ int cconv_close(cconv_t cd) { cconv_struct *c = cd; if(c->iconv_cd && (iconv_t)(-1) != c->iconv_cd) iconv_close(c->iconv_cd); if(c->gb_utf8 && (iconv_t)(-1) != c->gb_utf8 ) iconv_close(c->gb_utf8 ); if(c->bg_utf8 && (iconv_t)(-1) != c->bg_utf8 ) iconv_close(c->bg_utf8 ); if(c->utf8_gb && (iconv_t)(-1) != c->utf8_gb ) iconv_close(c->utf8_gb ); if(c->utf8_bg && (iconv_t)(-1) != c->utf8_bg ) iconv_close(c->utf8_bg ); free(c); return 0; } /* }}} */ size_t cconv_utf8(const char** inbuf, size_t* inleft, char** outbuf, size_t* outleft, const language_zh_map *m, int map_size) { const char *ps_inbuf; char *ps_outbuf; int index; size_t i_proc, o_proc, i_conv = 0, o_conv; ps_inbuf = *inbuf; ps_outbuf = *outbuf; for (; *inleft > 0 && *outleft > 0; ) { if((i_proc = utf8_char_width(const_bin_c_str(ps_inbuf))) > *inleft) break; if(i_proc > 1 && (index = find_keyword(ps_inbuf, &i_proc, m, 0, map_size - 1, i_conv)) != -1) { o_proc = strlen(map_val(m, index)); memcpy(ps_outbuf, map_val(m, index), o_proc); ps_inbuf += i_proc; ps_outbuf += o_proc; *inleft -= i_proc; *outleft -= o_proc; i_conv += i_proc; continue; } if(i_proc == -1) { errno = EINVAL; return (size_t)(-2); } memcpy(ps_outbuf, ps_inbuf, i_proc); ps_inbuf += i_proc; ps_outbuf += i_proc; *inleft -= i_proc; *outleft -= i_proc; i_conv += i_proc; } o_conv = ps_outbuf - *outbuf; *ps_outbuf = '\0'; *inbuf = ps_inbuf; *outbuf = ps_outbuf; return o_conv; } int find_keyword(const char* inbytes, size_t* length, const language_zh_map *m, int begin, int end, const int whence) { int location, offset; size_t wwidth, nwidth; if((offset = binary_find(inbytes, length, m, begin, end)) == -1) return -1; /* match the most accurate value */ wwidth = *length; do{ location = offset; *length = wwidth; nwidth = utf8_char_width(const_bin_c_str(inbytes+wwidth)); wwidth += nwidth; } while(nwidth != 0 && (offset = binary_find(inbytes, &wwidth, m, offset, end)) != -1); /* extention word fix */ if(!match_cond(cond_ptr(m, location), inbytes, strlen(map_key(m, location)), whence)) { *length = utf8_char_width(const_bin_c_str(inbytes)); return -1; } return location; } /* {{{ int binary_find(cconv_t cd, const char* inbytes, int length, int begin, int end) */ int binary_find(const char* inbytes, size_t* length, const language_zh_map *m, int begin, int end) { int middle, last, next_fix = 0; int ret, offset = -1; size_t width, wwidth, nwidth; middle = (begin + end) >> 1; width = *length; last = end; while(1) { ret = memcmp(m[middle].key, inbytes, width); if(ret == 0) { if(width == strlen(m[middle].key)) return middle; /* word key */ if(next_fix == 0) { nwidth = utf8_char_width(const_bin_c_str(inbytes+width)); wwidth = width + nwidth; if(nwidth != 0 && memcmp(m[middle].key, inbytes, wwidth) <= 0) { while (nwidth != 0 && (offset = binary_find(inbytes, &wwidth, m, offset, end)) != -1) { if(wwidth == strlen(m[offset].key)) return offset; nwidth = utf8_char_width(const_bin_c_str(inbytes+width)); wwidth += nwidth; } next_fix = 1; } } ret = 1; } if(ret > 0) { end = middle - 1; middle = (begin + end) >> 1; } else if(0 > ret) { begin = middle + 1; middle = (begin + end) >> 1; } if(end < begin) return -1; } return -1; } /* }}} */ int match_cond(const factor_zh_map *cond, const char* str, int klen, const int whence) { int y_ma, y_mb; const char *cond_str = NULL; const char *y_a_null, *y_b_null; cond_str = cond_c_str(cond, n_ma); if(cond_str && match_real_cond(cond_str , str + klen, 0, whence)) return 0; cond_str = cond_c_str(cond, n_mb); if(cond_str && match_real_cond(cond_str , str, 1, whence)) return 0; y_b_null = cond_str = cond_c_str(cond, y_mb); y_ma = cond_str && match_real_cond(cond_str, str, 1, whence); y_a_null = cond_str = cond_c_str(cond, y_ma); y_mb = cond_str && match_real_cond(cond_str, str + klen, 0, whence); return (!y_b_null&&!y_a_null) | y_ma | y_mb; } int match_real_cond(const char* mc, const char* str, int head, const int whence) { int size; char *m_one, *p; size = strlen(mc); p = (char *)malloc(size + 1); memcpy(p, mc, size); p[size] = '\0'; m_one = strtok(p, ","); while(m_one) { if((head == 1 && whence >= strlen(m_one) && memcmp(str - strlen(m_one), m_one, strlen(m_one)) == 0) ||(head == 0 && strlen(str) >= strlen(m_one) && memcmp(str, m_one, strlen(m_one)) == 0) ){ free(p); return 1; } m_one = strtok(NULL, ","); } free(p); return 0; } cconv-0.6.2/test_t2s0000664000076400007640000000217211320000165011242 00000000000000美發現號航天飛機, 上頭發獎金;頭髮應該剪了 天后級的人物一天後到達, 後面跟着一群人 幹什麼也比乾等着要好 地上的水會乾的 我會幹完的 這會干擾別人的生活 乾隆都幹掉了哪些異己 今天還不算白幹一場,他得到了一瓶老白干 等會兒到下面去下麵吃。 微風凉面,那碗涼麵還是沒有吃完。 范跑跑不是師範畢業的。 范氏家族 範氏家族 帶着僕人一起上陣,前仆後繼。 咸陽的鹹蛋真不錯。 偷試卷的行為讓他捲入作弊門。 一出戲院,看着眼前的海報,想起剛纔那好一齣精彩的表演。 這裏鳥無人煙只有幾隻麻雀飛來飛去。 這一隻只是受了點輕傷,只不過這樣而已 这隻不是我的 那只是一個小插曲。 一隻隻海鷗飛過 由於他是于氏家族的唯一傳人... 由於他是於氏家族的唯一傳人... 雖然現在日進斗金,但是他們還是免不了經常鬥嘴。 這位御史大夫居然擔起了抵禦外敵的重任。 非常合適,南宮适 綵排的過程總的來說非常精彩 看著是著名人物走過去 cconv-0.6.2/m4/0000777000076400007640000000000011340646025010165 500000000000000cconv-0.6.2/m4/config.m40000664000076400007640000000000011333742237011604 00000000000000cconv-0.6.2/config.h.in0000664000076400007640000000410011333705472011605 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if your system has a GNU libc compatible `malloc' function, and to 0 otherwise. */ #undef HAVE_MALLOC /* Define to 1 if you have the `memcpy' function. */ #undef HAVE_MEMCPY /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `memset' function. */ #undef HAVE_MEMSET /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the `strncasecmp' function. */ #undef HAVE_STRNCASECMP /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if you have the header file. */ #undef HAVE_WCHAR_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to rpl_malloc if the replacement function should be used. */ #undef malloc /* Define to `unsigned' if does not define. */ #undef size_t cconv-0.6.2/ltmain.sh0000755000076400007640000060342611312032604011406 00000000000000# ltmain.sh - Provide generalized library-building support services. # NOTE: Changing this file will not affect anything until you rerun configure. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. basename="s,^.*/,,g" # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" # The name of this program: progname=`echo "$progpath" | $SED $basename` modename="$progname" # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 PROGRAM=ltmain.sh PACKAGE=libtool VERSION=1.5.22 TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)" # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi # Check that we have a working $echo. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec $SHELL "$progpath" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat <&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE fi # Global variables. mode=$default_mode nonopt= prev= prevopt= run= show="$echo" show_help= execute_dlfiles= duplicate_deps=no preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 ##################################### # Shell function definitions: # This seems to be the best place for them # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $mkdir "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || { $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2 exit $EXIT_FAILURE } fi $echo "X$my_tmpdir" | $Xsed } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. func_win32_libid () { win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \ $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then win32_nmres=`eval $NM -f posix -A $1 | \ $SED -n -e '1,100{/ I /{s,.*,import,;p;q;};}'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $echo $win32_libid_type } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case "$@ " in " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then $echo "$modename: unable to infer tagged configuration" $echo "$modename: specify a tag with \`--tag'" 1>&2 exit $EXIT_FAILURE # else # $echo "$modename: using $tagname tagged configuration" fi ;; esac fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)" $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $? if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2 exit $EXIT_FAILURE fi } # func_extract_archives gentop oldlib ... func_extract_archives () { my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" my_status="" $show "${rm}r $my_gentop" $run ${rm}r "$my_gentop" $show "$mkdir $my_gentop" $run $mkdir "$my_gentop" my_status=$? if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then exit $my_status fi for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) extracted_serial=`expr $extracted_serial + 1` my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" $show "${rm}r $my_xdir" $run ${rm}r "$my_xdir" $show "$mkdir $my_xdir" $run $mkdir "$my_xdir" exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then exit $exit_status fi case $host in *-darwin*) $show "Extracting $my_xabs" # Do not bother doing anything if just a dry run if test -z "$run"; then darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'` darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null` if test -n "$darwin_arches"; then darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= $show "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}" lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we have a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` lipo -create -output "$darwin_file" $darwin_files done # $darwin_filelist ${rm}r unfat-$$ cd "$darwin_orig_dir" else cd "$darwin_orig_dir" func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches fi # $run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # End of Shell function definitions ##################################### # Darwin sucks eval std_shrext=\"$shrext_cmds\" disable_libs=no # Parse our command line options once, thoroughly. while test "$#" -gt 0 do arg="$1" shift case $arg in -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in execute_dlfiles) execute_dlfiles="$execute_dlfiles $arg" ;; tag) tagname="$arg" preserve_args="${preserve_args}=$arg" # Check whether tagname contains only valid characters case $tagname in *[!-_A-Za-z0-9,/]*) $echo "$progname: invalid tag name: $tagname" 1>&2 exit $EXIT_FAILURE ;; esac case $tagname in CC) # Don't test for the "default" C tag, as we know, it's there, but # not specially marked. ;; *) if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then taglist="$taglist $tagname" # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`" else $echo "$progname: ignoring unknown tag $tagname" 1>&2 fi ;; esac ;; *) eval "$prev=\$arg" ;; esac prev= prevopt= continue fi # Have we seen a non-optional argument yet? case $arg in --help) show_help=yes ;; --version) $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP" $echo $echo "Copyright (C) 2005 Free Software Foundation, Inc." $echo "This is free software; see the source for copying conditions. There is NO" $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." exit $? ;; --config) ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath # Now print the configurations for the tags. for tagname in $taglist; do ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath" done exit $? ;; --debug) $echo "$progname: enabling shell trace mode" set -x preserve_args="$preserve_args $arg" ;; --dry-run | -n) run=: ;; --features) $echo "host: $host" if test "$build_libtool_libs" = yes; then $echo "enable shared libraries" else $echo "disable shared libraries" fi if test "$build_old_libs" = yes; then $echo "enable static libraries" else $echo "disable static libraries" fi exit $? ;; --finish) mode="finish" ;; --mode) prevopt="--mode" prev=mode ;; --mode=*) mode="$optarg" ;; --preserve-dup-deps) duplicate_deps="yes" ;; --quiet | --silent) show=: preserve_args="$preserve_args $arg" ;; --tag) prevopt="--tag" prev=tag preserve_args="$preserve_args --tag" ;; --tag=*) set tag "$optarg" ${1+"$@"} shift prev=tag preserve_args="$preserve_args --tag" ;; -dlopen) prevopt="-dlopen" prev=execute_dlfiles ;; -*) $echo "$modename: unrecognized option \`$arg'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *) nonopt="$arg" break ;; esac done if test -n "$prevopt"; then $echo "$modename: option \`$prevopt' requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi case $disable_libs in no) ;; shared) build_libtool_libs=no build_old_libs=yes ;; static) build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` ;; esac # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= if test -z "$show_help"; then # Infer the operation mode. if test -z "$mode"; then $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2 $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2 case $nonopt in *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*) mode=link for arg do case $arg in -c) mode=compile break ;; esac done ;; *db | *dbx | *strace | *truss) mode=execute ;; *install*|cp|mv) mode=install ;; *rm) mode=uninstall ;; *) # If we have no mode, but dlfiles were specified, then do execute mode. test -n "$execute_dlfiles" && mode=execute # Just use the default operation mode. if test -z "$mode"; then if test -n "$nonopt"; then $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2 else $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2 fi fi ;; esac fi # Only execute mode is allowed to have -dlopen flags. if test -n "$execute_dlfiles" && test "$mode" != execute; then $echo "$modename: unrecognized option \`-dlopen'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$modename --help --mode=$mode' for more information." # These modes are in order of execution frequency so that they run quickly. case $mode in # libtool compile mode compile) modename="$modename: compile" # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) if test -n "$libobj" ; then $echo "$modename: you cannot specify \`-o' more than once" 1>&2 exit $EXIT_FAILURE fi arg_mode=target continue ;; -static | -prefer-pic | -prefer-non-pic) later="$later $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"` lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac lastarg="$lastarg $arg" done IFS="$save_ifs" lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"` # Add the arguments to base_compile. base_compile="$base_compile $lastarg" continue ;; * ) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` case $lastarg in # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, and some SunOS ksh mistreat backslash-escaping # in scan sets (worked around with variable expansion), # and furthermore cannot handle '|' '&' '(' ')' in scan sets # at all, so we specify them separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") lastarg="\"$lastarg\"" ;; esac base_compile="$base_compile $lastarg" done # for arg case $arg_mode in arg) $echo "$modename: you must specify an argument for -Xcompile" exit $EXIT_FAILURE ;; target) $echo "$modename: you must specify a target with \`-o'" 1>&2 exit $EXIT_FAILURE ;; *) # Get the name of the library object. [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'` ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo xform='[cCFSifmso]' case $libobj in *.ada) xform=ada ;; *.adb) xform=adb ;; *.ads) xform=ads ;; *.asm) xform=asm ;; *.c++) xform=c++ ;; *.cc) xform=cc ;; *.ii) xform=ii ;; *.class) xform=class ;; *.cpp) xform=cpp ;; *.cxx) xform=cxx ;; *.f90) xform=f90 ;; *.for) xform=for ;; *.java) xform=java ;; *.obj) xform=obj ;; esac libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` case $libobj in *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;; *) $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2 exit $EXIT_FAILURE ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -static) build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"` case $qlibobj in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qlibobj="\"$qlibobj\"" ;; esac test "X$libobj" != "X$qlibobj" \ && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' &()|`$[]' \ && $echo "$modename: libobj name \`$libobj' may not contain shell special characters." objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$obj"; then xdir= else xdir=$xdir/ fi lobj=${xdir}$objdir/$objname if test -z "$base_compile"; then $echo "$modename: you must specify a compilation command" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi $run $rm $removelist trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" removelist="$removelist $output_obj $lockfile" trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $run ln "$progpath" "$lockfile" 2>/dev/null; do $show "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $echo "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi $echo "$srcfile" > "$lockfile" fi if test -n "$fix_srcfile_path"; then eval srcfile=\"$fix_srcfile_path\" fi qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"` case $qsrcfile in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qsrcfile="\"$qsrcfile\"" ;; esac $run $rm "$libobj" "${libobj}T" # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. test -z "$run" && cat > ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then $show "$mv $output_obj $lobj" if $run $mv $output_obj $lobj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the PIC object to the libtool object file. test -z "$run" && cat >> ${libobj}T <> ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then $show "$mv $output_obj $obj" if $run $mv $output_obj $obj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the non-PIC object the libtool object file. # Only append if the libtool object file exists. test -z "$run" && cat >> ${libobj}T <> ${libobj}T <&2 fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test ;; *) qarg=$arg ;; esac libtool_args="$libtool_args $qarg" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) compile_command="$compile_command @OUTPUT@" finalize_command="$finalize_command @OUTPUT@" ;; esac case $prev in dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. compile_command="$compile_command @SYMFILE@" finalize_command="$finalize_command @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then dlfiles="$dlfiles $arg" else dlprefiles="$dlprefiles $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" if test ! -f "$arg"; then $echo "$modename: symbol file \`$arg' does not exist" exit $EXIT_FAILURE fi prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat $save_arg` do # moreargs="$moreargs $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi done else $echo "$modename: link input file \`$save_arg' does not exist" exit $EXIT_FAILURE fi arg=$save_arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) rpath="$rpath $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) xrpath="$xrpath $arg" ;; esac fi prev= continue ;; xcompiler) compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; xlinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $wl$qarg" prev= compile_command="$compile_command $wl$qarg" finalize_command="$finalize_command $wl$qarg" continue ;; xcclinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; shrext) shrext_cmds="$arg" prev= continue ;; darwin_framework|darwin_framework_skip) test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" prev= continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then compile_command="$compile_command $link_static_flag" finalize_command="$finalize_command $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2 continue ;; -avoid-version) avoid_version=yes continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: more than one -exported-symbols argument is not allowed" exit $EXIT_FAILURE fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework|-arch|-isysroot) case " $CC " in *" ${arg} ${1} "* | *" ${arg} ${1} "*) prev=darwin_framework_skip ;; *) compiler_flags="$compiler_flags $arg" prev=darwin_framework ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" ;; esac continue ;; -L*) dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" notinst_path="$notinst_path $dir" fi dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "*) ;; *) deplibs="$deplibs -L$dir" lib_search_path="$lib_search_path $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; *) dllsearchpath="$dllsearchpath:$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework deplibs="$deplibs -framework System" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi deplibs="$deplibs $arg" continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. -model) compile_command="$compile_command $arg" compiler_flags="$compiler_flags $arg" finalize_command="$finalize_command $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) compiler_flags="$compiler_flags $arg" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" continue ;; -module) module=yes continue ;; # -64, -mips[0-9] enable 64-bit mode on the SGI compiler # -r[0-9][0-9]* specifies the processor on the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler # +DA*, +DD* enable 64-bit mode on the HP compiler # -q* pass through compiler args for the IBM compiler # -m* pass through architecture-specific compiler args for GCC # -m*, -t[45]*, -txscale* pass through architecture-specific # compiler args for GCC # -pg pass through profiling flag for GCC # @file GCC response files -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \ -t[45]*|-txscale*|@*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" compiler_flags="$compiler_flags $arg" continue ;; -shrext) prev=shrext continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) # The PATH hackery in wrapper scripts is required on Windows # in order for the loader to find any dlls it needs. $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2 $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2 fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) dir=`$echo "X$arg" | $Xsed -e 's/^-R//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -Wc,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Wl,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $wl$flag" linker_flags="$linker_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # Some other compiler flag. -* | +*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; *.$objext) # A standard object. objs="$objs $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi ;; *.$libext) # An archive. deplibs="$deplibs $arg" old_deplibs="$old_deplibs $arg" continue ;; *.la) # A libtool-controlled library. if test "$prev" = dlfiles; then # This library was specified with -dlopen. dlfiles="$dlfiles $arg" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. dlprefiles="$dlprefiles $arg" prev= else deplibs="$deplibs $arg" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi done # argument parsing loop if test -n "$prev"; then $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi oldlibs= # calculate the name of the file, without its directory outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` if test "X$output_objdir" = "X$output"; then output_objdir="$objdir" else output_objdir="$output_objdir/$objdir" fi # Create the object directory. if test ! -d "$output_objdir"; then $show "$mkdir $output_objdir" $run $mkdir $output_objdir exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then exit $exit_status fi fi # Determine the type of output case $output in "") $echo "$modename: you must specify an output file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac case $host in *cygwin* | *mingw* | *pw32*) # don't eliminate duplications in $postdeps and $predeps duplicate_compiler_generated_deps=yes ;; *) duplicate_compiler_generated_deps=$duplicate_deps ;; esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if test "X$duplicate_deps" = "Xyes" ; then case "$libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi libs="$libs $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; esac pre_post_deps="$pre_post_deps $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries case $linkmode in lib) passes="conv link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2 exit $EXIT_FAILURE ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else compiler_flags="$compiler_flags $deplib" fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2 continue fi name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then library_names= old_library= case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; *) $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2 ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) lib="$deplib" ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` if eval $echo \"$deplib\" 2>/dev/null \ | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then $echo $echo "*** Warning: Trying to link with static lib archive $deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because the file extensions .$libext of this argument makes me believe" $echo "*** that it is just a static archive that I should not used here." else $echo $echo "*** Warning: Linking the shared library $output against the" $echo "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. newdlprefiles="$newdlprefiles $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else newdlfiles="$newdlfiles $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2 exit $EXIT_FAILURE fi # Check to see that this really is a libtool archive. if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." dlname= dlopen= dlpreopen= libdir= library_names= old_library= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && dlfiles="$dlfiles $dlopen" test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then $echo "$modename: \`$lib' is not a convenience library" 1>&2 exit $EXIT_FAILURE fi continue fi # $pass = conv # Get the name of the library we link against. linklib= for l in $old_library $library_names; do linklib="$l" done if test -z "$linklib"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. dlprefiles="$dlprefiles $lib $dependency_libs" else newdlfiles="$newdlfiles $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2 $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 abs_ladir="$ladir" fi ;; esac laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then $echo "$modename: warning: library \`$lib' was moved." 1>&2 dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$libdir" absdir="$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" fi fi # $installed = yes name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then newdlprefiles="$newdlprefiles $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then newdlprefiles="$newdlprefiles $dir/$dlname" else newdlprefiles="$newdlprefiles $dir/$linklib" fi fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then newlib_search_path="$newlib_search_path $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; *) temp_rpath="$temp_rpath $absdir" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes ; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then if test "$installed" = no; then notinst_deplibs="$notinst_deplibs $lib" need_relink=yes fi # This is a shared library # Warn about portability, can't link against -module's on # some systems (darwin) if test "$shouldnotlink" = yes && test "$pass" = link ; then $echo if test "$linkmode" = prog; then $echo "*** Warning: Linking the executable $output against the loadable module" else $echo "*** Warning: Linking the shared library $output against the loadable module" fi $echo "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names realname="$2" shift; shift libname=`eval \\$echo \"$libname_spec\"` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw*) major=`expr $current - $age` versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" soname=`$echo $soroot | ${SED} -e 's/^.*\///'` newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a" # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else $show "extracting exported symbol list from \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$extract_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else $show "generating import library for \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$old_archive_from_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a module then we can not link against # it, someone is ignoring the new warnings I added if /usr/bin/file -L $add 2> /dev/null | $EGREP ": [^:]* bundle" >/dev/null ; then $echo "** Warning, lib $linklib is a module, not a shared library" if test -z "$old_library" ; then $echo $echo "** And there doesn't seem to be a static archive available" $echo "** The link will probably fail, sorry" else add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$dir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then $echo "$modename: configuration error: unsupported hardcode properties" exit $EXIT_FAILURE fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && \ test "$hardcode_minus_L" != yes && \ test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. $echo $echo "*** Warning: This system can not link to static lib archive $lib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then $echo "*** But as you try to build a module library, libtool will still create " $echo "*** a static module, that should work as long as the dlopening application" $echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'` case " $xrpath " in *" $temp_xrpath "*) ;; *) xrpath="$xrpath $temp_xrpath";; esac;; *) temp_deplibs="$temp_deplibs $libdir";; esac done dependency_libs="$temp_deplibs" fi newlib_search_path="$newlib_search_path $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do case $deplib in -L*) path="$deplib" ;; *.la) dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$deplib" && dir="." # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" fi ;; esac if grep "^installed=no" $deplib > /dev/null; then path="$absdir/$objdir" else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi if test "$absdir" != "$libdir"; then $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 fi path="$absdir" fi depdepl= case $host in *-*-darwin*) # we do not want to link against static libs, # but need to link against shared eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$path/$depdepl" ; then depdepl="$path/$depdepl" fi # do not add paths which are already there case " $newlib_search_path " in *" $path "*) ;; *) newlib_search_path="$newlib_search_path $path";; esac fi path="" ;; *) path="-L$path" ;; esac ;; -l*) case $host in *-*-darwin*) # Again, we only want to link against shared libraries eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"` for tmp in $newlib_search_path ; do if test -f "$tmp/lib$tmp_libs.dylib" ; then eval depdepl="$tmp/lib$tmp_libs.dylib" break fi done path="" ;; *) continue ;; esac ;; *) continue ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac case " $deplibs " in *" $depdepl "*) ;; *) deplibs="$depdepl $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) lib_search_path="$lib_search_path $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) tmp_libs="$tmp_libs $deplib" ;; esac ;; *) tmp_libs="$tmp_libs $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then tmp_libs="$tmp_libs $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$deplibs"; then $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 fi if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for archives" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for archives" 1>&2 fi if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2 fi # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" objs="$objs$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) if test "$module" = no; then $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1 exit $EXIT_FAILURE else $echo $echo "*** Warning: Linking the shared library $output against the non-libtool" $echo "*** objects $objs is not portable!" libobjs="$libobjs $objs" fi fi if test "$dlself" != no; then $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2 fi set dummy $rpath if test "$#" -gt 2; then $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2 fi install_libdir="$2" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2 fi else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 IFS="$save_ifs" if test -n "$8"; then $echo "$modename: too many parameters to \`-version-info'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$2" number_minor="$3" number_revision="$4" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in darwin|linux|osf|windows|none) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) current=`expr $number_major + $number_minor - 1` age="$number_minor" revision="$number_minor" ;; esac ;; no) current="$2" revision="$3" age="$4" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac if test "$age" -gt "$current"; then $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header major=.`expr $current - $age` versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... minor_current=`expr $current + 1` verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current"; ;; irix | nonstopux) major=`expr $current - $age + 1` case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do iface=`expr $revision - $loop` loop=`expr $loop - 1` verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) major=.`expr $current - $age` versuffix="$major.$age.$revision" ;; osf) major=.`expr $current - $age` versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do iface=`expr $current - $loop` loop=`expr $loop - 1` verstring="$verstring:${iface}.0" done # Make executables depend on our current version. verstring="$verstring:${current}.0" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. major=`expr $current - $age` versuffix="-$major" ;; *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi if test "$mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$echo "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi removelist="$removelist $p" ;; *) ;; esac done if test -n "$removelist"; then $show "${rm}r $removelist" $run ${rm}r $removelist fi fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` fi # Eliminate all temporary directories. # for path in $notinst_path; do # lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"` # deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"` # dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"` # done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do temp_xrpath="$temp_xrpath -R$libdir" case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) dlfiles="$dlfiles $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) dlprefiles="$dlprefiles $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework deplibs="$deplibs -framework System" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then deplibs="$deplibs -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $rm conftest.c cat > conftest.c </dev/null` for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null \ | grep " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$file_magic_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for file magic test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a file magic. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` for a_deplib in $deplibs; do name=`expr $a_deplib : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. if test -n "$name" && test "$name" != "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) newdeplibs="$newdeplibs $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval \\$echo \"$libname_spec\"` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval $echo \"$potent_lib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for regex pattern test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a regex pattern. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \ -e 's/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"` done fi if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ | grep . >/dev/null; then $echo if test "X$deplibs_check_method" = "Xnone"; then $echo "*** Warning: inter-library dependencies are not supported in this platform." else $echo "*** Warning: inter-library dependencies are not known to be supported." fi $echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes fi ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then $echo $echo "*** Warning: libtool could not satisfy all declared inter-library" $echo "*** dependencies of module $libname. Therefore, libtool will create" $echo "*** a static module, that should work as long as the dlopening" $echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else $echo "*** The inter-library dependencies that have been dropped here will be" $echo "*** automatically added whenever a program is linked with this library" $echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then $echo $echo "*** Since this library must not contain undefined symbols," $echo "*** because either the platform does not support them or" $echo "*** it was explicitly requested with -no-undefined," $echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" dep_rpath="$dep_rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" if test -n "$hardcode_libdir_flag_spec_ld"; then eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" else eval dep_rpath=\"$hardcode_libdir_flag_spec\" fi fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names realname="$2" shift; shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do linknames="$linknames $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" if len=`expr "X$cmd" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then $show "$cmd" $run eval "$cmd" || exit $? skipped_export=false else # The command line is too long to execute in one step. $show "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex"; then $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"" $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' $show "$mv \"${export_symbols}T\" \"$export_symbols\"" $run eval '$mv "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"' fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) tmp_deplibs="$tmp_deplibs $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" else gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $convenience libobjs="$libobjs $func_extract_archives_result" fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" linker_flags="$linker_flags $flag" fi # Make a backup of the uninstalled library when relinking if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise. $echo "creating reloadable object files..." # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output output_la=`$echo "X$output" | $Xsed -e "$basename"` # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= delfiles= last_robj= k=1 output=$output_objdir/$output_la-${k}.$objext # Loop over the list of objects to be linked. for obj in $save_libobjs do eval test_cmds=\"$reload_cmds $objlist $last_robj\" if test "X$objlist" = X || { len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; }; then objlist="$objlist $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. eval concat_cmds=\"$reload_cmds $objlist $last_robj\" else # All subsequent reloadable object files will link in # the last one created. eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext k=`expr $k + 1` output=$output_objdir/$output_la-${k}.$objext objlist=$obj len=1 fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" if ${skipped_export-false}; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols libobjs=$output # Append the command to create the export file. eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\" fi # Set up a command to remove the reloadable object files # after they are used. i=0 while test "$i" -lt "$k" do i=`expr $i + 1` delfiles="$delfiles $output_objdir/$output_la-${i}.$objext" done $echo "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi # Append the command to remove the reloadable object files # to the just-reset $cmds. eval cmds=\"\$cmds~\$rm $delfiles\" fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then $show "${rm}r $gentop" $run ${rm}r "$gentop" fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)" $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $? fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$deplibs"; then $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 fi if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for objects" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 fi case $output in *.lo) if test -n "$objs$old_deplibs"; then $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2 exit $EXIT_FAILURE fi libobj="$output" obj=`$echo "X$output" | $Xsed -e "$lo2o"` ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $run $rm $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$echo "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` else gentop="$output_objdir/${obj}x" generated="$generated $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # Create the old-style object. reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $run eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;; esac if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for programs" 1>&2 fi if test "$preload" = yes; then if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown && test "$dlopen_self_static" = unknown; then $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support." fi fi case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'` finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac case $host in *darwin*) # Don't allow lazy linking, it breaks C++ global constructors if test "$tagname" = CXX ; then compile_command="$compile_command ${wl}-bind_at_load" finalize_command="$finalize_command ${wl}-bind_at_load" fi ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done compile_deplibs="$new_libs" compile_command="$compile_command $compile_deplibs" finalize_command="$finalize_command $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; *) dllsearchpath="$dllsearchpath:$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` fi dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then dlsyms="${outputname}S.c" else $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2 fi fi if test -n "$dlsyms"; then case $dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${outputname}.nm" $show "$rm $nlist ${nlist}S ${nlist}T" $run $rm "$nlist" "${nlist}S" "${nlist}T" # Parse the name list into a source file. $show "creating $output_objdir/$dlsyms" test -z "$run" && $echo > "$output_objdir/$dlsyms" "\ /* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */ /* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */ #ifdef __cplusplus extern \"C\" { #endif /* Prevent the only kind of declaration conflicts we can make. */ #define lt_preloaded_symbols some_other_symbol /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then $show "generating symbol list for \`$output'" test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` for arg in $progfiles; do $show "extracting global C symbols from \`$arg'" $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi if test -n "$export_symbols_regex"; then $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $run $rm $export_symbols $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* ) $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac else $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' $run eval 'mv "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* ) $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac fi fi for arg in $dlprefiles; do $show "extracting global C symbols from \`$arg'" name=`$echo "$arg" | ${SED} -e 's%^.*/%%'` $run eval '$echo ": $name " >> "$nlist"' $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -z "$run"; then # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $mv "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if grep -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else grep -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"' else $echo '/* NONE */' >> "$output_objdir/$dlsyms" fi $echo >> "$output_objdir/$dlsyms" "\ #undef lt_preloaded_symbols #if defined (__STDC__) && __STDC__ # define lt_ptr void * #else # define lt_ptr char * # define const #endif /* The mapping between symbol names and symbols. */ " case $host in *cygwin* | *mingw* ) $echo >> "$output_objdir/$dlsyms" "\ /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs */ struct { " ;; * ) $echo >> "$output_objdir/$dlsyms" "\ const struct { " ;; esac $echo >> "$output_objdir/$dlsyms" "\ const char *name; lt_ptr address; } lt_preloaded_symbols[] = {\ " eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms" $echo >> "$output_objdir/$dlsyms" "\ {0, (lt_ptr) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " fi pic_flag_for_symtable= case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";; esac;; *-*-hpux*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag";; esac esac # Now compile the dynamic symbol file. $show "(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")" $run eval '(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $? # Clean up the generated files. $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T" $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T" # Transform the symbol file into the correct name. case $host in *cygwin* | *mingw* ) if test -f "$output_objdir/${outputname}.def" ; then compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` else compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` fi ;; * ) compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` ;; esac ;; *) $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2 exit $EXIT_FAILURE ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` fi if test "$need_relink" = no || test "$build_libtool_libs" != yes; then # Replace the output file specification. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$output"'%g' | $NL2SP` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. $show "$link_command" $run eval "$link_command" exit_status=$? # Delete the generated files. if test -n "$dlsyms"; then $show "$rm $output_objdir/${outputname}S.${objext}" $run $rm "$output_objdir/${outputname}S.${objext}" fi exit $exit_status fi if test -n "$shlibpath_var"; then # We should set the shlibpath_var rpath= for dir in $temp_rpath; do case $dir in [\\/]* | [A-Za-z]:[\\/]*) # Absolute path. rpath="$rpath$dir:" ;; *) # Relative path: add a thisdir entry. rpath="$rpath\$thisdir/$dir:" ;; esac done temp_rpath="$rpath" fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do rpath="$rpath$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $run $rm $output # Link the executable and exit $show "$link_command" $run eval "$link_command" || exit $? exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2 $echo "$modename: \`$output' will be relinked during installation" 1>&2 else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $SP2NL | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g' | $NL2SP` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname $show "$link_command" $run eval "$link_command" || exit $? # Now create the wrapper script. $show "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` fi # Quote $echo for shipping. if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then case $progpath in [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; esac qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"` else qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"` fi # Only actually do things if our run command is non-null. if test -z "$run"; then # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) output_name=`basename $output` output_path=`dirname $output` cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $rm $cwrappersource $cwrapper trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 cat > $cwrappersource <> $cwrappersource<<"EOF" #include #include #include #include #include #include #include #include #include #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) /* -DDEBUG is fairly common in CFLAGS. */ #undef DEBUG #if defined DEBUGWRAPPER # define DEBUG(format, ...) fprintf(stderr, format, __VA_ARGS__) #else # define DEBUG(format, ...) #endif const char *program_name = NULL; void * xmalloc (size_t num); char * xstrdup (const char *string); const char * base_name (const char *name); char * find_executable(const char *wrapper); int check_executable(const char *path); char * strendzap(char *str, const char *pat); void lt_fatal (const char *message, ...); int main (int argc, char *argv[]) { char **newargz; int i; program_name = (char *) xstrdup (base_name (argv[0])); DEBUG("(main) argv[0] : %s\n",argv[0]); DEBUG("(main) program_name : %s\n",program_name); newargz = XMALLOC(char *, argc+2); EOF cat >> $cwrappersource <> $cwrappersource <<"EOF" newargz[1] = find_executable(argv[0]); if (newargz[1] == NULL) lt_fatal("Couldn't find %s", argv[0]); DEBUG("(main) found exe at : %s\n",newargz[1]); /* we know the script has the same name, without the .exe */ /* so make sure newargz[1] doesn't end in .exe */ strendzap(newargz[1],".exe"); for (i = 1; i < argc; i++) newargz[i+1] = xstrdup(argv[i]); newargz[argc+1] = NULL; for (i=0; i> $cwrappersource <> $cwrappersource <> $cwrappersource <<"EOF" return 127; } void * xmalloc (size_t num) { void * p = (void *) malloc (num); if (!p) lt_fatal ("Memory exhausted"); return p; } char * xstrdup (const char *string) { return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL ; } const char * base_name (const char *name) { const char *base; #if defined (HAVE_DOS_BASED_FILE_SYSTEM) /* Skip over the disk name in MSDOS pathnames. */ if (isalpha ((unsigned char)name[0]) && name[1] == ':') name += 2; #endif for (base = name; *name; name++) if (IS_DIR_SEPARATOR (*name)) base = name + 1; return base; } int check_executable(const char * path) { struct stat st; DEBUG("(check_executable) : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!"); if ((!path) || (!*path)) return 0; if ((stat (path, &st) >= 0) && ( /* MinGW & native WIN32 do not support S_IXOTH or S_IXGRP */ #if defined (S_IXOTH) ((st.st_mode & S_IXOTH) == S_IXOTH) || #endif #if defined (S_IXGRP) ((st.st_mode & S_IXGRP) == S_IXGRP) || #endif ((st.st_mode & S_IXUSR) == S_IXUSR)) ) return 1; else return 0; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise */ char * find_executable (const char* wrapper) { int has_slash = 0; const char* p; const char* p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char* concat_name; DEBUG("(find_executable) : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char)wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char* path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char* q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR(*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen(tmp); concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen(tmp); concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); return NULL; } char * strendzap(char *str, const char *pat) { size_t len, patlen; assert(str != NULL); assert(pat != NULL); len = strlen(str); patlen = strlen(pat); if (patlen <= len) { str += len - patlen; if (strcmp(str, pat) == 0) *str = '\0'; } return str; } static void lt_error_core (int exit_status, const char * mode, const char * message, va_list ap) { fprintf (stderr, "%s: %s: ", program_name, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, "FATAL", message, ap); va_end (ap); } EOF # we should really use a build-platform specific compiler # here, but OTOH, the wrappers (shell script and this C one) # are only useful if you want to execute the "real" binary. # Since the "real" binary is built for $host, then this # wrapper might as well be built for $host, too. $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource ;; esac $rm $output trap "$rm $output; exit $EXIT_FAILURE" 1 2 15 $echo > $output "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='${SED} -e 1s/^X//' sed_quote_subst='$sed_quote_subst' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variable: notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$echo are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then echo=\"$qecho\" file=\"\$0\" # Make sure echo works. if test \"X\$1\" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then # Yippee, \$echo works! : else # Restart under the correct shell, and then maybe \$echo will work. exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} fi fi\ " $echo >> $output "\ # Find the directory that this script lives in. thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` done # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $echo >> $output "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || \\ { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $mkdir \"\$progdir\" else $rm \"\$progdir/\$file\" fi" $echo >> $output "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $echo \"\$relink_command_output\" >&2 $rm \"\$progdir/\$file\" exit $EXIT_FAILURE fi fi $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $rm \"\$progdir/\$program\"; $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; } $rm \"\$progdir/\$file\" fi" else $echo >> $output "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $echo >> $output "\ if test -f \"\$progdir/\$program\"; then" # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $echo >> $output "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` export $shlibpath_var " fi # fixup the dll searchpath if we need to. if test -n "$dllsearchpath"; then $echo >> $output "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi $echo >> $output "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2*) $echo >> $output "\ exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $echo >> $output "\ exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $echo >> $output "\ \$echo \"\$0: cannot exec \$program \$*\" exit $EXIT_FAILURE fi else # The program doesn't exist. \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$echo \"This script is just a wrapper for \$program.\" 1>&2 $echo \"See the $PACKAGE documentation for more information.\" 1>&2 exit $EXIT_FAILURE fi fi\ " chmod +x $output fi exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $addlibs oldobjs="$oldobjs $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do $echo "X$obj" | $Xsed -e 's%^.*/%%' done | sort | sort -uc >/dev/null 2>&1); then : else $echo "copying selected object files to avoid basename conflicts..." if test -z "$gentop"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" $show "${rm}r $gentop" $run ${rm}r "$gentop" $show "$mkdir $gentop" $run $mkdir "$gentop" exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$gentop"; then exit $exit_status fi fi save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase counter=`expr $counter + 1` case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" $run ln "$obj" "$gentop/$newobj" || $run cp "$obj" "$gentop/$newobj" oldobjs="$oldobjs $gentop/$newobj" ;; *) oldobjs="$oldobjs $obj" ;; esac done fi eval cmds=\"$old_archive_cmds\" if len=`expr "X$cmds" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts $echo "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done for obj in $save_oldobjs do oldobjs="$objlist $obj" objlist="$objlist $obj" eval test_cmds=\"$old_archive_cmds\" if len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do eval cmd=\"$cmd\" IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$generated"; then $show "${rm}r$generated" $run ${rm}r$generated fi # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" $show "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. if test -z "$run"; then for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdependency_libs="$newdependency_libs $libdir/$name" ;; *) newdependency_libs="$newdependency_libs $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlfiles="$newdlfiles $libdir/$name" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlprefiles="$newdlprefiles $libdir/$name" done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlfiles="$newdlfiles $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlprefiles="$newdlprefiles $abs" done dlprefiles="$newdlprefiles" fi $rm $output # place dlname in correct position for cygwin tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; esac $echo > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $echo >> $output "\ relink_command=\"$relink_command\"" fi done fi # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $? ;; esac exit $EXIT_SUCCESS ;; # libtool install mode install) modename="$modename: install" # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. $echo "X$nonopt" | grep shtool > /dev/null; then # Aesthetically quote it. arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$arg " arg="$1" shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$install_prog$arg" # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= for arg do if test -n "$dest"; then files="$files $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) case " $install_prog " in *[\\\ /]cp\ *) ;; *) prev=$arg ;; esac ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$install_prog $arg" done if test -z "$install_prog"; then $echo "$modename: you must specify an install program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -n "$prev"; then $echo "$modename: the \`$prev' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -z "$files"; then if test -z "$dest"; then $echo "$modename: no file or destination specified" 1>&2 else $echo "$modename: you must specify a destination" 1>&2 fi $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Strip any trailing slash from the destination. dest=`$echo "X$dest" | $Xsed -e 's%/$%%'` # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'` test "X$destdir" = "X$dest" && destdir=. destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'` # Not a directory, so check to see that there is only one file specified. set dummy $files if test "$#" -gt 2; then $echo "$modename: \`$dest' is not a directory" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. staticlibs="$staticlibs $file" ;; *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi library_names= old_library= relink_command= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) current_libdirs="$current_libdirs $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) future_libdirs="$future_libdirs $libdir" ;; esac fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/ test "X$dir" = "X$file/" && dir= dir="$dir$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. if test "$inst_prefix_dir" = "$destdir"; then $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 exit $EXIT_FAILURE fi if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%" | $NL2SP` else relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%%" | $NL2SP` fi $echo "$modename: warning: relinking \`$file'" 1>&2 $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 exit $EXIT_FAILURE fi fi # See the names of the shared library. set dummy $library_names if test -n "$2"; then realname="$2" shift shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. $show "$install_prog $dir/$srcname $destdir/$realname" $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $? if test -n "$stripme" && test -n "$striplib"; then $show "$striplib $destdir/$realname" $run eval "$striplib $destdir/$realname" || exit $? fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do if test "$linkname" != "$realname"; then $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" fi done fi # Do each command in the postinstall commands. lib="$destdir/$realname" cmds=$postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' fi exit $lt_exit } done IFS="$save_ifs" fi # Install the pseudo-library for information purposes. name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` instname="$dir/$name"i $show "$install_prog $instname $destdir/$name" $run eval "$install_prog $instname $destdir/$name" || exit $? # Maybe install the static library, too. test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"` ;; *.$objext) staticdest="$destfile" destfile= ;; *) $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac # Install the libtool object if requested. if test -n "$destfile"; then $show "$install_prog $file $destfile" $run eval "$install_prog $file $destfile" || exit $? fi # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. staticobj=`$echo "X$file" | $Xsed -e "$lo2o"` $show "$install_prog $staticobj $staticdest" $run eval "$install_prog \$staticobj \$staticdest" || exit $? fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then file=`$echo $file|${SED} 's,.exe$,,'` stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin*|*mingw*) wrapper=`$echo $file | ${SED} -e 's,.exe$,,'` ;; *) wrapper=$file ;; esac if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then notinst_deplibs= relink_command= # Note that it is not necessary on cygwin/mingw to append a dot to # foo even if both foo and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. # # If there is no directory component, then add one. case $wrapper in */* | *\\*) . ${wrapper} ;; *) . ./${wrapper} ;; esac # Check the variables that should have been set. if test -z "$notinst_deplibs"; then $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2 exit $EXIT_FAILURE fi finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then # If there is no directory component, then add one. case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac fi libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 finalize=no fi done relink_command= # Note that it is not necessary on cygwin/mingw to append a dot to # foo even if both foo and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. # # If there is no directory component, then add one. case $wrapper in */* | *\\*) . ${wrapper} ;; *) . ./${wrapper} ;; esac outputname= if test "$fast_install" = no && test -n "$relink_command"; then if test "$finalize" = yes && test -z "$run"; then tmpdir=`func_mktempdir` file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g' | $NL2SP` $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 ${rm}r "$tmpdir" continue fi file="$outputname" else $echo "$modename: warning: cannot relink \`$file'" 1>&2 fi else # Install the binary that we compiled earlier. file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'` ;; esac ;; esac $show "$install_prog$stripme $file $destfile" $run eval "$install_prog\$stripme \$file \$destfile" || exit $? test -n "$outputname" && ${rm}r "$tmpdir" ;; esac done for file in $staticlibs; do name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` # Set up the ranlib parameters. oldlib="$destdir/$name" $show "$install_prog $file $oldlib" $run eval "$install_prog \$file \$oldlib" || exit $? if test -n "$stripme" && test -n "$old_striplib"; then $show "$old_striplib $oldlib" $run eval "$old_striplib $oldlib" || exit $? fi # Do each command in the postinstall commands. cmds=$old_postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$future_libdirs"; then $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2 fi if test -n "$current_libdirs"; then # Maybe just do a dry run. test -n "$run" && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi ;; # libtool finish mode finish) modename="$modename: finish" libdirs="$nonopt" admincmds= if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for dir do libdirs="$libdirs $dir" done for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. cmds=$finish_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || admincmds="$admincmds $cmd" done IFS="$save_ifs" fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $run eval "$cmds" || admincmds="$admincmds $cmds" fi done fi # Exit here if they wanted silent mode. test "$show" = : && exit $EXIT_SUCCESS $echo "X----------------------------------------------------------------------" | $Xsed $echo "Libraries have been installed in:" for libdir in $libdirs; do $echo " $libdir" done $echo $echo "If you ever happen to want to link against installed libraries" $echo "in a given directory, LIBDIR, you must either use libtool, and" $echo "specify the full pathname of the library, or use the \`-LLIBDIR'" $echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then $echo " - add LIBDIR to the \`$shlibpath_var' environment variable" $echo " during execution" fi if test -n "$runpath_var"; then $echo " - add LIBDIR to the \`$runpath_var' environment variable" $echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $echo " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $echo " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi $echo $echo "See any operating system documentation about shared libraries for" $echo "more information, such as the ld(1) and ld.so(8) manual pages." $echo "X----------------------------------------------------------------------" | $Xsed exit $EXIT_SUCCESS ;; # libtool execute mode execute) modename="$modename: execute" # The first argument is the command name. cmd="$nonopt" if test -z "$cmd"; then $echo "$modename: you must specify a COMMAND" 1>&2 $echo "$help" exit $EXIT_FAILURE fi # Handle -dlopen flags immediately. for file in $execute_dlfiles; do if test ! -f "$file"; then $echo "$modename: \`$file' is not a file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi dir= case $file in *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Read the libtool library. dlname= library_names= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'" continue fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. if test -f "$dir/$objdir/$dlname"; then dir="$dir/$objdir" else $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2 exit $EXIT_FAILURE fi ;; *.lo) # Just add the directory containing the .lo file. dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. ;; *) $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2 continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -*) ;; *) # Do a test to see if this is really a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"` args="$args \"$file\"" done if test -z "$run"; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" $echo "export $shlibpath_var" fi $echo "$cmd$args" exit $EXIT_SUCCESS fi ;; # libtool clean and uninstall mode clean | uninstall) modename="$modename: $mode" rm="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) rm="$rm $arg"; rmforce=yes ;; -*) rm="$rm $arg" ;; *) files="$files $arg" ;; esac done if test -z "$rm"; then $echo "$modename: you must specify an RM program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi rmdirs= origobjdir="$objdir" for file in $files; do dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` if test "X$dir" = "X$file"; then dir=. objdir="$origobjdir" else objdir="$dir/$origobjdir" fi name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` test "$mode" = uninstall && objdir="$dir" # Remember objdir for removal later, being careful to avoid duplicates if test "$mode" = clean; then case " $rmdirs " in *" $objdir "*) ;; *) rmdirs="$rmdirs $objdir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if (test -L "$file") >/dev/null 2>&1 \ || (test -h "$file") >/dev/null 2>&1 \ || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then . $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do rmfiles="$rmfiles $objdir/$n" done test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" case "$mode" in clean) case " $library_names " in # " " in the beginning catches empty $dlname *" $dlname "*) ;; *) rmfiles="$rmfiles $objdir/$dlname" ;; esac test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. cmds=$postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. cmds=$old_postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # Read the .lo file . $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" \ && test "$pic_object" != none; then rmfiles="$rmfiles $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" \ && test "$non_pic_object" != none; then rmfiles="$rmfiles $dir/$non_pic_object" fi fi ;; *) if test "$mode" = clean ; then noexename=$name case $file in *.exe) file=`$echo $file|${SED} 's,.exe$,,'` noexename=`$echo $name|${SED} 's,.exe$,,'` # $file with .exe has already been added to rmfiles, # add $file without .exe rmfiles="$rmfiles $file" ;; esac # Do a test to see if this is a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then relink_command= . $dir/$noexename # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then rmfiles="$rmfiles $objdir/lt-$name" fi if test "X$noexename" != "X$name" ; then rmfiles="$rmfiles $objdir/lt-${noexename}.c" fi fi fi ;; esac $show "$rm $rmfiles" $run $rm $rmfiles || exit_status=1 done objdir="$origobjdir" # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then $show "rmdir $dir" $run rmdir $dir >/dev/null 2>&1 fi done exit $exit_status ;; "") $echo "$modename: you must specify a MODE" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE ;; esac if test -z "$exec_cmd"; then $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE fi fi # test -z "$show_help" if test -n "$exec_cmd"; then eval exec $exec_cmd exit $EXIT_FAILURE fi # We need to display help for each of the modes. case $mode in "") $echo \ "Usage: $modename [OPTION]... [MODE-ARG]... Provide generalized library-building support services. --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --finish same as \`--mode=finish' --help display this help message and exit --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS] --quiet same as \`--silent' --silent don't print informational messages --tag=TAG use configuration variables from tag TAG --version print version information MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for a more detailed description of MODE. Report bugs to ." exit $EXIT_SUCCESS ;; clean) $echo \ "Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $echo \ "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -prefer-pic try to building PIC objects only -prefer-non-pic try to building non-PIC objects only -static always build a \`.o' file suitable for static linking COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $echo \ "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $echo \ "Usage: $modename [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $echo \ "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $echo \ "Usage: $modename [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $echo \ "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac $echo $echo "Try \`$modename --help' for more information about other modes." exit $? # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared disable_libs=shared # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static disable_libs=static # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: cconv-0.6.2/test_s2t0000664000076400007640000000226411320000165011244 00000000000000美发现号航天飞机, 上头发奖金;头发应该剪了 天后级的人物一天后到达, 后面跟着一群人 干什么也比干等着要好 地上的水会干的 我会干完的 这会干扰别人的生活 乾隆都干掉了哪些异己 今天还不算白干一场,他得到了一瓶老白干 等会儿到下面去下面吃。 微风凉面,那碗凉面还是没有吃完。 范跑跑不是师范毕业的。 范氏家族 範氏家族 带着仆人一起上阵,前仆后继。 咸阳的咸蛋真不错。 偷試卷的行为让他卷入作弊门。 一出戏院,看着眼前的海报,想起刚才那好一出精彩的表演。 这里鸟无人烟只有几只麻雀飞来飞去。 这一只只是受了点轻伤,只不过这样而已 这只不是我的 那只是一个小插曲。 一只只海鸥飞过 由于他是于氏家族的唯一传人... 由于他是於氏家族的唯一传人... 虽然现在日进斗金,但是他们还是免不了经常斗嘴。 少焉,月出于东山之上,徘徊于斗牛之间。白露橫江,水光接天。 这位御史大夫居然担起了抵御外敌的重任。 非常合适,南宫适 彩排的过程总的来说非常精彩 cconv-0.6.2/unicode.h0000664000076400007640000000112511320025312011345 00000000000000/* * Copyright (C) 2008, 2009 * Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * \author Yang Jianyu */ #ifndef _CCONV_UNICODE_H_ #define _CCONV_UNICODE_H_ extern int utf8_char_width (const unsigned char* w); extern int utf8_char_encode(const unsigned char* w, int* c); extern int utf8_char_decode(int unicode, unsigned char* utf); #endif cconv-0.6.2/cconv_table.h0000664000076400007640000000252011320404453012205 00000000000000/* * Copyright (C) 2008, 2009 * Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * \author Yang Jianyu */ #ifndef _CCONV_TABLE_H_ #define _CCONV_TABLE_H_ typedef struct factor_zh_map { unsigned int n_ma; unsigned int n_mb; unsigned int y_ma; unsigned int y_mb; } factor_zh_map; typedef struct language_zh_map { char* key; char* val; /* index of the zh_map_condition array */ unsigned int cond; } language_zh_map; #include "cconv_table.cc" #define zh_map(cd) \ (cd == CCONV_UTF_TO_UHT) ? map_uni_s2t : map_uni_t2s #define zh_map_size(cd) \ (cd == CCONV_UTF_TO_UHT) ? map_uni_s2t_size : map_uni_t2s_size #define have_cond(a, x) (a[x].cond != -1) #define cond_ptr(a, x) \ (a[x].cond != -1 ? \ &map_zh_cond[a[x].cond] : NULL) /* return char* */ #define cond_c_str(o, t) \ (o != NULL && o->t != -1 ? zh_sets_cond[o->t] : NULL) /* DO Make sure the cond offset is NOT -1 */ #define cond_gobal_c_str(a, x, t) zh_sets_cond[map_zh_cond[a[x].cond].t] #define map_key(a, x) a[x].key #define map_val(a, x) a[x].val #define s2t_size() map_uni_s2t_size #define t2s_size() map_uni_t2s_size #endif cconv-0.6.2/INSTALL0000644000076400007640000002243211320004150010576 00000000000000Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. Basic Installation ================== These are generic installation instructions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. (Caching is disabled by default to prevent problems with accidental use of stale cache files.) If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You only need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. If you're using `csh' on an old version of System V, you might need to type `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. Running `configure' takes awhile. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of `make' that supports the `VPATH' variable, such as GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. If you have to use a `make' that does not support the `VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Here is a another example: /bin/bash ./configure CONFIG_SHELL=/bin/bash Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent configuration-related scripts to be executed by `/bin/bash'. `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of the options to `configure', and exit. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. cconv-0.6.2/cconv_table.cc0000664000076400007640000336103211320000165012344 00000000000000/* * Copyright (C) 2008, 2009 * Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. */ /* * NOTICE!!! This file is auto created by cconv_build_table, DO NOT edit it. * * @author Jianyu Yang */ char* zh_sets_cond[] = { "0,1,2,3,4,5,6,7,8,9,一,七,万,三,两,九,二,五,仟,伍,佰,八,六,几,十,千,叁,四,壹,多,拾,捌,数,柒,玖,百,肆,贰,陆", "停,息,放", "位,县,嘉,坤,屬陽,掛,為陽,陵,陽,隆", "兵,战", "孔,杀手", "上", "风", "么,锦", "瀑", "寨,营", "数", "脆", "印,句式,织锦,诗,锦", "明,现,示,达", "事,活", "园,楼,院", "有,面", "吃,条", "已", "必", "展,扬,挥,放,现,生,行,表,觉,誓", "事,人,他,你,己,心,情,我,政,无,是,民,物,理,行,言", "会,剩,去,可,将,把,有,留,能", "0,1,2,3,4,5,6,7,8,9,一,七,万,三,两,九,二,五,仟,伍,佰,八,公,六,几,十,千,叁,四,壹,多,拾,捌,数,柒,玖,百,肆,贰,陆", "线", "扰,涉", "似,决,力,当,情,本,汲,爱,理,端,表,足,通", "0,1,2,3,4,5,6,7,8,9,一,七,万,三,两,九,二,五,仟,伍,佰,八,六,几,十,千,叁,四,壹,多,拾,捌,数,新,柒,玖,百,肆,贰,这,那,陆,驻", "一口,买,卖,喝,喝口,尝,老,饮", "凝,水,液,素,膏,雾,露", "不,且,非", "0,1,2,3,4,5,6,7,8,9,一,七,万,三,两,九,二,五,仟,伍,佰,八,六,几,十,千,叁,四,壹,多,多少,拾,捌,数,柒,玖,百,肆,贰,陆", "事,出,好,得,掉,活", "湾", "喉,癌", "会,剩,去,可,将,把,有,留,能", "木,林,树,鼠", "不,且,非", "私", "全", "0,1,2,3,4,5,6,7,8,9,一,七,万,三,两,九,二,五,仟,伍,佰,像,八,六,几,十,千,半,叁,只,四,壹,多,头,拾,捌,数,有,柒,玖,百,肆,贰,陆,首", "值", "水,痰", "开,牌", "面", "定,度,式,订", "不过,会,剩,加,够,够,好,差,干,把,教,是,有,缺,能,要,需", "一,几", "中", "估,吃,听,太,射,很,念,打,拿,看,算,读,非常,音", "好,找,无,有,没", "乎,他,作,你,她,情,我,拍,拢,理,用,身,适", "净,扰,政,杯,枯,涉,涸,燥,爽,笑,系,脆,裂,预", "向,往", "展,布,扬,挥,放,明,现,生,行,表,誓" }; int zh_sets_cond_size = 55; language_zh_map map_uni_s2t[] = { {"0坛", "0罈", -1 } /* 0坛 => 0罈 */, {"1坛", "1罈", -1 } /* 1坛 => 1罈 */, {"2坛", "2罈", -1 } /* 2坛 => 2罈 */, {"3坛", "3罈", -1 } /* 3坛 => 3罈 */, {"4坛", "4罈", -1 } /* 4坛 => 4罈 */, {"5坛", "5罈", -1 } /* 5坛 => 5罈 */, {"6坛", "6罈", -1 } /* 6坛 => 6罈 */, {"7坛", "7罈", -1 } /* 7坛 => 7罈 */, {"8坛", "8罈", -1 } /* 8坛 => 8罈 */, {"9坛", "9罈", -1 } /* 9坛 => 9罈 */, {"㖞", "喎", -1 } /* 㖞 => 喎 */, {"㟆", "㠏", -1 } /* 㟆 => 㠏 */, {"㧏", "掆", -1 } /* 㧏 => 掆 */, {"㧟", "擓", -1 } /* 㧟 => 擓 */, {"㭎", "棡", -1 } /* 㭎 => 棡 */, {"㱮", "殨", -1 } /* 㱮 => 殨 */, {"㳠", "澾", -1 } /* 㳠 => 澾 */, {"䁖", "瞜", -1 } /* 䁖 => 瞜 */, {"䅟", "穇", -1 } /* 䅟 => 穇 */, {"䌷", "紬", -1 } /* 䌷 => 紬 */, {"䌽", "綵", -1 } /* 䌽 => 綵 */, {"䎬", "䎱", -1 } /* 䎬 => 䎱 */, {"䏝", "膞", -1 } /* 䏝 => 膞 */, {"䓖", "藭", -1 } /* 䓖 => 藭 */, {"䜣", "訢", -1 } /* 䜣 => 訢 */, {"䜩", "讌", -1 } /* 䜩 => 讌 */, {"䞍", "䝼", -1 } /* 䞍 => 䝼 */, {"䥺", "釾", -1 } /* 䥺 => 釾 */, {"䥽", "鏺", -1 } /* 䥽 => 鏺 */, {"䦃", "鐯", -1 } /* 䦃 => 鐯 */, {"䦅", "鐥", -1 } /* 䦅 => 鐥 */, {"䦆", "钁", -1 } /* 䦆 => 钁 */, {"䲟", "鮣", -1 } /* 䲟 => 鮣 */, {"䲡", "鰌", -1 } /* 䲡 => 鰌 */, {"䲢", "鰧", -1 } /* 䲢 => 鰧 */, {"䴓", "鳾", -1 } /* 䴓 => 鳾 */, {"䴔", "鵁", -1 } /* 䴔 => 鵁 */, {"䴕", "鴷", -1 } /* 䴕 => 鴷 */, {"䴖", "鶄", -1 } /* 䴖 => 鶄 */, {"䴗", "鶪", -1 } /* 䴗 => 鶪 */, {"䴘", "鷉", -1 } /* 䴘 => 鷉 */, {"䴘", "鷈", -1 } /* 䴘 => 鷈 */, {"䴙", "鸊", -1 } /* 䴙 => 鸊 */, {"䴙", "鷿", -1 } /* 䴙 => 鷿 */, {"䶮", "龑", -1 } /* 䶮 => 龑 */, {"一伙", "一夥", -1 } /* 一伙 => 一夥 */, {"一冲", "一衝", -1 } /* 一冲 => 一衝 */, {"一冲", "一沖", -1 } /* 一冲 => 一沖 */, {"一准", "一准", -1 } /* 一准 => 一准 */, {"一划", "一划", -1 } /* 一划 => 一划 */, {"一别头", "一彆頭", -1 } /* 一别头 => 一彆頭 */, {"一发之差", "一髮之差", -1 } /* 一发之差 => 一髮之差 */, {"一发之间", "一髮之間", -1 } /* 一发之间 => 一髮之間 */, {"一发千钧", "一髮千鈞", -1 } /* 一发千钧 => 一髮千鈞 */, {"一坛", "一罈", -1 } /* 一坛 => 一罈 */, {"一坛死水", "一壇死水", -1 } /* 一坛死水 => 一壇死水 */, {"一大伙", "一大夥", -1 } /* 一大伙 => 一大夥 */, {"一干二净", "一乾二淨", -1 } /* 一干二净 => 一乾二淨 */, {"一干而尽", "一乾而盡", -1 } /* 一干而尽 => 一乾而盡 */, {"一并", "一併", 0 } /* 一并 => 一併 */, {"一斗再斗", "一鬥再鬥", -1 } /* 一斗再斗 => 一鬥再鬥 */, {"一松", "一鬆", 1 } /* 一松 => 一鬆 */, {"一树百获", "一樹百穫", -1 } /* 一树百获 => 一樹百穫 */, {"一毫一发", "一毫一髮", -1 } /* 一毫一发 => 一毫一髮 */, {"一涂", "一塗", -1 } /* 一涂 => 一塗 */, {"一游", "一遊", -1 } /* 一游 => 一遊 */, {"一物克一", "一物剋一", -1 } /* 一物克一 => 一物剋一 */, {"一箭双雕", "一箭雙鵰", -1 } /* 一箭双雕 => 一箭雙鵰 */, {"一锅面", "一鍋麵", -1 } /* 一锅面 => 一鍋麵 */, {"丁丑", "丁丑", -1 } /* 丁丑 => 丁丑 */, {"七坛", "七罈", -1 } /* 七坛 => 七罈 */, {"万", "萬", -1 } /* 万 => 萬 */, {"万余", "萬餘", -1 } /* 万余 => 萬餘 */, {"万余只", "萬餘隻", -1 } /* 万余只 => 萬餘隻 */, {"万余里", "萬餘里", -1 } /* 万余里 => 萬餘里 */, {"万俟", "万俟", -1 } /* 万俟 => 万俟 */, {"万历", "萬曆", -1 } /* 万历 => 萬曆 */, {"万只怕", "萬只怕", -1 } /* 万只怕 => 萬只怕 */, {"万签插架", "萬籤插架", -1 } /* 万签插架 => 萬籤插架 */, {"丈余", "丈餘", -1 } /* 丈余 => 丈餘 */, {"三国志", "三國志", -1 } /* 三国志 => 三國志 */, {"三坛", "三罈", -1 } /* 三坛 => 三罈 */, {"三复", "三複", -1 } /* 三复 => 三複 */, {"上冲", "上衝", 2 } /* 上冲 => 上衝 */, {"上吊", "上吊", -1 } /* 上吊 => 上吊 */, {"上头", "上頭", -1 } /* 上头 => 上頭 */, {"上布", "上佈", -1 } /* 上布 => 上佈 */, {"上折", "上摺", -1 } /* 上折 => 上摺 */, {"上梁", "上樑", -1 } /* 上梁 => 上樑 */, {"上簽", "上籤", -1 } /* 上簽 => 上籤 */, {"上线", "上線", -1 } /* 上线 => 上線 */, {"下冲", "下衝", -1 } /* 下冲 => 下衝 */, {"下咽", "下嚥", 3 } /* 下咽 => 下嚥 */, {"下摆", "下襬", -1 } /* 下摆 => 下襬 */, {"下梁", "下樑", -1 } /* 下梁 => 下樑 */, {"下簽", "下籤", -1 } /* 下簽 => 下籤 */, {"下线", "下線", -1 } /* 下线 => 下線 */, {"下药", "下藥", -1 } /* 下药 => 下藥 */, {"下里", "下里", 4 } /* 下里 => 下里 */, {"下面", "下麵", 5 } /* 下面 => 下麵 */, {"不余", "不餘", -1 } /* 不余 => 不餘 */, {"不值一晒", "不值一哂", -1 } /* 不值一晒 => 不值一哂 */, {"不准", "不准", 6 } /* 不准 => 不准 */, {"不吊", "不吊", -1 } /* 不吊 => 不吊 */, {"不干", "不幹", 7 } /* 不干 => 不幹 */, {"不干不净", "不乾不淨", -1 } /* 不干不净 => 不乾不淨 */, {"不干净", "不乾淨", -1 } /* 不干净 => 不乾淨 */, {"不干性油", "不乾性油", -1 } /* 不干性油 => 不乾性油 */, {"不干杯", "不乾杯", -1 } /* 不干杯 => 不乾杯 */, {"不干涉", "不干涉", -1 } /* 不干涉 => 不干涉 */, {"不干着急", "不乾著急", -1 } /* 不干着急 => 不乾著急 */, {"不干脆", "不乾脆", -1 } /* 不干脆 => 不乾脆 */, {"不干裂", "不乾裂", -1 } /* 不干裂 => 不乾裂 */, {"不干预", "不干預", -1 } /* 不干预 => 不干預 */, {"不并", "不併", -1 } /* 不并 => 不併 */, {"不愈", "不癒", -1 } /* 不愈 => 不癒 */, {"不松下", "不鬆下", -1 } /* 不松下 => 不鬆下 */, {"不涂", "不塗", -1 } /* 不涂 => 不塗 */, {"不知所云", "不知所云", -1 } /* 不知所云 => 不知所云 */, {"不系", "不繫", -1 } /* 不系 => 不繫 */, {"不舍", "不捨", -1 } /* 不舍 => 不捨 */, {"不识抬举", "不識抬舉", -1 } /* 不识抬举 => 不識抬舉 */, {"不赞", "不讚", -1 } /* 不赞 => 不讚 */, {"不遗余力", "不遺餘力", -1 } /* 不遗余力 => 不遺餘力 */, {"不采", "不採", -1 } /* 不采 => 不採 */, {"不锈钢", "不銹鋼", -1 } /* 不锈钢 => 不銹鋼 */, {"与", "與", -1 } /* 与 => 與 */, {"与他一斗", "與他一鬥", -1 } /* 与他一斗 => 與他一鬥 */, {"与她一斗", "與她一鬥", -1 } /* 与她一斗 => 與她一鬥 */, {"丑", "醜", -1 } /* 丑 => 醜 */, {"丑三", "丑三", -1 } /* 丑三 => 丑三 */, {"丑丫", "丑丫", -1 } /* 丑丫 => 丑丫 */, {"丑也", "丑也", -1 } /* 丑也 => 丑也 */, {"丑剧", "丑劇", -1 } /* 丑剧 => 丑劇 */, {"丑媳", "丑媳", -1 } /* 丑媳 => 丑媳 */, {"丑家", "丑家", -1 } /* 丑家 => 丑家 */, {"丑寅", "丑寅", -1 } /* 丑寅 => 丑寅 */, {"丑年", "丑年", -1 } /* 丑年 => 丑年 */, {"丑旦", "丑旦", -1 } /* 丑旦 => 丑旦 */, {"丑时", "丑時", -1 } /* 丑时 => 丑時 */, {"丑牛", "丑牛", -1 } /* 丑牛 => 丑牛 */, {"丑角", "丑角", -1 } /* 丑角 => 丑角 */, {"专", "專", -1 } /* 专 => 專 */, {"专干", "專幹", -1 } /* 专干 => 專幹 */, {"专线", "專線", -1 } /* 专线 => 專線 */, {"世界杯", "世界盃", -1 } /* 世界杯 => 世界盃 */, {"丙丑", "丙丑", -1 } /* 丙丑 => 丙丑 */, {"业", "業", -1 } /* 业 => 業 */, {"业余", "業餘", -1 } /* 业余 => 業餘 */, {"丛", "叢", -1 } /* 丛 => 叢 */, {"东", "東", -1 } /* 东 => 東 */, {"东冲", "東衝", -1 } /* 东冲 => 東衝 */, {"东加拿大", "東加拿大", -1 } /* 东加拿大 => 東加拿大 */, {"东加里曼丹", "東加里曼丹", -1 } /* 东加里曼丹 => 東加里曼丹 */, {"东升", "東昇", -1 } /* 东升 => 東昇 */, {"东岳", "東嶽", -1 } /* 东岳 => 東嶽 */, {"东涂", "東塗", -1 } /* 东涂 => 東塗 */, {"东涌", "東涌", -1 } /* 东涌 => 東涌 */, {"东游", "東遊", -1 } /* 东游 => 東遊 */, {"东湧", "東涌", -1 } /* 东湧 => 東涌 */, {"东线", "東線", -1 } /* 东线 => 東線 */, {"东里", "東里", 8 } /* 东里 => 東里 */, {"丝", "絲", -1 } /* 丝 => 絲 */, {"丝制", "絲製", -1 } /* 丝制 => 絲製 */, {"丝布", "絲布", -1 } /* 丝布 => 絲布 */, {"丝弦", "絲絃", -1 } /* 丝弦 => 絲絃 */, {"丝来线去", "絲來線去", -1 } /* 丝来线去 => 絲來線去 */, {"丝板", "絲板", -1 } /* 丝板 => 絲板 */, {"丝瓜布", "絲瓜布", -1 } /* 丝瓜布 => 絲瓜布 */, {"丝线", "絲線", -1 } /* 丝线 => 絲線 */, {"丝织厂", "絲織廠", -1 } /* 丝织厂 => 絲織廠 */, {"丝绒布", "絲絨布", -1 } /* 丝绒布 => 絲絨布 */, {"丢", "丟", -1 } /* 丢 => 丟 */, {"两", "兩", -1 } /* 两 => 兩 */, {"两坛", "兩罈", -1 } /* 两坛 => 兩罈 */, {"两撇胡", "兩撇鬍", -1 } /* 两撇胡 => 兩撇鬍 */, {"严", "嚴", -1 } /* 严 => 嚴 */, {"严丝合缝", "嚴絲合縫", -1 } /* 严丝合缝 => 嚴絲合縫 */, {"严于", "嚴於", -1 } /* 严于 => 嚴於 */, {"严复", "嚴復", -1 } /* 严复 => 嚴復 */, {"丧", "喪", -1 } /* 丧 => 喪 */, {"丧钟", "喪鐘", -1 } /* 丧钟 => 喪鐘 */, {"个", "個", -1 } /* 个 => 個 */, {"中仑", "中崙", -1 } /* 中仑 => 中崙 */, {"中岳", "中嶽", -1 } /* 中岳 => 中嶽 */, {"中布", "中佈", -1 } /* 中布 => 中佈 */, {"中簽", "中籤", -1 } /* 中簽 => 中籤 */, {"中线", "中線", -1 } /* 中线 => 中線 */, {"中药", "中藥", -1 } /* 中药 => 中藥 */, {"丰", "豐", -1 } /* 丰 => 豐 */, {"丰仪", "丰仪", -1 } /* 丰仪 => 丰仪 */, {"丰南", "丰南", -1 } /* 丰南 => 丰南 */, {"丰姿", "丰姿", -1 } /* 丰姿 => 丰姿 */, {"丰富多彩", "豐富多彩", -1 } /* 丰富多彩 => 豐富多彩 */, {"丰度", "丰度", -1 } /* 丰度 => 丰度 */, {"丰情", "丰情", -1 } /* 丰情 => 丰情 */, {"丰标不凡", "丰标不凡", -1 } /* 丰标不凡 => 丰标不凡 */, {"丰滨", "豐濱", -1 } /* 丰滨 => 豐濱 */, {"丰滨乡", "豐濱鄉", -1 } /* 丰滨乡 => 豐濱鄉 */, {"丰神", "丰神", -1 } /* 丰神 => 丰神 */, {"丰茸", "丰茸", -1 } /* 丰茸 => 丰茸 */, {"丰谀", "豐腴", -1 } /* 丰谀 => 豐腴 */, {"丰都", "酆都", -1 } /* 丰都 => 酆都 */, {"丰采", "丰采", -1 } /* 丰采 => 丰采 */, {"丰韵", "丰韵", -1 } /* 丰韵 => 丰韵 */, {"丰韵", "丰韻", -1 } /* 丰韵 => 丰韻 */, {"串行", "串列", -1 } /* 串行 => 串列 */, {"临", "臨", -1 } /* 临 => 臨 */, {"丸药", "丸藥", -1 } /* 丸药 => 丸藥 */, {"为", "為", -1 } /* 为 => 為 */, {"为着", "為著", -1 } /* 为着 => 為著 */, {"为范", "為範", -1 } /* 为范 => 為範 */, {"主仆", "主僕", -1 } /* 主仆 => 主僕 */, {"主干", "主幹", -1 } /* 主干 => 主幹 */, {"丽", "麗", -1 } /* 丽 => 麗 */, {"举", "舉", -1 } /* 举 => 舉 */, {"举手表决", "舉手表決", -1 } /* 举手表决 => 舉手表決 */, {"么", "麼", -1 } /* 么 => 麼 */, {"么么唱唱", "么么唱唱", -1 } /* 么么唱唱 => 么么唱唱 */, {"么么小丑", "么麼小醜", -1 } /* 么么小丑 => 么麼小醜 */, {"么九", "么九", -1 } /* 么九 => 么九 */, {"么儿", "么兒", -1 } /* 么儿 => 么兒 */, {"么喝", "么喝", -1 } /* 么喝 => 么喝 */, {"么女", "么女", -1 } /* 么女 => 么女 */, {"么妹", "么妹", -1 } /* 么妹 => 么妹 */, {"么子", "么子", -1 } /* 么子 => 么子 */, {"么弟", "么弟", -1 } /* 么弟 => 么弟 */, {"么正", "么正", -1 } /* 么正 => 么正 */, {"么爷", "么爺", -1 } /* 么爷 => 么爺 */, {"义", "義", -1 } /* 义 => 義 */, {"之于", "之於", -1 } /* 之于 => 之於 */, {"之余", "之餘", -1 } /* 之余 => 之餘 */, {"之欲", "之慾", -1 } /* 之欲 => 之慾 */, {"之游", "之遊", -1 } /* 之游 => 之遊 */, {"乌", "烏", -1 } /* 乌 => 烏 */, {"乌丘", "烏坵", -1 } /* 乌丘 => 烏坵 */, {"乌发", "烏髮", -1 } /* 乌发 => 烏髮 */, {"乌苏里江", "烏蘇里江", -1 } /* 乌苏里江 => 烏蘇里江 */, {"乌里", "烏里", -1 } /* 乌里 => 烏里 */, {"乌龙面", "烏龍麵", -1 } /* 乌龙面 => 烏龍麵 */, {"乐", "樂", -1 } /* 乐 => 樂 */, {"乐于", "樂於", -1 } /* 乐于 => 樂於 */, {"乔", "喬", -1 } /* 乔 => 喬 */, {"乔治亚州", "喬治亞州", -1 } /* 乔治亚州 => 喬治亞州 */, {"乙丑", "乙丑", -1 } /* 乙丑 => 乙丑 */, {"九世之雠", "九世之讎", -1 } /* 九世之雠 => 九世之讎 */, {"九叹", "九歎", -1 } /* 九叹 => 九歎 */, {"九坛", "九罈", -1 } /* 九坛 => 九罈 */, {"九里余", "九里餘", -1 } /* 九里余 => 九里餘 */, {"也舍下", "也捨下", -1 } /* 也舍下 => 也捨下 */, {"也门", "也門", -1 } /* 也门 => 也門 */, {"习", "習", -1 } /* 习 => 習 */, {"习水", "鰼水", -1 } /* 习水 => 鰼水 */, {"习水性", "習水性", -1 } /* 习水性 => 習水性 */, {"习用", "習用", -1 } /* 习用 => 習用 */, {"乡", "鄉", -1 } /* 乡 => 鄉 */, {"乡愿", "鄉愿", -1 } /* 乡愿 => 鄉愿 */, {"乡愿意", "鄉願意", -1 } /* 乡愿意 => 鄉願意 */, {"书", "書", -1 } /* 书 => 書 */, {"书于", "書於", -1 } /* 书于 => 書於 */, {"书台", "書檯", -1 } /* 书台 => 書檯 */, {"书呆子", "書獃子", -1 } /* 书呆子 => 書獃子 */, {"书童", "書僮", -1 } /* 书童 => 書僮 */, {"书签", "書籤", -1 } /* 书签 => 書籤 */, {"书簽", "書籤", -1 } /* 书簽 => 書籤 */, {"买", "買", -1 } /* 买 => 買 */, {"买凶", "買兇", -1 } /* 买凶 => 買兇 */, {"买姜", "買薑", -1 } /* 买姜 => 買薑 */, {"买烟", "買菸", -1 } /* 买烟 => 買菸 */, {"乱", "亂", -1 } /* 乱 => 亂 */, {"乱于", "亂於", -1 } /* 乱于 => 亂於 */, {"乱冲", "亂衝", -1 } /* 乱冲 => 亂衝 */, {"乱发", "亂髮", -1 } /* 乱发 => 亂髮 */, {"乱哄不过来", "亂鬨不過來", -1 } /* 乱哄不过来 => 亂鬨不過來 */, {"乱涂", "亂塗", -1 } /* 乱涂 => 亂塗 */, {"乳臭未干", "乳臭未乾", -1 } /* 乳臭未干 => 乳臭未乾 */, {"了如指掌", "瞭如指掌", -1 } /* 了如指掌 => 瞭如指掌 */, {"了望", "瞭望", -1 } /* 了望 => 瞭望 */, {"了然", "瞭然", -1 } /* 了然 => 瞭然 */, {"了若指掌", "瞭若指掌", -1 } /* 了若指掌 => 瞭若指掌 */, {"了解", "瞭解", -1 } /* 了解 => 瞭解 */, {"争", "爭", -1 } /* 争 => 爭 */, {"事也干", "事也幹", -1 } /* 事也干 => 事也幹 */, {"事可干", "事可幹", -1 } /* 事可干 => 事可幹 */, {"事好干", "事好幹", -1 } /* 事好干 => 事好幹 */, {"事干", "事幹", 9 } /* 事干 => 事幹 */, {"事情可干", "事情可幹", -1 } /* 事情可干 => 事情可幹 */, {"事情好干", "事情好幹", -1 } /* 事情好干 => 事情好幹 */, {"事情干", "事情幹", -1 } /* 事情干 => 事情幹 */, {"事迹", "事蹟", -1 } /* 事迹 => 事蹟 */, {"事都干", "事都幹", -1 } /* 事都干 => 事都幹 */, {"二叉堆", "二元堆積", -1 } /* 二叉堆 => 二元堆積 */, {"二坛", "二罈", -1 } /* 二坛 => 二罈 */, {"二撇胡", "二撇鬍", -1 } /* 二撇胡 => 二撇鬍 */, {"二里头", "二里頭", -1 } /* 二里头 => 二里頭 */, {"于", "於", 10 } /* 于 => 於 */, {"亏", "虧", -1 } /* 亏 => 虧 */, {"云", "雲", -1 } /* 云 => 雲 */, {"云云", "云云", -1 } /* 云云 => 云云 */, {"云吞面", "雲吞麵", -1 } /* 云吞面 => 雲吞麵 */, {"云宵", "雲霄", -1 } /* 云宵 => 雲霄 */, {"云尔", "云爾", -1 } /* 云尔 => 云爾 */, {"云游", "雲遊", -1 } /* 云游 => 雲遊 */, {"云:", "云:", -1 } /* 云: => 云: */, {"互联网工程工作小组", "互聯網工程工作小組", -1 } /* 互联网工程工作小组 => 互聯網工程工作小組 */, {"五坛", "五罈", -1 } /* 五坛 => 五罈 */, {"五岳", "五嶽", -1 } /* 五岳 => 五嶽 */, {"五行生克", "五行生剋", -1 } /* 五行生克 => 五行生剋 */, {"五谷", "五穀", -1 } /* 五谷 => 五穀 */, {"五采", "五采", -1 } /* 五采 => 五采 */, {"井干", "井幹", -1 } /* 井干 => 井幹 */, {"井干摧败", "井榦摧敗", -1 } /* 井干摧败 => 井榦摧敗 */, {"亘", "亙", -1 } /* 亘 => 亙 */, {"亚", "亞", -1 } /* 亚 => 亞 */, {"亚于", "亞於", -1 } /* 亚于 => 亞於 */, {"亚里", "亞里", -1 } /* 亚里 => 亞里 */, {"亡于", "亡於", -1 } /* 亡于 => 亡於 */, {"交互式", "互動式", -1 } /* 交互式 => 互動式 */, {"交托", "交託", -1 } /* 交托 => 交託 */, {"交游", "交遊", -1 } /* 交游 => 交遊 */, {"亦云", "亦云", -1 } /* 亦云 => 亦云 */, {"亦舍下", "亦捨下", -1 } /* 亦舍下 => 亦捨下 */, {"产", "產", -1 } /* 产 => 產 */, {"产于", "産於", -1 } /* 产于 => 産於 */, {"亩", "畝", -1 } /* 亩 => 畝 */, {"亩余", "畝餘", -1 } /* 亩余 => 畝餘 */, {"京沈", "京瀋", -1 } /* 京沈 => 京瀋 */, {"亲", "親", -1 } /* 亲 => 親 */, {"亲启", "親啟", -1 } /* 亲启 => 親啟 */, {"亲自干", "親自幹", -1 } /* 亲自干 => 親自幹 */, {"亵", "褻", -1 } /* 亵 => 褻 */, {"亵读", "褻瀆", -1 } /* 亵读 => 褻瀆 */, {"亸", "嚲", -1 } /* 亸 => 嚲 */, {"人云", "人云", -1 } /* 人云 => 人云 */, {"人云游", "人云遊", -1 } /* 人云游 => 人云遊 */, {"人云集", "人雲集", -1 } /* 人云集 => 人雲集 */, {"人欲横流", "人慾橫流", -1 } /* 人欲横流 => 人慾橫流 */, {"人游", "人遊", -1 } /* 人游 => 人遊 */, {"人物志", "人物誌", -1 } /* 人物志 => 人物誌 */, {"人赞", "人讚", -1 } /* 人赞 => 人讚 */, {"亿", "億", -1 } /* 亿 => 億 */, {"亿余", "億餘", -1 } /* 亿余 => 億餘 */, {"什么", "什麼", -1 } /* 什么 => 什麼 */, {"什锦面", "什錦麵", -1 } /* 什锦面 => 什錦麵 */, {"仅", "僅", -1 } /* 仅 => 僅 */, {"仅余", "僅餘", -1 } /* 仅余 => 僅餘 */, {"仆人", "僕人", -1 } /* 仆人 => 僕人 */, {"仇", "仇", -1 } /* 仇 => 仇 */, {"介于", "介於", -1 } /* 介于 => 介於 */, {"介壳", "介殼", -1 } /* 介壳 => 介殼 */, {"介系词", "介繫詞", -1 } /* 介系词 => 介繫詞 */, {"介系词", "介係詞", -1 } /* 介系词 => 介係詞 */, {"从", "從", -1 } /* 从 => 從 */, {"仑", "侖", -1 } /* 仑 => 侖 */, {"仑背", "崙背", -1 } /* 仑背 => 崙背 */, {"仓", "倉", -1 } /* 仓 => 倉 */, {"他", "他", -1 } /* 他 => 他 */, {"他不干渴", "他不乾渴", -1 } /* 他不干渴 => 他不乾渴 */, {"付托", "付託", -1 } /* 付托 => 付託 */, {"仙后", "仙后", -1 } /* 仙后 => 仙后 */, {"仙游", "仙遊", -1 } /* 仙游 => 仙遊 */, {"仙范", "仙範", -1 } /* 仙范 => 仙範 */, {"仙药", "仙藥", -1 } /* 仙药 => 仙藥 */, {"令媛", "令嬡", -1 } /* 令媛 => 令嬡 */, {"以太网", "乙太網", -1 } /* 以太网 => 乙太網 */, {"仪", "儀", -1 } /* 仪 => 儀 */, {"仪范", "儀範", -1 } /* 仪范 => 儀範 */, {"仪表", "儀表", -1 } /* 仪表 => 儀表 */, {"们", "們", -1 } /* 们 => 們 */, {"仰冲", "仰衝", -1 } /* 仰冲 => 仰衝 */, {"仰药", "仰藥", -1 } /* 仰药 => 仰藥 */, {"价", "價", -1 } /* 价 => 價 */, {"价人", "价人", -1 } /* 价人 => 价人 */, {"任意球", "自由球", -1 } /* 任意球 => 自由球 */, {"仿佛", "彷彿", -1 } /* 仿佛 => 彷彿 */, {"仿制", "仿製", -1 } /* 仿制 => 仿製 */, {"仿效", "倣傚", -1 } /* 仿效 => 倣傚 */, {"伊利诺伊", "伊利諾", -1 } /* 伊利诺伊 => 伊利諾 */, {"伊安法蘭明", "伊恩佛萊明", -1 } /* 伊安法蘭明 => 伊恩佛萊明 */, {"伊斯兰历", "伊斯蘭曆", -1 } /* 伊斯兰历 => 伊斯蘭曆 */, {"伍采克", "伍采克", -1 } /* 伍采克 => 伍采克 */, {"伏尔加格勒", "伏爾加", -1 } /* 伏尔加格勒 => 伏爾加 */, {"伏尔加河", "窩瓦河", -1 } /* 伏尔加河 => 窩瓦河 */, {"伐于", "伐於", -1 } /* 伐于 => 伐於 */, {"众", "眾", -1 } /* 众 => 眾 */, {"优", "優", -1 } /* 优 => 優 */, {"优于", "優於", -1 } /* 优于 => 優於 */, {"优先级", "優先順序", -1 } /* 优先级 => 優先順序 */, {"优游", "優遊", -1 } /* 优游 => 優遊 */, {"伙众", "夥眾", -1 } /* 伙众 => 夥眾 */, {"伙伴", "伙伴", -1 } /* 伙伴 => 伙伴 */, {"伙伴", "夥伴", -1 } /* 伙伴 => 夥伴 */, {"伙同", "夥同", -1 } /* 伙同 => 夥同 */, {"伙夫", "伙夫", -1 } /* 伙夫 => 伙夫 */, {"伙夫", "伙伕", -1 } /* 伙夫 => 伙伕 */, {"伙房", "伙房", -1 } /* 伙房 => 伙房 */, {"伙计", "伙計", -1 } /* 伙计 => 伙計 */, {"伙计", "夥計", -1 } /* 伙计 => 夥計 */, {"伙食", "伙食", -1 } /* 伙食 => 伙食 */, {"会", "會", -1 } /* 会 => 會 */, {"会干", "會幹", -1 } /* 会干 => 會幹 */, {"会干净", "會乾淨", -1 } /* 会干净 => 會乾淨 */, {"会干扰", "會干擾", -1 } /* 会干扰 => 會干擾 */, {"会干政", "會干政", -1 } /* 会干政 => 會干政 */, {"会干杯", "會乾杯", -1 } /* 会干杯 => 會乾杯 */, {"会干枯", "會乾枯", -1 } /* 会干枯 => 會乾枯 */, {"会干涉", "會干涉", -1 } /* 会干涉 => 會干涉 */, {"会干涸", "會乾涸", -1 } /* 会干涸 => 會乾涸 */, {"会干脆", "會乾脆", -1 } /* 会干脆 => 會乾脆 */, {"会干裂", "會乾裂", -1 } /* 会干裂 => 會乾裂 */, {"会干预", "會干預", -1 } /* 会干预 => 會干預 */, {"伛", "傴", -1 } /* 伛 => 傴 */, {"伞", "傘", -1 } /* 伞 => 傘 */, {"伟", "偉", -1 } /* 伟 => 偉 */, {"传", "傳", -1 } /* 传 => 傳 */, {"传布", "傳佈", -1 } /* 传布 => 傳佈 */, {"传感", "感測", -1 } /* 传感 => 感測 */, {"伣", "俔", -1 } /* 伣 => 俔 */, {"伤", "傷", -1 } /* 伤 => 傷 */, {"伤愈", "傷癒", -1 } /* 伤愈 => 傷癒 */, {"伤难愈", "傷難癒", -1 } /* 伤难愈 => 傷難癒 */, {"伥", "倀", -1 } /* 伥 => 倀 */, {"伦", "倫", -1 } /* 伦 => 倫 */, {"伦勃朗", "林布蘭特", -1 } /* 伦勃朗 => 林布蘭特 */, {"伧", "傖", -1 } /* 伧 => 傖 */, {"伪", "偽", -1 } /* 伪 => 偽 */, {"伫", "佇", -1 } /* 伫 => 佇 */, {"伯南奇", "伯南克", -1 } /* 伯南奇 => 伯南克 */, {"伯纳克", "伯南克", -1 } /* 伯纳克 => 伯南克 */, {"伴伙", "伴夥", -1 } /* 伴伙 => 伴夥 */, {"伴游", "伴遊", -1 } /* 伴游 => 伴遊 */, {"伶敏", "靈敏", -1 } /* 伶敏 => 靈敏 */, {"伸卷", "伸捲", -1 } /* 伸卷 => 伸捲 */, {"伺奉", "侍奉", -1 } /* 伺奉 => 侍奉 */, {"似松实紧", "似鬆實緊", -1 } /* 似松实紧 => 似鬆實緊 */, {"但云", "但云", -1 } /* 但云 => 但云 */, {"位于", "位於", -1 } /* 位于 => 位於 */, {"位图", "點陣圖", -1 } /* 位图 => 點陣圖 */, {"低于", "低於", -1 } /* 低于 => 低於 */, {"低荡", "低盪", -1 } /* 低荡 => 低盪 */, {"低迥", "低迴", -1 } /* 低迥 => 低迴 */, {"住扎", "住紮", -1 } /* 住扎 => 住紮 */, {"佐治亚", "喬治亞", -1 } /* 佐治亚 => 喬治亞 */, {"佐治亚州", "喬治亞州", -1 } /* 佐治亚州 => 喬治亞州 */, {"体", "體", -1 } /* 体 => 體 */, {"体征", "體徵", -1 } /* 体征 => 體徵 */, {"余丈", "餘丈", -1 } /* 余丈 => 餘丈 */, {"余下", "餘下", -1 } /* 余下 => 餘下 */, {"余事", "餘事", -1 } /* 余事 => 餘事 */, {"余亩", "餘畝", -1 } /* 余亩 => 餘畝 */, {"余人", "餘人", -1 } /* 余人 => 餘人 */, {"余众", "餘眾", -1 } /* 余众 => 餘眾 */, {"余位", "餘位", -1 } /* 余位 => 餘位 */, {"余低", "餘低", -1 } /* 余低 => 餘低 */, {"余僇", "餘僇", -1 } /* 余僇 => 餘僇 */, {"余僧", "餘僧", -1 } /* 余僧 => 餘僧 */, {"余光", "餘光", 11 } /* 余光 => 餘光 */, {"余党", "餘黨", -1 } /* 余党 => 餘黨 */, {"余兴", "餘興", -1 } /* 余兴 => 餘興 */, {"余刃", "餘刃", -1 } /* 余刃 => 餘刃 */, {"余利", "餘利", -1 } /* 余利 => 餘利 */, {"余剩", "餘剩", -1 } /* 余剩 => 餘剩 */, {"余力", "餘力", -1 } /* 余力 => 餘力 */, {"余劲", "餘勁", -1 } /* 余劲 => 餘勁 */, {"余势", "餘勢", -1 } /* 余势 => 餘勢 */, {"余勇", "餘勇", -1 } /* 余勇 => 餘勇 */, {"余匪", "餘匪", -1 } /* 余匪 => 餘匪 */, {"余匹", "餘匹", -1 } /* 余匹 => 餘匹 */, {"余只", "餘隻", -1 } /* 余只 => 餘隻 */, {"余名", "餘名", -1 } /* 余名 => 餘名 */, {"余味", "餘味", -1 } /* 余味 => 餘味 */, {"余地", "餘地", -1 } /* 余地 => 餘地 */, {"余天", "餘天", -1 } /* 余天 => 餘天 */, {"余姚", "餘姚", -1 } /* 余姚 => 餘姚 */, {"余威", "餘威", -1 } /* 余威 => 餘威 */, {"余子", "餘子", -1 } /* 余子 => 餘子 */, {"余子碌碌", "餘子碌碌", -1 } /* 余子碌碌 => 餘子碌碌 */, {"余字", "餘字", -1 } /* 余字 => 餘字 */, {"余存", "餘存", -1 } /* 余存 => 餘存 */, {"余孬", "餘孬", -1 } /* 余孬 => 餘孬 */, {"余孽", "餘孽", -1 } /* 余孽 => 餘孽 */, {"余寸", "餘寸", -1 } /* 余寸 => 餘寸 */, {"余尺", "餘尺", -1 } /* 余尺 => 餘尺 */, {"余岁", "餘歲", -1 } /* 余岁 => 餘歲 */, {"余年", "餘年", -1 } /* 余年 => 餘年 */, {"余庆", "餘慶", -1 } /* 余庆 => 餘慶 */, {"余座", "餘座", -1 } /* 余座 => 餘座 */, {"余廕", "餘廕", -1 } /* 余廕 => 餘廕 */, {"余弦", "餘弦", -1 } /* 余弦 => 餘弦 */, {"余怒", "餘怒", -1 } /* 余怒 => 餘怒 */, {"余恨", "餘恨", -1 } /* 余恨 => 餘恨 */, {"余息", "餘息", -1 } /* 余息 => 餘息 */, {"余悸", "餘悸", -1 } /* 余悸 => 餘悸 */, {"余情", "餘情", -1 } /* 余情 => 餘情 */, {"余愤", "餘憤", -1 } /* 余愤 => 餘憤 */, {"余数", "餘數", -1 } /* 余数 => 餘數 */, {"余日", "餘日", -1 } /* 余日 => 餘日 */, {"余晖", "餘暉", -1 } /* 余晖 => 餘暉 */, {"余暇", "餘暇", -1 } /* 余暇 => 餘暇 */, {"余月", "餘月", -1 } /* 余月 => 餘月 */, {"余杭", "餘杭", -1 } /* 余杭 => 餘杭 */, {"余枝", "餘枝", -1 } /* 余枝 => 餘枝 */, {"余桶", "餘桶", -1 } /* 余桶 => 餘桶 */, {"余次", "餘次", -1 } /* 余次 => 餘次 */, {"余款", "餘款", -1 } /* 余款 => 餘款 */, {"余殃", "餘殃", -1 } /* 余殃 => 餘殃 */, {"余毒", "餘毒", -1 } /* 余毒 => 餘毒 */, {"余气", "餘氣", -1 } /* 余气 => 餘氣 */, {"余水", "餘水", -1 } /* 余水 => 餘水 */, {"余沥", "餘瀝", -1 } /* 余沥 => 餘瀝 */, {"余波", "餘波", -1 } /* 余波 => 餘波 */, {"余温", "餘溫", -1 } /* 余温 => 餘溫 */, {"余漏", "餘漏", -1 } /* 余漏 => 餘漏 */, {"余点", "餘點", -1 } /* 余点 => 餘點 */, {"余烈", "餘烈", -1 } /* 余烈 => 餘烈 */, {"余烬", "餘燼", -1 } /* 余烬 => 餘燼 */, {"余热", "餘熱", -1 } /* 余热 => 餘熱 */, {"余物", "餘物", -1 } /* 余物 => 餘物 */, {"余生", "餘生", -1 } /* 余生 => 餘生 */, {"余祸", "餘禍", -1 } /* 余祸 => 餘禍 */, {"余粮", "餘糧", -1 } /* 余粮 => 餘糧 */, {"余线", "餘線", -1 } /* 余线 => 餘線 */, {"余缺", "餘缺", -1 } /* 余缺 => 餘缺 */, {"余羹", "餘羹", -1 } /* 余羹 => 餘羹 */, {"余者", "餘者", -1 } /* 余者 => 餘者 */, {"余脉", "餘脈", -1 } /* 余脉 => 餘脈 */, {"余荫", "餘蔭", -1 } /* 余荫 => 餘蔭 */, {"余裕", "餘裕", -1 } /* 余裕 => 餘裕 */, {"余责", "餘責", -1 } /* 余责 => 餘責 */, {"余贼", "餘賊", -1 } /* 余贼 => 餘賊 */, {"余路", "餘路", -1 } /* 余路 => 餘路 */, {"余载", "餘載", -1 } /* 余载 => 餘載 */, {"余辉", "餘輝", -1 } /* 余辉 => 餘輝 */, {"余辜", "餘辜", -1 } /* 余辜 => 餘辜 */, {"余部", "餘部", -1 } /* 余部 => 餘部 */, {"余里", "餘裡", -1 } /* 余里 => 餘裡 */, {"余钱", "餘錢", -1 } /* 余钱 => 餘錢 */, {"余閒", "餘閒", -1 } /* 余閒 => 餘閒 */, {"余震", "餘震", -1 } /* 余震 => 餘震 */, {"余音", "餘音", -1 } /* 余音 => 餘音 */, {"余韵", "餘韻", -1 } /* 余韵 => 餘韻 */, {"余额", "餘額", -1 } /* 余额 => 餘額 */, {"余风", "餘風", -1 } /* 余风 => 餘風 */, {"余饭", "餘飯", -1 } /* 余饭 => 餘飯 */, {"余香", "餘香", -1 } /* 余香 => 餘香 */, {"余骑", "餘騎", -1 } /* 余骑 => 餘騎 */, {"佛历", "佛曆", -1 } /* 佛历 => 佛曆 */, {"作于", "作於", -1 } /* 作于 => 作於 */, {"作崇", "作祟", -1 } /* 作崇 => 作祟 */, {"作废后", "作廢後", -1 } /* 作废后 => 作廢後 */, {"你干一杯", "你乾一杯", -1 } /* 你干一杯 => 你乾一杯 */, {"你干那杯", "你乾那杯", -1 } /* 你干那杯 => 你乾那杯 */, {"佣", "傭", -1 } /* 佣 => 傭 */, {"佣金", "佣金", -1 } /* 佣金 => 佣金 */, {"佣钱", "佣錢", -1 } /* 佣钱 => 佣錢 */, {"佥", "僉", -1 } /* 佥 => 僉 */, {"佩环", "珮環", -1 } /* 佩环 => 珮環 */, {"佩饰", "珮飾", -1 } /* 佩饰 => 珮飾 */, {"佳县", "葭縣", -1 } /* 佳县 => 葭縣 */, {"使心作幸", "使心作倖", -1 } /* 使心作幸 => 使心作倖 */, {"例程", "常式", -1 } /* 例程 => 常式 */, {"例范", "例範", -1 } /* 例范 => 例範 */, {"供制", "供製", -1 } /* 供制 => 供製 */, {"依依不舍", "依依不捨", -1 } /* 依依不舍 => 依依不捨 */, {"依托", "依託", -1 } /* 依托 => 依託 */, {"侠", "俠", -1 } /* 侠 => 俠 */, {"侣", "侶", -1 } /* 侣 => 侶 */, {"侥", "僥", -1 } /* 侥 => 僥 */, {"侥天之幸", "僥天之悻", -1 } /* 侥天之幸 => 僥天之悻 */, {"侥幸", "僥倖", -1 } /* 侥幸 => 僥倖 */, {"侥悻", "僥倖", -1 } /* 侥悻 => 僥倖 */, {"侦", "偵", -1 } /* 侦 => 偵 */, {"侧", "側", -1 } /* 侧 => 側 */, {"侧冲", "側衝", -1 } /* 侧冲 => 側衝 */, {"侨", "僑", -1 } /* 侨 => 僑 */, {"侩", "儈", -1 } /* 侩 => 儈 */, {"侪", "儕", -1 } /* 侪 => 儕 */, {"侬", "儂", -1 } /* 侬 => 儂 */, {"侵占", "侵佔", -1 } /* 侵占 => 侵佔 */, {"侵并", "侵併", -1 } /* 侵并 => 侵併 */, {"侵范", "侵範", -1 } /* 侵范 => 侵範 */, {"便吃干", "便吃乾", -1 } /* 便吃干 => 便吃乾 */, {"便携式", "攜帶型", -1 } /* 便携式 => 攜帶型 */, {"便松", "便鬆", -1 } /* 便松 => 便鬆 */, {"便辟", "便辟", -1 } /* 便辟 => 便辟 */, {"俄克拉何马", "奧克拉荷馬", -1 } /* 俄克拉何马 => 奧克拉荷馬 */, {"保不准", "保不準", -1 } /* 保不准 => 保不準 */, {"保安", "保安", -1 } /* 保安 => 保安 */, {"保险柜", "保險柜", -1 } /* 保险柜 => 保險柜 */, {"信托", "信託", -1 } /* 信托 => 信託 */, {"信缄", "信箋", -1 } /* 信缄 => 信箋 */, {"信而有征", "信而有徵", -1 } /* 信而有征 => 信而有徵 */, {"信道", "通道", -1 } /* 信道 => 通道 */, {"俣", "俁", -1 } /* 俣 => 俁 */, {"俦", "儔", -1 } /* 俦 => 儔 */, {"俨", "儼", -1 } /* 俨 => 儼 */, {"俩", "倆", -1 } /* 俩 => 倆 */, {"俪", "儷", -1 } /* 俪 => 儷 */, {"俫", "倈", -1 } /* 俫 => 倈 */, {"俭", "儉", -1 } /* 俭 => 儉 */, {"修于", "修於", -1 } /* 修于 => 修於 */, {"修复", "修復", -1 } /* 修复 => 修復 */, {"修浚", "修濬", -1 } /* 修浚 => 修濬 */, {"修胡刀", "修鬍刀", -1 } /* 修胡刀 => 修鬍刀 */, {"俯冲", "俯衝", -1 } /* 俯冲 => 俯衝 */, {"倍余", "倍餘", -1 } /* 倍余 => 倍餘 */, {"倏松", "倏鬆", -1 } /* 倏松 => 倏鬆 */, {"倒卷", "倒捲", -1 } /* 倒卷 => 倒捲 */, {"倒绷孩儿", "倒繃孩兒", -1 } /* 倒绷孩儿 => 倒繃孩兒 */, {"借以", "藉以", -1 } /* 借以 => 藉以 */, {"借借", "藉藉", -1 } /* 借借 => 藉藉 */, {"借口", "藉口", -1 } /* 借口 => 藉口 */, {"借托", "借託", -1 } /* 借托 => 借託 */, {"借故", "藉故", -1 } /* 借故 => 藉故 */, {"借机", "藉機", -1 } /* 借机 => 藉機 */, {"借此", "藉此", -1 } /* 借此 => 藉此 */, {"借由", "藉由", -1 } /* 借由 => 藉由 */, {"借着", "藉著", -1 } /* 借着 => 藉著 */, {"借端", "藉端", -1 } /* 借端 => 藉端 */, {"借词", "藉詞", -1 } /* 借词 => 藉詞 */, {"借资", "藉資", -1 } /* 借资 => 藉資 */, {"借酒浇愁", "藉酒澆愁", -1 } /* 借酒浇愁 => 藉酒澆愁 */, {"倦游", "倦遊", -1 } /* 倦游 => 倦遊 */, {"债", "債", -1 } /* 债 => 債 */, {"值得一干", "值得一幹", -1 } /* 值得一干 => 值得一幹 */, {"值得干", "值得幹", -1 } /* 值得干 => 值得幹 */, {"倾", "傾", -1 } /* 倾 => 傾 */, {"倾刻", "頃刻", -1 } /* 倾刻 => 頃刻 */, {"倾复", "傾覆", -1 } /* 倾复 => 傾覆 */, {"假于", "假於", -1 } /* 假于 => 假於 */, {"假发", "假髮", -1 } /* 假发 => 假髮 */, {"假摔", "插水", -1 } /* 假摔 => 插水 */, {"偎干", "偎乾", -1 } /* 偎干 => 偎乾 */, {"做出好戏", "做齣好戲", -1 } /* 做出好戏 => 做齣好戲 */, {"做废后", "做廢後", -1 } /* 做废后 => 做廢後 */, {"停制", "停製", -1 } /* 停制 => 停製 */, {"偬", "傯", -1 } /* 偬 => 傯 */, {"偷梁", "偷樑", -1 } /* 偷梁 => 偷樑 */, {"偷鸡不着", "偷雞不著", -1 } /* 偷鸡不着 => 偷雞不著 */, {"偻", "僂", -1 } /* 偻 => 僂 */, {"偻罗", "僂儸", -1 } /* 偻罗 => 僂儸 */, {"偾", "僨", -1 } /* 偾 => 僨 */, {"偿", "償", -1 } /* 偿 => 償 */, {"傥", "儻", -1 } /* 傥 => 儻 */, {"傧", "儐", -1 } /* 傧 => 儐 */, {"储", "儲", -1 } /* 储 => 儲 */, {"傩", "儺", -1 } /* 傩 => 儺 */, {"傻里傻气", "傻里傻氣", -1 } /* 傻里傻气 => 傻里傻氣 */, {"像赞他", "像讚他", -1 } /* 像赞他 => 像讚他 */, {"像赞你", "像讚你", -1 } /* 像赞你 => 像讚你 */, {"像赞叹", "像讚嘆", -1 } /* 像赞叹 => 像讚嘆 */, {"像赞她", "像讚她", -1 } /* 像赞她 => 像讚她 */, {"像赞我", "像讚我", -1 } /* 像赞我 => 像讚我 */, {"像赞誉", "像讚譽", -1 } /* 像赞誉 => 像讚譽 */, {"像赞许", "像讚許", -1 } /* 像赞许 => 像讚許 */, {"僵尸", "殭屍", -1 } /* 僵尸 => 殭屍 */, {"僵绳", "韁繩", -1 } /* 僵绳 => 韁繩 */, {"僵蚕", "殭蠶", -1 } /* 僵蚕 => 殭蠶 */, {"儆效", "儆傚", -1 } /* 儆效 => 儆傚 */, {"儌幸", "儌倖", -1 } /* 儌幸 => 儌倖 */, {"儒子可教", "孺子可教", -1 } /* 儒子可教 => 孺子可教 */, {"儒略历", "儒略曆", -1 } /* 儒略历 => 儒略曆 */, {"儿", "兒", -1 } /* 儿 => 兒 */, {"兀术", "兀朮", -1 } /* 兀术 => 兀朮 */, {"允准", "允准", -1 } /* 允准 => 允准 */, {"元凶", "元兇", -1 } /* 元凶 => 元兇 */, {"元勳", "元勛", -1 } /* 元勳 => 元勛 */, {"充饥", "充饑", -1 } /* 充饥 => 充饑 */, {"充饥", "充飢", -1 } /* 充饥 => 充飢 */, {"先于", "先於", -1 } /* 先于 => 先於 */, {"先奸", "先姦", -1 } /* 先奸 => 先姦 */, {"先干为敬", "先乾為敬", -1 } /* 先干为敬 => 先乾為敬 */, {"光启中学", "光啟中學", -1 } /* 光启中学 => 光啟中學 */, {"光复", "光復", -1 } /* 光复 => 光復 */, {"光念", "光唸", -1 } /* 光念 => 光唸 */, {"光线", "光線", -1 } /* 光线 => 光線 */, {"光致致", "光緻緻", -1 } /* 光致致 => 光緻緻 */, {"光采", "光采", -1 } /* 光采 => 光采 */, {"光驱", "光碟機", -1 } /* 光驱 => 光碟機 */, {"克克", "剋剋", -1 } /* 克克 => 剋剋 */, {"克制", "剋制", -1 } /* 克制 => 剋制 */, {"克剜", "剋剜", -1 } /* 克剜 => 剋剜 */, {"克复", "克複", -1 } /* 克复 => 克複 */, {"克夫", "剋夫", -1 } /* 克夫 => 剋夫 */, {"克扣", "剋扣", -1 } /* 克扣 => 剋扣 */, {"克日", "剋日", -1 } /* 克日 => 剋日 */, {"克星", "剋星", -1 } /* 克星 => 剋星 */, {"克服", "克服", -1 } /* 克服 => 克服 */, {"克期", "剋期", -1 } /* 克期 => 剋期 */, {"克林顿", "柯林頓", -1 } /* 克林顿 => 柯林頓 */, {"克死", "剋死", -1 } /* 克死 => 剋死 */, {"克苦", "刻苦", -1 } /* 克苦 => 刻苦 */, {"克薄", "剋薄", -1 } /* 克薄 => 剋薄 */, {"克里", "克里", -1 } /* 克里 => 克里 */, {"克里姆林", "克里姆林", -1 } /* 克里姆林 => 克里姆林 */, {"克里斯", "克里斯", -1 } /* 克里斯 => 克里斯 */, {"克里特", "克里特", -1 } /* 克里特 => 克里特 */, {"克里米亚", "克里米亞", -1 } /* 克里米亚 => 克里米亞 */, {"兑", "兌", -1 } /* 兑 => 兌 */, {"兖", "兗", -1 } /* 兖 => 兗 */, {"党", "黨", -1 } /* 党 => 黨 */, {"兜卷", "兜捲", -1 } /* 兜卷 => 兜捲 */, {"入伙", "入伙", -1 } /* 入伙 => 入伙 */, {"入伙", "入夥", -1 } /* 入伙 => 入夥 */, {"全于", "全於", -1 } /* 全于 => 全於 */, {"全南", "虔南", -1 } /* 全南 => 虔南 */, {"全角", "全形", -1 } /* 全角 => 全形 */, {"八坛", "八罈", -1 } /* 八坛 => 八罈 */, {"八字胡", "八字鬍", -1 } /* 八字胡 => 八字鬍 */, {"公仆", "公僕", -1 } /* 公仆 => 公僕 */, {"公余", "公餘", -1 } /* 公余 => 公餘 */, {"公历", "西曆", -1 } /* 公历 => 西曆 */, {"公历", "公曆", -1 } /* 公历 => 公曆 */, {"公厘", "公釐", -1 } /* 公厘 => 公釐 */, {"公启", "公啟", -1 } /* 公启 => 公啟 */, {"公孙丑", "公孫丑", -1 } /* 公孙丑 => 公孫丑 */, {"公布", "公佈", -1 } /* 公布 => 公佈 */, {"公干", "公幹", -1 } /* 公干 => 公幹 */, {"公斗", "公斗", -1 } /* 公斗 => 公斗 */, {"公车上书", "公車上書", -1 } /* 公车上书 => 公車上書 */, {"六冲", "六衝", -1 } /* 六冲 => 六衝 */, {"六坛", "六罈", -1 } /* 六坛 => 六罈 */, {"六欲", "六慾", -1 } /* 六欲 => 六慾 */, {"六须鲶", "六鬚鯰", -1 } /* 六须鲶 => 六鬚鯰 */, {"兰", "蘭", -1 } /* 兰 => 蘭 */, {"共享", "共享", -1 } /* 共享 => 共享 */, {"共制", "共製", -1 } /* 共制 => 共製 */, {"关", "關", -1 } /* 关 => 關 */, {"关于", "關於", -1 } /* 关于 => 關於 */, {"关系", "關係", -1 } /* 关系 => 關係 */, {"关系着", "關係著", -1 } /* 关系着 => 關係著 */, {"兴", "興", -1 } /* 兴 => 興 */, {"兴致", "興緻", -1 } /* 兴致 => 興緻 */, {"兴高采烈", "興高采烈", -1 } /* 兴高采烈 => 興高采烈 */, {"兵簽", "兵籤", -1 } /* 兵簽 => 兵籤 */, {"其余", "其餘", -1 } /* 其余 => 其餘 */, {"典范", "典範", -1 } /* 典范 => 典範 */, {"兹", "茲", -1 } /* 兹 => 茲 */, {"兹于", "茲於", -1 } /* 兹于 => 茲於 */, {"养", "養", -1 } /* 养 => 養 */, {"养发", "養髮", -1 } /* 养发 => 養髮 */, {"兼并", "兼併", -1 } /* 兼并 => 兼併 */, {"兽", "獸", -1 } /* 兽 => 獸 */, {"兽奸", "獸姦", -1 } /* 兽奸 => 獸姦 */, {"兽欲", "獸慾", -1 } /* 兽欲 => 獸慾 */, {"冁", "囅", -1 } /* 冁 => 囅 */, {"内", "內", -1 } /* 内 => 內 */, {"内函", "內涵", -1 } /* 内函 => 內涵 */, {"内制", "內製", -1 } /* 内制 => 內製 */, {"内哄", "內鬨", -1 } /* 内哄 => 內鬨 */, {"内松外紧", "內鬆外緊", -1 } /* 内松外紧 => 內鬆外緊 */, {"内紧外松", "內緊外鬆", -1 } /* 内紧外松 => 內緊外鬆 */, {"内线", "內線", -1 } /* 内线 => 內線 */, {"冈", "岡", -1 } /* 冈 => 岡 */, {"册", "冊", -1 } /* 册 => 冊 */, {"再冲", "再衝", -1 } /* 再冲 => 再衝 */, {"再制", "再製", -1 } /* 再制 => 再製 */, {"再卷", "再捲", -1 } /* 再卷 => 再捲 */, {"再干", "再幹", -1 } /* 再干 => 再幹 */, {"再干一杯", "再乾一杯", -1 } /* 再干一杯 => 再乾一杯 */, {"再斗一斗", "再鬥一鬥", -1 } /* 再斗一斗 => 再鬥一鬥 */, {"再松", "再鬆", -1 } /* 再松 => 再鬆 */, {"冗余", "冗餘", -1 } /* 冗余 => 冗餘 */, {"写", "寫", -1 } /* 写 => 寫 */, {"写于", "寫於", -1 } /* 写于 => 寫於 */, {"写保护", "防寫", -1 } /* 写保护 => 防寫 */, {"写字台", "寫字檯", -1 } /* 写字台 => 寫字檯 */, {"军", "軍", -1 } /* 军 => 軍 */, {"农", "農", -1 } /* 农 => 農 */, {"农历", "農曆", -1 } /* 农历 => 農曆 */, {"农民历", "農民曆", -1 } /* 农民历 => 農民曆 */, {"农药", "農藥", -1 } /* 农药 => 農藥 */, {"农获", "農穫", -1 } /* 农获 => 農穫 */, {"冢", "塚", -1 } /* 冢 => 塚 */, {"冤雠", "冤讎", -1 } /* 冤雠 => 冤讎 */, {"冬台", "冬颱", -1 } /* 冬台 => 冬颱 */, {"冬山庄", "冬山庄", -1 } /* 冬山庄 => 冬山庄 */, {"冯", "馮", -1 } /* 冯 => 馮 */, {"冲", "沖", -1 } /* 冲 => 沖 */, {"冲上", "衝上", -1 } /* 冲上 => 衝上 */, {"冲下", "衝下", -1 } /* 冲下 => 衝下 */, {"冲不上", "衝不上", -1 } /* 冲不上 => 衝不上 */, {"冲不下", "衝不下", -1 } /* 冲不下 => 衝不下 */, {"冲不入", "衝不入", -1 } /* 冲不入 => 衝不入 */, {"冲不出", "衝不出", -1 } /* 冲不出 => 衝不出 */, {"冲不开", "衝不開", -1 } /* 冲不开 => 衝不開 */, {"冲不破", "衝不破", -1 } /* 冲不破 => 衝不破 */, {"冲不过", "衝不過", -1 } /* 冲不过 => 衝不過 */, {"冲不进", "衝不進", -1 } /* 冲不进 => 衝不進 */, {"冲乱", "衝亂", -1 } /* 冲乱 => 衝亂 */, {"冲了上", "衝了上", -1 } /* 冲了上 => 衝了上 */, {"冲了下", "衝了下", -1 } /* 冲了下 => 衝了下 */, {"冲了入", "衝了入", -1 } /* 冲了入 => 衝了入 */, {"冲了出", "衝了出", -1 } /* 冲了出 => 衝了出 */, {"冲了来", "衝了來", -1 } /* 冲了来 => 衝了來 */, {"冲了过", "衝了過", -1 } /* 冲了过 => 衝了過 */, {"冲了进", "衝了進", -1 } /* 冲了进 => 衝了進 */, {"冲他", "衝他", -1 } /* 冲他 => 衝他 */, {"冲你", "衝你", -1 } /* 冲你 => 衝你 */, {"冲倒", "衝倒", -1 } /* 冲倒 => 衝倒 */, {"冲克", "衝剋", -1 } /* 冲克 => 衝剋 */, {"冲克", "衝克", -1 } /* 冲克 => 衝克 */, {"冲入", "衝入", -1 } /* 冲入 => 衝入 */, {"冲军", "衝軍", -1 } /* 冲军 => 衝軍 */, {"冲冠", "衝冠", -1 } /* 冲冠 => 衝冠 */, {"冲决", "衝決", -1 } /* 冲决 => 衝決 */, {"冲出", "衝出", -1 } /* 冲出 => 衝出 */, {"冲击", "衝擊", -1 } /* 冲击 => 衝擊 */, {"冲到", "衝到", -1 } /* 冲到 => 衝到 */, {"冲刺", "衝刺", -1 } /* 冲刺 => 衝刺 */, {"冲剌", "衝剌", -1 } /* 冲剌 => 衝剌 */, {"冲前", "衝前", -1 } /* 冲前 => 衝前 */, {"冲剑", "衝劍", -1 } /* 冲剑 => 衝劍 */, {"冲力", "衝力", -1 } /* 冲力 => 衝力 */, {"冲动", "衝動", -1 } /* 冲动 => 衝動 */, {"冲劲", "衝勁", -1 } /* 冲劲 => 衝勁 */, {"冲势", "衝勢", -1 } /* 冲势 => 衝勢 */, {"冲压", "衝壓", -1 } /* 冲压 => 衝壓 */, {"冲去", "衝去", -1 } /* 冲去 => 衝去 */, {"冲口", "衝口", -1 } /* 冲口 => 衝口 */, {"冲向", "衝向", -1 } /* 冲向 => 衝向 */, {"冲向前", "衝向前", -1 } /* 冲向前 => 衝向前 */, {"冲呀", "衝呀", -1 } /* 冲呀 => 衝呀 */, {"冲咱", "衝咱", -1 } /* 冲咱 => 衝咱 */, {"冲啊", "衝啊", -1 } /* 冲啊 => 衝啊 */, {"冲回", "衝回", -1 } /* 冲回 => 衝回 */, {"冲在下", "衝在下", -1 } /* 冲在下 => 衝在下 */, {"冲在前", "衝在前", -1 } /* 冲在前 => 衝在前 */, {"冲在最前", "衝在最前", -1 } /* 冲在最前 => 衝在最前 */, {"冲坚", "衝堅", -1 } /* 冲坚 => 衝堅 */, {"冲坠", "衝墜", -1 } /* 冲坠 => 衝墜 */, {"冲垮", "衝垮", -1 } /* 冲垮 => 衝垮 */, {"冲堂", "衝堂", -1 } /* 冲堂 => 衝堂 */, {"冲天", "衝天", -1 } /* 冲天 => 衝天 */, {"冲头阵", "衝頭陣", -1 } /* 冲头阵 => 衝頭陣 */, {"冲奔", "衝奔", -1 } /* 冲奔 => 衝奔 */, {"冲她", "衝她", -1 } /* 冲她 => 衝她 */, {"冲将", "衝將", -1 } /* 冲将 => 衝將 */, {"冲开", "衝開", -1 } /* 冲开 => 衝開 */, {"冲往", "衝往", -1 } /* 冲往 => 衝往 */, {"冲得入", "衝得入", -1 } /* 冲得入 => 衝得入 */, {"冲得出", "衝得出", -1 } /* 冲得出 => 衝得出 */, {"冲得过", "衝得過", -1 } /* 冲得过 => 衝得過 */, {"冲得进", "衝得進", -1 } /* 冲得进 => 衝得進 */, {"冲心", "衝心", -1 } /* 冲心 => 衝心 */, {"冲我", "衝我", -1 } /* 冲我 => 衝我 */, {"冲扑", "衝撲", -1 } /* 冲扑 => 衝撲 */, {"冲拳", "衝拳", -1 } /* 冲拳 => 衝拳 */, {"冲掉", "衝掉", -1 } /* 冲掉 => 衝掉 */, {"冲掠", "衝掠", -1 } /* 冲掠 => 衝掠 */, {"冲撞", "衝撞", -1 } /* 冲撞 => 衝撞 */, {"冲散", "衝散", -1 } /* 冲散 => 衝散 */, {"冲断", "衝斷", -1 } /* 冲断 => 衝斷 */, {"冲杀", "衝殺", -1 } /* 冲杀 => 衝殺 */, {"冲来", "衝來", -1 } /* 冲来 => 衝來 */, {"冲波", "衝波", -1 } /* 冲波 => 衝波 */, {"冲浪", "衝浪", -1 } /* 冲浪 => 衝浪 */, {"冲激", "衝激", -1 } /* 冲激 => 衝激 */, {"冲然", "衝然", -1 } /* 冲然 => 衝然 */, {"冲犯", "衝犯", -1 } /* 冲犯 => 衝犯 */, {"冲盹儿", "衝盹兒", -1 } /* 冲盹儿 => 衝盹兒 */, {"冲着", "衝著", -1 } /* 冲着 => 衝著 */, {"冲破", "衝破", -1 } /* 冲破 => 衝破 */, {"冲程", "衝程", -1 } /* 冲程 => 衝程 */, {"冲穴", "衝穴", -1 } /* 冲穴 => 衝穴 */, {"冲突", "衝突", -1 } /* 冲突 => 衝突 */, {"冲线", "衝線", -1 } /* 冲线 => 衝線 */, {"冲绳", "沖繩", -1 } /* 冲绳 => 沖繩 */, {"冲脉", "衝脈", -1 } /* 冲脉 => 衝脈 */, {"冲自己", "衝自己", -1 } /* 冲自己 => 衝自己 */, {"冲至", "衝至", -1 } /* 冲至 => 衝至 */, {"冲落", "衝落", -1 } /* 冲落 => 衝落 */, {"冲著", "衝著", -1 } /* 冲著 => 衝著 */, {"冲要", "衝要", -1 } /* 冲要 => 衝要 */, {"冲起", "衝起", -1 } /* 冲起 => 衝起 */, {"冲越", "衝越", -1 } /* 冲越 => 衝越 */, {"冲跑", "衝跑", -1 } /* 冲跑 => 衝跑 */, {"冲车", "衝車", -1 } /* 冲车 => 衝車 */, {"冲过", "衝過", -1 } /* 冲过 => 衝過 */, {"冲近", "衝近", -1 } /* 冲近 => 衝近 */, {"冲进", "衝進", -1 } /* 冲进 => 衝進 */, {"冲量", "衝量", -1 } /* 冲量 => 衝量 */, {"冲锋", "衝鋒", -1 } /* 冲锋 => 衝鋒 */, {"冲错", "衝錯", -1 } /* 冲错 => 衝錯 */, {"冲门", "衝門", -1 } /* 冲门 => 衝門 */, {"冲闯", "衝闖", -1 } /* 冲闯 => 衝闖 */, {"冲阵", "衝陣", -1 } /* 冲阵 => 衝陣 */, {"冲陷", "衝陷", -1 } /* 冲陷 => 衝陷 */, {"冲风", "衝風", -1 } /* 冲风 => 衝風 */, {"冲驰", "衝馳", -1 } /* 冲驰 => 衝馳 */, {"冲!", "衝!", -1 } /* 冲! => 衝! */, {"决", "決", -1 } /* 决 => 決 */, {"决心干", "決心幹", -1 } /* 决心干 => 決心幹 */, {"决择", "抉擇", -1 } /* 决择 => 抉擇 */, {"况", "況", -1 } /* 况 => 況 */, {"冶游", "冶遊", -1 } /* 冶游 => 冶遊 */, {"冷面", "冷麵", 12 } /* 冷面 => 冷麵 */, {"冻", "凍", -1 } /* 冻 => 凍 */, {"净", "淨", -1 } /* 净 => 淨 */, {"凄", "淒", -1 } /* 凄 => 淒 */, {"准", "準", -1 } /* 准 => 準 */, {"准不准备", "準不準備", -1 } /* 准不准备 => 準不準備 */, {"准不准确", "準不準確", -1 } /* 准不准确 => 準不準確 */, {"准且", "准且", -1 } /* 准且 => 准且 */, {"准予", "准予", -1 } /* 准予 => 准予 */, {"准以", "准以", -1 } /* 准以 => 准以 */, {"准倒", "准倒", -1 } /* 准倒 => 准倒 */, {"准假", "准假", -1 } /* 准假 => 准假 */, {"准决斗", "准決鬥", -1 } /* 准决斗 => 准決鬥 */, {"准吃", "准吃", -1 } /* 准吃 => 准吃 */, {"准噶", "准噶", -1 } /* 准噶 => 准噶 */, {"准将", "准將", -1 } /* 准将 => 准將 */, {"准平", "准平", -1 } /* 准平 => 准平 */, {"准新", "准新", -1 } /* 准新 => 准新 */, {"准考证", "准考證", -1 } /* 准考证 => 准考證 */, {"准许", "准許", -1 } /* 准许 => 准許 */, {"准谱", "准譜", -1 } /* 准谱 => 准譜 */, {"准错", "准錯", -1 } /* 准错 => 准錯 */, {"准错不了", "準錯不了", -1 } /* 准错不了 => 準錯不了 */, {"凇", "淞", -1 } /* 凇 => 淞 */, {"凉", "涼", -1 } /* 凉 => 涼 */, {"凉席", "涼蓆", -1 } /* 凉席 => 涼蓆 */, {"凉面", "涼麵", 13 } /* 凉面 => 涼麵 */, {"减", "減", -1 } /* 减 => 減 */, {"减征", "減徵", -1 } /* 减征 => 減徵 */, {"凑", "湊", -1 } /* 凑 => 湊 */, {"凑合着", "湊合著", -1 } /* 凑合着 => 湊合著 */, {"凛", "凜", -1 } /* 凛 => 凜 */, {"凝干", "凝乾", -1 } /* 凝干 => 凝乾 */, {"几", "幾", -1 } /* 几 => 幾 */, {"几为所害", "几為所害", -1 } /* 几为所害 => 几為所害 */, {"几乎", "几乎", -1 } /* 几乎 => 几乎 */, {"几伙", "幾夥", -1 } /* 几伙 => 幾夥 */, {"几杖", "几杖", -1 } /* 几杖 => 几杖 */, {"几案", "几案", -1 } /* 几案 => 几案 */, {"凤", "鳳", -1 } /* 凤 => 鳳 */, {"凤凰于蜚", "鳳凰于蜚", -1 } /* 凤凰于蜚 => 鳳凰于蜚 */, {"凤凰于飞", "鳳凰于飛", -1 } /* 凤凰于飞 => 鳳凰于飛 */, {"凤占", "鳳占", -1 } /* 凤占 => 鳳占 */, {"凫", "鳧", -1 } /* 凫 => 鳧 */, {"凭", "憑", -1 } /* 凭 => 憑 */, {"凭借", "憑藉", -1 } /* 凭借 => 憑藉 */, {"凭借着", "憑藉著", -1 } /* 凭借着 => 憑藉著 */, {"凭吊", "憑弔", -1 } /* 凭吊 => 憑弔 */, {"凯", "凱", -1 } /* 凯 => 凱 */, {"凯里", "凱里", -1 } /* 凯里 => 凱里 */, {"凶器", "兇器", -1 } /* 凶器 => 兇器 */, {"凶嫌", "兇嫌", -1 } /* 凶嫌 => 兇嫌 */, {"凶徒", "兇徒", -1 } /* 凶徒 => 兇徒 */, {"凶惧", "兇懼", -1 } /* 凶惧 => 兇懼 */, {"凶手", "兇手", -1 } /* 凶手 => 兇手 */, {"凶杀", "兇殺", -1 } /* 凶杀 => 兇殺 */, {"凶案", "兇案", -1 } /* 凶案 => 兇案 */, {"凶犯", "兇犯", -1 } /* 凶犯 => 兇犯 */, {"凶猛", "兇猛", -1 } /* 凶猛 => 兇猛 */, {"出于", "出於", -1 } /* 出于 => 出於 */, {"出京剧", "齣京劇", 14 } /* 出京剧 => 齣京劇 */, {"出剧", "齣劇", 15 } /* 出剧 => 齣劇 */, {"出好戏", "齣好戲", 16 } /* 出好戏 => 齣好戲 */, {"出戏", "齣戲", 17 } /* 出戏 => 齣戲 */, {"出槌", "出鎚", -1 } /* 出槌 => 出鎚 */, {"出游", "出遊", -1 } /* 出游 => 出遊 */, {"出电影", "齣電影", 18 } /* 出电影 => 齣電影 */, {"出籴", "出糶", -1 } /* 出籴 => 出糶 */, {"出线", "出線", -1 } /* 出线 => 出線 */, {"出话剧", "齣話劇", 19 } /* 出话剧 => 齣話劇 */, {"出锤", "出鎚", -1 } /* 出锤 => 出鎚 */, {"击", "擊", -1 } /* 击 => 擊 */, {"函义", "涵義", -1 } /* 函义 => 涵義 */, {"函养", "涵養", -1 } /* 函养 => 涵養 */, {"函复", "函覆", -1 } /* 函复 => 函覆 */, {"函容", "涵容", -1 } /* 函容 => 涵容 */, {"函意", "涵意", -1 } /* 函意 => 涵意 */, {"函数库", "函式館", -1 } /* 函数库 => 函式館 */, {"函洞", "涵洞", -1 } /* 函洞 => 涵洞 */, {"函濡", "涵濡", -1 } /* 函濡 => 涵濡 */, {"函煦", "涵煦", -1 } /* 函煦 => 涵煦 */, {"函盖", "涵蓋", -1 } /* 函盖 => 涵蓋 */, {"函管", "涵管", -1 } /* 函管 => 涵管 */, {"函蓄", "涵蓄", -1 } /* 函蓄 => 涵蓄 */, {"函蕴", "涵蘊", -1 } /* 函蕴 => 涵蘊 */, {"凿", "鑿", -1 } /* 凿 => 鑿 */, {"刀削面", "刀削麵", -1 } /* 刀削面 => 刀削麵 */, {"刁斗", "刁斗", -1 } /* 刁斗 => 刁斗 */, {"分伙", "分夥", -1 } /* 分伙 => 分夥 */, {"分布", "分佈", -1 } /* 分布 => 分佈 */, {"分布式", "分散式", -1 } /* 分布式 => 分散式 */, {"分道扬镖", "分道揚鑣", -1 } /* 分道扬镖 => 分道揚鑣 */, {"分量", "份量", -1 } /* 分量 => 份量 */, {"切线", "切線", -1 } /* 切线 => 切線 */, {"刊布", "刊佈", -1 } /* 刊布 => 刊佈 */, {"刍", "芻", -1 } /* 刍 => 芻 */, {"刑余", "刑餘", -1 } /* 刑余 => 刑餘 */, {"划", "劃", -1 } /* 划 => 劃 */, {"划上", "划上", -1 } /* 划上 => 划上 */, {"划下", "划下", -1 } /* 划下 => 划下 */, {"划不来", "划不來", -1 } /* 划不来 => 划不來 */, {"划不来", "劃不來", -1 } /* 划不来 => 劃不來 */, {"划具", "划具", -1 } /* 划具 => 划具 */, {"划出", "划出", -1 } /* 划出 => 划出 */, {"划到", "划到", -1 } /* 划到 => 划到 */, {"划动", "划動", -1 } /* 划动 => 划動 */, {"划单人艇", "划單人艇", -1 } /* 划单人艇 => 划單人艇 */, {"划去", "划去", -1 } /* 划去 => 划去 */, {"划双人", "划雙人", -1 } /* 划双人 => 划雙人 */, {"划子", "划子", -1 } /* 划子 => 划子 */, {"划得来", "划得來", -1 } /* 划得来 => 划得來 */, {"划拳", "划拳", -1 } /* 划拳 => 划拳 */, {"划来", "划來", -1 } /* 划来 => 划來 */, {"划桨", "划槳", -1 } /* 划桨 => 划槳 */, {"划步", "划步", -1 } /* 划步 => 划步 */, {"划水", "划水", -1 } /* 划水 => 划水 */, {"划独", "划獨", -1 } /* 划独 => 划獨 */, {"划着", "划著", -1 } /* 划着 => 划著 */, {"划着走", "划著走", -1 } /* 划着走 => 划著走 */, {"划算", "划算", -1 } /* 划算 => 划算 */, {"划线", "劃線", -1 } /* 划线 => 劃線 */, {"划舟", "划舟", -1 } /* 划舟 => 划舟 */, {"划船", "划船", -1 } /* 划船 => 划船 */, {"划艇", "划艇", -1 } /* 划艇 => 划艇 */, {"划行", "划行", -1 } /* 划行 => 划行 */, {"划走", "划走", -1 } /* 划走 => 划走 */, {"划起", "划起", -1 } /* 划起 => 划起 */, {"划过", "划過", -1 } /* 划过 => 划過 */, {"划进", "划進", -1 } /* 划进 => 划進 */, {"划龙", "划龍", -1 } /* 划龙 => 划龍 */, {"列支敦士登", "列支敦士登", -1 } /* 列支敦士登 => 列支敦士登 */, {"刘", "劉", -1 } /* 刘 => 劉 */, {"则", "則", -1 } /* 则 => 則 */, {"则采", "則採", -1 } /* 则采 => 則採 */, {"刚", "剛", -1 } /* 刚 => 剛 */, {"刚才", "剛纔", -1 } /* 刚才 => 剛纔 */, {"创", "創", -1 } /* 创 => 創 */, {"创制", "創製", -1 } /* 创制 => 創製 */, {"创获", "創穫", -1 } /* 创获 => 創穫 */, {"初愈", "初癒", -1 } /* 初愈 => 初癒 */, {"初斗然", "初陡然", -1 } /* 初斗然 => 初陡然 */, {"删", "刪", -1 } /* 删 => 刪 */, {"別干", "別幹", 20 } /* 別干 => 別幹 */, {"別干净", "別乾淨", -1 } /* 別干净 => 別乾淨 */, {"別扭", "彆扭", -1 } /* 別扭 => 彆扭 */, {"別拗", "彆拗", -1 } /* 別拗 => 彆拗 */, {"別气", "彆氣", -1 } /* 別气 => 彆氣 */, {"別致", "別緻", -1 } /* 別致 => 別緻 */, {"刨冰", "鉋冰", -1 } /* 刨冰 => 鉋冰 */, {"刨刀", "鉋刀", -1 } /* 刨刀 => 鉋刀 */, {"刨削", "鉋削", -1 } /* 刨削 => 鉋削 */, {"刨子", "鉋子", -1 } /* 刨子 => 鉋子 */, {"刨成", "鉋成", -1 } /* 刨成 => 鉋成 */, {"刨花", "鉋花", -1 } /* 刨花 => 鉋花 */, {"利于", "利於", -1 } /* 利于 => 利於 */, {"利欲", "利慾", -1 } /* 利欲 => 利慾 */, {"利隆圭", "里朗威", -1 } /* 利隆圭 => 里朗威 */, {"别", "別", -1 } /* 别 => 別 */, {"别口气", "彆口氣", -1 } /* 别口气 => 彆口氣 */, {"别强", "彆強", -1 } /* 别强 => 彆強 */, {"别扭", "彆扭", -1 } /* 别扭 => 彆扭 */, {"别拗", "彆拗", -1 } /* 别拗 => 彆拗 */, {"别气", "彆氣", -1 } /* 别气 => 彆氣 */, {"别着", "彆著", -1 } /* 别着 => 彆著 */, {"别脚", "別腳", -1 } /* 别脚 => 別腳 */, {"别脚", "彆腳", -1 } /* 别脚 => 彆腳 */, {"别致", "別緻", -1 } /* 别致 => 別緻 */, {"刬", "剗", -1 } /* 刬 => 剗 */, {"刭", "剄", -1 } /* 刭 => 剄 */, {"刮", "刮", -1 } /* 刮 => 刮 */, {"刮倒", "颳倒", -1 } /* 刮倒 => 颳倒 */, {"刮去", "颳去", -1 } /* 刮去 => 颳去 */, {"刮大风", "颳大風", -1 } /* 刮大风 => 颳大風 */, {"刮得", "颳得", -1 } /* 刮得 => 颳得 */, {"刮着", "颳著", -1 } /* 刮着 => 颳著 */, {"刮胡", "刮鬍", -1 } /* 刮胡 => 刮鬍 */, {"刮胡刀", "刮鬍刀", -1 } /* 刮胡刀 => 刮鬍刀 */, {"刮走", "颳走", -1 } /* 刮走 => 颳走 */, {"刮起", "颳起", -1 } /* 刮起 => 颳起 */, {"刮须", "刮鬚", -1 } /* 刮须 => 刮鬚 */, {"刮风", "颳風", -1 } /* 刮风 => 颳風 */, {"制丹", "製丹", -1 } /* 制丹 => 製丹 */, {"制为", "製為", -1 } /* 制为 => 製為 */, {"制于", "制於", -1 } /* 制于 => 制於 */, {"制件", "製件", -1 } /* 制件 => 製件 */, {"制作", "製作", -1 } /* 制作 => 製作 */, {"制做", "製做", -1 } /* 制做 => 製做 */, {"制冰", "製冰", -1 } /* 制冰 => 製冰 */, {"制冷", "製冷", -1 } /* 制冷 => 製冷 */, {"制出", "製出", -1 } /* 制出 => 製出 */, {"制剂", "製劑", -1 } /* 制剂 => 製劑 */, {"制品", "製品", -1 } /* 制品 => 製品 */, {"制器", "製器", -1 } /* 制器 => 製器 */, {"制图", "製圖", -1 } /* 制图 => 製圖 */, {"制备", "製備", -1 } /* 制备 => 製備 */, {"制定", "制定", -1 } /* 制定 => 制定 */, {"制度", "制度", -1 } /* 制度 => 制度 */, {"制式", "制式", -1 } /* 制式 => 制式 */, {"制成", "製成", -1 } /* 制成 => 製成 */, {"制播", "製播", -1 } /* 制播 => 製播 */, {"制材", "製材", -1 } /* 制材 => 製材 */, {"制毒", "製毒", -1 } /* 制毒 => 製毒 */, {"制法", "製法", -1 } /* 制法 => 製法 */, {"制炼", "製煉", -1 } /* 制炼 => 製煉 */, {"制片", "製片", -1 } /* 制片 => 製片 */, {"制版", "製版", -1 } /* 制版 => 製版 */, {"制盐", "製鹽", -1 } /* 制盐 => 製鹽 */, {"制程", "製程", -1 } /* 制程 => 製程 */, {"制糖", "製糖", -1 } /* 制糖 => 製糖 */, {"制纸", "製紙", -1 } /* 制纸 => 製紙 */, {"制药", "製藥", -1 } /* 制药 => 製藥 */, {"制衣", "製衣", -1 } /* 制衣 => 製衣 */, {"制表", "製表", -1 } /* 制表 => 製表 */, {"制订", "制訂", -1 } /* 制订 => 制訂 */, {"制造", "製造", -1 } /* 制造 => 製造 */, {"制醋", "製醋", -1 } /* 制醋 => 製醋 */, {"制面", "製麵", -1 } /* 制面 => 製麵 */, {"制面具", "製面具", -1 } /* 制面具 => 製面具 */, {"制革", "製革", -1 } /* 制革 => 製革 */, {"制鞋", "製鞋", -1 } /* 制鞋 => 製鞋 */, {"制馅", "製餡", -1 } /* 制馅 => 製餡 */, {"刹", "剎", -1 } /* 刹 => 剎 */, {"刺不准", "刺不準", -1 } /* 刺不准 => 刺不準 */, {"刺绣", "刺繡", -1 } /* 刺绣 => 刺繡 */, {"刻于", "刻於", -1 } /* 刻于 => 刻於 */, {"刽", "劊", -1 } /* 刽 => 劊 */, {"刿", "劌", -1 } /* 刿 => 劌 */, {"剀", "剴", -1 } /* 剀 => 剴 */, {"剂", "劑", -1 } /* 剂 => 劑 */, {"剃发", "剃髮", -1 } /* 剃发 => 剃髮 */, {"剃须", "剃鬚", -1 } /* 剃须 => 剃鬚 */, {"剉刀", "銼刀", -1 } /* 剉刀 => 銼刀 */, {"剉工", "銼工", -1 } /* 剉工 => 銼工 */, {"剉平", "銼平", -1 } /* 剉平 => 銼平 */, {"削发", "削髮", -1 } /* 削发 => 削髮 */, {"剌刀", "刺刀", -1 } /* 剌刀 => 刺刀 */, {"前仆", "前僕", -1 } /* 前仆 => 前僕 */, {"前冲", "前衝", -1 } /* 前冲 => 前衝 */, {"前线", "前線", -1 } /* 前线 => 前線 */, {"前缀", "首碼", -1 } /* 前缀 => 首碼 */, {"剐", "剮", -1 } /* 剐 => 剮 */, {"剑", "劍", -1 } /* 剑 => 劍 */, {"剥", "剝", -1 } /* 剥 => 剝 */, {"剧", "劇", -1 } /* 剧 => 劇 */, {"剧药", "劇藥", -1 } /* 剧药 => 劇藥 */, {"剩余", "剩餘", -1 } /* 剩余 => 剩餘 */, {"剪发", "剪髮", -1 } /* 剪发 => 剪髮 */, {"剪彩", "剪綵", -1 } /* 剪彩 => 剪綵 */, {"剪除", "翦除", -1 } /* 剪除 => 翦除 */, {"副丑", "副丑", -1 } /* 副丑 => 副丑 */, {"割线", "割線", -1 } /* 割线 => 割線 */, {"割舍", "割捨", -1 } /* 割舍 => 割捨 */, {"劈里", "劈里", -1 } /* 劈里 => 劈里 */, {"力拼", "力拚", -1 } /* 力拼 => 力拚 */, {"劝", "勸", -1 } /* 劝 => 勸 */, {"办", "辦", -1 } /* 办 => 辦 */, {"办伙", "辦伙", -1 } /* 办伙 => 辦伙 */, {"办公台", "辦公檯", -1 } /* 办公台 => 辦公檯 */, {"功亏一匮", "功虧一簣", -1 } /* 功亏一匮 => 功虧一簣 */, {"功勳", "功勛", -1 } /* 功勳 => 功勛 */, {"加卷", "加捲", -1 } /* 加卷 => 加捲 */, {"加涂", "加塗", -1 } /* 加涂 => 加塗 */, {"加线", "加線", -1 } /* 加线 => 加線 */, {"加里", "加里", -1 } /* 加里 => 加里 */, {"务", "務", -1 } /* 务 => 務 */, {"务川", "婺川", -1 } /* 务川 => 婺川 */, {"劢", "勱", -1 } /* 劢 => 勱 */, {"劣于", "劣於", -1 } /* 劣于 => 劣於 */, {"动", "動", -1 } /* 动 => 動 */, {"动荡", "動蕩", -1 } /* 动荡 => 動蕩 */, {"动荡", "動盪", -1 } /* 动荡 => 動盪 */, {"助理裁判员", "旁證", -1 } /* 助理裁判员 => 旁證 */, {"劫余", "劫餘", -1 } /* 劫余 => 劫餘 */, {"劭雍", "邵雍", -1 } /* 劭雍 => 邵雍 */, {"励", "勵", -1 } /* 励 => 勵 */, {"劲", "勁", -1 } /* 劲 => 勁 */, {"劳", "勞", -1 } /* 劳 => 勞 */, {"劳力士表", "勞力士錶", -1 } /* 劳力士表 => 勞力士錶 */, {"劳骚", "牢騷", -1 } /* 劳骚 => 牢騷 */, {"劾系", "劾繫", -1 } /* 劾系 => 劾繫 */, {"势", "勢", -1 } /* 势 => 勢 */, {"勉县", "沔縣", -1 } /* 勉县 => 沔縣 */, {"勋", "勛", -1 } /* 勋 => 勛 */, {"勋章", "勳章", -1 } /* 勋章 => 勳章 */, {"勋章", "勛章", -1 } /* 勋章 => 勛章 */, {"勘乱", "戡亂", -1 } /* 勘乱 => 戡亂 */, {"勚", "勩", -1 } /* 勚 => 勩 */, {"勤于", "勤於", -1 } /* 勤于 => 勤於 */, {"勳爵", "勛爵", -1 } /* 勳爵 => 勛爵 */, {"勳级", "勛級", -1 } /* 勳级 => 勛級 */, {"勺药", "芍藥", -1 } /* 勺药 => 芍藥 */, {"勾干", "勾幹", -1 } /* 勾干 => 勾幹 */, {"匀", "勻", -1 } /* 匀 => 勻 */, {"包准", "包准", -1 } /* 包准 => 包准 */, {"包函", "包涵", -1 } /* 包函 => 包涵 */, {"包卷", "包捲", -1 } /* 包卷 => 包捲 */, {"包扎", "包紮", -1 } /* 包扎 => 包紮 */, {"包谷", "包穀", -1 } /* 包谷 => 包穀 */, {"匏系", "匏繫", -1 } /* 匏系 => 匏繫 */, {"北冲", "北衝", -1 } /* 北冲 => 北衝 */, {"北回", "北回", -1 } /* 北回 => 北回 */, {"北回", "北迴", -1 } /* 北回 => 北迴 */, {"北回归线", "北回歸線", -1 } /* 北回归线 => 北回歸線 */, {"北回线", "北迴線", -1 } /* 北回线 => 北迴線 */, {"北回铁路", "北迴鐵路", -1 } /* 北回铁路 => 北迴鐵路 */, {"北岳", "北嶽", -1 } /* 北岳 => 北嶽 */, {"北斗", "北斗", -1 } /* 北斗 => 北斗 */, {"北游", "北遊", -1 } /* 北游 => 北遊 */, {"北潭涌", "北潭涌", -1 } /* 北潭涌 => 北潭涌 */, {"北里", "北里", 21 } /* 北里 => 北里 */, {"匡复", "匡複", -1 } /* 匡复 => 匡複 */, {"匣钵", "匣砵", -1 } /* 匣钵 => 匣砵 */, {"匦", "匭", -1 } /* 匦 => 匭 */, {"匪干", "匪幹", -1 } /* 匪干 => 匪幹 */, {"匮", "匱", -1 } /* 匮 => 匱 */, {"区", "區", -1 } /* 区 => 區 */, {"医", "醫", -1 } /* 医 => 醫 */, {"医药", "醫藥", -1 } /* 医药 => 醫藥 */, {"十余", "十餘", -1 } /* 十余 => 十餘 */, {"十余只", "十餘隻", -1 } /* 十余只 => 十餘隻 */, {"十余里", "十餘里", -1 } /* 十余里 => 十餘里 */, {"十分干", "十分乾", -1 } /* 十分干 => 十分乾 */, {"十卷", "十捲", -1 } /* 十卷 => 十捲 */, {"十周", "十週", -1 } /* 十周 => 十週 */, {"十里余", "十里餘", -1 } /* 十里余 => 十里餘 */, {"千丝万缕", "千絲萬縷", -1 } /* 千丝万缕 => 千絲萬縷 */, {"千余", "千餘", -1 } /* 千余 => 千餘 */, {"千余只", "千餘隻", -1 } /* 千余只 => 千餘隻 */, {"千余里", "千餘里", -1 } /* 千余里 => 千餘里 */, {"千回百折", "千迴百折", -1 } /* 千回百折 => 千迴百折 */, {"千回百转", "千迴百轉", -1 } /* 千回百转 => 千迴百轉 */, {"千层面", "千層麵", -1 } /* 千层面 => 千層麵 */, {"千里", "千里", -1 } /* 千里 => 千里 */, {"千鎚", "千錘", -1 } /* 千鎚 => 千錘 */, {"千钧一发", "千鈞一髮", -1 } /* 千钧一发 => 千鈞一髮 */, {"千阳", "汧陽", -1 } /* 千阳 => 汧陽 */, {"卅余", "卅餘", -1 } /* 卅余 => 卅餘 */, {"升", "升", -1 } /* 升 => 升 */, {"升华", "昇華", -1 } /* 升华 => 昇華 */, {"升官", "陞官", -1 } /* 升官 => 陞官 */, {"升平", "昇平", -1 } /* 升平 => 昇平 */, {"升斗小民", "升斗小民", -1 } /* 升斗小民 => 升斗小民 */, {"升汞", "昇汞", -1 } /* 升汞 => 昇汞 */, {"升泰", "昇泰", -1 } /* 升泰 => 昇泰 */, {"升迁", "陞遷", -1 } /* 升迁 => 陞遷 */, {"升阳", "昇陽", -1 } /* 升阳 => 昇陽 */, {"半只", "半隻", -1 } /* 半只 => 半隻 */, {"半干", "半乾", -1 } /* 半干 => 半乾 */, {"半角", "半形", -1 } /* 半角 => 半形 */, {"华", "華", -1 } /* 华 => 華 */, {"华发", "華髮", -1 } /* 华发 => 華髮 */, {"华里", "華里", -1 } /* 华里 => 華里 */, {"协", "協", -1 } /* 协 => 協 */, {"卒于", "卒於", -1 } /* 卒于 => 卒於 */, {"卒发", "捽髮", -1 } /* 卒发 => 捽髮 */, {"卒悉", "窣窸", -1 } /* 卒悉 => 窣窸 */, {"卒草", "捽草", -1 } /* 卒草 => 捽草 */, {"单", "單", -1 } /* 单 => 單 */, {"单于", "單于", -1 } /* 单于 => 單于 */, {"单干", "單幹", -1 } /* 单干 => 單幹 */, {"单线", "單線", -1 } /* 单线 => 單線 */, {"卖", "賣", -1 } /* 卖 => 賣 */, {"卖奸", "賣姦", -1 } /* 卖奸 => 賣姦 */, {"卖姜", "賣薑", -1 } /* 卖姜 => 賣薑 */, {"南乔治亚", "南喬治亞", -1 } /* 南乔治亚 => 南喬治亞 */, {"南冲", "南衝", -1 } /* 南冲 => 南衝 */, {"南回", "南回", -1 } /* 南回 => 南回 */, {"南回", "南迴", -1 } /* 南回 => 南迴 */, {"南宫适", "南宮适", -1 } /* 南宫适 => 南宮适 */, {"南岳", "南嶽", -1 } /* 南岳 => 南嶽 */, {"南朝鲜", "南韓", -1 } /* 南朝鲜 => 南韓 */, {"南涌", "南涌", -1 } /* 南涌 => 南涌 */, {"南游", "南遊", -1 } /* 南游 => 南遊 */, {"南筑", "南筑", -1 } /* 南筑 => 南筑 */, {"南里", "南里", 22 } /* 南里 => 南里 */, {"博采", "博採", -1 } /* 博采 => 博採 */, {"占", "占", -1 } /* 占 => 占 */, {"占据", "佔據", -1 } /* 占据 => 佔據 */, {"占有", "佔有", -1 } /* 占有 => 佔有 */, {"占有欲", "佔有慾", -1 } /* 占有欲 => 佔有慾 */, {"占领", "佔領", -1 } /* 占领 => 佔領 */, {"卡普里亚蒂", "卡佩雅蒂", -1 } /* 卡普里亚蒂 => 卡佩雅蒂 */, {"卡特里娜", "卡特里娜", -1 } /* 卡特里娜 => 卡特里娜 */, {"卡里", "卡里", -1 } /* 卡里 => 卡里 */, {"卢", "盧", -1 } /* 卢 => 盧 */, {"卤", "鹵", -1 } /* 卤 => 鹵 */, {"卤制", "滷製", -1 } /* 卤制 => 滷製 */, {"卤化", "鹵化", -1 } /* 卤化 => 鹵化 */, {"卤味", "滷味", -1 } /* 卤味 => 滷味 */, {"卤族", "鹵族", -1 } /* 卤族 => 鹵族 */, {"卤水", "滷水", -1 } /* 卤水 => 滷水 */, {"卤汁", "滷汁", -1 } /* 卤汁 => 滷汁 */, {"卤牛肉", "滷牛肉", -1 } /* 卤牛肉 => 滷牛肉 */, {"卤簿", "鹵簿", -1 } /* 卤簿 => 鹵簿 */, {"卤素", "鹵素", -1 } /* 卤素 => 鹵素 */, {"卤肉", "滷肉", -1 } /* 卤肉 => 滷肉 */, {"卤莽", "鹵莽", -1 } /* 卤莽 => 鹵莽 */, {"卤菜", "滷菜", -1 } /* 卤菜 => 滷菜 */, {"卤蛋", "滷蛋", -1 } /* 卤蛋 => 滷蛋 */, {"卤醬", "滷醬", -1 } /* 卤醬 => 滷醬 */, {"卤钝", "鹵鈍", -1 } /* 卤钝 => 鹵鈍 */, {"卤面", "滷麵", -1 } /* 卤面 => 滷麵 */, {"卤鸡", "滷雞", -1 } /* 卤鸡 => 滷雞 */, {"卤鹅", "滷鵝", -1 } /* 卤鹅 => 滷鵝 */, {"卧", "臥", -1 } /* 卧 => 臥 */, {"卫", "衛", -1 } /* 卫 => 衛 */, {"卯上干", "卯上幹", -1 } /* 卯上干 => 卯上幹 */, {"印制", "印製", -1 } /* 印制 => 印製 */, {"却", "卻", -1 } /* 却 => 卻 */, {"卷一卷", "捲一捲", -1 } /* 卷一卷 => 捲一捲 */, {"卷上", "捲上", -1 } /* 卷上 => 捲上 */, {"卷不起", "捲不起", -1 } /* 卷不起 => 捲不起 */, {"卷个", "捲個", -1 } /* 卷个 => 捲個 */, {"卷了", "捲了", -1 } /* 卷了 => 捲了 */, {"卷伏", "捲伏", -1 } /* 卷伏 => 捲伏 */, {"卷伴", "捲伴", -1 } /* 卷伴 => 捲伴 */, {"卷住", "捲住", -1 } /* 卷住 => 捲住 */, {"卷儿", "捲兒", -1 } /* 卷儿 => 捲兒 */, {"卷入", "捲入", -1 } /* 卷入 => 捲入 */, {"卷出", "捲出", -1 } /* 卷出 => 捲出 */, {"卷到", "捲到", -1 } /* 卷到 => 捲到 */, {"卷动", "捲動", -1 } /* 卷动 => 捲動 */, {"卷包", "捲包", -1 } /* 卷包 => 捲包 */, {"卷去", "捲去", -1 } /* 卷去 => 捲去 */, {"卷发", "捲髮", -1 } /* 卷发 => 捲髮 */, {"卷向", "捲向", -1 } /* 卷向 => 捲向 */, {"卷回", "捲回", -1 } /* 卷回 => 捲回 */, {"卷图", "捲圖", -1 } /* 卷图 => 捲圖 */, {"卷土", "捲土", -1 } /* 卷土 => 捲土 */, {"卷土重来", "捲土重來", -1 } /* 卷土重来 => 捲土重來 */, {"卷好", "捲好", -1 } /* 卷好 => 捲好 */, {"卷子", "捲子", -1 } /* 卷子 => 捲子 */, {"卷射", "捲射", -1 } /* 卷射 => 捲射 */, {"卷尺", "捲尺", -1 } /* 卷尺 => 捲尺 */, {"卷帘", "捲簾", -1 } /* 卷帘 => 捲簾 */, {"卷帘格", "捲簾格", -1 } /* 卷帘格 => 捲簾格 */, {"卷开", "捲開", -1 } /* 卷开 => 捲開 */, {"卷往", "捲往", -1 } /* 卷往 => 捲往 */, {"卷得", "捲得", -1 } /* 卷得 => 捲得 */, {"卷心", "捲心", -1 } /* 卷心 => 捲心 */, {"卷心菜", "捲心菜", -1 } /* 卷心菜 => 捲心菜 */, {"卷成", "捲成", -1 } /* 卷成 => 捲成 */, {"卷扫", "捲掃", -1 } /* 卷扫 => 捲掃 */, {"卷扬机", "捲揚機", -1 } /* 卷扬机 => 捲揚機 */, {"卷拂", "捲拂", -1 } /* 卷拂 => 捲拂 */, {"卷拢", "捲攏", -1 } /* 卷拢 => 捲攏 */, {"卷旋", "捲旋", -1 } /* 卷旋 => 捲旋 */, {"卷曲", "捲曲", -1 } /* 卷曲 => 捲曲 */, {"卷来", "捲來", -1 } /* 卷来 => 捲來 */, {"卷棚", "捲棚", -1 } /* 卷棚 => 捲棚 */, {"卷款", "捲款", -1 } /* 卷款 => 捲款 */, {"卷款潜逃", "捲款潛逃", -1 } /* 卷款潜逃 => 捲款潛逃 */, {"卷毛", "捲毛", -1 } /* 卷毛 => 捲毛 */, {"卷浪", "捲浪", -1 } /* 卷浪 => 捲浪 */, {"卷浪翻波", "捲浪翻波", -1 } /* 卷浪翻波 => 捲浪翻波 */, {"卷湧", "捲湧", -1 } /* 卷湧 => 捲湧 */, {"卷滚", "捲滾", -1 } /* 卷滚 => 捲滾 */, {"卷烟", "捲煙", -1 } /* 卷烟 => 捲煙 */, {"卷烟", "捲菸", -1 } /* 卷烟 => 捲菸 */, {"卷甲重来", "捲甲重來", -1 } /* 卷甲重来 => 捲甲重來 */, {"卷碎", "捲碎", -1 } /* 卷碎 => 捲碎 */, {"卷筒", "捲筒", -1 } /* 卷筒 => 捲筒 */, {"卷纸", "捲紙", -1 } /* 卷纸 => 捲紙 */, {"卷绕", "捲繞", -1 } /* 卷绕 => 捲繞 */, {"卷缠", "捲纏", -1 } /* 卷缠 => 捲纏 */, {"卷缩", "捲縮", -1 } /* 卷缩 => 捲縮 */, {"卷罩", "捲罩", -1 } /* 卷罩 => 捲罩 */, {"卷翘", "捲翹", -1 } /* 卷翘 => 捲翹 */, {"卷腿裤", "捲腿褲", -1 } /* 卷腿裤 => 捲腿褲 */, {"卷臥", "捲臥", -1 } /* 卷臥 => 捲臥 */, {"卷至", "捲至", -1 } /* 卷至 => 捲至 */, {"卷舌", "捲舌", -1 } /* 卷舌 => 捲舌 */, {"卷舞", "捲舞", -1 } /* 卷舞 => 捲舞 */, {"卷荡", "捲蕩", -1 } /* 卷荡 => 捲蕩 */, {"卷菸", "捲菸", -1 } /* 卷菸 => 捲菸 */, {"卷落叶", "捲落葉", -1 } /* 卷落叶 => 捲落葉 */, {"卷著", "捲著", -1 } /* 卷著 => 捲著 */, {"卷衣袖", "捲衣袖", -1 } /* 卷衣袖 => 捲衣袖 */, {"卷袖", "捲袖", -1 } /* 卷袖 => 捲袖 */, {"卷袭", "捲襲", -1 } /* 卷袭 => 捲襲 */, {"卷裹", "捲裹", -1 } /* 卷裹 => 捲裹 */, {"卷走", "捲走", -1 } /* 卷走 => 捲走 */, {"卷起", "捲起", -1 } /* 卷起 => 捲起 */, {"卷身", "捲身", -1 } /* 卷身 => 捲身 */, {"卷轴", "捲軸", -1 } /* 卷轴 => 捲軸 */, {"卷过", "捲過", -1 } /* 卷过 => 捲過 */, {"卷进", "捲進", -1 } /* 卷进 => 捲進 */, {"卷逃", "捲逃", -1 } /* 卷逃 => 捲逃 */, {"卷钢", "捲鋼", -1 } /* 卷钢 => 捲鋼 */, {"卷铺盖", "捲鋪蓋", -1 } /* 卷铺盖 => 捲鋪蓋 */, {"卷须", "捲鬚", -1 } /* 卷须 => 捲鬚 */, {"卷风", "捲風", -1 } /* 卷风 => 捲風 */, {"卷飞", "捲飛", -1 } /* 卷飞 => 捲飛 */, {"厂", "廠", -1 } /* 厂 => 廠 */, {"厅", "廳", -1 } /* 厅 => 廳 */, {"历", "歷", -1 } /* 历 => 歷 */, {"历书", "曆書", -1 } /* 历书 => 曆書 */, {"历数", "曆數", -1 } /* 历数 => 曆數 */, {"历日", "曆日", -1 } /* 历日 => 曆日 */, {"历月", "曆月", -1 } /* 历月 => 曆月 */, {"历法", "曆法", -1 } /* 历法 => 曆法 */, {"历落", "曆落", -1 } /* 历落 => 曆落 */, {"厉", "厲", -1 } /* 厉 => 厲 */, {"压", "壓", -1 } /* 压 => 壓 */, {"压咸", "壓鹹", -1 } /* 压咸 => 壓鹹 */, {"压线", "壓線", -1 } /* 压线 => 壓線 */, {"压面棍", "壓麵棍", -1 } /* 压面棍 => 壓麵棍 */, {"厌", "厭", -1 } /* 厌 => 厭 */, {"厍", "厙", -1 } /* 厍 => 厙 */, {"厐", "龎", -1 } /* 厐 => 龎 */, {"厕", "廁", -1 } /* 厕 => 廁 */, {"厕所", "廁所", -1 } /* 厕所 => 廁所 */, {"厕足其间", "廁足其間", -1 } /* 厕足其间 => 廁足其間 */, {"厘", "厘", -1 } /* 厘 => 厘 */, {"厘出", "釐出", -1 } /* 厘出 => 釐出 */, {"厘定", "釐定", -1 } /* 厘定 => 釐定 */, {"厘正", "釐正", -1 } /* 厘正 => 釐正 */, {"厘清", "釐清", -1 } /* 厘清 => 釐清 */, {"厘米", "厘米", -1 } /* 厘米 => 厘米 */, {"厘米", "釐米", -1 } /* 厘米 => 釐米 */, {"厘订", "釐訂", -1 } /* 厘订 => 釐訂 */, {"厢", "廂", -1 } /* 厢 => 廂 */, {"厣", "厴", -1 } /* 厣 => 厴 */, {"厦", "廈", -1 } /* 厦 => 廈 */, {"厨", "廚", -1 } /* 厨 => 廚 */, {"厨余", "廚餘", -1 } /* 厨余 => 廚餘 */, {"厩", "廄", -1 } /* 厩 => 廄 */, {"厮", "廝", -1 } /* 厮 => 廝 */, {"去卷", "去捲", -1 } /* 去卷 => 去捲 */, {"去壳", "去殼", -1 } /* 去壳 => 去殼 */, {"去干", "去幹", 23 } /* 去干 => 去幹 */, {"县", "縣", -1 } /* 县 => 縣 */, {"县志", "縣誌", -1 } /* 县志 => 縣誌 */, {"叁", "叄", -1 } /* 叁 => 叄 */, {"参", "參", -1 } /* 参 => 參 */, {"参绥", "蔘綏", -1 } /* 参绥 => 蔘綏 */, {"参观团", "參觀團", -1 } /* 参观团 => 參觀團 */, {"参观团体", "參觀團體", -1 } /* 参观团体 => 參觀團體 */, {"叆", "靉", -1 } /* 叆 => 靉 */, {"叇", "靆", -1 } /* 叇 => 靆 */, {"又云", "又云", -1 } /* 又云 => 又云 */, {"又咸", "又鹹", -1 } /* 又咸 => 又鹹 */, {"又干", "又幹", 24 } /* 又干 => 又幹 */, {"又干又", "又乾又", -1 } /* 又干又 => 又乾又 */, {"又干又硬", "又乾又硬", -1 } /* 又干又硬 => 又乾又硬 */, {"又松", "又鬆", -1 } /* 又松 => 又鬆 */, {"双", "雙", -1 } /* 双 => 雙 */, {"双并", "雙併", -1 } /* 双并 => 雙併 */, {"双折", "雙摺", -1 } /* 双折 => 雙摺 */, {"双线", "雙線", -1 } /* 双线 => 雙線 */, {"反冲", "反衝", -1 } /* 反冲 => 反衝 */, {"反卷", "反捲", -1 } /* 反卷 => 反捲 */, {"反反复复", "反反覆覆", -1 } /* 反反复复 => 反反覆覆 */, {"反复", "反復", -1 } /* 反复 => 反復 */, {"反复", "反覆", -1 } /* 反复 => 反覆 */, {"反斗", "反斗", -1 } /* 反斗 => 反斗 */, {"发", "發", -1 } /* 发 => 發 */, {"发丝", "髮絲", -1 } /* 发丝 => 髮絲 */, {"发乱钗横", "髮亂釵橫", -1 } /* 发乱钗横 => 髮亂釵橫 */, {"发乳", "髮乳", -1 } /* 发乳 => 髮乳 */, {"发于", "發於", -1 } /* 发于 => 發於 */, {"发冠", "髮冠", -1 } /* 发冠 => 髮冠 */, {"发卷", "髮捲", -1 } /* 发卷 => 髮捲 */, {"发型", "髮型", -1 } /* 发型 => 髮型 */, {"发夹", "髮夾", -1 } /* 发夹 => 髮夾 */, {"发套", "髮套", -1 } /* 发套 => 髮套 */, {"发如飞蓬", "髮如飛蓬", -1 } /* 发如飞蓬 => 髮如飛蓬 */, {"发妻", "髮妻", -1 } /* 发妻 => 髮妻 */, {"发姐", "髮姐", -1 } /* 发姐 => 髮姐 */, {"发布", "發佈", -1 } /* 发布 => 發佈 */, {"发带", "髮帶", -1 } /* 发带 => 髮帶 */, {"发干", "發乾", -1 } /* 发干 => 發乾 */, {"发廊", "髮廊", -1 } /* 发廊 => 髮廊 */, {"发式", "髮式", -1 } /* 发式 => 髮式 */, {"发指", "髮指", -1 } /* 发指 => 髮指 */, {"发指令", "發指令", -1 } /* 发指令 => 發指令 */, {"发挽", "發挽", -1 } /* 发挽 => 發挽 */, {"发挽双髻", "髮挽雙髻", -1 } /* 发挽双髻 => 髮挽雙髻 */, {"发捲", "髮捲", -1 } /* 发捲 => 髮捲 */, {"发束", "髮束", -1 } /* 发束 => 髮束 */, {"发根", "髮根", -1 } /* 发根 => 髮根 */, {"发梢", "髮梢", -1 } /* 发梢 => 髮梢 */, {"发梳", "髮梳", -1 } /* 发梳 => 髮梳 */, {"发毛", "髮毛", -1 } /* 发毛 => 髮毛 */, {"发油", "髮油", -1 } /* 发油 => 髮油 */, {"发状", "髮狀", -1 } /* 发状 => 髮狀 */, {"发皓", "髮皓", -1 } /* 发皓 => 髮皓 */, {"发短心长", "髮短心長", -1 } /* 发短心长 => 髮短心長 */, {"发禁", "髮禁", -1 } /* 发禁 => 髮禁 */, {"发笺", "髮箋", -1 } /* 发笺 => 髮箋 */, {"发箍", "髮箍", -1 } /* 发箍 => 髮箍 */, {"发簪", "髮簪", -1 } /* 发簪 => 髮簪 */, {"发结", "髮結", -1 } /* 发结 => 髮結 */, {"发缨", "髮纓", -1 } /* 发缨 => 髮纓 */, {"发网", "髮網", -1 } /* 发网 => 髮網 */, {"发肤", "髮膚", -1 } /* 发肤 => 髮膚 */, {"发胶", "髮膠", -1 } /* 发胶 => 髮膠 */, {"发色", "髮色", -1 } /* 发色 => 髮色 */, {"发菜", "髮菜", -1 } /* 发菜 => 髮菜 */, {"发蜡", "髮蠟", -1 } /* 发蜡 => 髮蠟 */, {"发表欲", "發表慾", -1 } /* 发表欲 => 發表慾 */, {"发质", "髮質", -1 } /* 发质 => 髮質 */, {"发辫", "髮辮", -1 } /* 发辫 => 髮辮 */, {"发醅", "醱醅", -1 } /* 发醅 => 醱醅 */, {"发针", "髮針", -1 } /* 发针 => 髮針 */, {"发钗", "髮釵", -1 } /* 发钗 => 髮釵 */, {"发长", "髮長", -1 } /* 发长 => 髮長 */, {"发际", "髮際", -1 } /* 发际 => 髮際 */, {"发雕", "髮雕", -1 } /* 发雕 => 髮雕 */, {"发霜", "髮霜", -1 } /* 发霜 => 髮霜 */, {"发面", "發麵", -1 } /* 发面 => 發麵 */, {"发须俱", "髮鬚俱", -1 } /* 发须俱 => 髮鬚俱 */, {"发须已", "髮鬚已", -1 } /* 发须已 => 髮鬚已 */, {"发须斑", "髮鬚斑", -1 } /* 发须斑 => 髮鬚斑 */, {"发须皆", "髮鬚皆", -1 } /* 发须皆 => 髮鬚皆 */, {"发须都", "髮鬚都", -1 } /* 发须都 => 髮鬚都 */, {"发饰", "髮飾", -1 } /* 发饰 => 髮飾 */, {"发香", "髮香", -1 } /* 发香 => 髮香 */, {"发髯", "髮髯", -1 } /* 发髯 => 髮髯 */, {"发髻", "髮髻", -1 } /* 发髻 => 髮髻 */, {"发鬓", "髮鬢", -1 } /* 发鬓 => 髮鬢 */, {"取舍", "取捨", -1 } /* 取舍 => 取捨 */, {"取谛", "取締", -1 } /* 取谛 => 取締 */, {"受人之托", "受人之託", -1 } /* 受人之托 => 受人之託 */, {"受托", "受託", -1 } /* 受托 => 受託 */, {"变", "變", -1 } /* 变 => 變 */, {"变征", "變徵", -1 } /* 变征 => 變徵 */, {"变松", "變鬆", -1 } /* 变松 => 變鬆 */, {"变量", "變數", -1 } /* 变量 => 變數 */, {"叙", "敘", -1 } /* 叙 => 敘 */, {"叙说着", "敘說著", -1 } /* 叙说着 => 敘說著 */, {"叠", "疊", -1 } /* 叠 => 疊 */, {"口干", "口乾", -1 } /* 口干 => 口乾 */, {"口干一", "口幹一", -1 } /* 口干一 => 口幹一 */, {"口干什", "口幹什", -1 } /* 口干什 => 口幹什 */, {"口干员", "口幹員", -1 } /* 口干员 => 口幹員 */, {"口干掉", "口幹掉", -1 } /* 口干掉 => 口幹掉 */, {"口干活", "口幹活", -1 } /* 口干活 => 口幹活 */, {"口干著", "口幹著", -1 } /* 口干著 => 口幹著 */, {"口干这", "口幹這", -1 } /* 口干这 => 口幹這 */, {"口干那", "口幹那", -1 } /* 口干那 => 口幹那 */, {"古云", "古云", -1 } /* 古云 => 古云 */, {"古迹", "古蹟", -1 } /* 古迹 => 古蹟 */, {"只", "隻", 25 } /* 只 => 隻 */, {"只余", "只餘", -1 } /* 只余 => 只餘 */, {"只声不出", "隻聲不出", -1 } /* 只声不出 => 隻聲不出 */, {"只字", "隻字", -1 } /* 只字 => 隻字 */, {"只手", "隻手", -1 } /* 只手 => 隻手 */, {"只言片字", "隻言片字", -1 } /* 只言片字 => 隻言片字 */, {"只言片语", "隻言片語", -1 } /* 只言片语 => 隻言片語 */, {"只身", "隻身", -1 } /* 只身 => 隻身 */, {"叮当", "叮噹", -1 } /* 叮当 => 叮噹 */, {"可余", "可餘", -1 } /* 可余 => 可餘 */, {"可干制", "可乾製", -1 } /* 可干制 => 可乾製 */, {"可干拭", "可乾拭", -1 } /* 可干拭 => 可乾拭 */, {"可干饮", "可乾飲", -1 } /* 可干饮 => 可乾飲 */, {"可怜虫", "可憐虫", -1 } /* 可怜虫 => 可憐虫 */, {"可执行文件", "執行檔", -1 } /* 可执行文件 => 執行檔 */, {"可紧可松", "可緊可鬆", -1 } /* 可紧可松 => 可緊可鬆 */, {"可赞", "可讚", -1 } /* 可赞 => 可讚 */, {"可采", "可採", -1 } /* 可采 => 可採 */, {"台凳", "檯凳", -1 } /* 台凳 => 檯凳 */, {"台制", "台製", -1 } /* 台制 => 台製 */, {"台历", "檯曆", -1 } /* 台历 => 檯曆 */, {"台子", "檯子", -1 } /* 台子 => 檯子 */, {"台布", "檯布", -1 } /* 台布 => 檯布 */, {"台布下", "台佈下", -1 } /* 台布下 => 台佈下 */, {"台布告", "台佈告", -1 } /* 台布告 => 台佈告 */, {"台布满", "台佈滿", -1 } /* 台布满 => 台佈滿 */, {"台布置", "台佈置", -1 } /* 台布置 => 台佈置 */, {"台布署", "台佈署", -1 } /* 台布署 => 台佈署 */, {"台布道", "台佈道", -1 } /* 台布道 => 台佈道 */, {"台布防", "台佈防", -1 } /* 台布防 => 台佈防 */, {"台干", "台幹", -1 } /* 台干 => 台幹 */, {"台湾制", "台灣製", 26 } /* 台湾制 => 台灣製 */, {"台灯", "檯燈", -1 } /* 台灯 => 檯燈 */, {"台球", "撞球", -1 } /* 台球 => 撞球 */, {"台球", "檯球", -1 } /* 台球 => 檯球 */, {"台钟", "檯鐘", -1 } /* 台钟 => 檯鐘 */, {"台面", "檯面", -1 } /* 台面 => 檯面 */, {"台风", "颱風", -1 } /* 台风 => 颱風 */, {"史迹", "史蹟", -1 } /* 史迹 => 史蹟 */, {"右冲", "右衝", -1 } /* 右冲 => 右衝 */, {"叶", "葉", -1 } /* 叶 => 葉 */, {"叶恭弘", "叶恭弘", -1 } /* 叶恭弘 => 叶恭弘 */, {"叶音", "叶音", -1 } /* 叶音 => 叶音 */, {"叶韵", "叶韻", -1 } /* 叶韵 => 叶韻 */, {"号", "號", -1 } /* 号 => 號 */, {"号志", "號誌", -1 } /* 号志 => 號誌 */, {"叹", "嘆", -1 } /* 叹 => 嘆 */, {"叹为", "歎為", -1 } /* 叹为 => 歎為 */, {"叹吁", "嘆吁", -1 } /* 叹吁 => 嘆吁 */, {"叹服", "歎服", -1 } /* 叹服 => 歎服 */, {"叹羨", "歎羨", -1 } /* 叹羨 => 歎羨 */, {"叹赏", "歎賞", -1 } /* 叹赏 => 歎賞 */, {"叼扰", "叨擾", -1 } /* 叼扰 => 叨擾 */, {"叼难", "刁難", -1 } /* 叼难 => 刁難 */, {"叽", "嘰", -1 } /* 叽 => 嘰 */, {"吁", "籲", -1 } /* 吁 => 籲 */, {"吁了", "吁了", -1 } /* 吁了 => 吁了 */, {"吁俞", "吁俞", -1 } /* 吁俞 => 吁俞 */, {"吁叹", "吁嘆", -1 } /* 吁叹 => 吁嘆 */, {"吁吁", "吁吁", -1 } /* 吁吁 => 吁吁 */, {"吁咈", "吁咈", -1 } /* 吁咈 => 吁咈 */, {"吁嗟", "吁嗟", -1 } /* 吁嗟 => 吁嗟 */, {"吁嘘", "吁噓", -1 } /* 吁嘘 => 吁噓 */, {"吁气", "吁氣", -1 } /* 吁气 => 吁氣 */, {"吁求", "籲求", -1 } /* 吁求 => 籲求 */, {"吁请", "籲請", -1 } /* 吁请 => 籲請 */, {"吃完面", "吃完麵", -1 } /* 吃完面 => 吃完麵 */, {"吃干", "吃乾", -1 } /* 吃干 => 吃乾 */, {"吃干了", "吃乾了", -1 } /* 吃干了 => 吃乾了 */, {"吃药", "吃藥", -1 } /* 吃药 => 吃藥 */, {"吃过面", "吃過麵", -1 } /* 吃过面 => 吃過麵 */, {"吃面", "吃麵", -1 } /* 吃面 => 吃麵 */, {"各吊", "各吊", -1 } /* 各吊 => 各吊 */, {"各干各", "各幹各", -1 } /* 各干各 => 各幹各 */, {"合伙", "合夥", -1 } /* 合伙 => 合夥 */, {"合并", "合併", 27 } /* 合并 => 合併 */, {"合府", "闔府", -1 } /* 合府 => 闔府 */, {"合眼", "闔眼", -1 } /* 合眼 => 闔眼 */, {"合着", "合著", -1 } /* 合着 => 合著 */, {"合着者", "合著者", -1 } /* 合着者 => 合著者 */, {"合第", "闔第", -1 } /* 合第 => 闔第 */, {"合阳", "郃陽", -1 } /* 合阳 => 郃陽 */, {"吉佔", "吉占", -1 } /* 吉佔 => 吉占 */, {"吉尔吉斯斯坦", "吉爾吉斯", -1 } /* 吉尔吉斯斯坦 => 吉爾吉斯 */, {"吉里", "吉里", -1 } /* 吉里 => 吉里 */, {"吊", "弔", -1 } /* 吊 => 弔 */, {"吊上", "吊上", -1 } /* 吊上 => 吊上 */, {"吊下", "吊下", -1 } /* 吊下 => 吊下 */, {"吊到", "吊到", -1 } /* 吊到 => 吊到 */, {"吊去", "吊去", -1 } /* 吊去 => 吊去 */, {"吊取", "吊取", -1 } /* 吊取 => 吊取 */, {"吊取", "弔取", -1 } /* 吊取 => 弔取 */, {"吊吊", "吊吊", -1 } /* 吊吊 => 吊吊 */, {"吊嗓", "吊嗓", -1 } /* 吊嗓 => 吊嗓 */, {"吊好", "吊好", -1 } /* 吊好 => 吊好 */, {"吊子", "吊子", -1 } /* 吊子 => 吊子 */, {"吊带", "吊帶", -1 } /* 吊带 => 吊帶 */, {"吊带裤", "吊帶褲", -1 } /* 吊带裤 => 吊帶褲 */, {"吊床", "吊床", -1 } /* 吊床 => 吊床 */, {"吊得", "吊得", -1 } /* 吊得 => 吊得 */, {"吊挂", "吊掛", -1 } /* 吊挂 => 吊掛 */, {"吊挂着", "吊掛著", -1 } /* 吊挂着 => 吊掛著 */, {"吊杆", "吊桿", -1 } /* 吊杆 => 吊桿 */, {"吊架", "吊架", -1 } /* 吊架 => 吊架 */, {"吊桥", "吊橋", -1 } /* 吊桥 => 吊橋 */, {"吊桶", "吊桶", -1 } /* 吊桶 => 吊桶 */, {"吊死", "吊死", -1 } /* 吊死 => 吊死 */, {"吊死问疾", "弔死問疾", -1 } /* 吊死问疾 => 弔死問疾 */, {"吊灯", "吊燈", -1 } /* 吊灯 => 吊燈 */, {"吊环", "吊環", -1 } /* 吊环 => 吊環 */, {"吊盘", "吊盤", -1 } /* 吊盘 => 吊盤 */, {"吊着", "吊著", -1 } /* 吊着 => 吊著 */, {"吊系", "吊繫", -1 } /* 吊系 => 吊繫 */, {"吊索", "吊索", -1 } /* 吊索 => 吊索 */, {"吊膀", "吊膀", -1 } /* 吊膀 => 吊膀 */, {"吊袜", "吊襪", -1 } /* 吊袜 => 吊襪 */, {"吊装", "吊裝", -1 } /* 吊装 => 吊裝 */, {"吊裤", "吊褲", -1 } /* 吊裤 => 吊褲 */, {"吊裤带", "吊褲帶", -1 } /* 吊裤带 => 吊褲帶 */, {"吊走", "吊走", -1 } /* 吊走 => 吊走 */, {"吊起", "吊起", -1 } /* 吊起 => 吊起 */, {"吊车", "吊車", -1 } /* 吊车 => 吊車 */, {"吊钩", "吊鉤", -1 } /* 吊钩 => 吊鉤 */, {"吊销", "吊銷", -1 } /* 吊销 => 吊銷 */, {"同", "同", -1 } /* 同 => 同 */, {"同于", "同於", -1 } /* 同于 => 同於 */, {"同伙", "同夥", -1 } /* 同伙 => 同夥 */, {"同余", "同餘", -1 } /* 同余 => 同餘 */, {"同游", "同遊", -1 } /* 同游 => 同遊 */, {"名缰利锁", "名韁利鎖", -1 } /* 名缰利锁 => 名韁利鎖 */, {"名迹", "名蹟", -1 } /* 名迹 => 名蹟 */, {"名采", "名采", -1 } /* 名采 => 名采 */, {"后", "後", -1 } /* 后 => 後 */, {"后于", "後於", -1 } /* 后于 => 後於 */, {"后冠", "后冠", -1 } /* 后冠 => 后冠 */, {"后制", "後製", -1 } /* 后制 => 後製 */, {"后北街", "后北街", -1 } /* 后北街 => 后北街 */, {"后发座", "后髮座", -1 } /* 后发座 => 后髮座 */, {"后土", "后土", -1 } /* 后土 => 后土 */, {"后奸", "後姦", -1 } /* 后奸 => 後姦 */, {"后妃", "后妃", -1 } /* 后妃 => 后妃 */, {"后安路", "后安路", -1 } /* 后安路 => 后安路 */, {"后平路", "后平路", -1 } /* 后平路 => 后平路 */, {"后座", "后座", -1 } /* 后座 => 后座 */, {"后梁", "後樑", -1 } /* 后梁 => 後樑 */, {"后海湾", "后海灣", -1 } /* 后海湾 => 后海灣 */, {"后稷", "后稷", -1 } /* 后稷 => 后稷 */, {"后缀", "尾碼", -1 } /* 后缀 => 尾碼 */, {"后羿", "后羿", -1 } /* 后羿 => 后羿 */, {"后街", "后街", -1 } /* 后街 => 后街 */, {"后角", "后角", -1 } /* 后角 => 后角 */, {"后里", "后里", -1 } /* 后里 => 后里 */, {"吐干", "吐乾", -1 } /* 吐干 => 吐乾 */, {"向午", "晌午", -1 } /* 向午 => 晌午 */, {"向后冲", "向後衝", -1 } /* 向后冲 => 向後衝 */, {"向外冲", "向外衝", -1 } /* 向外冲 => 向外衝 */, {"向导", "嚮導", -1 } /* 向导 => 嚮導 */, {"向应", "嚮應", -1 } /* 向应 => 嚮應 */, {"向往", "嚮往", -1 } /* 向往 => 嚮往 */, {"向日", "嚮日", -1 } /* 向日 => 嚮日 */, {"向迩", "嚮邇", -1 } /* 向迩 => 嚮邇 */, {"向里面冲", "向裡面衝", -1 } /* 向里面冲 => 向裡面衝 */, {"吓", "嚇", -1 } /* 吓 => 嚇 */, {"吕", "呂", -1 } /* 吕 => 呂 */, {"吕后", "呂后", -1 } /* 吕后 => 呂后 */, {"吗", "嗎", -1 } /* 吗 => 嗎 */, {"吞咽", "吞嚥", -1 } /* 吞咽 => 吞嚥 */, {"吞并", "吞併", -1 } /* 吞并 => 吞併 */, {"吟游", "吟遊", -1 } /* 吟游 => 吟遊 */, {"吣", "唚", -1 } /* 吣 => 唚 */, {"吧台", "吧檯", -1 } /* 吧台 => 吧檯 */, {"吨", "噸", -1 } /* 吨 => 噸 */, {"含蕴", "含蘊", -1 } /* 含蕴 => 含蘊 */, {"听", "聽", -1 } /* 听 => 聽 */, {"听着", "聽著", -1 } /* 听着 => 聽著 */, {"吮干", "吮乾", -1 } /* 吮干 => 吮乾 */, {"启", "啟", -1 } /* 启 => 啟 */, {"启事", "啟事", -1 } /* 启事 => 啟事 */, {"启人疑窦", "啟人疑竇", -1 } /* 启人疑窦 => 啟人疑竇 */, {"启动", "啟動", -1 } /* 启动 => 啟動 */, {"启发", "啟發", -1 } /* 启发 => 啟發 */, {"启口", "啟口", -1 } /* 启口 => 啟口 */, {"启土", "啟土", -1 } /* 启土 => 啟土 */, {"启封", "啟封", -1 } /* 启封 => 啟封 */, {"启开", "啟開", -1 } /* 启开 => 啟開 */, {"启德机场", "啟德機場", -1 } /* 启德机场 => 啟德機場 */, {"启报", "啟報", -1 } /* 启报 => 啟報 */, {"启明", "啟明", -1 } /* 启明 => 啟明 */, {"启用", "啟用", -1 } /* 启用 => 啟用 */, {"启示", "啟示", -1 } /* 启示 => 啟示 */, {"启程", "啟程", -1 } /* 启程 => 啟程 */, {"启者", "啟者", -1 } /* 启者 => 啟者 */, {"启聪", "啟聰", -1 } /* 启聪 => 啟聰 */, {"启航", "啟航", -1 } /* 启航 => 啟航 */, {"启英工商", "啟英工商", -1 } /* 启英工商 => 啟英工商 */, {"启蒙", "啟蒙", -1 } /* 启蒙 => 啟蒙 */, {"启衅", "啟釁", -1 } /* 启衅 => 啟釁 */, {"启行", "啟行", -1 } /* 启行 => 啟行 */, {"启运", "啟運", -1 } /* 启运 => 啟運 */, {"启迪", "啟迪", -1 } /* 启迪 => 啟迪 */, {"启齿", "啟齒", -1 } /* 启齿 => 啟齒 */, {"吴", "吳", -1 } /* 吴 => 吳 */, {"吸干", "吸乾", -1 } /* 吸干 => 吸乾 */, {"吸得干干", "吸得乾乾", -1 } /* 吸得干干 => 吸得乾乾 */, {"吹卷", "吹捲", -1 } /* 吹卷 => 吹捲 */, {"吹发", "吹髮", -1 } /* 吹发 => 吹髮 */, {"吹干", "吹乾", -1 } /* 吹干 => 吹乾 */, {"吹胡", "吹鬍", -1 } /* 吹胡 => 吹鬍 */, {"吹须", "吹鬚", -1 } /* 吹须 => 吹鬚 */, {"呆", "獃", -1 } /* 呆 => 獃 */, {"呆致", "呆致", -1 } /* 呆致 => 呆致 */, {"呆致致", "呆緻緻", -1 } /* 呆致致 => 呆緻緻 */, {"告侥", "告饒", -1 } /* 告侥 => 告饒 */, {"呐", "吶", -1 } /* 呐 => 吶 */, {"呒", "嘸", -1 } /* 呒 => 嘸 */, {"呓", "囈", -1 } /* 呓 => 囈 */, {"呕", "嘔", -1 } /* 呕 => 嘔 */, {"呖", "嚦", -1 } /* 呖 => 嚦 */, {"呗", "唄", -1 } /* 呗 => 唄 */, {"员", "員", -1 } /* 员 => 員 */, {"呙", "咼", -1 } /* 呙 => 咼 */, {"呛", "嗆", -1 } /* 呛 => 嗆 */, {"呜", "嗚", -1 } /* 呜 => 嗚 */, {"周", "周", -1 } /* 周 => 周 */, {"周杰伦", "周杰倫", -1 } /* 周杰伦 => 周杰倫 */, {"周线", "週線", -1 } /* 周线 => 週線 */, {"周而复始", "周而複始", -1 } /* 周而复始 => 周而複始 */, {"周至", "盩厔", -1 } /* 周至 => 盩厔 */, {"周采诗", "周采詩", -1 } /* 周采诗 => 周采詩 */, {"呷干", "呷乾", -1 } /* 呷干 => 呷乾 */, {"呼卷", "呼捲", -1 } /* 呼卷 => 呼捲 */, {"呼吁", "呼籲", -1 } /* 呼吁 => 呼籲 */, {"咀咽", "咀嚥", -1 } /* 咀咽 => 咀嚥 */, {"和田", "和闐", -1 } /* 和田 => 和闐 */, {"和面", "和麵", -1 } /* 和面 => 和麵 */, {"咎征", "咎徵", -1 } /* 咎征 => 咎徵 */, {"咏", "詠", -1 } /* 咏 => 詠 */, {"咏叹", "詠歎", -1 } /* 咏叹 => 詠歎 */, {"咙", "嚨", -1 } /* 咙 => 嚨 */, {"咛", "嚀", -1 } /* 咛 => 嚀 */, {"咝", "噝", -1 } /* 咝 => 噝 */, {"咤", "吒", -1 } /* 咤 => 吒 */, {"咨商", "諮商", -1 } /* 咨商 => 諮商 */, {"咨议", "諮議", -1 } /* 咨议 => 諮議 */, {"咨询", "諮詢", -1 } /* 咨询 => 諮詢 */, {"咨诹", "諮諏", -1 } /* 咨诹 => 諮諏 */, {"咨谋", "諮謀", -1 } /* 咨谋 => 諮謀 */, {"咬姜呷醋", "咬薑呷醋", -1 } /* 咬姜呷醋 => 咬薑呷醋 */, {"咬字不准", "咬字不準", -1 } /* 咬字不准 => 咬字不準 */, {"咸卤", "鹹鹵", -1 } /* 咸卤 => 鹹鹵 */, {"咸味", "鹹味", -1 } /* 咸味 => 鹹味 */, {"咸咸", "鹹鹹", -1 } /* 咸咸 => 鹹鹹 */, {"咸土", "鹹土", -1 } /* 咸土 => 鹹土 */, {"咸度", "鹹度", -1 } /* 咸度 => 鹹度 */, {"咸得", "鹹得", -1 } /* 咸得 => 鹹得 */, {"咸水", "鹹水", -1 } /* 咸水 => 鹹水 */, {"咸汤", "鹹湯", -1 } /* 咸汤 => 鹹湯 */, {"咸海", "鹹海", -1 } /* 咸海 => 鹹海 */, {"咸淡", "鹹淡", -1 } /* 咸淡 => 鹹淡 */, {"咸湖", "鹹湖", -1 } /* 咸湖 => 鹹湖 */, {"咸湿", "鹹濕", -1 } /* 咸湿 => 鹹濕 */, {"咸猪", "鹹豬", -1 } /* 咸猪 => 鹹豬 */, {"咸猪肉", "鹹豬肉", -1 } /* 咸猪肉 => 鹹豬肉 */, {"咸的", "鹹的", -1 } /* 咸的 => 鹹的 */, {"咸类", "鹹類", -1 } /* 咸类 => 鹹類 */, {"咸肉", "鹹肉", -1 } /* 咸肉 => 鹹肉 */, {"咸菜", "鹹菜", -1 } /* 咸菜 => 鹹菜 */, {"咸蛋", "鹹蛋", -1 } /* 咸蛋 => 鹹蛋 */, {"咸鱼", "鹹魚", -1 } /* 咸鱼 => 鹹魚 */, {"咸鸭", "鹹鴨", -1 } /* 咸鸭 => 鹹鴨 */, {"咸鸭蛋", "鹹鴨蛋", -1 } /* 咸鸭蛋 => 鹹鴨蛋 */, {"咽一口", "嚥一口", -1 } /* 咽一口 => 嚥一口 */, {"咽下", "嚥下", -1 } /* 咽下 => 嚥下 */, {"咽不下", "嚥不下", -1 } /* 咽不下 => 嚥不下 */, {"咽不了", "嚥不了", -1 } /* 咽不了 => 嚥不了 */, {"咽了", "嚥了", -1 } /* 咽了 => 嚥了 */, {"咽住", "嚥住", -1 } /* 咽住 => 嚥住 */, {"咽入", "嚥入", -1 } /* 咽入 => 嚥入 */, {"咽口", "嚥口", 28 } /* 咽口 => 嚥口 */, {"咽唾", "嚥唾", -1 } /* 咽唾 => 嚥唾 */, {"咽嚼", "嚥嚼", -1 } /* 咽嚼 => 嚥嚼 */, {"咽回", "嚥回", -1 } /* 咽回 => 嚥回 */, {"咽得下", "嚥得下", -1 } /* 咽得下 => 嚥得下 */, {"咽气", "嚥氣", -1 } /* 咽气 => 嚥氣 */, {"咽着", "嚥著", -1 } /* 咽着 => 嚥著 */, {"咽苦吞甘", "嚥苦吞甘", -1 } /* 咽苦吞甘 => 嚥苦吞甘 */, {"咽食", "嚥食", -1 } /* 咽食 => 嚥食 */, {"哀启", "哀啟", -1 } /* 哀启 => 哀啟 */, {"品尝", "品嚐", -1 } /* 品尝 => 品嚐 */, {"品汇", "品彙", -1 } /* 品汇 => 品彙 */, {"哄", "哄", -1 } /* 哄 => 哄 */, {"哄动", "鬨動", -1 } /* 哄动 => 鬨動 */, {"哆罗哆嗦", "哆囉哆嗦", -1 } /* 哆罗哆嗦 => 哆囉哆嗦 */, {"哈博罗内", "嘉柏隆里", -1 } /* 哈博罗内 => 嘉柏隆里 */, {"哈卡里", "哈卡里", -1 } /* 哈卡里 => 哈卡里 */, {"哈罗", "哈囉", -1 } /* 哈罗 => 哈囉 */, {"哈萨克斯坦", "哈薩克", -1 } /* 哈萨克斯坦 => 哈薩克 */, {"哈里", "哈里", -1 } /* 哈里 => 哈里 */, {"哈里斯", "哈里斯", -1 } /* 哈里斯 => 哈里斯 */, {"哈里里", "哈里里", -1 } /* 哈里里 => 哈里里 */, {"响", "響", -1 } /* 响 => 響 */, {"响于", "響於", -1 } /* 响于 => 響於 */, {"响当", "響噹", -1 } /* 响当 => 響噹 */, {"哑", "啞", -1 } /* 哑 => 啞 */, {"哒", "噠", -1 } /* 哒 => 噠 */, {"哓", "嘵", -1 } /* 哓 => 嘵 */, {"哔", "嗶", -1 } /* 哔 => 嗶 */, {"哕", "噦", -1 } /* 哕 => 噦 */, {"哗", "嘩", -1 } /* 哗 => 嘩 */, {"哙", "噲", -1 } /* 哙 => 噲 */, {"哜", "嚌", -1 } /* 哜 => 嚌 */, {"哝", "噥", -1 } /* 哝 => 噥 */, {"哟", "喲", -1 } /* 哟 => 喲 */, {"哥里", "哥里", -1 } /* 哥里 => 哥里 */, {"哪一出", "哪一齣", -1 } /* 哪一出 => 哪一齣 */, {"哪吒", "哪吒", -1 } /* 哪吒 => 哪吒 */, {"哭脏", "哭髒", -1 } /* 哭脏 => 哭髒 */, {"哲云", "哲云", -1 } /* 哲云 => 哲云 */, {"唇干", "唇乾", -1 } /* 唇干 => 唇乾 */, {"唇燥舌干", "唇燥舌乾", -1 } /* 唇燥舌干 => 唇燥舌乾 */, {"唛", "嘜", -1 } /* 唛 => 嘜 */, {"唝", "嗊", -1 } /* 唝 => 嗊 */, {"唠", "嘮", -1 } /* 唠 => 嘮 */, {"唠叼", "嘮叨", -1 } /* 唠叼 => 嘮叨 */, {"唡", "啢", -1 } /* 唡 => 啢 */, {"唢", "嗩", -1 } /* 唢 => 嗩 */, {"唤", "喚", -1 } /* 唤 => 喚 */, {"唱游", "唱遊", -1 } /* 唱游 => 唱遊 */, {"唾面自干", "唾面自乾", -1 } /* 唾面自干 => 唾面自乾 */, {"商历", "商曆", -1 } /* 商历 => 商曆 */, {"商洛", "商雒", -1 } /* 商洛 => 商雒 */, {"商铺", "商舖", -1 } /* 商铺 => 商舖 */, {"啧", "嘖", -1 } /* 啧 => 嘖 */, {"啬", "嗇", -1 } /* 啬 => 嗇 */, {"啭", "囀", -1 } /* 啭 => 囀 */, {"啮", "嚙", -1 } /* 啮 => 嚙 */, {"啰", "囉", -1 } /* 啰 => 囉 */, {"啴", "嘽", -1 } /* 啴 => 嘽 */, {"啷当", "啷噹", -1 } /* 啷当 => 啷噹 */, {"啸", "嘯", -1 } /* 啸 => 嘯 */, {"喂", "喂", -1 } /* 喂 => 喂 */, {"喂动物", "餵動物", -1 } /* 喂动物 => 餵動物 */, {"喂它", "餵牠", -1 } /* 喂它 => 餵牠 */, {"喂猪", "餵豬", -1 } /* 喂猪 => 餵豬 */, {"喂羊", "餵羊", -1 } /* 喂羊 => 餵羊 */, {"喂马", "餵馬", -1 } /* 喂马 => 餵馬 */, {"喂鱼", "餵魚", -1 } /* 喂鱼 => 餵魚 */, {"善于", "善於", -1 } /* 善于 => 善於 */, {"喉头发干", "喉頭發乾", -1 } /* 喉头发干 => 喉頭發乾 */, {"喉干", "喉乾", -1 } /* 喉干 => 喉乾 */, {"喉干舌燥", "喉乾舌燥", -1 } /* 喉干舌燥 => 喉乾舌燥 */, {"喑哑", "瘖啞", -1 } /* 喑哑 => 瘖啞 */, {"喝倒采", "喝倒采", -1 } /* 喝倒采 => 喝倒采 */, {"喝干", "喝乾", -1 } /* 喝干 => 喝乾 */, {"喝斗", "喝斗", -1 } /* 喝斗 => 喝斗 */, {"喝采", "喝采", -1 } /* 喝采 => 喝采 */, {"喧哄", "喧鬨", -1 } /* 喧哄 => 喧鬨 */, {"喧染", "渲染", -1 } /* 喧染 => 渲染 */, {"喷", "噴", -1 } /* 喷 => 噴 */, {"喷涂", "噴塗", -1 } /* 喷涂 => 噴塗 */, {"喽", "嘍", -1 } /* 喽 => 嘍 */, {"喽罗", "嘍囉", -1 } /* 喽罗 => 嘍囉 */, {"喾", "嚳", -1 } /* 喾 => 嚳 */, {"嗟吁", "嗟吁", -1 } /* 嗟吁 => 嗟吁 */, {"嗫", "囁", -1 } /* 嗫 => 囁 */, {"嗳", "噯", -1 } /* 嗳 => 噯 */, {"嘉南药专", "嘉南藥專", -1 } /* 嘉南药专 => 嘉南藥專 */, {"嘘", "噓", -1 } /* 嘘 => 噓 */, {"嘘唏", "歔欷", -1 } /* 嘘唏 => 歔欷 */, {"嘤", "嚶", -1 } /* 嘤 => 嚶 */, {"嘱", "囑", -1 } /* 嘱 => 囑 */, {"嘱托", "囑託", -1 } /* 嘱托 => 囑託 */, {"嘴干", "嘴乾", -1 } /* 嘴干 => 嘴乾 */, {"嘹亮", "嘹喨", -1 } /* 嘹亮 => 嘹喨 */, {"噜", "嚕", -1 } /* 噜 => 嚕 */, {"噜噜苏苏", "嚕嚕囌囌", -1 } /* 噜噜苏苏 => 嚕嚕囌囌 */, {"噜苏", "嚕囌", -1 } /* 噜苏 => 嚕囌 */, {"噪动", "譟動", -1 } /* 噪动 => 譟動 */, {"噪声", "雜訊", -1 } /* 噪声 => 雜訊 */, {"噪声", "噪聲", -1 } /* 噪声 => 噪聲 */, {"噪诈", "譟詐", -1 } /* 噪诈 => 譟詐 */, {"噫吁", "噫吁", -1 } /* 噫吁 => 噫吁 */, {"嚣", "囂", -1 } /* 嚣 => 囂 */, {"嚼蜡", "嚼蠟", -1 } /* 嚼蜡 => 嚼蠟 */, {"四坛", "四罈", -1 } /* 四坛 => 四罈 */, {"四舍", "四捨", -1 } /* 四舍 => 四捨 */, {"四舍五入", "四捨五入", -1 } /* 四舍五入 => 四捨五入 */, {"回丝", "回絲", -1 } /* 回丝 => 回絲 */, {"回佣", "回佣", -1 } /* 回佣 => 回佣 */, {"回光反照", "迴光反照", -1 } /* 回光反照 => 迴光反照 */, {"回光返照", "迴光返照", -1 } /* 回光返照 => 迴光返照 */, {"回冲", "回衝", -1 } /* 回冲 => 回衝 */, {"回卷", "回捲", -1 } /* 回卷 => 回捲 */, {"回历", "回曆", -1 } /* 回历 => 回曆 */, {"回响", "迴響", -1 } /* 回响 => 迴響 */, {"回圈", "迴圈", -1 } /* 回圈 => 迴圈 */, {"回复", "回覆", -1 } /* 回复 => 回覆 */, {"回头", "回頭", -1 } /* 回头 => 回頭 */, {"回廊", "迴廊", -1 } /* 回廊 => 迴廊 */, {"回形夹", "迴形夾", -1 } /* 回形夹 => 迴形夾 */, {"回收站", "資源回收筒", -1 } /* 回收站 => 資源回收筒 */, {"回文", "迴文", 29 } /* 回文 => 迴文 */, {"回旋", "迴旋", -1 } /* 回旋 => 迴旋 */, {"回流", "迴流", -1 } /* 回流 => 迴流 */, {"回游", "迴游", -1 } /* 回游 => 迴游 */, {"回然", "迥然", -1 } /* 回然 => 迥然 */, {"回环", "迴環", -1 } /* 回环 => 迴環 */, {"回着", "回著", -1 } /* 回着 => 回著 */, {"回纹", "迴紋", -1 } /* 回纹 => 迴紋 */, {"回纹针", "迴紋針", -1 } /* 回纹针 => 迴紋針 */, {"回绕", "迴繞", -1 } /* 回绕 => 迴繞 */, {"回翔", "迴翔", -1 } /* 回翔 => 迴翔 */, {"回肠", "迴腸", -1 } /* 回肠 => 迴腸 */, {"回荡", "迴蕩", -1 } /* 回荡 => 迴蕩 */, {"回诵", "迴誦", -1 } /* 回诵 => 迴誦 */, {"回路", "迴路", -1 } /* 回路 => 迴路 */, {"回转", "迴轉", -1 } /* 回转 => 迴轉 */, {"回递性", "迴遞性", -1 } /* 回递性 => 迴遞性 */, {"回避", "迴避", -1 } /* 回避 => 迴避 */, {"回采", "回採", -1 } /* 回采 => 回採 */, {"回銮", "迴鑾", -1 } /* 回銮 => 迴鑾 */, {"回阳荡气", "迴陽蕩氣", -1 } /* 回阳荡气 => 迴陽蕩氣 */, {"回音", "回音", -1 } /* 回音 => 回音 */, {"回风", "迴風", -1 } /* 回风 => 迴風 */, {"回首", "迴首", -1 } /* 回首 => 迴首 */, {"因奸成孕", "因姦成孕", -1 } /* 因奸成孕 => 因姦成孕 */, {"因子", "因子", -1 } /* 因子 => 因子 */, {"团", "團", -1 } /* 团 => 團 */, {"团伙", "團夥", -1 } /* 团伙 => 團夥 */, {"团子", "糰子", -1 } /* 团子 => 糰子 */, {"团粉", "糰粉", -1 } /* 团粉 => 糰粉 */, {"园", "園", -1 } /* 园 => 園 */, {"园游会", "園遊會", -1 } /* 园游会 => 園遊會 */, {"困", "困", -1 } /* 困 => 困 */, {"困乏", "睏乏", -1 } /* 困乏 => 睏乏 */, {"困倦", "睏倦", -1 } /* 困倦 => 睏倦 */, {"困意", "睏意", -1 } /* 困意 => 睏意 */, {"囱", "囪", -1 } /* 囱 => 囪 */, {"围", "圍", -1 } /* 围 => 圍 */, {"围墙", "圍牆", -1 } /* 围墙 => 圍牆 */, {"囵", "圇", -1 } /* 囵 => 圇 */, {"固件", "韌體", -1 } /* 固件 => 韌體 */, {"固定制", "固定制", -1 } /* 固定制 => 固定制 */, {"国", "國", -1 } /* 国 => 國 */, {"国之桢干", "國之楨榦", -1 } /* 国之桢干 => 國之楨榦 */, {"国制", "國製", 30 } /* 国制 => 國製 */, {"国历", "國曆", -1 } /* 国历 => 國曆 */, {"国历代", "國歷代", -1 } /* 国历代 => 國歷代 */, {"国历任", "國歷任", -1 } /* 国历任 => 國歷任 */, {"国历史", "國歷史", -1 } /* 国历史 => 國歷史 */, {"国历尽", "國歷盡", -1 } /* 国历尽 => 國歷盡 */, {"国历届", "國歷屆", -1 } /* 国历届 => 國歷屆 */, {"国历年", "國歷年", -1 } /* 国历年 => 國歷年 */, {"国历经", "國歷經", -1 } /* 国历经 => 國歷經 */, {"国历险", "國歷險", -1 } /* 国历险 => 國歷險 */, {"国雠", "國讎", -1 } /* 国雠 => 國讎 */, {"图", "圖", -1 } /* 图 => 圖 */, {"图标", "表徵圖", -1 } /* 图标 => 表徵圖 */, {"图鉴", "圖鑑", -1 } /* 图鉴 => 圖鑑 */, {"圆", "圓", -1 } /* 圆 => 圓 */, {"圆椎", "圓錐", -1 } /* 圆椎 => 圓錐 */, {"圈梁", "圈樑", -1 } /* 圈梁 => 圈樑 */, {"土制", "土製", -1 } /* 土制 => 土製 */, {"土墙", "土牆", -1 } /* 土墙 => 土牆 */, {"土库曼斯坦", "土庫曼", -1 } /* 土库曼斯坦 => 土庫曼 */, {"土扶成墙", "土扶成牆", -1 } /* 土扶成墙 => 土扶成牆 */, {"圣", "聖", -1 } /* 圣 => 聖 */, {"圣叹", "聖歎", -1 } /* 圣叹 => 聖歎 */, {"圣御", "聖御", -1 } /* 圣御 => 聖御 */, {"圣杯", "聖盃", -1 } /* 圣杯 => 聖盃 */, {"圣迹", "聖蹟", -1 } /* 圣迹 => 聖蹟 */, {"圣马力诺", "聖馬利諾", -1 } /* 圣马力诺 => 聖馬利諾 */, {"在于", "在於", -1 } /* 在于 => 在於 */, {"地一卷", "地一捲", -1 } /* 地一卷 => 地一捲 */, {"地冲", "地衝", -1 } /* 地冲 => 地衝 */, {"地卷", "地捲", -1 } /* 地卷 => 地捲 */, {"地壳", "地殼", -1 } /* 地壳 => 地殼 */, {"地干吧", "地幹吧", -1 } /* 地干吧 => 地幹吧 */, {"地干杯", "地乾杯 ", -1 } /* 地干杯 => 地乾杯 */, {"地志", "地誌", -1 } /* 地志 => 地誌 */, {"地线", "地線", -1 } /* 地线 => 地線 */, {"圹", "壙", -1 } /* 圹 => 壙 */, {"场", "場", -1 } /* 场 => 場 */, {"坂", "阪", -1 } /* 坂 => 阪 */, {"均沾", "均霑", -1 } /* 均沾 => 均霑 */, {"坎顶", "崁頂", -1 } /* 坎顶 => 崁頂 */, {"坏", "壞", -1 } /* 坏 => 壞 */, {"坏于", "壞於", -1 } /* 坏于 => 壞於 */, {"坏簽", "壞籤", -1 } /* 坏簽 => 壞籤 */, {"坐着", "坐著", -1 } /* 坐着 => 坐著 */, {"块", "塊", -1 } /* 块 => 塊 */, {"坚", "堅", -1 } /* 坚 => 堅 */, {"坛", "壇", -1 } /* 坛 => 壇 */, {"坛佳酿", "罈佳釀", -1 } /* 坛佳酿 => 罈佳釀 */, {"坛坛罐罐", "罈罈罐罐", -1 } /* 坛坛罐罐 => 罈罈罐罐 */, {"坛女儿红", "罈女兒紅", -1 } /* 坛女儿红 => 罈女兒紅 */, {"坛好酒", "罈好酒", -1 } /* 坛好酒 => 罈好酒 */, {"坛子", "罈子", -1 } /* 坛子 => 罈子 */, {"坛烧刀子", "罈燒刀子", -1 } /* 坛烧刀子 => 罈燒刀子 */, {"坛燒刀子", "罈燒刀子", -1 } /* 坛燒刀子 => 罈燒刀子 */, {"坛白干", "罈白干", -1 } /* 坛白干 => 罈白干 */, {"坛美酒", "罈美酒", -1 } /* 坛美酒 => 罈美酒 */, {"坛老酒", "罈老酒", -1 } /* 坛老酒 => 罈老酒 */, {"坛酒", "罈酒", -1 } /* 坛酒 => 罈酒 */, {"坛醋", "罈醋", -1 } /* 坛醋 => 罈醋 */, {"坛陈年", "罈陳年", -1 } /* 坛陈年 => 罈陳年 */, {"坛騞", "罈騞", -1 } /* 坛騞 => 罈騞 */, {"坛高粱", "罈高粱", -1 } /* 坛高粱 => 罈高粱 */, {"坜", "壢", -1 } /* 坜 => 壢 */, {"坝", "壩", -1 } /* 坝 => 壩 */, {"坞", "塢", -1 } /* 坞 => 塢 */, {"坟", "墳", -1 } /* 坟 => 墳 */, {"坠", "墜", -1 } /* 坠 => 墜 */, {"坠于", "墜於", -1 } /* 坠于 => 墜於 */, {"坠胎", "墮胎", -1 } /* 坠胎 => 墮胎 */, {"坤范", "坤範", -1 } /* 坤范 => 坤範 */, {"坦护", "袒護", -1 } /* 坦护 => 袒護 */, {"坦荡", "坦蕩", -1 } /* 坦荡 => 坦蕩 */, {"垂发", "垂髮", -1 } /* 垂发 => 垂髮 */, {"垂范", "垂範", -1 } /* 垂范 => 垂範 */, {"垄", "壟", -1 } /* 垄 => 壟 */, {"垄断资产", "壟斷資產", -1 } /* 垄断资产 => 壟斷資產 */, {"垄断集团", "壟斷集團", -1 } /* 垄断集团 => 壟斷集團 */, {"垅", "壠", -1 } /* 垅 => 壠 */, {"垆", "壚", -1 } /* 垆 => 壚 */, {"型状", "形狀", -1 } /* 型状 => 形狀 */, {"型范", "型範", -1 } /* 型范 => 型範 */, {"垒", "壘", -1 } /* 垒 => 壘 */, {"垦", "墾", -1 } /* 垦 => 墾 */, {"垦复", "墾複", -1 } /* 垦复 => 墾複 */, {"垩", "堊", -1 } /* 垩 => 堊 */, {"垫", "墊", -1 } /* 垫 => 墊 */, {"垭", "埡", -1 } /* 垭 => 埡 */, {"垱", "壋", -1 } /* 垱 => 壋 */, {"垲", "塏", -1 } /* 垲 => 塏 */, {"垴", "堖", -1 } /* 垴 => 堖 */, {"埃里温", "葉里溫", -1 } /* 埃里温 => 葉里溫 */, {"埋布", "埋佈", -1 } /* 埋布 => 埋佈 */, {"城墙", "城牆", -1 } /* 城墙 => 城牆 */, {"埔里", "埔里", -1 } /* 埔里 => 埔里 */, {"埘", "塒", -1 } /* 埘 => 塒 */, {"埙", "塤", -1 } /* 埙 => 塤 */, {"埚", "堝", -1 } /* 埚 => 堝 */, {"域名", "域名", -1 } /* 域名 => 域名 */, {"埯", "垵", -1 } /* 埯 => 垵 */, {"基尔霍夫", "克希荷夫", -1 } /* 基尔霍夫 => 克希荷夫 */, {"基干", "基幹", -1 } /* 基干 => 基幹 */, {"基线", "基線", -1 } /* 基线 => 基線 */, {"堑", "塹", -1 } /* 堑 => 塹 */, {"堕", "墮", -1 } /* 堕 => 墮 */, {"堵墙", "堵牆", -1 } /* 堵墙 => 堵牆 */, {"塔克辛", "他信", -1 } /* 塔克辛 => 他信 */, {"塔吉克斯坦", "塔吉克", -1 } /* 塔吉克斯坦 => 塔吉克 */, {"塔里木", "塔里木", -1 } /* 塔里木 => 塔里木 */, {"墓志", "墓誌", -1 } /* 墓志 => 墓誌 */, {"墙", "牆", -1 } /* 墙 => 牆 */, {"墙上", "牆上", -1 } /* 墙上 => 牆上 */, {"墙垣", "牆垣", -1 } /* 墙垣 => 牆垣 */, {"墙壁", "牆壁", -1 } /* 墙壁 => 牆壁 */, {"墙外", "牆外", -1 } /* 墙外 => 牆外 */, {"墙头", "牆頭", -1 } /* 墙头 => 牆頭 */, {"墙根", "牆根", -1 } /* 墙根 => 牆根 */, {"墙脚", "牆腳", -1 } /* 墙脚 => 牆腳 */, {"墙角", "牆角", -1 } /* 墙角 => 牆角 */, {"墨斗", "墨斗", -1 } /* 墨斗 => 墨斗 */, {"墨沈未干", "墨瀋未乾", -1 } /* 墨沈未干 => 墨瀋未乾 */, {"墨索里尼", "墨索里尼", -1 } /* 墨索里尼 => 墨索里尼 */, {"壑然", "豁然", -1 } /* 壑然 => 豁然 */, {"壬丑", "壬丑", -1 } /* 壬丑 => 壬丑 */, {"壮", "壯", -1 } /* 壮 => 壯 */, {"声", "聲", -1 } /* 声 => 聲 */, {"声卡", "音效卡", -1 } /* 声卡 => 音效卡 */, {"壳", "殻", -1 } /* 壳 => 殻 */, {"壳子", "殼子", -1 } /* 壳子 => 殼子 */, {"壶", "壺", -1 } /* 壶 => 壺 */, {"壸", "壼", -1 } /* 壸 => 壼 */, {"壺范", "壺範", -1 } /* 壺范 => 壺範 */, {"壽面", "壽麵", -1 } /* 壽面 => 壽麵 */, {"处", "處", -1 } /* 处 => 處 */, {"备", "備", -1 } /* 备 => 備 */, {"备注", "備註", -1 } /* 备注 => 備註 */, {"复", "復", -1 } /* 复 => 復 */, {"复上", "覆上", -1 } /* 复上 => 覆上 */, {"复习", "複習", -1 } /* 复习 => 複習 */, {"复书", "覆書", -1 } /* 复书 => 覆書 */, {"复亡", "覆亡", -1 } /* 复亡 => 覆亡 */, {"复亩珍", "複畝珍", -1 } /* 复亩珍 => 複畝珍 */, {"复仞年如", "複仞年如", -1 } /* 复仞年如 => 複仞年如 */, {"复以百万", "複以百萬", -1 } /* 复以百万 => 複以百萬 */, {"复位", "複位", -1 } /* 复位 => 複位 */, {"复信", "覆信", -1 } /* 复信 => 覆信 */, {"复元音", "複元音", -1 } /* 复元音 => 複元音 */, {"复兴", "復興", -1 } /* 复兴 => 復興 */, {"复兴社", "複興社", -1 } /* 复兴社 => 複興社 */, {"复冒", "覆冒", -1 } /* 复冒 => 覆冒 */, {"复写", "複寫", -1 } /* 复写 => 複寫 */, {"复决", "複決", -1 } /* 复决 => 複決 */, {"复出", "復出", -1 } /* 复出 => 復出 */, {"复函", "覆函", -1 } /* 复函 => 覆函 */, {"复分数", "複分數", -1 } /* 复分数 => 複分數 */, {"复分解", "複分解", -1 } /* 复分解 => 複分解 */, {"复列", "複列", -1 } /* 复列 => 複列 */, {"复判", "覆判", -1 } /* 复判 => 覆判 */, {"复利", "複利", -1 } /* 复利 => 複利 */, {"复制", "複製", -1 } /* 复制 => 複製 */, {"复印", "複印", -1 } /* 复印 => 複印 */, {"复原", "複原", -1 } /* 复原 => 複原 */, {"复变", "複變", -1 } /* 复变 => 複變 */, {"复变函数", "複變函數", -1 } /* 复变函数 => 複變函數 */, {"复叠", "覆疊", -1 } /* 复叠 => 覆疊 */, {"复句", "複句", -1 } /* 复句 => 複句 */, {"复叶", "複葉", -1 } /* 复叶 => 複葉 */, {"复合传动", "複合傳動", -1 } /* 复合传动 => 複合傳動 */, {"复合体", "複合體", -1 } /* 复合体 => 複合體 */, {"复合包装", "複合包裝", -1 } /* 复合包装 => 複合包裝 */, {"复合型", "複合型", -1 } /* 复合型 => 複合型 */, {"复合增长", "複合增長", -1 } /* 复合增长 => 複合增長 */, {"复合字", "複合字", -1 } /* 复合字 => 複合字 */, {"复合式", "複合式", -1 } /* 复合式 => 複合式 */, {"复合性", "複合性", -1 } /* 复合性 => 複合性 */, {"复合技", "複合技", -1 } /* 复合技 => 複合技 */, {"复合机", "複合機", -1 } /* 复合机 => 複合機 */, {"复合材料", "複合材料", -1 } /* 复合材料 => 複合材料 */, {"复合板", "複合板", -1 } /* 复合板 => 複合板 */, {"复合架", "複合架", -1 } /* 复合架 => 複合架 */, {"复合模", "複合模", -1 } /* 复合模 => 複合模 */, {"复合物", "複合物", -1 } /* 复合物 => 複合物 */, {"复合管", "複合管", -1 } /* 复合管 => 複合管 */, {"复合膜", "複合膜", -1 } /* 复合膜 => 複合膜 */, {"复合药", "複合藥", -1 } /* 复合药 => 複合藥 */, {"复合装甲", "複合裝甲", -1 } /* 复合装甲 => 複合裝甲 */, {"复合词", "複合詞", -1 } /* 复合词 => 複合詞 */, {"复合金属", "複合金屬", -1 } /* 复合金属 => 複合金屬 */, {"复名", "複名", -1 } /* 复名 => 複名 */, {"复名", "復名", -1 } /* 复名 => 復名 */, {"复员", "複員", -1 } /* 复员 => 複員 */, {"复命", "覆命", -1 } /* 复命 => 覆命 */, {"复基因", "複基因", -1 } /* 复基因 => 複基因 */, {"复壁", "複壁", -1 } /* 复壁 => 複壁 */, {"复壮", "複壯", -1 } /* 复壮 => 複壯 */, {"复复", "複復", -1 } /* 复复 => 複復 */, {"复复", "覆覆", -1 } /* 复复 => 覆覆 */, {"复始", "復始", -1 } /* 复始 => 復始 */, {"复姓", "複姓", -1 } /* 复姓 => 複姓 */, {"复字键", "複字鍵", -1 } /* 复字键 => 複字鍵 */, {"复审", "復審", -1 } /* 复审 => 復審 */, {"复审", "複審", -1 } /* 复审 => 複審 */, {"复审", "覆審", -1 } /* 复审 => 覆審 */, {"复巢", "覆巢", -1 } /* 复巢 => 覆巢 */, {"复式", "複式", -1 } /* 复式 => 複式 */, {"复数", "複數", -1 } /* 复数 => 複數 */, {"复文", "覆文", -1 } /* 复文 => 覆文 */, {"复方", "複方", -1 } /* 复方 => 複方 */, {"复旦", "復旦", -1 } /* 复旦 => 復旦 */, {"复旧", "複舊", -1 } /* 复旧 => 複舊 */, {"复本", "複本", -1 } /* 复本 => 複本 */, {"复杂", "複雜", -1 } /* 复杂 => 複雜 */, {"复查", "復查", -1 } /* 复查 => 復查 */, {"复查", "複查", -1 } /* 复查 => 複查 */, {"复核", "覆核", -1 } /* 复核 => 覆核 */, {"复检", "複檢", -1 } /* 复检 => 複檢 */, {"复次", "複次", -1 } /* 复次 => 複次 */, {"复比", "複比", -1 } /* 复比 => 複比 */, {"复没", "覆沒", -1 } /* 复没 => 覆沒 */, {"复活", "復活", -1 } /* 复活 => 復活 */, {"复流", "複流", -1 } /* 复流 => 複流 */, {"复测", "複測", -1 } /* 复测 => 複測 */, {"复灭", "覆滅", -1 } /* 复灭 => 覆滅 */, {"复电", "覆電", -1 } /* 复电 => 覆電 */, {"复盆", "覆盆", -1 } /* 复盆 => 覆盆 */, {"复盖", "覆蓋", -1 } /* 复盖 => 覆蓋 */, {"复目", "複目", -1 } /* 复目 => 複目 */, {"复相关", "複相關", -1 } /* 复相关 => 複相關 */, {"复眼", "複眼", -1 } /* 复眼 => 複眼 */, {"复种", "複種", -1 } /* 复种 => 複種 */, {"复线", "複線", -1 } /* 复线 => 複線 */, {"复舟", "覆舟", -1 } /* 复舟 => 覆舟 */, {"复色", "複色", -1 } /* 复色 => 複色 */, {"复苏", "復甦", -1 } /* 复苏 => 復甦 */, {"复议", "覆議", -1 } /* 复议 => 覆議 */, {"复评", "復評", -1 } /* 复评 => 復評 */, {"复诊", "複診", -1 } /* 复诊 => 複診 */, {"复词", "複詞", -1 } /* 复词 => 複詞 */, {"复试", "覆試", -1 } /* 复试 => 覆試 */, {"复试", "複試", -1 } /* 复试 => 複試 */, {"复诵", "覆誦", -1 } /* 复诵 => 覆誦 */, {"复课", "複課", -1 } /* 复课 => 複課 */, {"复败", "覆敗", -1 } /* 复败 => 覆敗 */, {"复赛", "複賽", -1 } /* 复赛 => 複賽 */, {"复载", "覆載", -1 } /* 复载 => 覆載 */, {"复辅音", "複輔音", -1 } /* 复辅音 => 複輔音 */, {"复辙", "覆轍", -1 } /* 复辙 => 覆轍 */, {"复辟", "復辟", -1 } /* 复辟 => 復辟 */, {"复述", "複述", -1 } /* 复述 => 複述 */, {"复选", "複選", -1 } /* 复选 => 複選 */, {"复钱", "複錢", -1 } /* 复钱 => 複錢 */, {"复阅", "復閱", -1 } /* 复阅 => 復閱 */, {"复阅", "複閱", -1 } /* 复阅 => 複閱 */, {"复雠", "復讎", -1 } /* 复雠 => 復讎 */, {"复音", "複音", -1 } /* 复音 => 複音 */, {"复韵", "複韻", -1 } /* 复韵 => 複韻 */, {"夏历", "夏曆", -1 } /* 夏历 => 夏曆 */, {"外制", "外製", -1 } /* 外制 => 外製 */, {"外壳", "外殼", -1 } /* 外壳 => 外殼 */, {"外头", "外頭", -1 } /* 外头 => 外頭 */, {"外强中干", "外強中乾", -1 } /* 外强中干 => 外強中乾 */, {"外御", "外御", -1 } /* 外御 => 外御 */, {"外松内紧", "外鬆內緊", -1 } /* 外松内紧 => 外鬆內緊 */, {"外涂", "外塗", -1 } /* 外涂 => 外塗 */, {"外科学系", "外科學系", -1 } /* 外科学系 => 外科學系 */, {"外线", "外線", -1 } /* 外线 => 外線 */, {"外部链接", "外部連結", -1 } /* 外部链接 => 外部連結 */, {"多么", "多麼", -1 } /* 多么 => 多麼 */, {"多于", "多於", -1 } /* 多于 => 多於 */, {"多余", "多餘", -1 } /* 多余 => 多餘 */, {"多冲", "多衝", -1 } /* 多冲 => 多衝 */, {"多出电影", "多齣電影", -1 } /* 多出电影 => 多齣電影 */, {"多少只", "多少隻", 31 } /* 多少只 => 多少隻 */, {"多干", "多幹", 32 } /* 多干 => 多幹 */, {"多米尼加", "多明尼加", -1 } /* 多米尼加 => 多明尼加 */, {"多麼", "多麼", -1 } /* 多麼 => 多麼 */, {"夜光表", "夜光錶", -1 } /* 夜光表 => 夜光錶 */, {"夜游", "夜遊", -1 } /* 夜游 => 夜遊 */, {"够", "夠", -1 } /* 够 => 夠 */, {"够不著", "搆不著", -1 } /* 够不著 => 搆不著 */, {"够怨", "搆怨", -1 } /* 够怨 => 搆怨 */, {"够涂", "夠塗", -1 } /* 够涂 => 夠塗 */, {"够赞", "夠讚", -1 } /* 够赞 => 夠讚 */, {"够钟情", "夠鍾情", -1 } /* 够钟情 => 夠鍾情 */, {"够钟爱", "夠鍾愛", -1 } /* 够钟爱 => 夠鍾愛 */, {"大于", "大於", -1 } /* 大于 => 大於 */, {"大仁药专", "大仁藥專", -1 } /* 大仁药专 => 大仁藥專 */, {"大伙", "大伙", -1 } /* 大伙 => 大伙 */, {"大伙", "大夥", -1 } /* 大伙 => 大夥 */, {"大伙人", "大夥人", -1 } /* 大伙人 => 大夥人 */, {"大伙儿", "大夥兒", -1 } /* 大伙儿 => 大夥兒 */, {"大余", "大庾", -1 } /* 大余 => 大庾 */, {"大利面", "大利麵", -1 } /* 大利面 => 大利麵 */, {"大历", "大曆", -1 } /* 大历 => 大曆 */, {"大只", "大隻", -1 } /* 大只 => 大隻 */, {"大干", "大幹", 33 } /* 大干 => 大幹 */, {"大干特干", "大幹特幹", -1 } /* 大干特干 => 大幹特幹 */, {"大放异采", "大放異采", -1 } /* 大放异采 => 大放異采 */, {"大曲", "大麯", -1 } /* 大曲 => 大麯 */, {"大目干连冥间救母变文", "大目乾連冥間救母變文", -1 } /* 大目干连冥间救母变文 => 大目乾連冥間救母變文 */, {"大赞", "大讚", -1 } /* 大赞 => 大讚 */, {"大锤", "大鎚", -1 } /* 大锤 => 大鎚 */, {"天佑", "天祐", -1 } /* 天佑 => 天祐 */, {"天后", "天后", 34 } /* 天后 => 天后 */, {"天干物燥", "天乾物燥", -1 } /* 天干物燥 => 天乾物燥 */, {"天生干", "天生幹", -1 } /* 天生干 => 天生幹 */, {"天线", "天線", -1 } /* 天线 => 天線 */, {"天翻地复", "天翻地覆", -1 } /* 天翻地复 => 天翻地覆 */, {"太初历", "太初曆", -1 } /* 太初历 => 太初曆 */, {"太后", "太后", 35 } /* 太后 => 太后 */, {"太咸", "太鹹", -1 } /* 太咸 => 太鹹 */, {"太干", "太乾", -1 } /* 太干 => 太乾 */, {"太松", "太鬆", -1 } /* 太松 => 太鬆 */, {"夯干", "夯幹", -1 } /* 夯干 => 夯幹 */, {"头", "頭", -1 } /* 头 => 頭 */, {"头亮发", "頭亮髮", -1 } /* 头亮发 => 頭亮髮 */, {"头发", "頭髮", -1 } /* 头发 => 頭髮 */, {"头发了狂", "頭發了狂", -1 } /* 头发了狂 => 頭發了狂 */, {"头发了疯", "頭發了瘋", -1 } /* 头发了疯 => 頭發了瘋 */, {"头发光", "頭發光", -1 } /* 头发光 => 頭發光 */, {"头发出", "頭發出", -1 } /* 头发出 => 頭發出 */, {"头发力", "頭發力", -1 } /* 头发力 => 頭發力 */, {"头发功", "頭發功", -1 } /* 头发功 => 頭發功 */, {"头发呆", "頭發呆", -1 } /* 头发呆 => 頭發呆 */, {"头发售", "頭發售", -1 } /* 头发售 => 頭發售 */, {"头发炎", "頭發炎", -1 } /* 头发炎 => 頭發炎 */, {"头发狂", "頭發狂", -1 } /* 头发狂 => 頭發狂 */, {"头发现", "頭發現", -1 } /* 头发现 => 頭發現 */, {"头发生", "頭發生", -1 } /* 头发生 => 頭發生 */, {"头发疯", "頭發瘋", -1 } /* 头发疯 => 頭發瘋 */, {"头发育", "頭發育", -1 } /* 头发育 => 頭發育 */, {"头发霉", "頭發霉", -1 } /* 头发霉 => 頭發霉 */, {"头发麻", "頭發麻", -1 } /* 头发麻 => 頭發麻 */, {"头发黑", "頭發黑", -1 } /* 头发黑 => 頭發黑 */, {"头扎", "頭紮", -1 } /* 头扎 => 頭紮 */, {"头文件", "標頭檔", -1 } /* 头文件 => 標頭檔 */, {"头球", "頭槌", -1 } /* 头球 => 頭槌 */, {"头花发", "頭花髮", -1 } /* 头花发 => 頭花髮 */, {"夸", "誇", -1 } /* 夸 => 誇 */, {"夸克", "夸克", -1 } /* 夸克 => 夸克 */, {"夸克星", "夸克星", -1 } /* 夸克星 => 夸克星 */, {"夸尔", "夸爾", -1 } /* 夸尔 => 夸爾 */, {"夸父", "夸父", -1 } /* 夸父 => 夸父 */, {"夸特", "夸特", -1 } /* 夸特 => 夸特 */, {"夸脱", "夸脫", -1 } /* 夸脱 => 夸脫 */, {"夸赞", "誇讚", -1 } /* 夸赞 => 誇讚 */, {"夹", "夾", -1 } /* 夹 => 夾 */, {"夹衣", "裌衣", -1 } /* 夹衣 => 裌衣 */, {"夹袄", "裌襖", -1 } /* 夹袄 => 裌襖 */, {"夺", "奪", -1 } /* 夺 => 奪 */, {"夺杯", "奪盃", -1 } /* 夺杯 => 奪盃 */, {"奁", "奩", -1 } /* 奁 => 奩 */, {"奂", "奐", -1 } /* 奂 => 奐 */, {"奇迹", "奇蹟", -1 } /* 奇迹 => 奇蹟 */, {"奉于", "奉於", -1 } /* 奉于 => 奉於 */, {"奋", "奮", -1 } /* 奋 => 奮 */, {"奏折", "奏摺", -1 } /* 奏折 => 奏摺 */, {"奔驰", "奔馳", -1 } /* 奔驰 => 奔馳 */, {"奕棋", "弈棋", -1 } /* 奕棋 => 弈棋 */, {"奖", "獎", -1 } /* 奖 => 獎 */, {"奖惩", "獎懲", -1 } /* 奖惩 => 獎懲 */, {"奖杯", "獎盃", -1 } /* 奖杯 => 獎盃 */, {"奥", "奧", -1 } /* 奥 => 奧 */, {"奥兰群岛", "亞蘭群島", -1 } /* 奥兰群岛 => 亞蘭群島 */, {"女丑", "女丑", -1 } /* 女丑 => 女丑 */, {"女墙", "女牆", -1 } /* 女墙 => 女牆 */, {"奴仆", "奴僕", -1 } /* 奴仆 => 奴僕 */, {"奶卷", "奶捲", -1 } /* 奶卷 => 奶捲 */, {"奶酪", "乳酪", -1 } /* 奶酪 => 乳酪 */, {"奸凶", "姦凶", -1 } /* 奸凶 => 姦凶 */, {"奸夫", "姦夫", -1 } /* 奸夫 => 姦夫 */, {"奸妇", "姦婦", -1 } /* 奸妇 => 姦婦 */, {"奸尸", "姦屍", -1 } /* 奸尸 => 姦屍 */, {"奸情", "姦情", -1 } /* 奸情 => 姦情 */, {"奸拐", "姦拐", -1 } /* 奸拐 => 姦拐 */, {"奸杀", "姦殺", -1 } /* 奸杀 => 姦殺 */, {"奸污", "姦污", -1 } /* 奸污 => 姦污 */, {"奸淫", "姦淫", -1 } /* 奸淫 => 姦淫 */, {"奸盗", "姦盜", -1 } /* 奸盗 => 姦盜 */, {"奸通", "姦通", -1 } /* 奸通 => 姦通 */, {"好一出", "好一齣", -1 } /* 好一出 => 好一齣 */, {"好于", "好於", -1 } /* 好于 => 好於 */, {"好咸", "好鹹", -1 } /* 好咸 => 好鹹 */, {"好困吧", "好睏吧", -1 } /* 好困吧 => 好睏吧 */, {"好困啊", "好睏啊", -1 } /* 好困啊 => 好睏啊 */, {"好好地干", "好好地幹", -1 } /* 好好地干 => 好好地幹 */, {"好好干", "好好幹", -1 } /* 好好干 => 好好幹 */, {"好家夥", "好傢夥", -1 } /* 好家夥 => 好傢夥 */, {"好干", "好幹", -1 } /* 好干 => 好幹 */, {"好签", "好籤", -1 } /* 好签 => 好籤 */, {"好簽", "好籤", -1 } /* 好簽 => 好籤 */, {"如何干", "如何幹", -1 } /* 如何干 => 如何幹 */, {"如厕", "如廁", -1 } /* 如厕 => 如廁 */, {"如法泡制", "如法泡製", -1 } /* 如法泡制 => 如法泡製 */, {"妆", "妝", -1 } /* 妆 => 妝 */, {"妇", "婦", -1 } /* 妇 => 婦 */, {"妈", "媽", -1 } /* 妈 => 媽 */, {"妖后", "妖后", -1 } /* 妖后 => 妖后 */, {"妩", "嫵", -1 } /* 妩 => 嫵 */, {"妪", "嫗", -1 } /* 妪 => 嫗 */, {"妫", "媯", -1 } /* 妫 => 媯 */, {"始于", "始於", -1 } /* 始于 => 始於 */, {"委托", "委託", -1 } /* 委托 => 委託 */, {"委托书", "委託書", -1 } /* 委托书 => 委託書 */, {"姗", "姍", -1 } /* 姗 => 姍 */, {"姚采颖", "姚采穎", -1 } /* 姚采颖 => 姚采穎 */, {"姜丝", "薑絲", -1 } /* 姜丝 => 薑絲 */, {"姜就是老", "薑就是老", -1 } /* 姜就是老 => 薑就是老 */, {"姜愈老", "薑愈老", -1 } /* 姜愈老 => 薑愈老 */, {"姜是", "薑是", -1 } /* 姜是 => 薑是 */, {"姜是老", "薑是老", -1 } /* 姜是老 => 薑是老 */, {"姜末", "薑末", -1 } /* 姜末 => 薑末 */, {"姜汁", "薑汁", -1 } /* 姜汁 => 薑汁 */, {"姜汤", "薑湯", -1 } /* 姜汤 => 薑湯 */, {"姜油", "薑油", -1 } /* 姜油 => 薑油 */, {"姜片", "薑片", -1 } /* 姜片 => 薑片 */, {"姜糖", "薑糖", -1 } /* 姜糖 => 薑糖 */, {"姜老辣", "薑老辣", -1 } /* 姜老辣 => 薑老辣 */, {"姜花", "薑花", -1 } /* 姜花 => 薑花 */, {"姜茶", "薑茶", -1 } /* 姜茶 => 薑茶 */, {"姜葱", "薑蔥", -1 } /* 姜葱 => 薑蔥 */, {"姜还是老", "薑還是老", -1 } /* 姜还是老 => 薑還是老 */, {"姜醋", "薑醋", -1 } /* 姜醋 => 薑醋 */, {"姜饼", "薑餅", -1 } /* 姜饼 => 薑餅 */, {"姜黄", "薑黃", -1 } /* 姜黄 => 薑黃 */, {"姣洁", "皎潔", -1 } /* 姣洁 => 皎潔 */, {"姹", "奼", -1 } /* 姹 => 奼 */, {"姿采", "姿采", -1 } /* 姿采 => 姿采 */, {"威斯康星", "威斯康辛", -1 } /* 威斯康星 => 威斯康辛 */, {"娄", "婁", -1 } /* 娄 => 婁 */, {"娅", "婭", -1 } /* 娅 => 婭 */, {"娆", "嬈", -1 } /* 娆 => 嬈 */, {"娇", "嬌", -1 } /* 娇 => 嬌 */, {"娇揉造作", "矯揉造作", -1 } /* 娇揉造作 => 矯揉造作 */, {"娈", "孌", -1 } /* 娈 => 孌 */, {"娉亭", "娉婷", -1 } /* 娉亭 => 娉婷 */, {"娱", "娛", -1 } /* 娱 => 娛 */, {"娲", "媧", -1 } /* 娲 => 媧 */, {"娴", "嫻", -1 } /* 娴 => 嫻 */, {"婀挪", "婀娜", -1 } /* 婀挪 => 婀娜 */, {"婳", "嫿", -1 } /* 婳 => 嫿 */, {"婴", "嬰", -1 } /* 婴 => 嬰 */, {"婵", "嬋", -1 } /* 婵 => 嬋 */, {"婶", "嬸", -1 } /* 婶 => 嬸 */, {"媪", "媼", -1 } /* 媪 => 媼 */, {"嫌凶", "嫌兇", -1 } /* 嫌凶 => 嫌兇 */, {"嫒", "嬡", -1 } /* 嫒 => 嬡 */, {"嫔", "嬪", -1 } /* 嫔 => 嬪 */, {"嫱", "嬙", -1 } /* 嫱 => 嬙 */, {"嬉游", "嬉遊", -1 } /* 嬉游 => 嬉遊 */, {"嬖幸", "嬖倖", -1 } /* 嬖幸 => 嬖倖 */, {"嬴余", "嬴餘", -1 } /* 嬴余 => 嬴餘 */, {"嬷", "嬤", -1 } /* 嬷 => 嬤 */, {"子丑", "子丑", -1 } /* 子丑 => 子丑 */, {"子之丰兮", "子之丰兮", -1 } /* 子之丰兮 => 子之丰兮 */, {"子云", "子云", -1 } /* 子云 => 子云 */, {"子姜", "子薑", -1 } /* 子姜 => 子薑 */, {"子锺", "子鐘", -1 } /* 子锺 => 子鐘 */, {"字体", "字型", -1 } /* 字体 => 字型 */, {"字体文件", "字型檔", -1 } /* 字体文件 => 字型檔 */, {"字号", "字型大小", -1 } /* 字号 => 字型大小 */, {"字库", "字型檔", -1 } /* 字库 => 字型檔 */, {"字段", "欄位", -1 } /* 字段 => 欄位 */, {"字汇", "字彙", -1 } /* 字汇 => 字彙 */, {"字符", "字元", -1 } /* 字符 => 字元 */, {"字符集", "字符集", -1 } /* 字符集 => 字符集 */, {"字节", "位元組", -1 } /* 字节 => 位元組 */, {"存于", "存於", -1 } /* 存于 => 存於 */, {"存折", "存摺", -1 } /* 存折 => 存摺 */, {"存盘", "存檔", -1 } /* 存盘 => 存檔 */, {"孙", "孫", -1 } /* 孙 => 孫 */, {"学", "學", -1 } /* 学 => 學 */, {"孪", "孿", -1 } /* 孪 => 孿 */, {"孱杂", "羼雜", -1 } /* 孱杂 => 羼雜 */, {"宁", "寧", -1 } /* 宁 => 寧 */, {"宁舍", "寧捨", -1 } /* 宁舍 => 寧捨 */, {"它", "它", -1 } /* 它 => 它 */, {"宅弟", "宅第", -1 } /* 宅弟 => 宅第 */, {"宅紫", "奼紫", -1 } /* 宅紫 => 奼紫 */, {"宇宙志", "宇宙誌", -1 } /* 宇宙志 => 宇宙誌 */, {"安于", "安於", -1 } /* 安于 => 安於 */, {"宋元", "宋元", -1 } /* 宋元 => 宋元 */, {"宏基", "宏碁", -1 } /* 宏基 => 宏碁 */, {"宏指令", "巨集指令", -1 } /* 宏指令 => 巨集指令 */, {"宏病毒", "巨集病毒", -1 } /* 宏病毒 => 巨集病毒 */, {"定于", "定於", -1 } /* 定于 => 定於 */, {"定准", "定准", -1 } /* 定准 => 定准 */, {"定制", "定製", -1 } /* 定制 => 定製 */, {"定干", "定幹", -1 } /* 定干 => 定幹 */, {"宝", "寶", -1 } /* 宝 => 寶 */, {"宝历", "寶曆", -1 } /* 宝历 => 寶曆 */, {"宝里宝气", "寶里寶氣", -1 } /* 宝里宝气 => 寶里寶氣 */, {"实", "實", -1 } /* 实 => 實 */, {"实干", "實幹", -1 } /* 实干 => 實幹 */, {"实线", "實線", -1 } /* 实线 => 實線 */, {"宠", "寵", -1 } /* 宠 => 寵 */, {"审", "審", -1 } /* 审 => 審 */, {"客游", "客遊", -1 } /* 客游 => 客遊 */, {"宣布", "宣佈", -1 } /* 宣布 => 宣佈 */, {"宣泄", "宣洩", -1 } /* 宣泄 => 宣洩 */, {"宦游", "宦遊", -1 } /* 宦游 => 宦遊 */, {"宪", "憲", -1 } /* 宪 => 憲 */, {"宫", "宮", -1 } /* 宫 => 宮 */, {"宴游", "宴遊", -1 } /* 宴游 => 宴遊 */, {"家伙", "傢伙", -1 } /* 家伙 => 傢伙 */, {"家俱", "傢俱", -1 } /* 家俱 => 傢俱 */, {"家具", "傢具", -1 } /* 家具 => 傢具 */, {"家私", "傢俬", -1 } /* 家私 => 傢俬 */, {"宸游", "宸遊", -1 } /* 宸游 => 宸遊 */, {"容范", "容範", -1 } /* 容范 => 容範 */, {"宽", "寬", -1 } /* 宽 => 寬 */, {"宽带", "寬頻", -1 } /* 宽带 => 寬頻 */, {"宽松", "寬鬆", -1 } /* 宽松 => 寬鬆 */, {"宽范", "寬範", -1 } /* 宽范 => 寬範 */, {"宾", "賓", -1 } /* 宾 => 賓 */, {"宿舍", "宿舍", -1 } /* 宿舍 => 宿舍 */, {"寂聊", "寂寥", -1 } /* 寂聊 => 寂寥 */, {"寄于", "寄於", -1 } /* 寄于 => 寄於 */, {"寄托", "寄託", -1 } /* 寄托 => 寄託 */, {"密于", "密於", -1 } /* 密于 => 密於 */, {"密布", "密佈", -1 } /* 密布 => 密佈 */, {"密折", "密摺", -1 } /* 密折 => 密摺 */, {"密歇根", "密执安", -1 } /* 密歇根 => 密执安 */, {"密致", "密緻", -1 } /* 密致 => 密緻 */, {"密苏里州", "密蘇里州", -1 } /* 密苏里州 => 密蘇里州 */, {"寇准", "寇準", -1 } /* 寇准 => 寇準 */, {"寇雠", "寇讎", -1 } /* 寇雠 => 寇讎 */, {"富于", "富於", -1 } /* 富于 => 富於 */, {"富余", "富餘", -1 } /* 富余 => 富餘 */, {"富县", "鄜縣", -1 } /* 富县 => 鄜縣 */, {"寒仓", "寒傖", -1 } /* 寒仓 => 寒傖 */, {"寒喧", "寒暄", -1 } /* 寒喧 => 寒暄 */, {"寝", "寢", -1 } /* 寝 => 寢 */, {"寡欲", "寡慾", -1 } /* 寡欲 => 寡慾 */, {"寮采", "寮寀", -1 } /* 寮采 => 寮寀 */, {"寸余", "寸餘", -1 } /* 寸余 => 寸餘 */, {"对", "對", -1 } /* 对 => 對 */, {"对于", "對於", -1 } /* 对于 => 對於 */, {"对干", "對幹", -1 } /* 对干 => 對幹 */, {"对折", "對摺", -1 } /* 对折 => 對摺 */, {"对着", "對著", -1 } /* 对着 => 對著 */, {"对表", "對錶", -1 } /* 对表 => 對錶 */, {"寻", "尋", -1 } /* 寻 => 尋 */, {"寻乌", "尋鄔", -1 } /* 寻乌 => 尋鄔 */, {"寻址", "定址", -1 } /* 寻址 => 定址 */, {"寻麻", "蕁麻", -1 } /* 寻麻 => 蕁麻 */, {"导", "導", -1 } /* 导 => 導 */, {"导游", "導遊", -1 } /* 导游 => 導遊 */, {"导线", "導線", -1 } /* 导线 => 導線 */, {"寿", "壽", -1 } /* 寿 => 壽 */, {"寿面", "壽麵", -1 } /* 寿面 => 壽麵 */, {"封后", "封后", -1 } /* 封后 => 封后 */, {"射线", "射線", -1 } /* 射线 => 射線 */, {"射雕", "射鵰", -1 } /* 射雕 => 射鵰 */, {"将", "將", -1 } /* 将 => 將 */, {"将于", "將於", -1 } /* 将于 => 將於 */, {"尊范", "尊範", -1 } /* 尊范 => 尊範 */, {"小丑", "小丑", -1 } /* 小丑 => 小丑 */, {"小丑丫鬟", "小醜丫鬟", -1 } /* 小丑丫鬟 => 小醜丫鬟 */, {"小丑跳梁", "小醜跳樑", -1 } /* 小丑跳梁 => 小醜跳樑 */, {"小于", "小於", -1 } /* 小于 => 小於 */, {"小伙", "小伙", -1 } /* 小伙 => 小伙 */, {"小伙", "小夥", -1 } /* 小伙 => 小夥 */, {"少于", "少於", -1 } /* 少于 => 少於 */, {"少冲", "少衝", -1 } /* 少冲 => 少衝 */, {"少吊", "少吊", -1 } /* 少吊 => 少吊 */, {"少干", "少幹", 36 } /* 少干 => 少幹 */, {"尔", "爾", -1 } /* 尔 => 爾 */, {"尔冬升", "爾冬陞", -1 } /* 尔冬升 => 爾冬陞 */, {"尘", "塵", -1 } /* 尘 => 塵 */, {"尘卷风", "塵捲風", -1 } /* 尘卷风 => 塵捲風 */, {"尚余", "尚餘", -1 } /* 尚余 => 尚餘 */, {"尝", "嘗", -1 } /* 尝 => 嘗 */, {"尤里", "尤里", -1 } /* 尤里 => 尤里 */, {"尧", "堯", -1 } /* 尧 => 堯 */, {"就吃干", "就吃乾", -1 } /* 就吃干 => 就吃乾 */, {"就干一", "就幹一", -1 } /* 就干一 => 就幹一 */, {"就干一杯", "就乾一杯", -1 } /* 就干一杯 => 就乾一杯 */, {"就干吧", "就幹吧", -1 } /* 就干吧 => 就幹吧 */, {"就干淨", "就乾淨", -1 } /* 就干淨 => 就乾淨 */, {"就范", "就範", -1 } /* 就范 => 就範 */, {"尴", "尷", -1 } /* 尴 => 尷 */, {"尸", "屍", -1 } /* 尸 => 屍 */, {"尸位", "尸位", -1 } /* 尸位 => 尸位 */, {"尸禄", "尸祿", -1 } /* 尸禄 => 尸祿 */, {"尺余", "尺餘", -1 } /* 尺余 => 尺餘 */, {"尺布斗粟", "尺布斗粟", -1 } /* 尺布斗粟 => 尺布斗粟 */, {"尼亚加拉大瀑布", "尼加拉瀑布", -1 } /* 尼亚加拉大瀑布 => 尼加拉瀑布 */, {"尼克松", "尼克森", -1 } /* 尼克松 => 尼克森 */, {"尼采", "尼采", -1 } /* 尼采 => 尼采 */, {"尽", "盡", -1 } /* 尽 => 盡 */, {"尽先", "儘先", -1 } /* 尽先 => 儘先 */, {"尽其所有", "儘其所有", -1 } /* 尽其所有 => 儘其所有 */, {"尽力", "儘力", -1 } /* 尽力 => 儘力 */, {"尽可能", "儘可能", -1 } /* 尽可能 => 儘可能 */, {"尽够", "儘夠", -1 } /* 尽够 => 儘夠 */, {"尽尽", "儘儘", -1 } /* 尽尽 => 儘儘 */, {"尽干", "盡幹", -1 } /* 尽干 => 盡幹 */, {"尽快", "儘快", -1 } /* 尽快 => 儘快 */, {"尽教", "儘教", -1 } /* 尽教 => 儘教 */, {"尽早", "儘早", -1 } /* 尽早 => 儘早 */, {"尽是", "儘是", -1 } /* 尽是 => 儘是 */, {"尽有可能", "儘有可能", -1 } /* 尽有可能 => 儘有可能 */, {"尽管", "儘管", -1 } /* 尽管 => 儘管 */, {"尽速", "儘速", -1 } /* 尽速 => 儘速 */, {"尽量", "儘量", -1 } /* 尽量 => 儘量 */, {"尾注", "章節附註", -1 } /* 尾注 => 章節附註 */, {"尿斗", "尿斗", -1 } /* 尿斗 => 尿斗 */, {"局促", "侷促", -1 } /* 局促 => 侷促 */, {"局域网", "區域網路", -1 } /* 局域网 => 區域網路 */, {"局蹙", "跼蹙", -1 } /* 局蹙 => 跼蹙 */, {"局躅", "跼躅", -1 } /* 局躅 => 跼躅 */, {"局限", "侷限", -1 } /* 局限 => 侷限 */, {"层", "層", -1 } /* 层 => 層 */, {"屃", "屓", -1 } /* 屃 => 屓 */, {"居里", "居里", -1 } /* 居里 => 居里 */, {"居里夫人", "居里夫人", -1 } /* 居里夫人 => 居里夫人 */, {"屉", "屜", -1 } /* 屉 => 屜 */, {"届", "屆", -1 } /* 届 => 屆 */, {"屋梁", "屋樑", -1 } /* 屋梁 => 屋樑 */, {"展布", "展佈", -1 } /* 展布 => 展佈 */, {"属", "屬", -1 } /* 属 => 屬 */, {"属于", "屬於", -1 } /* 属于 => 屬於 */, {"属制", "屬製", -1 } /* 属制 => 屬製 */, {"屡", "屢", -1 } /* 屡 => 屢 */, {"屦", "屨", -1 } /* 屦 => 屨 */, {"屯扎", "屯紮", -1 } /* 屯扎 => 屯紮 */, {"山墙", "山牆", -1 } /* 山墙 => 山牆 */, {"山岳", "山嶽", -1 } /* 山岳 => 山嶽 */, {"山羊胡", "山羊鬍", -1 } /* 山羊胡 => 山羊鬍 */, {"山羊须", "山羊鬚", -1 } /* 山羊须 => 山羊鬚 */, {"山药", "山藥", -1 } /* 山药 => 山藥 */, {"山重水复", "山重水復", -1 } /* 山重水复 => 山重水復 */, {"屿", "嶼", -1 } /* 屿 => 嶼 */, {"岁", "歲", -1 } /* 岁 => 歲 */, {"岂", "豈", -1 } /* 岂 => 豈 */, {"岖", "嶇", -1 } /* 岖 => 嶇 */, {"岗", "崗", -1 } /* 岗 => 崗 */, {"岘", "峴", -1 } /* 岘 => 峴 */, {"岙", "嶴", -1 } /* 岙 => 嶴 */, {"岚", "嵐", -1 } /* 岚 => 嵐 */, {"岛", "島", -1 } /* 岛 => 島 */, {"岛炼", "島鍊", -1 } /* 岛炼 => 島鍊 */, {"岭", "嶺", -1 } /* 岭 => 嶺 */, {"岳", "岳", -1 } /* 岳 => 岳 */, {"岳峙", "嶽峙", -1 } /* 岳峙 => 嶽峙 */, {"岳立", "嶽立", -1 } /* 岳立 => 嶽立 */, {"岳麓山", "嶽麓山", -1 } /* 岳麓山 => 嶽麓山 */, {"岽", "崬", -1 } /* 岽 => 崬 */, {"岿", "巋", -1 } /* 岿 => 巋 */, {"峃", "嶨", -1 } /* 峃 => 嶨 */, {"峄", "嶧", -1 } /* 峄 => 嶧 */, {"峇厘", "峇里", -1 } /* 峇厘 => 峇里 */, {"峇里", "峇里", -1 } /* 峇里 => 峇里 */, {"峡", "峽", -1 } /* 峡 => 峽 */, {"峣", "嶢", -1 } /* 峣 => 嶢 */, {"峤", "嶠", -1 } /* 峤 => 嶠 */, {"峥", "崢", -1 } /* 峥 => 崢 */, {"峦", "巒", -1 } /* 峦 => 巒 */, {"峰回", "峰迴", -1 } /* 峰回 => 峰迴 */, {"崂", "嶗", -1 } /* 崂 => 嶗 */, {"崃", "崍", -1 } /* 崃 => 崍 */, {"崄", "嶮", -1 } /* 崄 => 嶮 */, {"崖广", "崖广", -1 } /* 崖广 => 崖广 */, {"崭", "嶄", -1 } /* 崭 => 嶄 */, {"嵇首", "稽首", -1 } /* 嵇首 => 稽首 */, {"嵘", "嶸", -1 } /* 嵘 => 嶸 */, {"嵚", "嶔", -1 } /* 嵚 => 嶔 */, {"嵝", "嶁", -1 } /* 嵝 => 嶁 */, {"巅", "巔", -1 } /* 巅 => 巔 */, {"川朴", "川朴", -1 } /* 川朴 => 川朴 */, {"巡回", "巡迴", -1 } /* 巡回 => 巡迴 */, {"巡戈", "巡弋", -1 } /* 巡戈 => 巡弋 */, {"巡游", "巡遊", -1 } /* 巡游 => 巡遊 */, {"工余", "工餘", -1 } /* 工余 => 工餘 */, {"左冲", "左衝", -1 } /* 左冲 => 左衝 */, {"左右采之", "左右采之", -1 } /* 左右采之 => 左右采之 */, {"巧于", "巧於", -1 } /* 巧于 => 巧於 */, {"巧干", "巧幹", -1 } /* 巧干 => 巧幹 */, {"巨制", "巨製", -1 } /* 巨制 => 巨製 */, {"巨子", "鉅子", -1 } /* 巨子 => 鉅子 */, {"巨细", "鉅細", -1 } /* 巨细 => 鉅細 */, {"巨细靡遗", "鉅細靡遺", -1 } /* 巨细靡遗 => 鉅細靡遺 */, {"巨须", "巨鬚", -1 } /* 巨须 => 巨鬚 */, {"巨鹿", "鉅鹿", -1 } /* 巨鹿 => 鉅鹿 */, {"巩", "鞏", -1 } /* 巩 => 鞏 */, {"巯", "巰", -1 } /* 巯 => 巰 */, {"己丑", "己丑", -1 } /* 己丑 => 己丑 */, {"己干", "己幹", -1 } /* 己干 => 己幹 */, {"已余", "已餘", -1 } /* 已余 => 已餘 */, {"已愈", "已癒", -1 } /* 已愈 => 已癒 */, {"已松", "已鬆", -1 } /* 已松 => 已鬆 */, {"巴士", "巴士", -1 } /* 巴士 => 巴士 */, {"巴尔干", "巴爾幹", -1 } /* 巴尔干 => 巴爾幹 */, {"巴赫", "巴哈", -1 } /* 巴赫 => 巴哈 */, {"币", "幣", -1 } /* 币 => 幣 */, {"布", "布", -1 } /* 布 => 布 */, {"布一个", "佈一個", -1 } /* 布一个 => 佈一個 */, {"布下", "佈下", -1 } /* 布下 => 佈下 */, {"布个", "佈個", -1 } /* 布个 => 佈個 */, {"布什", "布希", 37 } /* 布什 => 布希 */, {"布什尔省", "布什爾省", -1 } /* 布什尔省 => 布什爾省 */, {"布伏", "佈伏", -1 } /* 布伏 => 佈伏 */, {"布兵", "佈兵", -1 } /* 布兵 => 佈兵 */, {"布告", "佈告", -1 } /* 布告 => 佈告 */, {"布哨", "佈哨", -1 } /* 布哨 => 佈哨 */, {"布坛", "佈壇", -1 } /* 布坛 => 佈壇 */, {"布导", "佈導", -1 } /* 布导 => 佈導 */, {"布局", "佈局", -1 } /* 布局 => 佈局 */, {"布岗", "佈崗", -1 } /* 布岗 => 佈崗 */, {"布於", "佈於", -1 } /* 布於 => 佈於 */, {"布施", "佈施", -1 } /* 布施 => 佈施 */, {"布景", "佈景", -1 } /* 布景 => 佈景 */, {"布满", "佈滿", -1 } /* 布满 => 佈滿 */, {"布疑阵", "佈疑陣", -1 } /* 布疑阵 => 佈疑陣 */, {"布线", "佈線", -1 } /* 布线 => 佈線 */, {"布维岛", "波維特島", -1 } /* 布维岛 => 波維特島 */, {"布置", "佈置", -1 } /* 布置 => 佈置 */, {"布署", "佈署", -1 } /* 布署 => 佈署 */, {"布莱尔", "貝理雅", -1 } /* 布莱尔 => 貝理雅 */, {"布著", "佈著", -1 } /* 布著 => 佈著 */, {"布谷", "布穀", -1 } /* 布谷 => 布穀 */, {"布达", "佈達", -1 } /* 布达 => 佈達 */, {"布达佩斯", "布達佩斯", -1 } /* 布达佩斯 => 布達佩斯 */, {"布道", "佈道", -1 } /* 布道 => 佈道 */, {"布里", "布里", -1 } /* 布里 => 布里 */, {"布里斯班", "布里斯班", -1 } /* 布里斯班 => 布里斯班 */, {"布防", "佈防", -1 } /* 布防 => 佈防 */, {"布阵", "佈陣", -1 } /* 布阵 => 佈陣 */, {"布雷", "佈雷", -1 } /* 布雷 => 佈雷 */, {"布雷顿", "布雷頓", -1 } /* 布雷顿 => 布雷頓 */, {"帅", "帥", -1 } /* 帅 => 帥 */, {"师", "師", -1 } /* 师 => 師 */, {"师云", "師云", -1 } /* 师云 => 師云 */, {"师云而云", "師云而云", -1 } /* 师云而云 => 師云而云 */, {"师范", "師範", -1 } /* 师范 => 師範 */, {"希拉里", "希拉莉", -1 } /* 希拉里 => 希拉莉 */, {"希特勒", "希特拉", -1 } /* 希特勒 => 希特拉 */, {"希腊", "希臘", -1 } /* 希腊 => 希臘 */, {"帏", "幃", -1 } /* 帏 => 幃 */, {"帐", "帳", -1 } /* 帐 => 帳 */, {"帕丽斯", "芭莉絲", -1 } /* 帕丽斯 => 芭莉絲 */, {"帕拉马里博", "巴拉馬利波", -1 } /* 帕拉马里博 => 巴拉馬利波 */, {"帘", "簾", -1 } /* 帘 => 簾 */, {"帘子", "帘子", -1 } /* 帘子 => 帘子 */, {"帘布", "帘布", -1 } /* 帘布 => 帘布 */, {"帜", "幟", -1 } /* 帜 => 幟 */, {"帝后", "帝后", -1 } /* 帝后 => 帝后 */, {"带", "帶", -1 } /* 带 => 帶 */, {"带发", "帶髮", -1 } /* 带发 => 帶髮 */, {"带发修行", "帶髮修行", -1 } /* 带发修行 => 帶髮修行 */, {"带团参加", "帶團參加", -1 } /* 带团参加 => 帶團參加 */, {"带头", "帶頭", -1 } /* 带头 => 帶頭 */, {"带宽", "頻寬", -1 } /* 带宽 => 頻寬 */, {"带征", "帶徵", -1 } /* 带征 => 帶徵 */, {"带着", "帶著", -1 } /* 带着 => 帶著 */, {"帧", "幀", -1 } /* 帧 => 幀 */, {"席卷", "席捲", -1 } /* 席卷 => 席捲 */, {"席子", "蓆子", -1 } /* 席子 => 蓆子 */, {"帮", "幫", -1 } /* 帮 => 幫 */, {"帱", "幬", -1 } /* 帱 => 幬 */, {"常干", "常幹", -1 } /* 常干 => 常幹 */, {"帻", "幘", -1 } /* 帻 => 幘 */, {"帼", "幗", -1 } /* 帼 => 幗 */, {"帽璎", "帽纓", -1 } /* 帽璎 => 帽纓 */, {"幂", "冪", -1 } /* 幂 => 冪 */, {"幡间", "墦間", -1 } /* 幡间 => 墦間 */, {"干一", "幹一", -1 } /* 干一 => 幹一 */, {"干一坛", "乾一罈", -1 } /* 干一坛 => 乾一罈 */, {"干一坛法", "幹一壇法", -1 } /* 干一坛法 => 幹一壇法 */, {"干一杯", "乾一杯", -1 } /* 干一杯 => 乾一杯 */, {"干一碗", "乾一碗", -1 } /* 干一碗 => 乾一碗 */, {"干上", "幹上", -1 } /* 干上 => 幹上 */, {"干下去", "幹下去", -1 } /* 干下去 => 幹下去 */, {"干不", "幹不", -1 } /* 干不 => 幹不 */, {"干不下", "幹不下", -1 } /* 干不下 => 幹不下 */, {"干不干", "幹不幹", -1 } /* 干不干 => 幹不幹 */, {"干不干净", "乾不乾淨", -1 } /* 干不干净 => 乾不乾淨 */, {"干不干杯", "乾不乾杯", -1 } /* 干不干杯 => 乾不乾杯 */, {"干丝", "乾絲", -1 } /* 干丝 => 乾絲 */, {"干两年", "幹兩年", -1 } /* 干两年 => 幹兩年 */, {"干两杯", "乾兩杯", -1 } /* 干两杯 => 乾兩杯 */, {"干个", "幹個", -1 } /* 干个 => 幹個 */, {"干么", "幹麼", -1 } /* 干么 => 幹麼 */, {"干乔", "乾喬", -1 } /* 干乔 => 乾喬 */, {"干买卖", "幹買賣", -1 } /* 干买卖 => 幹買賣 */, {"干了", "幹了", -1 } /* 干了 => 幹了 */, {"干了杯", "乾了杯", -1 } /* 干了杯 => 乾了杯 */, {"干事", "幹事", -1 } /* 干事 => 幹事 */, {"干井", "乾井", -1 } /* 干井 => 乾井 */, {"干些", "幹些", -1 } /* 干些 => 幹些 */, {"干产", "乾產", -1 } /* 干产 => 乾產 */, {"干亲", "乾親", -1 } /* 干亲 => 乾親 */, {"干人", "幹人", 38 } /* 干人 => 幹人 */, {"干什", "幹什", -1 } /* 干什 => 幹什 */, {"干什么", "幹什麼", -1 } /* 干什么 => 幹什麼 */, {"干他", "幹他", -1 } /* 干他 => 幹他 */, {"干件", "幹件", -1 } /* 干件 => 幹件 */, {"干任何", "幹任何", -1 } /* 干任何 => 幹任何 */, {"干份", "幹份", -1 } /* 干份 => 幹份 */, {"干伸舌", "乾伸舌", -1 } /* 干伸舌 => 乾伸舌 */, {"干似", "乾似", -1 } /* 干似 => 乾似 */, {"干何事", "幹何事", -1 } /* 干何事 => 幹何事 */, {"干你", "幹你", -1 } /* 干你 => 幹你 */, {"干你娘", "幹你娘", -1 } /* 干你娘 => 幹你娘 */, {"干假", "幹假", -1 } /* 干假 => 幹假 */, {"干傻事", "幹傻事", -1 } /* 干傻事 => 幹傻事 */, {"干儿", "乾兒", -1 } /* 干儿 => 乾兒 */, {"干儿子", "乾兒子", -1 } /* 干儿子 => 乾兒子 */, {"干冒烟", "乾冒煙", -1 } /* 干冒烟 => 乾冒煙 */, {"干农活", "幹農活", -1 } /* 干农活 => 幹農活 */, {"干冰", "乾冰", -1 } /* 干冰 => 乾冰 */, {"干冷", "乾冷", -1 } /* 干冷 => 乾冷 */, {"干净", "乾淨", -1 } /* 干净 => 乾淨 */, {"干几件", "幹幾件", -1 } /* 干几件 => 幹幾件 */, {"干几宗", "幹幾宗", -1 } /* 干几宗 => 幹幾宗 */, {"干几手", "乾幾手", -1 } /* 干几手 => 乾幾手 */, {"干几杯", "乾幾杯", -1 } /* 干几杯 => 乾幾杯 */, {"干几桩", "幹幾樁", -1 } /* 干几桩 => 幹幾樁 */, {"干几番", "幹幾番", -1 } /* 干几番 => 幹幾番 */, {"干几碗", "乾幾碗", -1 } /* 干几碗 => 乾幾碗 */, {"干几辈", "幹幾輩", -1 } /* 干几辈 => 幹幾輩 */, {"干出", "幹出", -1 } /* 干出 => 幹出 */, {"干刍", "乾芻", -1 } /* 干刍 => 乾芻 */, {"干別的", "幹別的", -1 } /* 干別的 => 幹別的 */, {"干到", "幹到", -1 } /* 干到 => 幹到 */, {"干刻版", "乾刻版", -1 } /* 干刻版 => 乾刻版 */, {"干剥剥", "乾剝剝", -1 } /* 干剥剥 => 乾剝剝 */, {"干办", "幹辦", -1 } /* 干办 => 幹辦 */, {"干劲", "幹勁", -1 } /* 干劲 => 幹勁 */, {"干化", "乾化", -1 } /* 干化 => 乾化 */, {"干卦", "乾卦", -1 } /* 干卦 => 乾卦 */, {"干又热", "乾又熱", -1 } /* 干又热 => 乾又熱 */, {"干发", "乾髮", -1 } /* 干发 => 乾髮 */, {"干台", "乾颱", -1 } /* 干台 => 乾颱 */, {"干叶", "乾葉", -1 } /* 干叶 => 乾葉 */, {"干号", "乾號", -1 } /* 干号 => 乾號 */, {"干吊着下巴", "乾吊著下巴", -1 } /* 干吊着下巴 => 乾吊著下巴 */, {"干吏", "幹吏", -1 } /* 干吏 => 幹吏 */, {"干吗", "幹嗎", -1 } /* 干吗 => 幹嗎 */, {"干呕", "乾嘔", -1 } /* 干呕 => 乾嘔 */, {"干员", "幹員", -1 } /* 干员 => 幹員 */, {"干和", "乾和", -1 } /* 干和 => 乾和 */, {"干咳", "乾咳", -1 } /* 干咳 => 乾咳 */, {"干咽", "乾咽", -1 } /* 干咽 => 乾咽 */, {"干咽", "乾嚥", -1 } /* 干咽 => 乾嚥 */, {"干品", "乾品", -1 } /* 干品 => 乾品 */, {"干哑", "乾啞", -1 } /* 干哑 => 乾啞 */, {"干哕", "乾噦", -1 } /* 干哕 => 乾噦 */, {"干哥", "乾哥", -1 } /* 干哥 => 乾哥 */, {"干哪", "幹哪", -1 } /* 干哪 => 幹哪 */, {"干哭", "乾哭", -1 } /* 干哭 => 乾哭 */, {"干啥", "幹啥", -1 } /* 干啥 => 幹啥 */, {"干啼湿哭", "乾啼濕哭", -1 } /* 干啼湿哭 => 乾啼濕哭 */, {"干嘛", "幹嘛", -1 } /* 干嘛 => 幹嘛 */, {"干嚎", "乾嚎", -1 } /* 干嚎 => 乾嚎 */, {"干回付", "乾回付", -1 } /* 干回付 => 乾回付 */, {"干圆洁净", "乾圓潔淨", -1 } /* 干圆洁净 => 乾圓潔淨 */, {"干土", "乾土", -1 } /* 干土 => 乾土 */, {"干坏事", "幹壞事", -1 } /* 干坏事 => 幹壞事 */, {"干坐着", "乾坐著", -1 } /* 干坐着 => 乾坐著 */, {"干坛子", "乾罈子", -1 } /* 干坛子 => 乾罈子 */, {"干坞", "乾塢", -1 } /* 干坞 => 乾塢 */, {"干声", "乾聲", -1 } /* 干声 => 乾聲 */, {"干大事", "幹大事", -1 } /* 干大事 => 幹大事 */, {"干头", "幹頭", -1 } /* 干头 => 幹頭 */, {"干女儿", "乾女兒", -1 } /* 干女儿 => 乾女兒 */, {"干女友", "幹女友", -1 } /* 干女友 => 幹女友 */, {"干女同事", "幹女同事", -1 } /* 干女同事 => 幹女同事 */, {"干女婿", "乾女婿", -1 } /* 干女婿 => 乾女婿 */, {"干女教师", "幹女教師", -1 } /* 干女教师 => 幹女教師 */, {"干奴才", "乾奴才", -1 } /* 干奴才 => 乾奴才 */, {"干她", "幹她", -1 } /* 干她 => 幹她 */, {"干好", "幹好", -1 } /* 干好 => 幹好 */, {"干妈", "乾媽", -1 } /* 干妈 => 乾媽 */, {"干妹", "乾妹", -1 } /* 干妹 => 乾妹 */, {"干姊", "乾姊", -1 } /* 干姊 => 乾姊 */, {"干姐", "乾姐", -1 } /* 干姐 => 乾姐 */, {"干姜", "乾薑", -1 } /* 干姜 => 乾薑 */, {"干娘", "乾娘", -1 } /* 干娘 => 乾娘 */, {"干孙", "乾孫", -1 } /* 干孙 => 乾孫 */, {"干季", "乾季", -1 } /* 干季 => 乾季 */, {"干完", "幹完", -1 } /* 干完 => 幹完 */, {"干家", "幹家", -1 } /* 干家 => 幹家 */, {"干将", "幹將", -1 } /* 干将 => 幹將 */, {"干就干", "幹就幹", -1 } /* 干就干 => 幹就幹 */, {"干尸", "乾屍", -1 } /* 干尸 => 乾屍 */, {"干尽", "幹盡", -1 } /* 干尽 => 幹盡 */, {"干尽一坛", "乾盡一磹", -1 } /* 干尽一坛 => 乾盡一磹 */, {"干尽一壺", "乾盡一壺", -1 } /* 干尽一壺 => 乾盡一壺 */, {"干尽一杯", "乾盡一杯", -1 } /* 干尽一杯 => 乾盡一杯 */, {"干尽一碗", "乾盡一碗", -1 } /* 干尽一碗 => 乾盡一碗 */, {"干屎橛", "乾屎橛", -1 } /* 干屎橛 => 乾屎橛 */, {"干巴", "乾巴", -1 } /* 干巴 => 乾巴 */, {"干布", "乾布", -1 } /* 干布 => 乾布 */, {"干干", "乾乾", -1 } /* 干干 => 乾乾 */, {"干干儿的", "乾乾兒的", -1 } /* 干干儿的 => 乾乾兒的 */, {"干干净净", "乾乾淨淨", -1 } /* 干干净净 => 乾乾淨淨 */, {"干干巴巴", "乾乾巴巴", -1 } /* 干干巴巴 => 乾乾巴巴 */, {"干干爽爽", "乾乾爽爽", -1 } /* 干干爽爽 => 乾乾爽爽 */, {"干干瘦瘦", "乾乾瘦瘦", -1 } /* 干干瘦瘦 => 乾乾瘦瘦 */, {"干干的", "乾乾的", -1 } /* 干干的 => 乾乾的 */, {"干干脆脆", "乾乾脆脆", -1 } /* 干干脆脆 => 乾乾脆脆 */, {"干底", "乾底", -1 } /* 干底 => 乾底 */, {"干弋", "干戈", -1 } /* 干弋 => 干戈 */, {"干式", "乾式", -1 } /* 干式 => 乾式 */, {"干式打印机", "乾式印表機", -1 } /* 干式打印机 => 乾式印表機 */, {"干弟", "乾弟", -1 } /* 干弟 => 乾弟 */, {"干强盗", "幹強盜", -1 } /* 干强盗 => 幹強盜 */, {"干得", "幹得", -1 } /* 干得 => 幹得 */, {"干得一杯", "乾得一杯", -1 } /* 干得一杯 => 乾得一杯 */, {"干得三杯", "乾得三杯", -1 } /* 干得三杯 => 乾得三杯 */, {"干得两杯", "乾得兩杯", -1 } /* 干得两杯 => 乾得兩杯 */, {"干得很", "乾得很", -1 } /* 干得很 => 乾得很 */, {"干急", "乾急", -1 } /* 干急 => 乾急 */, {"干性", "乾性", -1 } /* 干性 => 乾性 */, {"干性油", "幹性油", -1 } /* 干性油 => 幹性油 */, {"干惯", "幹慣", -1 } /* 干惯 => 幹慣 */, {"干成", "幹成", -1 } /* 干成 => 幹成 */, {"干我", "幹我", -1 } /* 干我 => 幹我 */, {"干手净脚", "乾手淨腳", -1 } /* 干手净脚 => 乾手淨腳 */, {"干才", "幹才", -1 } /* 干才 => 幹才 */, {"干打雷", "乾打雷", -1 } /* 干打雷 => 乾打雷 */, {"干折", "乾折", -1 } /* 干折 => 乾折 */, {"干掉", "幹掉", -1 } /* 干掉 => 幹掉 */, {"干掉一杯", "乾掉一杯", -1 } /* 干掉一杯 => 乾掉一杯 */, {"干掉一瓶", "乾掉一瓶", -1 } /* 干掉一瓶 => 乾掉一瓶 */, {"干掉一碗", "乾掉一碗", -1 } /* 干掉一碗 => 乾掉一碗 */, {"干掉杯", "乾掉杯", -1 } /* 干掉杯 => 乾掉杯 */, {"干掉这杯", "乾掉這杯", -1 } /* 干掉这杯 => 乾掉這杯 */, {"干掉这碗", "乾掉這碗", -1 } /* 干掉这碗 => 乾掉這碗 */, {"干掉那杯", "乾掉那杯", -1 } /* 干掉那杯 => 乾掉那杯 */, {"干掉那碗", "乾掉那碗", -1 } /* 干掉那碗 => 乾掉那碗 */, {"干探", "幹探", -1 } /* 干探 => 幹探 */, {"干搁", "乾擱", -1 } /* 干搁 => 乾擱 */, {"干撇下", "乾撇下", -1 } /* 干撇下 => 乾撇下 */, {"干擦", "乾擦", -1 } /* 干擦 => 乾擦 */, {"干支剌", "乾支剌", -1 } /* 干支剌 => 乾支剌 */, {"干支支", "乾支支", -1 } /* 干支支 => 乾支支 */, {"干数杯", "乾數杯", -1 } /* 干数杯 => 乾數杯 */, {"干敲梆子不卖油", "乾敲梆子不賣油", -1 } /* 干敲梆子不卖油 => 乾敲梆子不賣油 */, {"干料", "乾料", -1 } /* 干料 => 乾料 */, {"干旱", "乾旱", -1 } /* 干旱 => 乾旱 */, {"干晒", "乾曬", -1 } /* 干晒 => 乾曬 */, {"干暖", "乾暖", -1 } /* 干暖 => 乾暖 */, {"干材", "幹材", -1 } /* 干材 => 幹材 */, {"干村沙", "乾村沙", -1 } /* 干村沙 => 乾村沙 */, {"干杯", "乾杯", -1 } /* 干杯 => 乾杯 */, {"干果", "乾果", -1 } /* 干果 => 乾果 */, {"干枝", "乾枝", -1 } /* 干枝 => 乾枝 */, {"干枯", "乾枯", -1 } /* 干枯 => 乾枯 */, {"干架", "幹架", -1 } /* 干架 => 幹架 */, {"干柴", "乾柴", -1 } /* 干柴 => 乾柴 */, {"干校", "幹校", -1 } /* 干校 => 幹校 */, {"干桩", "幹樁", -1 } /* 干桩 => 幹樁 */, {"干梅", "乾梅", -1 } /* 干梅 => 乾梅 */, {"干正事", "幹正事", -1 } /* 干正事 => 幹正事 */, {"干此", "幹此", -1 } /* 干此 => 幹此 */, {"干此坛", "乾此罈", -1 } /* 干此坛 => 乾此罈 */, {"干此杯", "乾此杯", -1 } /* 干此杯 => 乾此杯 */, {"干死", "乾死", -1 } /* 干死 => 乾死 */, {"干毛巾", "乾毛巾", -1 } /* 干毛巾 => 乾毛巾 */, {"干江", "灨江", -1 } /* 干江 => 灨江 */, {"干沙", "乾沙", -1 } /* 干沙 => 乾沙 */, {"干没", "乾沒", -1 } /* 干没 => 乾沒 */, {"干泥", "乾泥", -1 } /* 干泥 => 乾泥 */, {"干洗", "乾洗", -1 } /* 干洗 => 乾洗 */, {"干活", "幹活", -1 } /* 干活 => 幹活 */, {"干流", "幹流", -1 } /* 干流 => 幹流 */, {"干济", "幹濟", -1 } /* 干济 => 幹濟 */, {"干涧", "乾澗", -1 } /* 干涧 => 乾澗 */, {"干涩", "乾澀", -1 } /* 干涩 => 乾澀 */, {"干涸", "乾涸", -1 } /* 干涸 => 乾涸 */, {"干渠", "幹渠", -1 } /* 干渠 => 幹渠 */, {"干渴", "乾渴", -1 } /* 干渴 => 乾渴 */, {"干湿", "乾濕", -1 } /* 干湿 => 乾濕 */, {"干湿发", "乾濕髮", -1 } /* 干湿发 => 乾濕髮 */, {"干灯盏", "乾燈盞", -1 } /* 干灯盏 => 乾燈盞 */, {"干点", "幹點", -1 } /* 干点 => 幹點 */, {"干烧", "乾燒", -1 } /* 干烧 => 乾燒 */, {"干热", "乾熱", -1 } /* 干热 => 乾熱 */, {"干焦", "乾焦", -1 } /* 干焦 => 乾焦 */, {"干熬", "乾熬", -1 } /* 干熬 => 乾熬 */, {"干燥", "乾燥", -1 } /* 干燥 => 乾燥 */, {"干父之蛊", "幹父之蠱", -1 } /* 干父之蛊 => 幹父之蠱 */, {"干爸", "乾爸", -1 } /* 干爸 => 乾爸 */, {"干爹", "乾爹", -1 } /* 干爹 => 乾爹 */, {"干爽", "乾爽", -1 } /* 干爽 => 乾爽 */, {"干片", "乾片", -1 } /* 干片 => 乾片 */, {"干犯法", "幹犯法", -1 } /* 干犯法 => 幹犯法 */, {"干球", "幹球", -1 } /* 干球 => 幹球 */, {"干球温度", "幹球溫度", -1 } /* 干球温度 => 幹球溫度 */, {"干甚", "幹甚", -1 } /* 干甚 => 幹甚 */, {"干生受", "乾生受", -1 } /* 干生受 => 乾生受 */, {"干生子", "乾生子", -1 } /* 干生子 => 乾生子 */, {"干生气", "乾生氣", -1 } /* 干生气 => 乾生氣 */, {"干电池", "乾電池", -1 } /* 干电池 => 乾電池 */, {"干略", "幹略", -1 } /* 干略 => 幹略 */, {"干疤", "乾疤", -1 } /* 干疤 => 乾疤 */, {"干疥", "乾疥", -1 } /* 干疥 => 乾疥 */, {"干瘦", "乾瘦", -1 } /* 干瘦 => 乾瘦 */, {"干瘪", "乾癟", -1 } /* 干瘪 => 乾癟 */, {"干瘾", "乾癮", -1 } /* 干瘾 => 乾癮 */, {"干白儿", "乾白兒", -1 } /* 干白儿 => 乾白兒 */, {"干的好", "幹的好", -1 } /* 干的好 => 幹的好 */, {"干眼", "乾眼", -1 } /* 干眼 => 乾眼 */, {"干着", "乾著", -1 } /* 干着 => 乾著 */, {"干着急", "乾著急", -1 } /* 干着急 => 乾著急 */, {"干瞪", "乾瞪", -1 } /* 干瞪 => 乾瞪 */, {"干瞪眼", "乾瞪眼", -1 } /* 干瞪眼 => 乾瞪眼 */, {"干硬", "乾硬", -1 } /* 干硬 => 乾硬 */, {"干礼", "乾禮", -1 } /* 干礼 => 乾禮 */, {"干稿", "乾稿", -1 } /* 干稿 => 乾稿 */, {"干窘", "乾窘", -1 } /* 干窘 => 乾窘 */, {"干站着", "乾站著", -1 } /* 干站着 => 乾站著 */, {"干笑", "乾笑", -1 } /* 干笑 => 乾笑 */, {"干等", "乾等", -1 } /* 干等 => 乾等 */, {"干篾片", "乾篾片", -1 } /* 干篾片 => 乾篾片 */, {"干粉", "乾粉", -1 } /* 干粉 => 乾粉 */, {"干粗活", "幹粗活", -1 } /* 干粗活 => 幹粗活 */, {"干粮", "乾糧", -1 } /* 干粮 => 乾糧 */, {"干糇", "乾餱", -1 } /* 干糇 => 乾餱 */, {"干系", "干係", -1 } /* 干系 => 干係 */, {"干纲不振", "乾綱不振", -1 } /* 干纲不振 => 乾綱不振 */, {"干线", "幹線", -1 } /* 干线 => 幹線 */, {"干练", "幹練", -1 } /* 干练 => 幹練 */, {"干细胞", "幹細胞", -1 } /* 干细胞 => 幹細胞 */, {"干结", "乾結", -1 } /* 干结 => 乾結 */, {"干绷儿", "乾繃兒", -1 } /* 干绷儿 => 乾繃兒 */, {"干缺", "幹缺", -1 } /* 干缺 => 幹缺 */, {"干耗", "乾耗", -1 } /* 干耗 => 乾耗 */, {"干肉", "乾肉", -1 } /* 干肉 => 乾肉 */, {"干股", "乾股", -1 } /* 干股 => 乾股 */, {"干肥", "乾肥", -1 } /* 干肥 => 乾肥 */, {"干脆", "乾脆", -1 } /* 干脆 => 乾脆 */, {"干花", "乾花", -1 } /* 干花 => 乾花 */, {"干苔", "乾苔", -1 } /* 干苔 => 乾苔 */, {"干茨腊", "乾茨臘", -1 } /* 干茨腊 => 乾茨臘 */, {"干茶钱", "乾茶錢", -1 } /* 干茶钱 => 乾茶錢 */, {"干草", "乾草", -1 } /* 干草 => 乾草 */, {"干菜", "乾菜", -1 } /* 干菜 => 乾菜 */, {"干营生", "幹營生", -1 } /* 干营生 => 幹營生 */, {"干落", "乾落", -1 } /* 干落 => 乾落 */, {"干著", "幹著", -1 } /* 干著 => 幹著 */, {"干薪", "乾薪", -1 } /* 干薪 => 乾薪 */, {"干虔", "乾虔", -1 } /* 干虔 => 乾虔 */, {"干蛊", "幹蠱", -1 } /* 干蛊 => 幹蠱 */, {"干衣", "乾衣", -1 } /* 干衣 => 乾衣 */, {"干裂", "乾裂", -1 } /* 干裂 => 乾裂 */, {"干警", "幹警", -1 } /* 干警 => 幹警 */, {"干货", "乾貨", -1 } /* 干货 => 乾貨 */, {"干货物", "幹貨物", -1 } /* 干货物 => 幹貨物 */, {"干起", "幹起", -1 } /* 干起 => 幹起 */, {"干起来", "幹起來", -1 } /* 干起来 => 幹起來 */, {"干路", "幹路", -1 } /* 干路 => 幹路 */, {"干过", "幹過", -1 } /* 干过 => 幹過 */, {"干过一杯", "乾過一杯", -1 } /* 干过一杯 => 乾過一杯 */, {"干过杯", "乾過杯", -1 } /* 干过杯 => 乾過杯 */, {"干过瘾", "乾過癮", -1 } /* 干过瘾 => 乾過癮 */, {"干这", "幹這", -1 } /* 干这 => 幹這 */, {"干这一杯", "乾這一杯", -1 } /* 干这一杯 => 乾這一杯 */, {"干这一行", "幹這一行", -1 } /* 干这一行 => 幹這一行 */, {"干这杯", "乾這杯", -1 } /* 干这杯 => 乾這杯 */, {"干这种事", "幹這種事", -1 } /* 干这种事 => 幹這種事 */, {"干透", "乾透", -1 } /* 干透 => 乾透 */, {"干逼", "幹逼", -1 } /* 干逼 => 幹逼 */, {"干道", "幹道", -1 } /* 干道 => 幹道 */, {"干那", "幹那", -1 } /* 干那 => 幹那 */, {"干那一杯", "乾那一杯", -1 } /* 干那一杯 => 乾那一杯 */, {"干那杯", "乾那杯", -1 } /* 干那杯 => 乾那杯 */, {"干部", "幹部", -1 } /* 干部 => 幹部 */, {"干酪", "乾酪", -1 } /* 干酪 => 乾酪 */, {"干醋", "乾醋", -1 } /* 干醋 => 乾醋 */, {"干量", "乾量", -1 } /* 干量 => 乾量 */, {"干错", "幹錯", -1 } /* 干错 => 幹錯 */, {"干阿奶", "乾阿奶", -1 } /* 干阿奶 => 乾阿奶 */, {"干雷", "乾雷", -1 } /* 干雷 => 乾雷 */, {"干霍乱", "乾霍亂", -1 } /* 干霍乱 => 乾霍亂 */, {"干面", "乾麵", -1 } /* 干面 => 乾麵 */, {"干革命", "幹革命", -1 } /* 干革命 => 幹革命 */, {"干颡", "乾顙", -1 } /* 干颡 => 乾顙 */, {"干饭", "乾飯", -1 } /* 干饭 => 乾飯 */, {"干馆", "乾館", -1 } /* 干馆 => 乾館 */, {"干馏", "乾餾", -1 } /* 干馏 => 乾餾 */, {"干鱼", "乾魚", -1 } /* 干鱼 => 乾魚 */, {"干麼", "幹麼", -1 } /* 干麼 => 幹麼 */, {"干!", "幹!", -1 } /* 干! => 幹! */, {"平治之乱", "平治之亂", -1 } /* 平治之乱 => 平治之亂 */, {"年余", "年餘", -1 } /* 年余 => 年餘 */, {"年历", "年曆", -1 } /* 年历 => 年曆 */, {"年历史", "年歷史", -1 } /* 年历史 => 年歷史 */, {"并", "並", -1 } /* 并 => 並 */, {"并一不二", "併一不二", -1 } /* 并一不二 => 併一不二 */, {"并不并", "併不併", -1 } /* 并不并 => 併不併 */, {"并为", "併爲", -1 } /* 并为 => 併爲 */, {"并为", "併為", -1 } /* 并为 => 併為 */, {"并产", "併產", -1 } /* 并产 => 併產 */, {"并入", "併入", -1 } /* 并入 => 併入 */, {"并兼", "併兼", -1 } /* 并兼 => 併兼 */, {"并列", "並列", -1 } /* 并列 => 並列 */, {"并到", "併到", -1 } /* 并到 => 併到 */, {"并力", "併力", -1 } /* 并力 => 併力 */, {"并力", "並力", -1 } /* 并力 => 並力 */, {"并包", "并包", -1 } /* 并包 => 并包 */, {"并发症", "併發症", -1 } /* 并发症 => 併發症 */, {"并叠", "併疊", -1 } /* 并叠 => 併疊 */, {"并合", "併合", -1 } /* 并合 => 併合 */, {"并吞", "併吞", -1 } /* 并吞 => 併吞 */, {"并图", "併圖", -1 } /* 并图 => 併圖 */, {"并在", "並在", -1 } /* 并在 => 並在 */, {"并州", "并州", -1 } /* 并州 => 并州 */, {"并成", "並成", -1 } /* 并成 => 並成 */, {"并拢", "並攏", -1 } /* 并拢 => 並攏 */, {"并拢", "併攏", -1 } /* 并拢 => 併攏 */, {"并排", "並排", -1 } /* 并排 => 並排 */, {"并排", "併排", -1 } /* 并排 => 併排 */, {"并案", "併案", -1 } /* 并案 => 併案 */, {"并流", "併流", -1 } /* 并流 => 併流 */, {"并砌", "併砌", -1 } /* 并砌 => 併砌 */, {"并科", "併科", -1 } /* 并科 => 併科 */, {"并线", "併線", -1 } /* 并线 => 併線 */, {"并网", "併網", -1 } /* 并网 => 併網 */, {"并肩子", "併肩子", -1 } /* 并肩子 => 併肩子 */, {"并肩干", "並肩幹", -1 } /* 并肩干 => 並肩幹 */, {"并购", "併購", -1 } /* 并购 => 併購 */, {"并购买", "並購買", -1 } /* 并购买 => 並購買 */, {"并赃", "併贓", -1 } /* 并赃 => 併贓 */, {"并赃拿贼", "併贓拿賊", -1 } /* 并赃拿贼 => 併贓拿賊 */, {"并赃治罪", "併贓治罪", -1 } /* 并赃治罪 => 併贓治罪 */, {"并进", "併進", -1 } /* 并进 => 併進 */, {"并采", "並採", -1 } /* 并采 => 並採 */, {"并陇", "併攏", -1 } /* 并陇 => 併攏 */, {"并除", "併除", -1 } /* 并除 => 併除 */, {"并骨", "併骨", -1 } /* 并骨 => 併骨 */, {"幸免", "倖免", -1 } /* 幸免 => 倖免 */, {"幸存", "倖存", -1 } /* 幸存 => 倖存 */, {"幸幸", "倖幸", -1 } /* 幸幸 => 倖幸 */, {"幺", "么", -1 } /* 幺 => 么 */, {"广", "廣", -1 } /* 广 => 廣 */, {"广布", "廣佈", -1 } /* 广布 => 廣佈 */, {"广舍", "廣捨", -1 } /* 广舍 => 廣捨 */, {"庄", "莊", -1 } /* 庄 => 莊 */, {"庆", "慶", -1 } /* 庆 => 慶 */, {"床席", "床蓆", -1 } /* 床席 => 床蓆 */, {"床第", "床笫", -1 } /* 床第 => 床笫 */, {"庐", "廬", -1 } /* 庐 => 廬 */, {"庑", "廡", -1 } /* 庑 => 廡 */, {"库", "庫", -1 } /* 库 => 庫 */, {"库克群岛", "庫克群島", -1 } /* 库克群岛 => 庫克群島 */, {"应", "應", -1 } /* 应 => 應 */, {"应征", "應徵", -1 } /* 应征 => 應徵 */, {"应采儿", "應采儿", -1 } /* 应采儿 => 應采儿 */, {"底格里斯", "底格里斯", -1 } /* 底格里斯 => 底格里斯 */, {"底线", "底線", -1 } /* 底线 => 底線 */, {"底蕴", "底蘊", -1 } /* 底蕴 => 底蘊 */, {"底里", "底里", -1 } /* 底里 => 底里 */, {"店铺", "店舖", -1 } /* 店铺 => 店舖 */, {"庙", "廟", -1 } /* 庙 => 廟 */, {"庚丑", "庚丑", -1 } /* 庚丑 => 庚丑 */, {"府干", "府幹", -1 } /* 府干 => 府幹 */, {"庞", "龐", -1 } /* 庞 => 龐 */, {"废", "廢", -1 } /* 废 => 廢 */, {"废后", "廢后", -1 } /* 废后 => 廢后 */, {"康复", "康復", -1 } /* 康复 => 康復 */, {"康愈", "康癒", -1 } /* 康愈 => 康癒 */, {"康采恩", "康采恩", -1 } /* 康采恩 => 康采恩 */, {"庼", "廎", -1 } /* 庼 => 廎 */, {"廖丑", "廖丑", -1 } /* 廖丑 => 廖丑 */, {"廪", "廩", -1 } /* 廪 => 廩 */, {"建于", "建於", -1 } /* 建于 => 建於 */, {"廿余", "廿餘", -1 } /* 廿余 => 廿餘 */, {"开", "開", -1 } /* 开 => 開 */, {"开伙", "開伙", -1 } /* 开伙 => 開伙 */, {"开启", "開啟", -1 } /* 开启 => 開啟 */, {"开哄", "開鬨", -1 } /* 开哄 => 開鬨 */, {"开天辟地", "開天闢地", -1 } /* 开天辟地 => 開天闢地 */, {"开征", "開徵", -1 } /* 开征 => 開徵 */, {"开浚", "開濬", -1 } /* 开浚 => 開濬 */, {"开诚布公", "開誠佈公", -1 } /* 开诚布公 => 開誠佈公 */, {"开辟", "開闢", -1 } /* 开辟 => 開闢 */, {"开采", "開採", -1 } /* 开采 => 開採 */, {"开铺", "開舖", -1 } /* 开铺 => 開舖 */, {"异", "異", -1 } /* 异 => 異 */, {"异于", "異於", -1 } /* 异于 => 異於 */, {"异步", "非同步", -1 } /* 异步 => 非同步 */, {"异采", "異采", -1 } /* 异采 => 異采 */, {"弃", "棄", -1 } /* 弃 => 棄 */, {"弃舍", "棄捨", -1 } /* 弃舍 => 棄捨 */, {"弄干", "弄乾", -1 } /* 弄干 => 弄乾 */, {"弄松", "弄鬆", -1 } /* 弄松 => 弄鬆 */, {"弄脏", "弄髒", -1 } /* 弄脏 => 弄髒 */, {"弄面吃", "弄麵吃", -1 } /* 弄面吃 => 弄麵吃 */, {"弑", "弒", -1 } /* 弑 => 弒 */, {"引线", "引線", -1 } /* 引线 => 引線 */, {"弘历", "弘曆", -1 } /* 弘历 => 弘曆 */, {"弛骋", "馳騁", -1 } /* 弛骋 => 馳騁 */, {"张", "張", -1 } /* 张 => 張 */, {"张三丰", "張三丰", -1 } /* 张三丰 => 張三丰 */, {"弥", "彌", -1 } /* 弥 => 彌 */, {"弥山遍野", "瀰山遍野", -1 } /* 弥山遍野 => 瀰山遍野 */, {"弥弥", "瀰瀰", -1 } /* 弥弥 => 瀰瀰 */, {"弥散", "瀰散", -1 } /* 弥散 => 瀰散 */, {"弥漫", "瀰漫", -1 } /* 弥漫 => 瀰漫 */, {"弥漫着", "瀰漫著", -1 } /* 弥漫着 => 瀰漫著 */, {"弥蒙", "瀰濛", -1 } /* 弥蒙 => 瀰濛 */, {"弦", "弦", -1 } /* 弦 => 弦 */, {"弦乐", "絃樂", -1 } /* 弦乐 => 絃樂 */, {"弦歌", "絃歌", -1 } /* 弦歌 => 絃歌 */, {"弦琴", "絃琴", -1 } /* 弦琴 => 絃琴 */, {"弦管", "絃管", -1 } /* 弦管 => 絃管 */, {"弦索", "絃索", -1 } /* 弦索 => 絃索 */, {"弦线", "絃線", -1 } /* 弦线 => 絃線 */, {"弧线", "弧線", -1 } /* 弧线 => 弧線 */, {"弪", "弳", -1 } /* 弪 => 弳 */, {"弯", "彎", -1 } /* 弯 => 彎 */, {"弱于", "弱於", -1 } /* 弱于 => 弱於 */, {"弹", "彈", -1 } /* 弹 => 彈 */, {"弹壳", "彈殼", -1 } /* 弹壳 => 彈殼 */, {"弹子台", "彈子檯", -1 } /* 弹子台 => 彈子檯 */, {"弹涂", "彈塗", -1 } /* 弹涂 => 彈塗 */, {"弹珠台", "彈珠檯", -1 } /* 弹珠台 => 彈珠檯 */, {"弹药", "彈藥", -1 } /* 弹药 => 彈藥 */, {"弹药", "彈葯", -1 } /* 弹药 => 彈葯 */, {"强", "強", -1 } /* 强 => 強 */, {"强于", "強於", -1 } /* 强于 => 強於 */, {"强冲", "強衝", -1 } /* 强冲 => 強衝 */, {"强台", "強颱", -1 } /* 强台 => 強颱 */, {"强奸", "強姦", -1 } /* 强奸 => 強姦 */, {"强干弱枝", "強幹弱枝", -1 } /* 强干弱枝 => 強幹弱枝 */, {"强界", "疆界", -1 } /* 强界 => 疆界 */, {"强聒不舍", "强聒不舍", -1 } /* 强聒不舍 => 强聒不舍 */, {"强鹼", "強鹼", -1 } /* 强鹼 => 強鹼 */, {"归", "歸", -1 } /* 归 => 歸 */, {"归于", "歸於", -1 } /* 归于 => 歸於 */, {"归并", "歸併", -1 } /* 归并 => 歸併 */, {"归并不", "歸並不", -1 } /* 归并不 => 歸並不 */, {"归并且", "歸並且", -1 } /* 归并且 => 歸並且 */, {"归并非", "歸並非", -1 } /* 归并非 => 歸並非 */, {"归朴", "歸璞", -1 } /* 归朴 => 歸璞 */, {"归真反朴", "歸真反璞", -1 } /* 归真反朴 => 歸真反璞 */, {"归究", "歸咎", -1 } /* 归究 => 歸咎 */, {"归里", "歸里", -1 } /* 归里 => 歸里 */, {"当", "當", -1 } /* 当 => 當 */, {"当一声", "噹一聲", -1 } /* 当一声 => 噹一聲 */, {"当且仅当", "若且唯若", -1 } /* 当且仅当 => 若且唯若 */, {"当其冲", "當其衝", -1 } /* 当其冲 => 當其衝 */, {"当啷", "噹啷", -1 } /* 当啷 => 噹啷 */, {"当当", "噹噹", -1 } /* 当当 => 噹噹 */, {"当当当", "噹噹噹", -1 } /* 当当当 => 噹噹噹 */, {"当的一响", "噹的一響", -1 } /* 当的一响 => 噹的一響 */, {"当的一声", "噹的一聲", -1 } /* 当的一声 => 噹的一聲 */, {"录", "錄", -1 } /* 录 => 錄 */, {"录制", "錄製", -1 } /* 录制 => 錄製 */, {"录着", "錄著", -1 } /* 录着 => 錄著 */, {"彝", "彞", -1 } /* 彝 => 彞 */, {"形单影只", "形單影隻", -1 } /* 形单影只 => 形單影隻 */, {"彦", "彥", -1 } /* 彦 => 彥 */, {"彩", "彩", -1 } /* 彩 => 彩 */, {"彩凤", "綵鳳", -1 } /* 彩凤 => 綵鳳 */, {"彩头", "綵頭", -1 } /* 彩头 => 綵頭 */, {"彩女", "綵女", -1 } /* 彩女 => 綵女 */, {"彩带", "綵帶", -1 } /* 彩带 => 綵帶 */, {"彩排", "綵排", -1 } /* 彩排 => 綵排 */, {"彩杖", "綵杖", -1 } /* 彩杖 => 綵杖 */, {"彩棚", "綵棚", -1 } /* 彩棚 => 綵棚 */, {"彩楼", "綵樓", -1 } /* 彩楼 => 綵樓 */, {"彩演", "綵演", -1 } /* 彩演 => 綵演 */, {"彩灯", "綵燈", -1 } /* 彩灯 => 綵燈 */, {"彩牌", "綵牌", -1 } /* 彩牌 => 綵牌 */, {"彩球", "綵球", -1 } /* 彩球 => 綵球 */, {"彩笔生", "綵筆生", -1 } /* 彩笔生 => 綵筆生 */, {"彩线", "彩線", -1 } /* 彩线 => 彩線 */, {"彩线", "綵線", -1 } /* 彩线 => 綵線 */, {"彩绸", "綵綢", -1 } /* 彩绸 => 綵綢 */, {"彩缎", "綵緞", -1 } /* 彩缎 => 綵緞 */, {"彩缯", "綵繒", -1 } /* 彩缯 => 綵繒 */, {"彩衣", "綵衣", -1 } /* 彩衣 => 綵衣 */, {"彩裳", "綵裳", -1 } /* 彩裳 => 綵裳 */, {"彩鸞", "綵鸞", -1 } /* 彩鸞 => 綵鸞 */, {"彬县", "邠縣", -1 } /* 彬县 => 邠縣 */, {"影后", "影后", 39 } /* 影后 => 影后 */, {"彷佛", "彷彿", -1 } /* 彷佛 => 彷彿 */, {"彷徨", "徬徨", -1 } /* 彷徨 => 徬徨 */, {"彻", "徹", -1 } /* 彻 => 徹 */, {"往后冲", "往後衝", -1 } /* 往后冲 => 往後衝 */, {"往复", "往複", -1 } /* 往复 => 往複 */, {"往外冲", "往外衝", -1 } /* 往外冲 => 往外衝 */, {"往里面冲", "往裡面衝", -1 } /* 往里面冲 => 往裡面衝 */, {"征个", "徵個", -1 } /* 征个 => 徵個 */, {"征了", "徵了", -1 } /* 征了 => 徵了 */, {"征人", "徵人", -1 } /* 征人 => 徵人 */, {"征令", "徵令", -1 } /* 征令 => 徵令 */, {"征信", "徵信", -1 } /* 征信 => 徵信 */, {"征候", "徵候", -1 } /* 征候 => 徵候 */, {"征兆", "徵兆", -1 } /* 征兆 => 徵兆 */, {"征入", "徵入", -1 } /* 征入 => 徵入 */, {"征兵", "徵兵", -1 } /* 征兵 => 徵兵 */, {"征募", "徵募", -1 } /* 征募 => 徵募 */, {"征去", "徵去", -1 } /* 征去 => 徵去 */, {"征友", "徵友", -1 } /* 征友 => 徵友 */, {"征取", "徵取", -1 } /* 征取 => 徵取 */, {"征召", "徵召", -1 } /* 征召 => 徵召 */, {"征吏", "徵吏", -1 } /* 征吏 => 徵吏 */, {"征启", "徵啟", -1 } /* 征启 => 徵啟 */, {"征咎", "徵咎", -1 } /* 征咎 => 徵咎 */, {"征圣", "徵聖", -1 } /* 征圣 => 徵聖 */, {"征地", "徵地", -1 } /* 征地 => 徵地 */, {"征婚", "徵婚", -1 } /* 征婚 => 徵婚 */, {"征引", "徵引", -1 } /* 征引 => 徵引 */, {"征得", "徵得", -1 } /* 征得 => 徵得 */, {"征怪", "徵怪", -1 } /* 征怪 => 徵怪 */, {"征意见", "徵意見", -1 } /* 征意见 => 徵意見 */, {"征收", "徵收", -1 } /* 征收 => 徵收 */, {"征效", "徵效", -1 } /* 征效 => 徵效 */, {"征敛", "徵斂", -1 } /* 征敛 => 徵斂 */, {"征文", "徵文", -1 } /* 征文 => 徵文 */, {"征服兵", "徵服兵", -1 } /* 征服兵 => 徵服兵 */, {"征求", "徵求", -1 } /* 征求 => 徵求 */, {"征片", "徵片", -1 } /* 征片 => 徵片 */, {"征状", "徵狀", -1 } /* 征状 => 徵狀 */, {"征用", "徵用", -1 } /* 征用 => 徵用 */, {"征稅", "徵稅", -1 } /* 征稅 => 徵稅 */, {"征稿", "徵稿", -1 } /* 征稿 => 徵稿 */, {"征管", "徵管", -1 } /* 征管 => 徵管 */, {"征粮", "徵糧", -1 } /* 征粮 => 徵糧 */, {"征纳", "徵納", -1 } /* 征纳 => 徵納 */, {"征缴", "徵繳", -1 } /* 征缴 => 徵繳 */, {"征聘", "徵聘", -1 } /* 征聘 => 徵聘 */, {"征诏", "徵詔", -1 } /* 征诏 => 徵詔 */, {"征询", "徵詢", -1 } /* 征询 => 徵詢 */, {"征调", "徵調", -1 } /* 征调 => 徵調 */, {"征象", "徵象", -1 } /* 征象 => 徵象 */, {"征财", "徵財", -1 } /* 征财 => 徵財 */, {"征购", "徵購", -1 } /* 征购 => 徵購 */, {"征费", "徵費", -1 } /* 征费 => 徵費 */, {"征赋", "徵賦", -1 } /* 征赋 => 徵賦 */, {"征车", "徵車", -1 } /* 征车 => 徵車 */, {"征迹", "徵跡", -1 } /* 征迹 => 徵跡 */, {"征选", "徵選", -1 } /* 征选 => 徵選 */, {"征逐", "徵逐", -1 } /* 征逐 => 徵逐 */, {"征集", "徵集", -1 } /* 征集 => 徵集 */, {"征验", "徵驗", -1 } /* 征验 => 徵驗 */, {"径", "徑", -1 } /* 径 => 徑 */, {"径取", "逕取", -1 } /* 径取 => 逕取 */, {"径启", "逕啟", -1 } /* 径启 => 逕啟 */, {"径寄", "逕寄", -1 } /* 径寄 => 逕寄 */, {"径庭", "逕庭", -1 } /* 径庭 => 逕庭 */, {"径砸", "逕砸", -1 } /* 径砸 => 逕砸 */, {"径答", "逕答", -1 } /* 径答 => 逕答 */, {"径自", "逕自", -1 } /* 径自 => 逕自 */, {"很咸", "很鹹", -1 } /* 很咸 => 很鹹 */, {"很干", "很乾", -1 } /* 很干 => 很乾 */, {"很干了", "很乾了", -1 } /* 很干了 => 很乾了 */, {"很松", "很鬆", -1 } /* 很松 => 很鬆 */, {"徐干", "徐幹", -1 } /* 徐干 => 徐幹 */, {"徒峭", "陡峭", -1 } /* 徒峭 => 陡峭 */, {"徒托", "徒託", -1 } /* 徒托 => 徒託 */, {"徕", "徠", -1 } /* 徕 => 徠 */, {"得克萨斯", "德克薩斯", -1 } /* 得克萨斯 => 德克薩斯 */, {"得准不准", "得準不準", -1 } /* 得准不准 => 得準不準 */, {"得意之余", "得意之餘", -1 } /* 得意之余 => 得意之餘 */, {"徘徊于", "徘徊於", -1 } /* 徘徊于 => 徘徊於 */, {"徜若", "倘若", -1 } /* 徜若 => 倘若 */, {"御", "禦", -1 } /* 御 => 禦 */, {"御准", "御准", -1 } /* 御准 => 御准 */, {"御制", "御製", -1 } /* 御制 => 御製 */, {"御印", "御印", -1 } /* 御印 => 御印 */, {"御史", "御史", -1 } /* 御史 => 御史 */, {"御封", "御封", -1 } /* 御封 => 御封 */, {"御用", "御用", -1 } /* 御用 => 御用 */, {"御笔", "御筆", -1 } /* 御笔 => 御筆 */, {"御赐", "御賜", -1 } /* 御赐 => 御賜 */, {"徨恐", "惶恐", -1 } /* 徨恐 => 惶恐 */, {"循环", "迴圈", -1 } /* 循环 => 迴圈 */, {"循环", "循環", -1 } /* 循环 => 循環 */, {"微松", "微鬆", -1 } /* 微松 => 微鬆 */, {"微须", "微鬚", -1 } /* 微须 => 微鬚 */, {"徵、羽", "徵、羽", -1 } /* 徵、羽 => 徵、羽 */, {"徵调", "徵调", -1 } /* 徵调 => 徵调 */, {"德里", "德里", -1 } /* 德里 => 德里 */, {"徽菌", "黴菌", -1 } /* 徽菌 => 黴菌 */, {"心愿", "心願", -1 } /* 心愿 => 心願 */, {"心相系", "心相繫", -1 } /* 心相系 => 心相繫 */, {"心系", "心繫", -1 } /* 心系 => 心繫 */, {"心细似发", "心細似髮", -1 } /* 心细似发 => 心細似髮 */, {"心细如发", "心細如髮", -1 } /* 心细如发 => 心細如髮 */, {"心荡神驰", "心蕩神馳", -1 } /* 心荡神驰 => 心蕩神馳 */, {"心药", "心藥", -1 } /* 心药 => 心藥 */, {"必游", "必遊", -1 } /* 必游 => 必遊 */, {"必须品", "必需品", -1 } /* 必须品 => 必需品 */, {"忆", "憶", -1 } /* 忆 => 憶 */, {"忏", "懺", -1 } /* 忏 => 懺 */, {"志哀", "誌哀", -1 } /* 志哀 => 誌哀 */, {"志喜", "誌喜", -1 } /* 志喜 => 誌喜 */, {"志庆", "誌慶", -1 } /* 志庆 => 誌慶 */, {"志异", "誌異", -1 } /* 志异 => 誌異 */, {"忙于", "忙於", -1 } /* 忙于 => 忙於 */, {"忙线", "忙線", -1 } /* 忙线 => 忙線 */, {"忠于", "忠於", -1 } /* 忠于 => 忠於 */, {"忧", "憂", -1 } /* 忧 => 憂 */, {"快冲", "快衝", -1 } /* 快冲 => 快衝 */, {"快卷", "快捲", -1 } /* 快卷 => 快捲 */, {"快吃干", "快吃乾", -1 } /* 快吃干 => 快吃乾 */, {"快干", "快幹", 40 } /* 快干 => 快幹 */, {"快干了", "快乾了", -1 } /* 快干了 => 快乾了 */, {"快干杯", "快乾杯", -1 } /* 快干杯 => 快乾杯 */, {"快干裂", "快乾裂", -1 } /* 快干裂 => 快乾裂 */, {"快松下", "快鬆下", -1 } /* 快松下 => 快鬆下 */, {"快舍下", "快捨下", -1 } /* 快舍下 => 快捨下 */, {"念一声", "唸一聲", -1 } /* 念一声 => 唸一聲 */, {"念一念", "唸一唸", -1 } /* 念一念 => 唸一唸 */, {"念下去", "唸下去", -1 } /* 念下去 => 唸下去 */, {"念书", "唸書", -1 } /* 念书 => 唸書 */, {"念了一声", "唸了一聲", -1 } /* 念了一声 => 唸了一聲 */, {"念佛", "唸佛", -1 } /* 念佛 => 唸佛 */, {"念作", "唸作", -1 } /* 念作 => 唸作 */, {"念到", "唸到", -1 } /* 念到 => 唸到 */, {"念咒", "唸咒", -1 } /* 念咒 => 唸咒 */, {"念好", "唸好", -1 } /* 念好 => 唸好 */, {"念完", "唸完", -1 } /* 念完 => 唸完 */, {"念得", "唸得", -1 } /* 念得 => 唸得 */, {"念念", "唸唸", -1 } /* 念念 => 唸唸 */, {"念成", "唸成", -1 } /* 念成 => 唸成 */, {"念来念去", "唸來唸去", -1 } /* 念来念去 => 唸來唸去 */, {"念法", "唸法", -1 } /* 念法 => 唸法 */, {"念点", "唸點", -1 } /* 念点 => 唸點 */, {"念着", "唸著", -1 } /* 念着 => 唸著 */, {"念经", "唸經", -1 } /* 念经 => 唸經 */, {"念给", "唸給", -1 } /* 念给 => 唸給 */, {"念诵", "唸誦", -1 } /* 念诵 => 唸誦 */, {"念起来", "唸起來", -1 } /* 念起来 => 唸起來 */, {"念过", "唸過", -1 } /* 念过 => 唸過 */, {"念错", "唸錯", -1 } /* 念错 => 唸錯 */, {"忽松", "忽鬆", -1 } /* 忽松 => 忽鬆 */, {"忽舍下", "忽捨下", -1 } /* 忽舍下 => 忽捨下 */, {"忾", "愾", -1 } /* 忾 => 愾 */, {"怀", "懷", -1 } /* 怀 => 懷 */, {"怀表", "懷錶", -1 } /* 怀表 => 懷錶 */, {"态", "態", -1 } /* 态 => 態 */, {"怂", "慫", -1 } /* 怂 => 慫 */, {"怃", "憮", -1 } /* 怃 => 憮 */, {"怄", "慪", -1 } /* 怄 => 慪 */, {"怅", "悵", -1 } /* 怅 => 悵 */, {"怆", "愴", -1 } /* 怆 => 愴 */, {"怎么", "怎麼", -1 } /* 怎么 => 怎麼 */, {"怎么干", "怎麼幹", -1 } /* 怎么干 => 怎麼幹 */, {"怎么着", "怎麼著", -1 } /* 怎么着 => 怎麼著 */, {"怎麼", "怎麼", -1 } /* 怎麼 => 怎麼 */, {"怒发冲冠", "怒髮衝冠", -1 } /* 怒发冲冠 => 怒髮衝冠 */, {"怒发冲天", "怒髮衝天", -1 } /* 怒发冲天 => 怒髮衝天 */, {"怒气冲天", "怒氣衝天", -1 } /* 怒气冲天 => 怒氣衝天 */, {"怜", "憐", -1 } /* 怜 => 憐 */, {"急于", "急於", -1 } /* 急于 => 急於 */, {"急冲", "急衝", -1 } /* 急冲 => 急衝 */, {"急冲而下", "急衝而下", -1 } /* 急冲而下 => 急衝而下 */, {"急卷", "急捲", -1 } /* 急卷 => 急捲 */, {"急征", "急徵", -1 } /* 急征 => 急徵 */, {"性征", "性徵", -1 } /* 性征 => 性徵 */, {"性欲", "性慾", -1 } /* 性欲 => 性慾 */, {"怪里怪气", "怪里怪氣", -1 } /* 怪里怪气 => 怪里怪氣 */, {"总", "總", -1 } /* 总 => 總 */, {"总线", "匯流排", -1 } /* 总线 => 匯流排 */, {"怼", "懟", -1 } /* 怼 => 懟 */, {"怿", "懌", -1 } /* 怿 => 懌 */, {"恋", "戀", -1 } /* 恋 => 戀 */, {"恋恋不舍", "戀戀不捨", -1 } /* 恋恋不舍 => 戀戀不捨 */, {"恒", "恆", -1 } /* 恒 => 恆 */, {"恢复", "恢復", -1 } /* 恢复 => 恢復 */, {"恩准", "恩准", -1 } /* 恩准 => 恩准 */, {"恭于", "恭於", -1 } /* 恭于 => 恭於 */, {"恭逢", "躬逢", -1 } /* 恭逢 => 躬逢 */, {"恳", "懇", -1 } /* 恳 => 懇 */, {"恳托", "懇託", -1 } /* 恳托 => 懇託 */, {"恶", "惡", -1 } /* 恶 => 惡 */, {"恶于", "惡於", -1 } /* 恶于 => 惡於 */, {"恶心", "噁心", -1 } /* 恶心 => 噁心 */, {"恸", "慟", -1 } /* 恸 => 慟 */, {"恹", "懨", -1 } /* 恹 => 懨 */, {"恺", "愷", -1 } /* 恺 => 愷 */, {"恻", "惻", -1 } /* 恻 => 惻 */, {"恼", "惱", -1 } /* 恼 => 惱 */, {"恽", "惲", -1 } /* 恽 => 惲 */, {"悠游", "悠遊", -1 } /* 悠游 => 悠遊 */, {"悦", "悅", -1 } /* 悦 => 悅 */, {"悫", "慤", -1 } /* 悫 => 慤 */, {"悬", "懸", -1 } /* 悬 => 懸 */, {"悬吊", "懸吊", -1 } /* 悬吊 => 懸吊 */, {"悬梁", "懸樑", -1 } /* 悬梁 => 懸樑 */, {"悬臂梁", "懸臂樑", -1 } /* 悬臂梁 => 懸臂樑 */, {"悭", "慳", -1 } /* 悭 => 慳 */, {"悮", "悞", -1 } /* 悮 => 悞 */, {"悯", "憫", -1 } /* 悯 => 憫 */, {"悲戚", "悲慼", -1 } /* 悲戚 => 悲慼 */, {"悲泯", "悲憫", -1 } /* 悲泯 => 悲憫 */, {"情有所钟", "情有所钟", -1 } /* 情有所钟 => 情有所钟 */, {"情欲", "情慾", -1 } /* 情欲 => 情慾 */, {"情采", "情采", -1 } /* 情采 => 情采 */, {"惊", "驚", -1 } /* 惊 => 驚 */, {"惊螫", "驚蟄", -1 } /* 惊螫 => 驚蟄 */, {"惊赞", "驚讚", -1 } /* 惊赞 => 驚讚 */, {"惧", "懼", -1 } /* 惧 => 懼 */, {"惨", "慘", -1 } /* 惨 => 慘 */, {"惩", "懲", -1 } /* 惩 => 懲 */, {"惫", "憊", -1 } /* 惫 => 憊 */, {"惬", "愜", -1 } /* 惬 => 愜 */, {"惭", "慚", -1 } /* 惭 => 慚 */, {"惮", "憚", -1 } /* 惮 => 憚 */, {"惯", "慣", -1 } /* 惯 => 慣 */, {"想干", "想幹", 41 } /* 想干 => 想幹 */, {"想着", "想著", -1 } /* 想着 => 想著 */, {"愈卷", "愈捲", -1 } /* 愈卷 => 愈捲 */, {"愈合", "癒合", 42 } /* 愈合 => 癒合 */, {"愈疮", "癒瘡", -1 } /* 愈疮 => 癒瘡 */, {"意函", "意涵", -1 } /* 意函 => 意涵 */, {"意大利", "意大利", -1 } /* 意大利 => 意大利 */, {"意面", "意麵", -1 } /* 意面 => 意麵 */, {"愚暗", "愚闇", -1 } /* 愚暗 => 愚闇 */, {"感于", "感於", -1 } /* 感于 => 感於 */, {"愠", "慍", -1 } /* 愠 => 慍 */, {"愤", "憤", -1 } /* 愤 => 憤 */, {"愦", "憒", -1 } /* 愦 => 憒 */, {"愧于", "愧於", -1 } /* 愧于 => 愧於 */, {"愿", "願", -1 } /* 愿 => 願 */, {"愿干", "願幹", -1 } /* 愿干 => 願幹 */, {"愿干一杯", "願乾一杯", -1 } /* 愿干一杯 => 願乾一杯 */, {"愿干净", "願乾淨", -1 } /* 愿干净 => 願乾淨 */, {"愿干旱", "願乾旱", -1 } /* 愿干旱 => 願乾旱 */, {"愿干杯", "願乾杯", -1 } /* 愿干杯 => 願乾杯 */, {"愿干涸", "願乾涸", -1 } /* 愿干涸 => 願乾涸 */, {"愿干燥", "願乾燥", -1 } /* 愿干燥 => 願乾燥 */, {"愿干粮", "願乾糧", -1 } /* 愿干粮 => 願乾糧 */, {"愿干脆", "願乾脆", -1 } /* 愿干脆 => 願乾脆 */, {"愿干这杯", "願乾這杯", -1 } /* 愿干这杯 => 願乾這杯 */, {"愿干那杯", "願乾那杯", -1 } /* 愿干那杯 => 願乾那杯 */, {"愿意干", "願意幹", -1 } /* 愿意干 => 願意幹 */, {"慌里慌张", "慌里慌張", -1 } /* 慌里慌张 => 慌里慌張 */, {"慑", "懾", -1 } /* 慑 => 懾 */, {"慢咽", "慢嚥", -1 } /* 慢咽 => 慢嚥 */, {"慰借", "慰藉", -1 } /* 慰借 => 慰藉 */, {"憋脚", "蹩腳", -1 } /* 憋脚 => 蹩腳 */, {"憔瘁", "憔悴", -1 } /* 憔瘁 => 憔悴 */, {"懈松", "懈鬆", -1 } /* 懈松 => 懈鬆 */, {"懈迨", "懈怠", -1 } /* 懈迨 => 懈怠 */, {"懑", "懣", -1 } /* 懑 => 懣 */, {"懒", "懶", -1 } /* 懒 => 懶 */, {"懔", "懍", -1 } /* 懔 => 懍 */, {"懿范", "懿範", -1 } /* 懿范 => 懿範 */, {"戆", "戇", -1 } /* 戆 => 戇 */, {"戈尔巴乔夫", "戈巴契夫", -1 } /* 戈尔巴乔夫 => 戈巴契夫 */, {"戊丑", "戊丑", -1 } /* 戊丑 => 戊丑 */, {"戋", "戔", -1 } /* 戋 => 戔 */, {"戏", "戲", -1 } /* 戏 => 戲 */, {"戏彩", "戲綵", -1 } /* 戏彩 => 戲綵 */, {"戏扎", "戲紮", -1 } /* 戏扎 => 戲紮 */, {"成于", "成於", -1 } /* 成于 => 成於 */, {"成药", "成藥", -1 } /* 成药 => 成藥 */, {"我干一杯", "我乾一杯", -1 } /* 我干一杯 => 我乾一杯 */, {"或咸", "或鹹", -1 } /* 或咸 => 或鹹 */, {"或松", "或鬆", -1 } /* 或松 => 或鬆 */, {"或系之牛", "或繫之牛", -1 } /* 或系之牛 => 或繫之牛 */, {"或采", "或採", -1 } /* 或采 => 或採 */, {"戗", "戧", -1 } /* 戗 => 戧 */, {"战", "戰", -1 } /* 战 => 戰 */, {"战栗", "顫慄", -1 } /* 战栗 => 顫慄 */, {"战线", "戰線", -1 } /* 战线 => 戰線 */, {"戚嗟", "慼嗟", -1 } /* 戚嗟 => 慼嗟 */, {"戚忧", "慼憂", -1 } /* 戚忧 => 慼憂 */, {"戚戚", "慼慼", -1 } /* 戚戚 => 慼慼 */, {"戚然", "慼然", -1 } /* 戚然 => 慼然 */, {"戚颜", "慼顏", -1 } /* 戚颜 => 慼顏 */, {"戬", "戩", -1 } /* 戬 => 戩 */, {"戯", "戱", -1 } /* 戯 => 戱 */, {"戴安娜", "黛安娜", -1 } /* 戴安娜 => 黛安娜 */, {"戴表", "戴錶", -1 } /* 戴表 => 戴錶 */, {"户", "戶", -1 } /* 户 => 戶 */, {"户县", "鄠縣", -1 } /* 户县 => 鄠縣 */, {"戽斗", "戽斗", -1 } /* 戽斗 => 戽斗 */, {"所云", "所云", -1 } /* 所云 => 所云 */, {"所余", "所餘", -1 } /* 所余 => 所餘 */, {"所卷", "所捲", -1 } /* 所卷 => 所捲 */, {"所布之", "所佈之", -1 } /* 所布之 => 所佈之 */, {"所布的", "所佈的", -1 } /* 所布的 => 所佈的 */, {"所干", "所幹", -1 } /* 所干 => 所幹 */, {"所扎", "所紮", -1 } /* 所扎 => 所紮 */, {"所系", "所繫", -1 } /* 所系 => 所繫 */, {"所见而云", "所見而云", -1 } /* 所见而云 => 所見而云 */, {"所讥而云", "所譏而云", -1 } /* 所讥而云 => 所譏而云 */, {"所谓而云", "所謂而云", -1 } /* 所谓而云 => 所謂而云 */, {"所采", "改採", -1 } /* 所采 => 改採 */, {"所钟", "所鍾", -1 } /* 所钟 => 所鍾 */, {"扁剉", "扁銼", -1 } /* 扁剉 => 扁銼 */, {"扇动", "搧動", -1 } /* 扇动 => 搧動 */, {"扇开", "搧開", -1 } /* 扇开 => 搧開 */, {"扇耳光", "搧耳光", -1 } /* 扇耳光 => 搧耳光 */, {"扇风", "搧風", -1 } /* 扇风 => 搧風 */, {"手一卷", "手一捲", -1 } /* 手一卷 => 手一捲 */, {"手一松", "手一鬆", -1 } /* 手一松 => 手一鬆 */, {"手不松", "手不鬆", -1 } /* 手不松 => 手不鬆 */, {"手启", "手啟", -1 } /* 手启 => 手啟 */, {"手御", "手御", -1 } /* 手御 => 手御 */, {"手折", "手摺", -1 } /* 手折 => 手摺 */, {"手松", "手鬆", -1 } /* 手松 => 手鬆 */, {"手炼", "手鍊", -1 } /* 手炼 => 手鍊 */, {"手电筒", "手電筒", -1 } /* 手电筒 => 手電筒 */, {"手表", "手錶", 43 } /* 手表 => 手錶 */, {"手表态", "手表態", -1 } /* 手表态 => 手表態 */, {"手表演", "手表演", -1 } /* 手表演 => 手表演 */, {"手采", "手採", -1 } /* 手采 => 手採 */, {"手里余", "手裡餘", -1 } /* 手里余 => 手裡餘 */, {"才不干杯", "才不乾杯", -1 } /* 才不干杯 => 才不乾杯 */, {"才不干涸", "才不乾涸", -1 } /* 才不干涸 => 才不乾涸 */, {"才不干渴", "才不乾渴", -1 } /* 才不干渴 => 才不乾渴 */, {"才干", "才幹", 44 } /* 才干 => 才幹 */, {"才干了杯", "才乾了杯", -1 } /* 才干了杯 => 才乾了杯 */, {"才干干淨", "才乾乾淨", -1 } /* 才干干淨 => 才乾乾淨 */, {"才干旱", "才乾旱", -1 } /* 才干旱 => 才乾旱 */, {"才干杯", "才乾杯", -1 } /* 才干杯 => 才乾杯 */, {"才干涸", "才乾涸", -1 } /* 才干涸 => 才乾涸 */, {"才干淨", "才乾淨", -1 } /* 才干淨 => 才乾淨 */, {"才干爽", "才乾爽", -1 } /* 才干爽 => 才乾爽 */, {"才干着急", "才乾著急", -1 } /* 才干着急 => 才乾著急 */, {"才干耗", "才乾耗", -1 } /* 才干耗 => 才乾耗 */, {"才干脆", "才乾脆", -1 } /* 才干脆 => 才乾脆 */, {"才干这杯", "才乾這杯", -1 } /* 才干这杯 => 才乾這杯 */, {"才干透", "才乾透", -1 } /* 才干透 => 才乾透 */, {"才干那杯", "才乾那杯", -1 } /* 才干那杯 => 才乾那杯 */, {"才松下", "才鬆下", -1 } /* 才松下 => 才鬆下 */, {"扎", "紮", 45 } /* 扎 => 紮 */, {"扎上", "紮上", -1 } /* 扎上 => 紮上 */, {"扎下", "紮下", -1 } /* 扎下 => 紮下 */, {"扎了", "紮了", -1 } /* 扎了 => 紮了 */, {"扎住", "紮住", -1 } /* 扎住 => 紮住 */, {"扎卡维", "札夸威", -1 } /* 扎卡维 => 札夸威 */, {"扎囮", "紮囮", -1 } /* 扎囮 => 紮囮 */, {"扎在", "紮在", -1 } /* 扎在 => 紮在 */, {"扎好", "紮好", -1 } /* 扎好 => 紮好 */, {"扎实", "紮實", -1 } /* 扎实 => 紮實 */, {"扎带", "紮帶", -1 } /* 扎带 => 紮帶 */, {"扎彩", "紮彩", -1 } /* 扎彩 => 紮彩 */, {"扎成", "紮成", -1 } /* 扎成 => 紮成 */, {"扎扎", "紮紮", -1 } /* 扎扎 => 紮紮 */, {"扎根", "紮根", -1 } /* 扎根 => 紮根 */, {"扎稳", "紮穩", -1 } /* 扎稳 => 紮穩 */, {"扎紧", "紮緊", -1 } /* 扎紧 => 紮緊 */, {"扎结", "紮結", -1 } /* 扎结 => 紮結 */, {"扎脚", "紮腳", -1 } /* 扎脚 => 紮腳 */, {"扎著", "紮著", -1 } /* 扎著 => 紮著 */, {"扎裹", "紮裹", -1 } /* 扎裹 => 紮裹 */, {"扎诈", "紮詐", -1 } /* 扎诈 => 紮詐 */, {"扎起", "紮起", -1 } /* 扎起 => 紮起 */, {"扎辫", "紮辮", -1 } /* 扎辫 => 紮辮 */, {"扑", "撲", -1 } /* 扑 => 撲 */, {"扑卷", "撲捲", -1 } /* 扑卷 => 撲捲 */, {"打制", "打製", -1 } /* 打制 => 打製 */, {"打干", "打幹", -1 } /* 打干 => 打幹 */, {"打拼", "打拚", -1 } /* 打拼 => 打拚 */, {"打谷", "打穀", -1 } /* 打谷 => 打穀 */, {"托买", "託買", -1 } /* 托买 => 託買 */, {"托了", "託了", -1 } /* 托了 => 託了 */, {"托事", "託事", -1 } /* 托事 => 託事 */, {"托交", "託交", -1 } /* 托交 => 託交 */, {"托人", "託人", -1 } /* 托人 => 託人 */, {"托付", "託付", -1 } /* 托付 => 託付 */, {"托卖", "託賣", -1 } /* 托卖 => 託賣 */, {"托古", "託古", -1 } /* 托古 => 託古 */, {"托名", "託名", -1 } /* 托名 => 託名 */, {"托咎", "託咎", -1 } /* 托咎 => 託咎 */, {"托大", "託大", -1 } /* 托大 => 託大 */, {"托孤", "託孤", -1 } /* 托孤 => 託孤 */, {"托故", "託故", -1 } /* 托故 => 託故 */, {"托梦", "託夢", -1 } /* 托梦 => 託夢 */, {"托洛茨基", "托洛斯基", -1 } /* 托洛茨基 => 托洛斯基 */, {"托疾", "託疾", -1 } /* 托疾 => 託疾 */, {"托病", "託病", -1 } /* 托病 => 託病 */, {"托管", "託管", -1 } /* 托管 => 託管 */, {"托言", "託言", -1 } /* 托言 => 託言 */, {"托词", "託詞", -1 } /* 托词 => 託詞 */, {"托身", "託身", -1 } /* 托身 => 託身 */, {"托辞", "託辭", -1 } /* 托辞 => 託辭 */, {"托过", "託過", -1 } /* 托过 => 託過 */, {"托运", "託運", -1 } /* 托运 => 託運 */, {"扛丸", "摃丸", -1 } /* 扛丸 => 摃丸 */, {"扛龟", "摃龜", -1 } /* 扛龟 => 摃龜 */, {"执", "執", -1 } /* 执 => 執 */, {"扩", "擴", -1 } /* 扩 => 擴 */, {"扩展名", "副檔名", -1 } /* 扩展名 => 副檔名 */, {"扪", "捫", -1 } /* 扪 => 捫 */, {"扫", "掃", -1 } /* 扫 => 掃 */, {"扫卷", "掃捲", -1 } /* 扫卷 => 掃捲 */, {"扫描", "掃瞄", -1 } /* 扫描 => 掃瞄 */, {"扫描仪", "掃描器", -1 } /* 扫描仪 => 掃描器 */, {"扫荡", "掃蕩", -1 } /* 扫荡 => 掃蕩 */, {"扬", "揚", -1 } /* 扬 => 揚 */, {"扬马延岛", "尖棉島", -1 } /* 扬马延岛 => 尖棉島 */, {"扰", "擾", -1 } /* 扰 => 擾 */, {"扶余", "扶餘", -1 } /* 扶余 => 扶餘 */, {"批准", "批准", -1 } /* 批准 => 批准 */, {"批复", "批覆", -1 } /* 批复 => 批覆 */, {"批注", "批註", -1 } /* 批注 => 批註 */, {"扼塞", "阨塞", -1 } /* 扼塞 => 阨塞 */, {"找不准", "找不準", -1 } /* 找不准 => 找不準 */, {"承上启下", "承上啟下", -1 } /* 承上启下 => 承上啟下 */, {"承制", "承製", -1 } /* 承制 => 承製 */, {"承宣布政使司", "承宣布政使司", -1 } /* 承宣布政使司 => 承宣布政使司 */, {"把你干", "把你幹", -1 } /* 把你干 => 把你幹 */, {"把姜", "把薑", -1 } /* 把姜 => 把薑 */, {"把方才", "把方纔", -1 } /* 把方才 => 把方纔 */, {"抓不准", "抓不準", -1 } /* 抓不准 => 抓不準 */, {"抓奸", "抓姦", -1 } /* 抓奸 => 抓姦 */, {"抓药", "抓藥", -1 } /* 抓药 => 抓藥 */, {"投不准", "投不準", -1 } /* 投不准 => 投不準 */, {"投药", "投藥", -1 } /* 投药 => 投藥 */, {"折冲", "折衝", -1 } /* 折冲 => 折衝 */, {"折卷", "折捲", -1 } /* 折卷 => 折捲 */, {"折叠", "摺疊", -1 } /* 折叠 => 摺疊 */, {"折合", "折合", -1 } /* 折合 => 折合 */, {"折奏", "摺奏", -1 } /* 折奏 => 摺奏 */, {"折子", "摺子", -1 } /* 折子 => 摺子 */, {"折尺", "摺尺", -1 } /* 折尺 => 摺尺 */, {"折扇", "摺扇", -1 } /* 折扇 => 摺扇 */, {"折梯", "摺梯", -1 } /* 折梯 => 摺梯 */, {"折椅", "摺椅", -1 } /* 折椅 => 摺椅 */, {"折痕", "摺痕", -1 } /* 折痕 => 摺痕 */, {"折篷", "摺篷", -1 } /* 折篷 => 摺篷 */, {"折纸", "摺紙", -1 } /* 折纸 => 摺紙 */, {"折线", "折線", -1 } /* 折线 => 折線 */, {"折裙", "摺裙", -1 } /* 折裙 => 摺裙 */, {"折迭", "摺疊", -1 } /* 折迭 => 摺疊 */, {"抚", "撫", -1 } /* 抚 => 撫 */, {"抚恤", "撫卹", -1 } /* 抚恤 => 撫卹 */, {"抚须", "撫鬚", -1 } /* 抚须 => 撫鬚 */, {"抛", "拋", -1 } /* 抛 => 拋 */, {"抟", "摶", -1 } /* 抟 => 摶 */, {"抠", "摳", -1 } /* 抠 => 摳 */, {"抡", "掄", -1 } /* 抡 => 掄 */, {"抢", "搶", -1 } /* 抢 => 搶 */, {"抢占", "搶佔", -1 } /* 抢占 => 搶佔 */, {"护", "護", -1 } /* 护 => 護 */, {"护发", "護髮", -1 } /* 护发 => 護髮 */, {"护墙", "護牆", -1 } /* 护墙 => 護牆 */, {"报", "報", -1 } /* 报 => 報 */, {"报复", "報復", -1 } /* 报复 => 報復 */, {"报废后", "報廢後", -1 } /* 报废后 => 報廢後 */, {"披发", "披髮", -1 } /* 披发 => 披髮 */, {"披头散发", "披頭散髮", -1 } /* 披头散发 => 披頭散髮 */, {"抬扛", "抬摃", -1 } /* 抬扛 => 抬摃 */, {"抱朴", "抱朴", -1 } /* 抱朴 => 抱朴 */, {"抱着", "抱著", -1 } /* 抱着 => 抱著 */, {"抵砺", "砥礪", -1 } /* 抵砺 => 砥礪 */, {"抵触", "牴觸", -1 } /* 抵触 => 牴觸 */, {"抹剎", "抹煞", -1 } /* 抹剎 => 抹煞 */, {"抹台", "抹檯", -1 } /* 抹台 => 抹檯 */, {"抹干", "抹乾", -1 } /* 抹干 => 抹乾 */, {"抽佣", "抽佣", -1 } /* 抽佣 => 抽佣 */, {"抽公签", "抽公籤", -1 } /* 抽公签 => 抽公籤 */, {"抽干", "抽乾", -1 } /* 抽干 => 抽乾 */, {"抽烟", "抽菸", -1 } /* 抽烟 => 抽菸 */, {"抽签", "抽籤", -1 } /* 抽签 => 抽籤 */, {"抽簽", "抽籤", -1 } /* 抽簽 => 抽籤 */, {"抿灭", "泯滅", -1 } /* 抿灭 => 泯滅 */, {"拂须", "拂鬚", -1 } /* 拂须 => 拂鬚 */, {"担", "擔", -1 } /* 担 => 擔 */, {"担仔面", "擔仔麵", -1 } /* 担仔面 => 擔仔麵 */, {"担担面", "擔擔麵", -1 } /* 担担面 => 擔擔麵 */, {"担着", "擔著", -1 } /* 担着 => 擔著 */, {"担负着", "擔負著", -1 } /* 担负着 => 擔負著 */, {"拆伙", "拆伙", -1 } /* 拆伙 => 拆伙 */, {"拆伙", "拆夥", -1 } /* 拆伙 => 拆夥 */, {"拆封后", "拆封後", -1 } /* 拆封后 => 拆封後 */, {"拈须", "拈鬚", -1 } /* 拈须 => 拈鬚 */, {"拉姆斯菲尔德", "倫斯斐", -1 } /* 拉姆斯菲尔德 => 倫斯斐 */, {"拉炼", "拉鍊", -1 } /* 拉炼 => 拉鍊 */, {"拉着", "拉著", -1 } /* 拉着 => 拉著 */, {"拉纤", "拉縴", -1 } /* 拉纤 => 拉縴 */, {"拉里", "拉里", -1 } /* 拉里 => 拉里 */, {"拉面", "拉麵", -1 } /* 拉面 => 拉麵 */, {"拌面", "拌麵", -1 } /* 拌面 => 拌麵 */, {"拍出好戏", "拍齣好戲", -1 } /* 拍出好戏 => 拍齣好戲 */, {"拍台拍凳", "拍檯拍凳", -1 } /* 拍台拍凳 => 拍檯拍凳 */, {"拐子", "枴子", -1 } /* 拐子 => 枴子 */, {"拐杖", "枴杖", -1 } /* 拐杖 => 枴杖 */, {"拓本", "搨本", -1 } /* 拓本 => 搨本 */, {"拓碑", "搨碑", -1 } /* 拓碑 => 搨碑 */, {"拖吊", "拖吊", -1 } /* 拖吊 => 拖吊 */, {"拗別", "拗彆", -1 } /* 拗別 => 拗彆 */, {"拗别", "拗彆", -1 } /* 拗别 => 拗彆 */, {"拘系", "拘繫", -1 } /* 拘系 => 拘繫 */, {"拙壮", "茁壯", -1 } /* 拙壮 => 茁壯 */, {"拚命干", "拚命幹", -1 } /* 拚命干 => 拚命幹 */, {"拚舍", "拚捨", -1 } /* 拚舍 => 拚捨 */, {"招魂幡", "招魂旛", -1 } /* 招魂幡 => 招魂旛 */, {"拜佔庭", "拜占庭", -1 } /* 拜佔庭 => 拜占庭 */, {"拜托", "拜託", -1 } /* 拜托 => 拜託 */, {"拟", "擬", -1 } /* 拟 => 擬 */, {"拢", "攏", -1 } /* 拢 => 攏 */, {"拢断", "壟斷", -1 } /* 拢断 => 壟斷 */, {"拣", "揀", -1 } /* 拣 => 揀 */, {"拥", "擁", -1 } /* 拥 => 擁 */, {"拦", "攔", -1 } /* 拦 => 攔 */, {"拧", "擰", -1 } /* 拧 => 擰 */, {"拧干", "擰乾", -1 } /* 拧干 => 擰乾 */, {"拧松", "擰鬆", -1 } /* 拧松 => 擰鬆 */, {"拨", "撥", -1 } /* 拨 => 撥 */, {"择", "擇", -1 } /* 择 => 擇 */, {"括号", "括弧", -1 } /* 括号 => 括弧 */, {"括号", "括號", -1 } /* 括号 => 括號 */, {"括线", "括線", -1 } /* 括线 => 括線 */, {"拭干", "拭乾", -1 } /* 拭干 => 拭乾 */, {"拮据", "拮据", -1 } /* 拮据 => 拮据 */, {"拼一拼", "拚一拚", -1 } /* 拼一拼 => 拚一拚 */, {"拼上一拼", "拚上一拚", -1 } /* 拼上一拼 => 拚上一拚 */, {"拼个", "拚個", -1 } /* 拼个 => 拚個 */, {"拼力", "拚力", -1 } /* 拼力 => 拚力 */, {"拼劲", "拚勁", -1 } /* 拼劲 => 拚勁 */, {"拼命", "拚命", -1 } /* 拼命 => 拚命 */, {"拼得过", "拚得過", -1 } /* 拼得过 => 拚得過 */, {"拼搏", "拚搏", -1 } /* 拼搏 => 拚搏 */, {"拼政", "拚政", -1 } /* 拼政 => 拚政 */, {"拼斗", "拚鬥", -1 } /* 拼斗 => 拚鬥 */, {"拼杀", "拚殺", -1 } /* 拼杀 => 拚殺 */, {"拼死", "拚死", -1 } /* 拼死 => 拚死 */, {"拼活", "拚活", -1 } /* 拼活 => 拚活 */, {"拼生", "拚生", -1 } /* 拼生 => 拚生 */, {"拼经", "拚經", -1 } /* 拼经 => 拚經 */, {"拼舍", "拚捨", -1 } /* 拼舍 => 拚捨 */, {"拿奸", "拿姦", -1 } /* 拿奸 => 拿姦 */, {"拿破仑", "拿破崙", -1 } /* 拿破仑 => 拿破崙 */, {"挂", "掛", -1 } /* 挂 => 掛 */, {"挂帘", "掛帘", -1 } /* 挂帘 => 掛帘 */, {"挂钩", "掛鉤", -1 } /* 挂钩 => 掛鉤 */, {"挂面", "掛麵", -1 } /* 挂面 => 掛麵 */, {"挑了只", "挑了隻", -1 } /* 挑了只 => 挑了隻 */, {"挑大梁", "挑大樑", -1 } /* 挑大梁 => 挑大樑 */, {"挖松", "挖鬆", -1 } /* 挖松 => 挖鬆 */, {"挚", "摯", -1 } /* 挚 => 摯 */, {"挛", "攣", -1 } /* 挛 => 攣 */, {"挛生", "孿生", -1 } /* 挛生 => 孿生 */, {"挜", "掗", -1 } /* 挜 => 掗 */, {"挝", "撾", -1 } /* 挝 => 撾 */, {"挞", "撻", -1 } /* 挞 => 撻 */, {"挞虏", "韃虜", -1 } /* 挞虏 => 韃虜 */, {"挟", "挾", -1 } /* 挟 => 挾 */, {"挠", "撓", -1 } /* 挠 => 撓 */, {"挡", "擋", -1 } /* 挡 => 擋 */, {"挢", "撟", -1 } /* 挢 => 撟 */, {"挣", "掙", -1 } /* 挣 => 掙 */, {"挣松", "掙鬆", -1 } /* 挣松 => 掙鬆 */, {"挤", "擠", -1 } /* 挤 => 擠 */, {"挥", "揮", -1 } /* 挥 => 揮 */, {"挥卷", "揮捲", -1 } /* 挥卷 => 揮捲 */, {"挥杆", "揮杆", -1 } /* 挥杆 => 揮杆 */, {"挦", "撏", -1 } /* 挦 => 撏 */, {"振聋启瞆", "振聾啟瞶", -1 } /* 振聋启瞆 => 振聾啟瞶 */, {"振荡", "振蕩", -1 } /* 振荡 => 振蕩 */, {"振荡", "振盪", -1 } /* 振荡 => 振盪 */, {"挺而", "鋌而", -1 } /* 挺而 => 鋌而 */, {"挽", "輓", -1 } /* 挽 => 輓 */, {"挽发", "挽髮", -1 } /* 挽发 => 挽髮 */, {"挽歌", "輓歌", -1 } /* 挽歌 => 輓歌 */, {"挽联", "輓聯", -1 } /* 挽联 => 輓聯 */, {"挽词", "輓詞", -1 } /* 挽词 => 輓詞 */, {"捂不住", "摀不住", -1 } /* 捂不住 => 摀不住 */, {"捂住", "摀住", -1 } /* 捂住 => 摀住 */, {"捂盖", "摀蓋", -1 } /* 捂盖 => 摀蓋 */, {"捆扎", "捆紮", -1 } /* 捆扎 => 捆紮 */, {"捉不准", "捉不準", -1 } /* 捉不准 => 捉不準 */, {"捉只", "捉隻", -1 } /* 捉只 => 捉隻 */, {"捉奸", "捉姦", -1 } /* 捉奸 => 捉姦 */, {"捉狭", "促狹", -1 } /* 捉狭 => 促狹 */, {"捋胡", "捋鬍", -1 } /* 捋胡 => 捋鬍 */, {"捋须", "捋鬚", -1 } /* 捋须 => 捋鬚 */, {"捍拒", "扞拒", -1 } /* 捍拒 => 扞拒 */, {"捍格", "扞格", -1 } /* 捍格 => 扞格 */, {"捏不准", "捏不準", -1 } /* 捏不准 => 捏不準 */, {"捏制", "捏製", -1 } /* 捏制 => 捏製 */, {"捝", "挩", -1 } /* 捝 => 挩 */, {"捞", "撈", -1 } /* 捞 => 撈 */, {"捞干", "撈乾", -1 } /* 捞干 => 撈乾 */, {"损", "損", -1 } /* 损 => 損 */, {"捡", "撿", -1 } /* 捡 => 撿 */, {"换", "換", -1 } /* 换 => 換 */, {"换发", "換髮", -1 } /* 换发 => 換髮 */, {"换只", "換隻", -1 } /* 换只 => 換隻 */, {"换吊", "換吊", -1 } /* 换吊 => 換吊 */, {"换簽", "換籤", -1 } /* 换簽 => 換籤 */, {"换药", "換藥", -1 } /* 换药 => 換藥 */, {"捣", "搗", -1 } /* 捣 => 搗 */, {"捭合", "捭闔", -1 } /* 捭合 => 捭闔 */, {"据", "據", -1 } /* 据 => 據 */, {"据云", "據云", -1 } /* 据云 => 據云 */, {"据干而窥井底", "據榦而窺井底", -1 } /* 据干而窥井底 => 據榦而窺井底 */, {"捲发", "捲髮", -1 } /* 捲发 => 捲髮 */, {"捶台拍凳", "捶檯拍凳", -1 } /* 捶台拍凳 => 捶檯拍凳 */, {"捻手", "撚手", -1 } /* 捻手 => 撚手 */, {"捻指", "撚指", -1 } /* 捻指 => 撚指 */, {"捻胡", "捻鬍", -1 } /* 捻胡 => 捻鬍 */, {"捻花", "撚花", -1 } /* 捻花 => 撚花 */, {"捻钱", "撚錢", -1 } /* 捻钱 => 撚錢 */, {"捻须", "撚鬚", -1 } /* 捻须 => 撚鬚 */, {"捻香", "撚香", -1 } /* 捻香 => 撚香 */, {"掀卷", "掀捲", -1 } /* 掀卷 => 掀捲 */, {"掉发", "掉髮", -1 } /* 掉发 => 掉髮 */, {"掌柜", "掌柜", -1 } /* 掌柜 => 掌柜 */, {"排洩", "排泄", -1 } /* 排洩 => 排泄 */, {"排线", "排線", -1 } /* 排线 => 排線 */, {"排骨面", "排骨麵", -1 } /* 排骨面 => 排骨麵 */, {"掘松", "掘鬆", -1 } /* 掘松 => 掘鬆 */, {"掛历", "掛曆", -1 } /* 掛历 => 掛曆 */, {"掛彩", "掛綵", -1 } /* 掛彩 => 掛綵 */, {"掛碍", "罣礙", -1 } /* 掛碍 => 罣礙 */, {"掠冲", "掠衝", -1 } /* 掠冲 => 掠衝 */, {"探知欲", "探知慾", -1 } /* 探知欲 => 探知慾 */, {"掣签", "掣籤", -1 } /* 掣签 => 掣籤 */, {"接口", "介面", -1 } /* 接口 => 介面 */, {"接着说", "接著說", -1 } /* 接着说 => 接著說 */, {"接线", "接線", -1 } /* 接线 => 接線 */, {"控制欲", "控制慾", -1 } /* 控制欲 => 控制慾 */, {"控制键", "修飾鍵", -1 } /* 控制键 => 修飾鍵 */, {"控卷", "控捲", -1 } /* 控卷 => 控捲 */, {"推刨", "推鉋", -1 } /* 推刨 => 推鉋 */, {"掳", "擄", -1 } /* 掳 => 擄 */, {"掴", "摑", -1 } /* 掴 => 摑 */, {"掷", "擲", -1 } /* 掷 => 擲 */, {"掸", "撣", -1 } /* 掸 => 撣 */, {"掸子", "撢子", -1 } /* 掸子 => 撢子 */, {"掺", "摻", -1 } /* 掺 => 摻 */, {"掼", "摜", -1 } /* 掼 => 摜 */, {"揉制", "揉製", -1 } /* 揉制 => 揉製 */, {"揉躏", "蹂躪", -1 } /* 揉躏 => 蹂躪 */, {"揉面", "揉麵", -1 } /* 揉面 => 揉麵 */, {"描涂", "描塗", -1 } /* 描涂 => 描塗 */, {"提子干", "提子乾", -1 } /* 提子干 => 提子乾 */, {"提心吊胆", "提心吊膽", -1 } /* 提心吊胆 => 提心吊膽 */, {"握不准", "握不準", -1 } /* 握不准 => 握不準 */, {"握发", "握髮", -1 } /* 握发 => 握髮 */, {"握着", "握著", -1 } /* 握着 => 握著 */, {"揩台", "揩檯", -1 } /* 揩台 => 揩檯 */, {"揩干", "揩乾", -1 } /* 揩干 => 揩乾 */, {"揪采", "揪採", -1 } /* 揪采 => 揪採 */, {"揽", "攬", -1 } /* 揽 => 攬 */, {"揾", "搵", -1 } /* 揾 => 搵 */, {"揿", "撳", -1 } /* 揿 => 撳 */, {"搀", "攙", -1 } /* 搀 => 攙 */, {"搁", "擱", -1 } /* 搁 => 擱 */, {"搂", "摟", -1 } /* 搂 => 摟 */, {"搅", "攪", -1 } /* 搅 => 攪 */, {"搜罗", "蒐羅", -1 } /* 搜罗 => 蒐羅 */, {"搜证", "蒐證", -1 } /* 搜证 => 蒐證 */, {"搜购", "蒐購", -1 } /* 搜购 => 蒐購 */, {"搜集", "蒐集", -1 } /* 搜集 => 蒐集 */, {"搭伙", "搭伙", -1 } /* 搭伙 => 搭伙 */, {"搭干铺", "搭乾鋪", -1 } /* 搭干铺 => 搭乾鋪 */, {"搭线", "搭線", -1 } /* 搭线 => 搭線 */, {"携", "攜", -1 } /* 携 => 攜 */, {"搽穰卷儿", "搽穰捲兒", -1 } /* 搽穰卷儿 => 搽穰捲兒 */, {"搽药", "搽藥", -1 } /* 搽药 => 搽藥 */, {"摄", "攝", -1 } /* 摄 => 攝 */, {"摄制", "攝製", -1 } /* 摄制 => 攝製 */, {"摄服", "懾服", -1 } /* 摄服 => 懾服 */, {"摅", "攄", -1 } /* 摅 => 攄 */, {"摆", "擺", -1 } /* 摆 => 擺 */, {"摆布", "擺佈", -1 } /* 摆布 => 擺佈 */, {"摆荡", "擺盪", -1 } /* 摆荡 => 擺盪 */, {"摇", "搖", -1 } /* 摇 => 搖 */, {"摇荡", "搖蕩", -1 } /* 摇荡 => 搖蕩 */, {"摈", "擯", -1 } /* 摈 => 擯 */, {"摊", "攤", -1 } /* 摊 => 攤 */, {"摒息", "屏息", -1 } /* 摒息 => 屏息 */, {"摭采", "摭採", -1 } /* 摭采 => 摭採 */, {"摸不准", "摸不準", -1 } /* 摸不准 => 摸不準 */, {"撄", "攖", -1 } /* 撄 => 攖 */, {"撑", "撐", -1 } /* 撑 => 撐 */, {"撒布", "撒佈", -1 } /* 撒布 => 撒佈 */, {"撞球台", "撞球檯", -1 } /* 撞球台 => 撞球檯 */, {"撬松", "撬鬆", -1 } /* 撬松 => 撬鬆 */, {"撵", "攆", -1 } /* 撵 => 攆 */, {"撷", "擷", -1 } /* 撷 => 擷 */, {"撸", "擼", -1 } /* 撸 => 擼 */, {"撺", "攛", -1 } /* 撺 => 攛 */, {"擐系", "擐繫", -1 } /* 擐系 => 擐繫 */, {"擞", "擻", -1 } /* 擞 => 擻 */, {"擢发", "擢髮", -1 } /* 擢发 => 擢髮 */, {"擢发难数", "擢髮難數", -1 } /* 擢发难数 => 擢髮難數 */, {"擢足", "濯足", -1 } /* 擢足 => 濯足 */, {"擦干", "擦乾", -1 } /* 擦干 => 擦乾 */, {"擦药", "擦藥", -1 } /* 擦药 => 擦藥 */, {"攒", "攢", -1 } /* 攒 => 攢 */, {"支干", "支幹", -1 } /* 支干 => 支幹 */, {"支烟", "支菸", -1 } /* 支烟 => 支菸 */, {"支簽", "支籤", -1 } /* 支簽 => 支籤 */, {"支线", "支線", -1 } /* 支线 => 支線 */, {"收线", "收線", -1 } /* 收线 => 收線 */, {"收获", "收穫", -1 } /* 收获 => 收穫 */, {"收采", "收採", -1 } /* 收采 => 收採 */, {"改念", "改唸", -1 } /* 改念 => 改唸 */, {"改采", "改採", -1 } /* 改采 => 改採 */, {"攻克", "攻克", -1 } /* 攻克 => 攻克 */, {"攻占", "攻佔", -1 } /* 攻占 => 攻佔 */, {"放于", "放於", -1 } /* 放于 => 放於 */, {"放姜", "放薑", -1 } /* 放姜 => 放薑 */, {"放松", "放鬆", -1 } /* 放松 => 放鬆 */, {"放着", "放著", -1 } /* 放着 => 放著 */, {"放荡", "放蕩", -1 } /* 放荡 => 放蕩 */, {"政工干校", "政工幹校", -1 } /* 政工干校 => 政工幹校 */, {"故布", "故佈", -1 } /* 故布 => 故佈 */, {"故里", "故里", -1 } /* 故里 => 故里 */, {"敌", "敵", -1 } /* 敌 => 敵 */, {"救药", "救藥", -1 } /* 救药 => 救藥 */, {"敖游", "敖遊", -1 } /* 敖游 => 敖遊 */, {"教于", "教於", -1 } /* 教于 => 教於 */, {"教廷", "教廷", -1 } /* 教廷 => 教廷 */, {"教悔", "教誨", -1 } /* 教悔 => 教誨 */, {"教范", "教範", -1 } /* 教范 => 教範 */, {"敛", "斂", -1 } /* 敛 => 斂 */, {"敢于", "敢於", -1 } /* 敢于 => 敢於 */, {"敢干", "敢幹", -1 } /* 敢干 => 敢幹 */, {"敢念", "敢唸", -1 } /* 敢念 => 敢唸 */, {"敢拼", "敢拚", -1 } /* 敢拼 => 敢拚 */, {"敢松", "敢鬆", -1 } /* 敢松 => 敢鬆 */, {"散伙", "散伙", -1 } /* 散伙 => 散伙 */, {"散伙", "散夥", -1 } /* 散伙 => 散夥 */, {"散发", "散髮", -1 } /* 散发 => 散髮 */, {"散布", "散佈", -1 } /* 散布 => 散佈 */, {"散署", "佈署", -1 } /* 散署 => 佈署 */, {"散荡", "散蕩", -1 } /* 散荡 => 散蕩 */, {"敦厚", "惇厚", -1 } /* 敦厚 => 惇厚 */, {"敦敦", "惇惇", -1 } /* 敦敦 => 惇惇 */, {"敦朴", "惇樸", -1 } /* 敦朴 => 惇樸 */, {"敦睦", "惇睦", -1 } /* 敦睦 => 惇睦 */, {"敦笃", "惇篤", -1 } /* 敦笃 => 惇篤 */, {"敦诲", "惇誨", -1 } /* 敦诲 => 惇誨 */, {"敦谨", "惇謹", -1 } /* 敦谨 => 惇謹 */, {"敬启", "敬啟", -1 } /* 敬启 => 敬啟 */, {"数", "數", -1 } /* 数 => 數 */, {"数位", "數位", -1 } /* 数位 => 數位 */, {"数周", "數週", -1 } /* 数周 => 數週 */, {"数字修复", "數位修補", -1 } /* 数字修复 => 數位修補 */, {"数据库", "資料庫", -1 } /* 数据库 => 資料庫 */, {"数据结构", "資料結構", -1 } /* 数据结构 => 資料結構 */, {"数码", "數碼", -1 } /* 数码 => 數碼 */, {"整出剧", "整齣劇", -1 } /* 整出剧 => 整齣劇 */, {"整只", "整隻", -1 } /* 整只 => 整隻 */, {"整周", "整週", -1 } /* 整周 => 整週 */, {"整并", "整併", -1 } /* 整并 => 整併 */, {"敷涂", "敷塗", -1 } /* 敷涂 => 敷塗 */, {"敷药", "敷藥", -1 } /* 敷药 => 敷藥 */, {"文件", "檔案", -1 } /* 文件 => 檔案 */, {"文汇报", "文匯報", -1 } /* 文汇报 => 文匯報 */, {"文采", "文采", -1 } /* 文采 => 文采 */, {"文采郁郁", "文采郁郁", -1 } /* 文采郁郁 => 文采郁郁 */, {"斋", "齋", -1 } /* 斋 => 齋 */, {"斐波纳契", "費伯納西", -1 } /* 斐波纳契 => 費伯納西 */, {"斑烂", "斑斕", -1 } /* 斑烂 => 斑斕 */, {"斓", "斕", -1 } /* 斓 => 斕 */, {"斗", "鬥", 46 } /* 斗 => 鬥 */, {"斗一斗", "鬥一鬥", -1 } /* 斗一斗 => 鬥一鬥 */, {"斗上一斗", "鬥上一鬥", -1 } /* 斗上一斗 => 鬥上一鬥 */, {"斗了一斗", "鬥了一鬥", -1 } /* 斗了一斗 => 鬥了一鬥 */, {"斗他一斗", "鬥他一鬥", -1 } /* 斗他一斗 => 鬥他一鬥 */, {"斗六", "斗六", -1 } /* 斗六 => 斗六 */, {"斗内", "斗內", -1 } /* 斗内 => 斗內 */, {"斗内力", "鬥內力", -1 } /* 斗内力 => 鬥內力 */, {"斗十", "斗十", -1 } /* 斗十 => 斗十 */, {"斗十余", "鬥十餘", -1 } /* 斗十余 => 鬥十餘 */, {"斗南", "斗南", -1 } /* 斗南 => 斗南 */, {"斗大", "斗大", -1 } /* 斗大 => 斗大 */, {"斗她一斗", "鬥她一鬥", -1 } /* 斗她一斗 => 鬥她一鬥 */, {"斗子", "斗子", -1 } /* 斗子 => 斗子 */, {"斗室", "斗室", -1 } /* 斗室 => 斗室 */, {"斗拱", "斗栱", -1 } /* 斗拱 => 斗栱 */, {"斗换", "斗換", -1 } /* 斗换 => 斗換 */, {"斗擞", "抖擻", -1 } /* 斗擞 => 抖擻 */, {"斗数", "斗數", -1 } /* 斗数 => 斗數 */, {"斗方", "斗方", -1 } /* 斗方 => 斗方 */, {"斗机", "斗機", -1 } /* 斗机 => 斗機 */, {"斗灼", "斗杓", -1 } /* 斗灼 => 斗杓 */, {"斗然", "陡然", -1 } /* 斗然 => 陡然 */, {"斗牛之间", "斗牛之間", -1 } /* 斗牛之间 => 斗牛之間 */, {"斗百", "斗百", -1 } /* 斗百 => 斗百 */, {"斗百余", "鬥百餘", -1 } /* 斗百余 => 鬥百餘 */, {"斗的", "斗的", -1 } /* 斗的 => 斗的 */, {"斗笠", "斗笠", -1 } /* 斗笠 => 斗笠 */, {"斗箕", "斗箕", -1 } /* 斗箕 => 斗箕 */, {"斗篷", "斗篷", -1 } /* 斗篷 => 斗篷 */, {"斗胆", "斗膽", -1 } /* 斗胆 => 斗膽 */, {"斗转", "斗轉", -1 } /* 斗转 => 斗轉 */, {"斗量", "斗量", -1 } /* 斗量 => 斗量 */, {"斗金", "斗金", -1 } /* 斗金 => 斗金 */, {"斗门", "斗門", -1 } /* 斗门 => 斗門 */, {"斗鸡", "鬥雞", -1 } /* 斗鸡 => 鬥雞 */, {"料不准", "料不準", -1 } /* 料不准 => 料不準 */, {"料斗", "料斗", -1 } /* 料斗 => 料斗 */, {"斛斗", "觔斗", -1 } /* 斛斗 => 觔斗 */, {"斜冲", "斜衝", -1 } /* 斜冲 => 斜衝 */, {"斜线", "斜線", -1 } /* 斜线 => 斜線 */, {"斩", "斬", -1 } /* 斩 => 斬 */, {"断", "斷", -1 } /* 断 => 斷 */, {"断发", "斷髮", 47 } /* 断发 => 斷髮 */, {"断发文身", "斷髮文身", -1 } /* 断发文身 => 斷髮文身 */, {"断纸余墨", "斷紙余墨", -1 } /* 断纸余墨 => 斷紙余墨 */, {"断线", "斷線", -1 } /* 断线 => 斷線 */, {"斯大林", "史達林", -1 } /* 斯大林 => 史達林 */, {"斯瓦尔巴岛", "斯瓦巴", -1 } /* 斯瓦尔巴岛 => 斯瓦巴 */, {"斯瓦尔巴岛和扬马延岛", "斯瓦巴及尖棉島", -1 } /* 斯瓦尔巴岛和扬马延岛 => 斯瓦巴及尖棉島 */, {"斯皮尔博格", "史蒂芬史匹柏", -1 } /* 斯皮尔博格 => 史蒂芬史匹柏 */, {"斯里", "斯里", -1 } /* 斯里 => 斯里 */, {"斯里兰卡", "斯里蘭卡", -1 } /* 斯里兰卡 => 斯里蘭卡 */, {"斯里巴加湾市", "斯里貝加萬市", -1 } /* 斯里巴加湾市 => 斯里貝加萬市 */, {"新余", "新喻", -1 } /* 新余 => 新喻 */, {"新历", "新曆", -1 } /* 新历 => 新曆 */, {"新历史", "新歷史", -1 } /* 新历史 => 新歷史 */, {"新干", "新淦", 48 } /* 新干 => 新淦 */, {"新征", "新徵", -1 } /* 新征 => 新徵 */, {"新舄", "新潟", -1 } /* 新舄 => 新潟 */, {"方便面", "方便麵", -1 } /* 方便面 => 方便麵 */, {"方才", "方纔", -1 } /* 方才 => 方纔 */, {"於梨华", "於梨華", -1 } /* 於梨华 => 於梨華 */, {"施舍", "施捨", -1 } /* 施舍 => 施捨 */, {"施舍之道", "施舍之道", -1 } /* 施舍之道 => 施舍之道 */, {"施药", "施藥", -1 } /* 施药 => 施藥 */, {"旁征博引", "旁徵博引", -1 } /* 旁征博引 => 旁徵博引 */, {"旁徨", "徬徨", -1 } /* 旁徨 => 徬徨 */, {"旁惶", "徬徨", -1 } /* 旁惶 => 徬徨 */, {"旁注", "旁註", -1 } /* 旁注 => 旁註 */, {"旅游", "旅遊", -1 } /* 旅游 => 旅遊 */, {"旋卷", "旋捲", -1 } /* 旋卷 => 旋捲 */, {"旋回", "旋迴", -1 } /* 旋回 => 旋迴 */, {"旋干转坤", "旋乾轉坤", -1 } /* 旋干转坤 => 旋乾轉坤 */, {"旋松", "旋鬆", -1 } /* 旋松 => 旋鬆 */, {"旋涡", "漩渦", -1 } /* 旋涡 => 漩渦 */, {"旋绕着", "旋繞著", -1 } /* 旋绕着 => 旋繞著 */, {"旗幡", "旗旛", -1 } /* 旗幡 => 旗旛 */, {"旗杆", "旗杆", -1 } /* 旗杆 => 旗杆 */, {"无", "無", -1 } /* 无 => 無 */, {"无余", "無餘", -1 } /* 无余 => 無餘 */, {"无厘", "無釐", -1 } /* 无厘 => 無釐 */, {"无厘头", "無厘頭", -1 } /* 无厘头 => 無厘頭 */, {"无壳蜗牛", "無殼蝸牛", -1 } /* 无壳蜗牛 => 無殼蝸牛 */, {"无梁", "無樑", -1 } /* 无梁 => 無樑 */, {"无欲", "無慾", -1 } /* 无欲 => 無慾 */, {"无精打采", "無精打采", -1 } /* 无精打采 => 無精打采 */, {"无线", "無線", -1 } /* 无线 => 無線 */, {"无药可救", "無藥可救", -1 } /* 无药可救 => 無藥可救 */, {"既准", "既准", -1 } /* 既准 => 既准 */, {"日余", "日餘", -1 } /* 日余 => 日餘 */, {"日制", "日製", 49 } /* 日制 => 日製 */, {"日升", "日昇", -1 } /* 日升 => 日昇 */, {"日历", "日曆", -1 } /* 日历 => 日曆 */, {"日历史", "日歷史", -1 } /* 日历史 => 日歷史 */, {"日历年", "日歷年", -1 } /* 日历年 => 日歷年 */, {"日历经", "日歷經", -1 } /* 日历经 => 日歷經 */, {"日干夜干", "日幹夜幹", -1 } /* 日干夜干 => 日幹夜幹 */, {"日志", "日誌", -1 } /* 日志 => 日誌 */, {"日本制", "日本製", -1 } /* 日本制 => 日本製 */, {"日游", "日遊", -1 } /* 日游 => 日遊 */, {"旧", "舊", -1 } /* 旧 => 舊 */, {"旧历", "舊曆", -1 } /* 旧历 => 舊曆 */, {"旧历史", "舊歷史", -1 } /* 旧历史 => 舊歷史 */, {"旧游", "舊遊", -1 } /* 旧游 => 舊遊 */, {"旬余", "旬餘", -1 } /* 旬余 => 旬餘 */, {"旬邑", "栒邑", -1 } /* 旬邑 => 栒邑 */, {"旬阳", "洵陽", -1 } /* 旬阳 => 洵陽 */, {"时", "時", -1 } /* 时 => 時 */, {"时宪历", "時憲曆", -1 } /* 时宪历 => 時憲曆 */, {"时干下", "時幹下", -1 } /* 时干下 => 時幹下 */, {"旷", "曠", -1 } /* 旷 => 曠 */, {"旸", "暘", -1 } /* 旸 => 暘 */, {"昆仑", "崑崙", -1 } /* 昆仑 => 崑崙 */, {"昆山", "崑山", -1 } /* 昆山 => 崑山 */, {"昆曲", "崑曲", -1 } /* 昆曲 => 崑曲 */, {"昆腔", "崑腔", -1 } /* 昆腔 => 崑腔 */, {"明于", "明於", -1 } /* 明于 => 明於 */, {"明窗净几", "明窗淨几", -1 } /* 明窗净几 => 明窗淨几 */, {"明范", "明範", -1 } /* 明范 => 明範 */, {"昏瞑", "昏暝", -1 } /* 昏瞑 => 昏暝 */, {"易于", "易於", -1 } /* 易于 => 易於 */, {"易斗", "易斗", -1 } /* 易斗 => 易斗 */, {"易松", "易鬆", -1 } /* 易松 => 易鬆 */, {"昙", "曇", -1 } /* 昙 => 曇 */, {"星历", "星曆", -1 } /* 星历 => 星曆 */, {"星斗", "星斗", -1 } /* 星斗 => 星斗 */, {"星罗棋布", "星羅棋布", -1 } /* 星罗棋布 => 星羅棋布 */, {"星辰表", "星辰錶", -1 } /* 星辰表 => 星辰錶 */, {"春卷", "春捲", -1 } /* 春卷 => 春捲 */, {"春游", "春遊", -1 } /* 春游 => 春遊 */, {"春药", "春藥", -1 } /* 春药 => 春藥 */, {"是只", "是隻", 50 } /* 是只 => 是隻 */, {"是干的", "是乾的", -1 } /* 是干的 => 是乾的 */, {"昵称", "暱稱", -1 } /* 昵称 => 暱稱 */, {"昼", "晝", -1 } /* 昼 => 晝 */, {"昽", "曨", -1 } /* 昽 => 曨 */, {"显", "顯", -1 } /* 显 => 顯 */, {"显着标志", "顯著標志", -1 } /* 显着标志 => 顯著標志 */, {"晃荡", "晃蕩", -1 } /* 晃荡 => 晃蕩 */, {"晋", "晉", -1 } /* 晋 => 晉 */, {"晋升", "晉陞", -1 } /* 晋升 => 晉陞 */, {"晒", "曬", -1 } /* 晒 => 曬 */, {"晒干", "曬乾", -1 } /* 晒干 => 曬乾 */, {"晒谷", "曬穀", -1 } /* 晒谷 => 曬穀 */, {"晓", "曉", -1 } /* 晓 => 曉 */, {"晔", "曄", -1 } /* 晔 => 曄 */, {"晕", "暈", -1 } /* 晕 => 暈 */, {"晖", "暉", -1 } /* 晖 => 暉 */, {"普里", "普里", -1 } /* 普里 => 普里 */, {"普里查德", "普里查德", -1 } /* 普里查德 => 普里查德 */, {"景致", "景緻", -1 } /* 景致 => 景緻 */, {"晾干", "晾乾", -1 } /* 晾干 => 晾乾 */, {"暂", "暫", -1 } /* 暂 => 暫 */, {"暂松", "暫鬆", -1 } /* 暂松 => 暫鬆 */, {"暗于", "暗於", -1 } /* 暗于 => 暗於 */, {"暗伦", "闇倫", -1 } /* 暗伦 => 闇倫 */, {"暗冥", "闇冥", -1 } /* 暗冥 => 闇冥 */, {"暗劣", "闇劣", -1 } /* 暗劣 => 闇劣 */, {"暗弱", "闇弱", -1 } /* 暗弱 => 闇弱 */, {"暗然", "闇然", -1 } /* 暗然 => 闇然 */, {"暗线", "暗線", -1 } /* 暗线 => 暗線 */, {"暗藏着", "暗藏著", -1 } /* 暗藏着 => 暗藏著 */, {"暗赞", "暗讚", -1 } /* 暗赞 => 暗讚 */, {"暝目", "瞑目", -1 } /* 暝目 => 瞑目 */, {"暧", "曖", -1 } /* 暧 => 曖 */, {"暴冲", "暴衝", -1 } /* 暴冲 => 暴衝 */, {"暴卷", "暴捲", -1 } /* 暴卷 => 暴捲 */, {"曲卷", "曲捲", -1 } /* 曲卷 => 曲捲 */, {"曲薛", "麴薛", -1 } /* 曲薛 => 麴薛 */, {"曲酒", "麯酒", -1 } /* 曲酒 => 麯酒 */, {"曲酒", "麴酒", -1 } /* 曲酒 => 麴酒 */, {"更咸", "更鹹", -1 } /* 更咸 => 更鹹 */, {"更松", "更鬆", -1 } /* 更松 => 更鬆 */, {"更签", "更籤", -1 } /* 更签 => 更籤 */, {"最优化", "最佳化", -1 } /* 最优化 => 最佳化 */, {"月余", "月餘", -1 } /* 月余 => 月餘 */, {"月历", "月曆", -1 } /* 月历 => 月曆 */, {"有余", "有餘", -1 } /* 有余 => 有餘 */, {"有出好戏", "有齣好戲", -1 } /* 有出好戏 => 有齣好戲 */, {"有奖征答", "有獎徵答", -1 } /* 有奖征答 => 有獎徵答 */, {"有感而云", "有感而云", -1 } /* 有感而云 => 有感而云 */, {"有栖川有栖", "有栖川有栖", -1 } /* 有栖川有栖 => 有栖川有栖 */, {"有线", "有線", -1 } /* 有线 => 有線 */, {"服务器", "伺服器", -1 } /* 服务器 => 伺服器 */, {"服药", "服藥", -1 } /* 服药 => 服藥 */, {"服赝", "服膺", -1 } /* 服赝 => 服膺 */, {"望后石", "望后石", -1 } /* 望后石 => 望后石 */, {"朝干", "朝乾", -1 } /* 朝干 => 朝乾 */, {"朝干夕惕", "朝乾夕惕", -1 } /* 朝干夕惕 => 朝乾夕惕 */, {"朝鲜", "朝鮮", -1 } /* 朝鲜 => 朝鮮 */, {"朝鲜战争", "韓戰", -1 } /* 朝鲜战争 => 韓戰 */, {"木制", "木製", -1 } /* 木制 => 木製 */, {"木梁", "木樑", -1 } /* 木梁 => 木樑 */, {"木簽", "木籤", -1 } /* 木簽 => 木籤 */, {"木纳", "木訥", -1 } /* 木纳 => 木訥 */, {"未干", "未乾", -1 } /* 未干 => 未乾 */, {"未愈", "未癒", -1 } /* 未愈 => 未癒 */, {"未松下", "未鬆下", -1 } /* 未松下 => 未鬆下 */, {"未端", "末端", -1 } /* 未端 => 末端 */, {"本周", "本週", -1 } /* 本周 => 本週 */, {"本拉丹", "賓拉登", -1 } /* 本拉丹 => 賓拉登 */, {"本拉登", "賓拉登", -1 } /* 本拉登 => 賓拉登 */, {"术", "術", -1 } /* 术 => 術 */, {"术赤", "朮赤", -1 } /* 术赤 => 朮赤 */, {"朱唇皓齿", "硃唇皓齒", -1 } /* 朱唇皓齿 => 硃唇皓齒 */, {"朱喻", "硃喻", -1 } /* 朱喻 => 硃喻 */, {"朱批", "硃批", -1 } /* 朱批 => 硃批 */, {"朱矶", "硃磯", -1 } /* 朱矶 => 硃磯 */, {"朱砂", "硃砂", -1 } /* 朱砂 => 硃砂 */, {"朱笔", "硃筆", -1 } /* 朱笔 => 硃筆 */, {"朱红色", "硃紅色", -1 } /* 朱红色 => 硃紅色 */, {"朱色", "硃色", -1 } /* 朱色 => 硃色 */, {"朴", "樸", -1 } /* 朴 => 樸 */, {"朴仔树", "朴仔樹", -1 } /* 朴仔树 => 朴仔樹 */, {"朴修", "朴修", -1 } /* 朴修 => 朴修 */, {"朴口", "朴口", -1 } /* 朴口 => 朴口 */, {"朴子", "朴子", -1 } /* 朴子 => 朴子 */, {"朴实", "樸實", -1 } /* 朴实 => 樸實 */, {"朴属", "朴屬", -1 } /* 朴属 => 朴屬 */, {"朴木", "朴木", -1 } /* 朴木 => 朴木 */, {"朴树", "朴樹", -1 } /* 朴树 => 朴樹 */, {"朴正熙", "朴正熙", -1 } /* 朴正熙 => 朴正熙 */, {"朴玉", "璞玉", -1 } /* 朴玉 => 璞玉 */, {"朴硝", "朴硝", -1 } /* 朴硝 => 朴硝 */, {"朴素", "樸素", -1 } /* 朴素 => 樸素 */, {"朴资茅斯", "朴資茅斯", -1 } /* 朴资茅斯 => 朴資茅斯 */, {"机", "機", -1 } /* 机 => 機 */, {"机器压制", "機器壓製", -1 } /* 机器压制 => 機器壓製 */, {"机壳", "機殼", -1 } /* 机壳 => 機殼 */, {"机抒", "機杼", -1 } /* 机抒 => 機杼 */, {"杀", "殺", -1 } /* 杀 => 殺 */, {"杀虫药", "殺虫藥", -1 } /* 杀虫药 => 殺虫藥 */, {"杂", "雜", -1 } /* 杂 => 雜 */, {"杂志", "雜誌", -1 } /* 杂志 => 雜誌 */, {"权", "權", -1 } /* 权 => 權 */, {"权力欲", "權力慾", -1 } /* 权力欲 => 權力慾 */, {"杆", "桿", -1 } /* 杆 => 桿 */, {"杆面", "桿麵", -1 } /* 杆面 => 桿麵 */, {"李连杰", "李連杰", -1 } /* 李连杰 => 李連杰 */, {"李钟郁", "李鍾郁", -1 } /* 李钟郁 => 李鍾郁 */, {"材干", "材幹", -1 } /* 材干 => 材幹 */, {"束发", "束髮", -1 } /* 束发 => 束髮 */, {"杠杆", "槓桿", -1 } /* 杠杆 => 槓桿 */, {"条", "條", -1 } /* 条 => 條 */, {"条干", "條幹", -1 } /* 条干 => 條幹 */, {"来", "來", -1 } /* 来 => 來 */, {"来复", "來複", -1 } /* 来复 => 來複 */, {"来范", "來範", -1 } /* 来范 => 來範 */, {"杨", "楊", -1 } /* 杨 => 楊 */, {"杩", "榪", -1 } /* 杩 => 榪 */, {"杯", "杯", -1 } /* 杯 => 杯 */, {"杯干", "杯乾", -1 } /* 杯干 => 杯乾 */, {"杯白干", "杯白乾", -1 } /* 杯白干 => 杯白乾 */, {"杯面", "杯麵", -1 } /* 杯面 => 杯麵 */, {"杰", "傑", -1 } /* 杰 => 傑 */, {"杰伦", "杰倫", -1 } /* 杰伦 => 杰倫 */, {"松一下", "鬆一下", -1 } /* 松一下 => 鬆一下 */, {"松一些", "鬆一些", -1 } /* 松一些 => 鬆一些 */, {"松一口气", "鬆一口氣", -1 } /* 松一口气 => 鬆一口氣 */, {"松一松", "鬆一鬆", -1 } /* 松一松 => 鬆一鬆 */, {"松下一口", "鬆下一口", -1 } /* 松下一口 => 鬆下一口 */, {"松下了", "鬆下了", -1 } /* 松下了 => 鬆下了 */, {"松下来", "鬆下來", -1 } /* 松下来 => 鬆下來 */, {"松不开", "鬆不開", -1 } /* 松不开 => 鬆不開 */, {"松不松", "鬆不鬆", -1 } /* 松不松 => 鬆不鬆 */, {"松不紧", "鬆不緊", -1 } /* 松不紧 => 鬆不緊 */, {"松了", "鬆了", -1 } /* 松了 => 鬆了 */, {"松了松", "鬆了鬆", -1 } /* 松了松 => 鬆了鬆 */, {"松些", "鬆些", -1 } /* 松些 => 鬆些 */, {"松出一", "鬆出一", -1 } /* 松出一 => 鬆出一 */, {"松出口", "鬆出口", -1 } /* 松出口 => 鬆出口 */, {"松动", "鬆動", -1 } /* 松动 => 鬆動 */, {"松劲", "鬆勁", -1 } /* 松劲 => 鬆勁 */, {"松化", "鬆化", -1 } /* 松化 => 鬆化 */, {"松去", "鬆去", -1 } /* 松去 => 鬆去 */, {"松口", "鬆口", -1 } /* 松口 => 鬆口 */, {"松土", "鬆土", -1 } /* 松土 => 鬆土 */, {"松垮", "鬆垮", -1 } /* 松垮 => 鬆垮 */, {"松塌", "鬆塌", -1 } /* 松塌 => 鬆塌 */, {"松宽", "鬆寬", -1 } /* 松宽 => 鬆寬 */, {"松干", "松幹", -1 } /* 松干 => 松幹 */, {"松开", "鬆開", -1 } /* 松开 => 鬆開 */, {"松弛", "鬆弛", -1 } /* 松弛 => 鬆弛 */, {"松得多", "鬆得多", -1 } /* 松得多 => 鬆得多 */, {"松快", "鬆快", -1 } /* 松快 => 鬆快 */, {"松懈", "鬆懈", -1 } /* 松懈 => 鬆懈 */, {"松手", "鬆手", -1 } /* 松手 => 鬆手 */, {"松掉", "鬆掉", -1 } /* 松掉 => 鬆掉 */, {"松放", "鬆放", -1 } /* 松放 => 鬆放 */, {"松散", "鬆散", -1 } /* 松散 => 鬆散 */, {"松晃", "鬆晃", -1 } /* 松晃 => 鬆晃 */, {"松松", "鬆鬆", -1 } /* 松松 => 鬆鬆 */, {"松柔", "鬆柔", -1 } /* 松柔 => 鬆柔 */, {"松毛松翼", "鬆毛鬆翼", -1 } /* 松毛松翼 => 鬆毛鬆翼 */, {"松气", "鬆氣", -1 } /* 松气 => 鬆氣 */, {"松油管", "鬆油管", -1 } /* 松油管 => 鬆油管 */, {"松油门", "鬆油門", -1 } /* 松油门 => 鬆油門 */, {"松泛", "鬆泛", -1 } /* 松泛 => 鬆泛 */, {"松泥", "鬆泥", -1 } /* 松泥 => 鬆泥 */, {"松浮", "鬆浮", -1 } /* 松浮 => 鬆浮 */, {"松涛", "鬆濤", -1 } /* 松涛 => 鬆濤 */, {"松球", "松毬", -1 } /* 松球 => 松毬 */, {"松甩", "鬆甩", -1 } /* 松甩 => 鬆甩 */, {"松筋", "鬆筋", -1 } /* 松筋 => 鬆筋 */, {"松糕", "鬆糕", -1 } /* 松糕 => 鬆糕 */, {"松紧", "鬆緊", -1 } /* 松紧 => 鬆緊 */, {"松线", "鬆線", -1 } /* 松线 => 鬆線 */, {"松绑", "鬆綁", -1 } /* 松绑 => 鬆綁 */, {"松绳", "鬆繩", -1 } /* 松绳 => 鬆繩 */, {"松缓", "鬆緩", -1 } /* 松缓 => 鬆緩 */, {"松肘", "鬆肘", -1 } /* 松肘 => 鬆肘 */, {"松肩", "鬆肩", -1 } /* 松肩 => 鬆肩 */, {"松脆", "鬆脆", -1 } /* 松脆 => 鬆脆 */, {"松脱", "鬆脫", -1 } /* 松脱 => 鬆脫 */, {"松腰", "鬆腰", -1 } /* 松腰 => 鬆腰 */, {"松蛋", "鬆蛋", -1 } /* 松蛋 => 鬆蛋 */, {"松解", "鬆解", -1 } /* 松解 => 鬆解 */, {"松起", "鬆起", -1 } /* 松起 => 鬆起 */, {"松软", "鬆軟", -1 } /* 松软 => 鬆軟 */, {"松通", "鬆通", -1 } /* 松通 => 鬆通 */, {"松閒", "鬆閒", -1 } /* 松閒 => 鬆閒 */, {"松饼", "鬆餅", -1 } /* 松饼 => 鬆餅 */, {"松驰", "鬆弛", -1 } /* 松驰 => 鬆弛 */, {"松骨", "鬆骨", -1 } /* 松骨 => 鬆骨 */, {"松齿", "鬆齒", -1 } /* 松齿 => 鬆齒 */, {"板剉", "板銼", -1 } /* 板剉 => 板銼 */, {"板着脸", "板著臉", -1 } /* 板着脸 => 板著臉 */, {"板荡", "板蕩", -1 } /* 板荡 => 板蕩 */, {"极", "極", -1 } /* 极 => 極 */, {"极干", "極乾", -1 } /* 极干 => 極乾 */, {"极待救", "亟待救", -1 } /* 极待救 => 亟待救 */, {"极待解", "亟待解", -1 } /* 极待解 => 亟待解 */, {"极极", "亟亟", -1 } /* 极极 => 亟亟 */, {"构", "構", -1 } /* 构 => 構 */, {"构造函数", "建構子", -1 } /* 构造函数 => 建構子 */, {"构陷", "搆陷", -1 } /* 构陷 => 搆陷 */, {"析构函数", "解構子", -1 } /* 析构函数 => 解構子 */, {"枕借", "枕藉", -1 } /* 枕借 => 枕藉 */, {"林宏岳", "林宏嶽", -1 } /* 林宏岳 => 林宏嶽 */, {"林郁方", "林郁方", -1 } /* 林郁方 => 林郁方 */, {"果子干", "果子乾", -1 } /* 果子干 => 果子乾 */, {"果干", "果乾", -1 } /* 果干 => 果乾 */, {"果系", "果係", -1 } /* 果系 => 果係 */, {"枝干", "枝幹", -1 } /* 枝干 => 枝幹 */, {"枝芽", "枝枒", -1 } /* 枝芽 => 枝枒 */, {"枞", "樅", -1 } /* 枞 => 樅 */, {"枢", "樞", -1 } /* 枢 => 樞 */, {"枢钮", "樞紐", -1 } /* 枢钮 => 樞紐 */, {"枣", "棗", -1 } /* 枣 => 棗 */, {"枥", "櫪", -1 } /* 枥 => 櫪 */, {"枧", "梘", -1 } /* 枧 => 梘 */, {"枨", "棖", -1 } /* 枨 => 棖 */, {"枪", "槍", -1 } /* 枪 => 槍 */, {"枫", "楓", -1 } /* 枫 => 楓 */, {"枭", "梟", -1 } /* 枭 => 梟 */, {"枯干", "枯乾", -1 } /* 枯干 => 枯乾 */, {"枯干", "枯幹", -1 } /* 枯干 => 枯幹 */, {"架梁", "架樑", -1 } /* 架梁 => 架樑 */, {"柏林墙", "柏林圍牆", -1 } /* 柏林墙 => 柏林圍牆 */, {"某只", "某隻", -1 } /* 某只 => 某隻 */, {"染发", "染髮", -1 } /* 染发 => 染髮 */, {"柔发", "柔髮", -1 } /* 柔发 => 柔髮 */, {"柜", "櫃", -1 } /* 柜 => 櫃 */, {"柜上", "柜上", -1 } /* 柜上 => 柜上 */, {"柜台", "櫃檯", -1 } /* 柜台 => 櫃檯 */, {"柜子", "柜子", -1 } /* 柜子 => 柜子 */, {"柠", "檸", -1 } /* 柠 => 檸 */, {"柱梁", "柱樑", -1 } /* 柱梁 => 柱樑 */, {"柳眉倒竖", "柳眉倒豎", -1 } /* 柳眉倒竖 => 柳眉倒豎 */, {"柽", "檉", -1 } /* 柽 => 檉 */, {"栀", "梔", -1 } /* 栀 => 梔 */, {"栅", "柵", -1 } /* 栅 => 柵 */, {"标", "標", -1 } /* 标 => 標 */, {"标志", "標誌", -1 } /* 标志 => 標誌 */, {"标志着", "標志著", -1 } /* 标志着 => 標志著 */, {"标杆", "標竿", -1 } /* 标杆 => 標竿 */, {"标注", "標註", -1 } /* 标注 => 標註 */, {"标签", "標籤", -1 } /* 标签 => 標籤 */, {"标簽", "標籤", -1 } /* 标簽 => 標籤 */, {"标线", "標線", -1 } /* 标线 => 標線 */, {"标致", "標緻", -1 } /* 标致 => 標緻 */, {"栈", "棧", -1 } /* 栈 => 棧 */, {"栉", "櫛", -1 } /* 栉 => 櫛 */, {"栊", "櫳", -1 } /* 栊 => 櫳 */, {"栋", "棟", -1 } /* 栋 => 棟 */, {"栋梁", "棟樑", -1 } /* 栋梁 => 棟樑 */, {"栌", "櫨", -1 } /* 栌 => 櫨 */, {"栎", "櫟", -1 } /* 栎 => 櫟 */, {"栏", "欄", -1 } /* 栏 => 欄 */, {"栏杆", "欄杆", -1 } /* 栏杆 => 欄杆 */, {"树", "樹", -1 } /* 树 => 樹 */, {"树干", "樹幹", -1 } /* 树干 => 樹幹 */, {"树梁", "樹樑", -1 } /* 树梁 => 樹樑 */, {"栓住", "拴住", -1 } /* 栓住 => 拴住 */, {"栖", "棲", -1 } /* 栖 => 棲 */, {"栗", "慄", -1 } /* 栗 => 慄 */, {"栗原", "栗原", -1 } /* 栗原 => 栗原 */, {"栗子", "栗子", -1 } /* 栗子 => 栗子 */, {"校雠学", "校讎學", -1 } /* 校雠学 => 校讎學 */, {"样", "樣", -1 } /* 样 => 樣 */, {"样干", "樣幹", -1 } /* 样干 => 樣幹 */, {"样范", "樣範", -1 } /* 样范 => 樣範 */, {"核准", "核准", -1 } /* 核准 => 核准 */, {"核复", "核覆", -1 } /* 核复 => 核覆 */, {"根于", "根於", -1 } /* 根于 => 根於 */, {"根烟", "根菸", -1 } /* 根烟 => 根菸 */, {"格林纳达", "格瑞那達", -1 } /* 格林纳达 => 格瑞那達 */, {"格线", "格線", -1 } /* 格线 => 格線 */, {"格范", "格範", -1 } /* 格范 => 格範 */, {"格里", "格里", -1 } /* 格里 => 格里 */, {"格里历", "格里曆", -1 } /* 格里历 => 格里曆 */, {"格里高利", "格里高利", -1 } /* 格里高利 => 格里高利 */, {"格里高利历", "格里高利曆", -1 } /* 格里高利历 => 格里高利曆 */, {"栾", "欒", -1 } /* 栾 => 欒 */, {"桅杆", "桅杆", -1 } /* 桅杆 => 桅杆 */, {"框线", "框線", -1 } /* 框线 => 框線 */, {"案几", "案几", -1 } /* 案几 => 案几 */, {"桌面", "案頭", -1 } /* 桌面 => 案頭 */, {"桌面", "桌面", -1 } /* 桌面 => 桌面 */, {"桑干", "桑乾", -1 } /* 桑干 => 桑乾 */, {"桠", "椏", -1 } /* 桠 => 椏 */, {"桡", "橈", -1 } /* 桡 => 橈 */, {"桢", "楨", -1 } /* 桢 => 楨 */, {"桢干", "楨幹", -1 } /* 桢干 => 楨幹 */, {"档", "檔", -1 } /* 档 => 檔 */, {"桤", "榿", -1 } /* 桤 => 榿 */, {"桥", "橋", -1 } /* 桥 => 橋 */, {"桥梁", "橋樑", -1 } /* 桥梁 => 橋樑 */, {"桦", "樺", -1 } /* 桦 => 樺 */, {"桧", "檜", -1 } /* 桧 => 檜 */, {"桨", "槳", -1 } /* 桨 => 槳 */, {"桩", "樁", -1 } /* 桩 => 樁 */, {"梁", "梁", -1 } /* 梁 => 梁 */, {"梁上", "樑上", -1 } /* 梁上 => 樑上 */, {"梁下", "樑下", -1 } /* 梁下 => 樑下 */, {"梁折", "樑折", -1 } /* 梁折 => 樑折 */, {"梁柱", "樑柱", -1 } /* 梁柱 => 樑柱 */, {"梁脊", "樑脊", -1 } /* 梁脊 => 樑脊 */, {"梗直", "鯁直", -1 } /* 梗直 => 鯁直 */, {"梦", "夢", -1 } /* 梦 => 夢 */, {"梦回", "夢迴", -1 } /* 梦回 => 夢迴 */, {"梦游", "夢遊", -1 } /* 梦游 => 夢遊 */, {"梦系", "夢繫", -1 } /* 梦系 => 夢繫 */, {"梨干", "梨乾", -1 } /* 梨干 => 梨乾 */, {"梯冲", "梯衝", -1 } /* 梯冲 => 梯衝 */, {"械系", "械繫", -1 } /* 械系 => 械繫 */, {"梳发", "梳髮", -1 } /* 梳发 => 梳髮 */, {"梵蒂冈", "梵蒂岡", -1 } /* 梵蒂冈 => 梵蒂岡 */, {"梼", "檮", -1 } /* 梼 => 檮 */, {"梾", "棶", -1 } /* 梾 => 棶 */, {"梿", "槤", -1 } /* 梿 => 槤 */, {"检", "檢", -1 } /* 检 => 檢 */, {"检复", "檢覆", -1 } /* 检复 => 檢覆 */, {"棁", "梲", -1 } /* 棁 => 梲 */, {"棂", "欞", -1 } /* 棂 => 欞 */, {"棉制", "棉製", -1 } /* 棉制 => 棉製 */, {"棉线", "棉線", -1 } /* 棉线 => 棉線 */, {"棕发", "棕髮", -1 } /* 棕发 => 棕髮 */, {"棱角", "稜角", -1 } /* 棱角 => 稜角 */, {"棱锥", "稜錐", -1 } /* 棱锥 => 稜錐 */, {"棱镜", "稜鏡", -1 } /* 棱镜 => 稜鏡 */, {"椁", "槨", -1 } /* 椁 => 槨 */, {"植发", "植髮", -1 } /* 植发 => 植髮 */, {"椟", "櫝", -1 } /* 椟 => 櫝 */, {"椠", "槧", -1 } /* 椠 => 槧 */, {"椤", "欏", -1 } /* 椤 => 欏 */, {"椭", "橢", -1 } /* 椭 => 橢 */, {"楼", "樓", -1 } /* 楼 => 樓 */, {"榄", "欖", -1 } /* 榄 => 欖 */, {"榅", "榲", -1 } /* 榅 => 榲 */, {"榇", "櫬", -1 } /* 榇 => 櫬 */, {"榈", "櫚", -1 } /* 榈 => 櫚 */, {"榉", "櫸", -1 } /* 榉 => 櫸 */, {"榔头", "鎯頭", -1 } /* 榔头 => 鎯頭 */, {"榨取", "搾取", -1 } /* 榨取 => 搾取 */, {"榨干", "榨乾", -1 } /* 榨干 => 榨乾 */, {"榴连", "榴槤", -1 } /* 榴连 => 榴槤 */, {"槌头", "鎚頭", -1 } /* 槌头 => 鎚頭 */, {"槌打", "搥打", -1 } /* 槌打 => 搥打 */, {"槌背", "搥背", -1 } /* 槌背 => 搥背 */, {"槌胸", "搥胸", -1 } /* 槌胸 => 搥胸 */, {"槌鼓", "搥鼓", -1 } /* 槌鼓 => 搥鼓 */, {"槚", "檟", -1 } /* 槚 => 檟 */, {"槛", "檻", -1 } /* 槛 => 檻 */, {"槟", "檳", -1 } /* 槟 => 檳 */, {"槠", "櫧", -1 } /* 槠 => 櫧 */, {"模制", "模製", -1 } /* 模制 => 模製 */, {"模块", "模組", -1 } /* 模块 => 模組 */, {"模范", "模範", -1 } /* 模范 => 模範 */, {"横", "橫", -1 } /* 横 => 橫 */, {"横七竖八", "橫七豎八", -1 } /* 横七竖八 => 橫七豎八 */, {"横冲", "橫衝", -1 } /* 横冲 => 橫衝 */, {"横冲直撞", "橫衝直撞", -1 } /* 横冲直撞 => 橫衝直撞 */, {"横卷", "橫捲", -1 } /* 横卷 => 橫捲 */, {"横征", "橫徵", -1 } /* 横征 => 橫徵 */, {"横征暴敛", "橫征暴斂", -1 } /* 横征暴敛 => 橫征暴斂 */, {"横梁", "橫樑", -1 } /* 横梁 => 橫樑 */, {"横眉竖目", "橫眉豎目", -1 } /* 横眉竖目 => 橫眉豎目 */, {"横竖", "橫豎", -1 } /* 横竖 => 橫豎 */, {"横线", "橫線", -1 } /* 横线 => 橫線 */, {"横说竖说", "橫說豎說", -1 } /* 横说竖说 => 橫說豎說 */, {"樯", "檣", -1 } /* 樯 => 檣 */, {"樱", "櫻", -1 } /* 樱 => 櫻 */, {"樵采", "樵採", -1 } /* 樵采 => 樵採 */, {"橘梗", "桔梗", -1 } /* 橘梗 => 桔梗 */, {"橥", "櫫", -1 } /* 橥 => 櫫 */, {"橱", "櫥", -1 } /* 橱 => 櫥 */, {"橹", "櫓", -1 } /* 橹 => 櫓 */, {"橼", "櫞", -1 } /* 橼 => 櫞 */, {"檩", "檁", -1 } /* 檩 => 檁 */, {"次于", "次於", -1 } /* 次于 => 次於 */, {"欢", "歡", -1 } /* 欢 => 歡 */, {"欤", "歟", -1 } /* 欤 => 歟 */, {"欧", "歐", -1 } /* 欧 => 歐 */, {"欧游", "歐遊", -1 } /* 欧游 => 歐遊 */, {"欲", "欲", -1 } /* 欲 => 欲 */, {"欲令智昏", "慾令智昏", -1 } /* 欲令智昏 => 慾令智昏 */, {"欲壑", "慾壑", -1 } /* 欲壑 => 慾壑 */, {"欲女", "慾女", -1 } /* 欲女 => 慾女 */, {"欲孽", "慾孽", -1 } /* 欲孽 => 慾孽 */, {"欲念", "慾念", -1 } /* 欲念 => 慾念 */, {"欲望", "慾望", -1 } /* 欲望 => 慾望 */, {"欲求不满", "慾求不滿", -1 } /* 欲求不满 => 慾求不滿 */, {"欲海", "慾海", -1 } /* 欲海 => 慾海 */, {"欲火", "慾火", -1 } /* 欲火 => 慾火 */, {"欲舍", "欲捨", -1 } /* 欲舍 => 欲捨 */, {"欲障", "慾障", -1 } /* 欲障 => 慾障 */, {"欷吁", "欷吁", -1 } /* 欷吁 => 欷吁 */, {"欺蒙", "欺矇", -1 } /* 欺蒙 => 欺矇 */, {"歇斯底里", "歇斯底里", -1 } /* 歇斯底里 => 歇斯底里 */, {"歉咎", "歉疚", -1 } /* 歉咎 => 歉疚 */, {"歌后", "歌后", -1 } /* 歌后 => 歌后 */, {"止于", "止於", -1 } /* 止于 => 止於 */, {"正正当当", "正正當當", -1 } /* 正正当当 => 正正當當 */, {"步步高升", "步步高陞", -1 } /* 步步高升 => 步步高陞 */, {"武后", "武后", -1 } /* 武后 => 武后 */, {"死于", "死於", -1 } /* 死于 => 死於 */, {"歼", "殲", -1 } /* 歼 => 殲 */, {"殁", "歿", -1 } /* 殁 => 歿 */, {"殇", "殤", -1 } /* 殇 => 殤 */, {"殊勳", "殊勛", -1 } /* 殊勳 => 殊勛 */, {"残", "殘", -1 } /* 残 => 殘 */, {"残余", "殘餘", -1 } /* 残余 => 殘餘 */, {"残干", "殘幹", -1 } /* 残干 => 殘幹 */, {"残废后", "殘廢後", -1 } /* 残废后 => 殘廢後 */, {"殒", "殞", -1 } /* 殒 => 殞 */, {"殓", "殮", -1 } /* 殓 => 殮 */, {"殚", "殫", -1 } /* 殚 => 殫 */, {"殡", "殯", -1 } /* 殡 => 殯 */, {"殴", "毆", -1 } /* 殴 => 毆 */, {"殷勤", "慇勤", -1 } /* 殷勤 => 慇勤 */, {"殷忧启圣", "殷憂啟聖", -1 } /* 殷忧启圣 => 殷憂啟聖 */, {"毁", "毀", -1 } /* 毁 => 毀 */, {"毁谤", "譭謗", -1 } /* 毁谤 => 譭謗 */, {"毂", "轂", -1 } /* 毂 => 轂 */, {"母后", "母后", -1 } /* 母后 => 母后 */, {"母系", "母系", -1 } /* 母系 => 母系 */, {"母范", "母範", -1 } /* 母范 => 母範 */, {"每只", "每隻", -1 } /* 每只 => 每隻 */, {"每周", "每週", -1 } /* 每周 => 每週 */, {"毒药", "毒藥", -1 } /* 毒药 => 毒藥 */, {"比拼", "比拚", -1 } /* 比拼 => 比拚 */, {"毕", "畢", -1 } /* 毕 => 畢 */, {"毕加索", "畢卡索", -1 } /* 毕加索 => 畢卡索 */, {"毙", "斃", -1 } /* 毙 => 斃 */, {"毛制", "毛製", -1 } /* 毛制 => 毛製 */, {"毛发", "毛髮", -1 } /* 毛发 => 毛髮 */, {"毛姜", "毛薑", -1 } /* 毛姜 => 毛薑 */, {"毛线", "毛線", -1 } /* 毛线 => 毛線 */, {"毛须", "毛鬚", -1 } /* 毛须 => 毛鬚 */, {"毡", "氈", -1 } /* 毡 => 氈 */, {"毫厘", "毫釐", -1 } /* 毫厘 => 毫釐 */, {"毫发", "毫髮", -1 } /* 毫发 => 毫髮 */, {"毵", "毿", -1 } /* 毵 => 毿 */, {"氇", "氌", -1 } /* 氇 => 氌 */, {"民制", "民製", -1 } /* 民制 => 民製 */, {"民系", "民系", -1 } /* 民系 => 民系 */, {"气", "氣", -1 } /* 气 => 氣 */, {"气一冲", "氣一衝", -1 } /* 气一冲 => 氣一衝 */, {"气慨", "氣概", -1 } /* 气慨 => 氣概 */, {"氢", "氫", -1 } /* 氢 => 氫 */, {"氨基酸", "胺基酸", -1 } /* 氨基酸 => 胺基酸 */, {"氩", "氬", -1 } /* 氩 => 氬 */, {"氯霉素", "氯黴素", -1 } /* 氯霉素 => 氯黴素 */, {"氲", "氳", -1 } /* 氲 => 氳 */, {"水一冲", "水一衝", -1 } /* 水一冲 => 水一衝 */, {"水再冲", "水再衝", -1 } /* 水再冲 => 水再衝 */, {"水又冲", "水又衝", -1 } /* 水又冲 => 水又衝 */, {"水已冲", "水已衝", -1 } /* 水已冲 => 水已衝 */, {"水已干", "水已乾", -1 } /* 水已干 => 水已乾 */, {"水干", "水乾", -1 } /* 水干 => 水乾 */, {"水干尽", "水乾盡", -1 } /* 水干尽 => 水乾盡 */, {"水干掉", "水乾掉", -1 } /* 水干掉 => 水乾掉 */, {"水平仪", "水平儀", -1 } /* 水平仪 => 水平儀 */, {"水急冲", "水急衝", -1 } /* 水急冲 => 水急衝 */, {"水才干", "水才乾", -1 } /* 水才干 => 水才乾 */, {"水斗", "水斗", -1 } /* 水斗 => 水斗 */, {"水汽", "水氣", -1 } /* 水汽 => 水氣 */, {"水泄不通", "水洩不通", -1 } /* 水泄不通 => 水洩不通 */, {"水清可见", "水清可鑑", -1 } /* 水清可见 => 水清可鑑 */, {"水蒸汽", "水蒸氣", -1 } /* 水蒸汽 => 水蒸氣 */, {"水表", "水錶", -1 } /* 水表 => 水錶 */, {"水谷之海", "水穀之海", -1 } /* 水谷之海 => 水穀之海 */, {"水里乡", "水里鄉", -1 } /* 水里乡 => 水里鄉 */, {"永历", "永曆", -1 } /* 永历 => 永曆 */, {"永志", "永誌", -1 } /* 永志 => 永誌 */, {"求知欲", "求知慾", -1 } /* 求知欲 => 求知慾 */, {"求签", "求籤", -1 } /* 求签 => 求籤 */, {"求簽", "求籤", -1 } /* 求簽 => 求籤 */, {"汇", "匯", -1 } /* 汇 => 匯 */, {"汇刊", "彙刊", -1 } /* 汇刊 => 彙刊 */, {"汇总", "彙總", -1 } /* 汇总 => 彙總 */, {"汇报", "彙報", -1 } /* 汇报 => 彙報 */, {"汇整", "彙整", -1 } /* 汇整 => 彙整 */, {"汇算", "彙算", -1 } /* 汇算 => 彙算 */, {"汇纂", "彙纂", -1 } /* 汇纂 => 彙纂 */, {"汇编", "彙編", -1 } /* 汇编 => 彙編 */, {"汇萃", "薈萃", -1 } /* 汇萃 => 薈萃 */, {"汇辑", "彙輯", -1 } /* 汇辑 => 彙輯 */, {"汇集", "彙集", -1 } /* 汇集 => 彙集 */, {"汉", "漢", -1 } /* 汉 => 漢 */, {"汉奸", "漢奸", -1 } /* 汉奸 => 漢奸 */, {"江采苹", "江采蘋", -1 } /* 江采苹 => 江采蘋 */, {"污蔑", "污衊", -1 } /* 污蔑 => 污衊 */, {"汤", "湯", -1 } /* 汤 => 湯 */, {"汤加丽", "湯加麗", -1 } /* 汤加丽 => 湯加麗 */, {"汤团", "汤糰", -1 } /* 汤团 => 汤糰 */, {"汤团", "湯糰", -1 } /* 汤团 => 湯糰 */, {"汤药", "湯藥", -1 } /* 汤药 => 湯藥 */, {"汤面", "湯麵", -1 } /* 汤面 => 湯麵 */, {"汨没", "汩沒", -1 } /* 汨没 => 汩沒 */, {"汹", "洶", -1 } /* 汹 => 洶 */, {"沈吉线", "瀋吉線", -1 } /* 沈吉线 => 瀋吉線 */, {"沈山线", "瀋山線", -1 } /* 沈山线 => 瀋山線 */, {"沈州", "瀋州", -1 } /* 沈州 => 瀋州 */, {"沈水", "瀋水", -1 } /* 沈水 => 瀋水 */, {"沈河", "瀋河", -1 } /* 沈河 => 瀋河 */, {"沈阳", "瀋陽", -1 } /* 沈阳 => 瀋陽 */, {"沙朗斯通", "莎朗史東", -1 } /* 沙朗斯通 => 莎朗史東 */, {"沙朴", "沙朴", -1 } /* 沙朴 => 沙朴 */, {"沙特阿拉伯", "沙地阿拉伯", -1 } /* 沙特阿拉伯 => 沙地阿拉伯 */, {"沟", "溝", -1 } /* 沟 => 溝 */, {"没", "沒", -1 } /* 没 => 沒 */, {"没事干", "沒事幹", -1 } /* 没事干 => 沒事幹 */, {"没干", "沒幹", 51 } /* 没干 => 沒幹 */, {"没干没净", "沒乾沒淨", -1 } /* 没干没净 => 沒乾沒淨 */, {"没干淨", "沒乾淨", -1 } /* 没干淨 => 沒乾淨 */, {"没念", "沒唸", -1 } /* 没念 => 沒唸 */, {"没松下", "沒鬆下", -1 } /* 没松下 => 沒鬆下 */, {"没梢干", "沒梢幹", -1 } /* 没梢干 => 沒梢幹 */, {"没精打采", "沒精打采", -1 } /* 没精打采 => 沒精打采 */, {"没辄", "沒轍", -1 } /* 没辄 => 沒轍 */, {"沣", "灃", -1 } /* 沣 => 灃 */, {"沤", "漚", -1 } /* 沤 => 漚 */, {"沥", "瀝", -1 } /* 沥 => 瀝 */, {"沥干", "瀝乾", -1 } /* 沥干 => 瀝乾 */, {"沦", "淪", -1 } /* 沦 => 淪 */, {"沧", "滄", -1 } /* 沧 => 滄 */, {"沨", "渢", -1 } /* 沨 => 渢 */, {"沩", "溈", -1 } /* 沩 => 溈 */, {"沪", "滬", -1 } /* 沪 => 滬 */, {"油面", "油麵", -1 } /* 油面 => 油麵 */, {"治愈", "治癒", -1 } /* 治愈 => 治癒 */, {"治疔", "治療", -1 } /* 治疔 => 治療 */, {"沾汙", "玷汙", -1 } /* 沾汙 => 玷汙 */, {"沾污", "玷汙", -1 } /* 沾污 => 玷汙 */, {"沾辱", "玷辱", -1 } /* 沾辱 => 玷辱 */, {"沿着", "沿著", -1 } /* 沿着 => 沿著 */, {"沿线", "沿線", -1 } /* 沿线 => 沿線 */, {"法线", "法線", -1 } /* 法线 => 法線 */, {"泛游", "泛遊", -1 } /* 泛游 => 泛遊 */, {"泛滥", "氾濫", -1 } /* 泛滥 => 氾濫 */, {"泞", "濘", -1 } /* 泞 => 濘 */, {"泡制", "泡製", -1 } /* 泡制 => 泡製 */, {"泡面", "泡麵", -1 } /* 泡面 => 泡麵 */, {"波利尼西亚", "玻里尼西亞", -1 } /* 波利尼西亚 => 玻里尼西亞 */, {"波斯尼亚和黑塞哥维那", "波士尼亞赫塞哥維納", -1 } /* 波斯尼亚和黑塞哥维那 => 波士尼亞赫塞哥維納 */, {"波里", "波里", -1 } /* 波里 => 波里 */, {"泥涂", "泥塗", -1 } /* 泥涂 => 泥塗 */, {"泥涌", "泥涌", -1 } /* 泥涌 => 泥涌 */, {"注:", "註:", -1 } /* 注: => 註: */, {"注上", "註上", -1 } /* 注上 => 註上 */, {"注云", "註云", -1 } /* 注云 => 註云 */, {"注册", "註冊", -1 } /* 注册 => 註冊 */, {"注失", "註失", -1 } /* 注失 => 註失 */, {"注明", "註明", -1 } /* 注明 => 註明 */, {"注标", "註標", -1 } /* 注标 => 註標 */, {"注生娘娘", "註生娘娘", -1 } /* 注生娘娘 => 註生娘娘 */, {"注疏", "註疏", -1 } /* 注疏 => 註疏 */, {"注脚", "註腳", -1 } /* 注脚 => 註腳 */, {"注解", "註解", -1 } /* 注解 => 註解 */, {"注记", "註記", -1 } /* 注记 => 註記 */, {"注译", "註譯", -1 } /* 注译 => 註譯 */, {"注释", "註釋", -1 } /* 注释 => 註釋 */, {"注销", "註銷", -1 } /* 注销 => 註銷 */, {"注:", "註:", -1 } /* 注: => 註: */, {"泪", "淚", -1 } /* 泪 => 淚 */, {"泪干", "淚乾", -1 } /* 泪干 => 淚乾 */, {"泪干肠断", "淚乾腸斷", -1 } /* 泪干肠断 => 淚乾腸斷 */, {"泰历", "泰曆", -1 } /* 泰历 => 泰曆 */, {"泰斗", "泰斗", -1 } /* 泰斗 => 泰斗 */, {"泶", "澩", -1 } /* 泶 => 澩 */, {"泷", "瀧", -1 } /* 泷 => 瀧 */, {"泸", "瀘", -1 } /* 泸 => 瀘 */, {"泺", "濼", -1 } /* 泺 => 濼 */, {"泻", "瀉", -1 } /* 泻 => 瀉 */, {"泻药", "瀉藥", -1 } /* 泻药 => 瀉藥 */, {"泼", "潑", -1 } /* 泼 => 潑 */, {"泽", "澤", -1 } /* 泽 => 澤 */, {"泾", "涇", -1 } /* 泾 => 涇 */, {"洁", "潔", -1 } /* 洁 => 潔 */, {"洋干漆", "洋乾漆", -1 } /* 洋干漆 => 洋乾漆 */, {"洒", "灑", -1 } /* 洒 => 灑 */, {"洗发", "洗髮", -1 } /* 洗发 => 洗髮 */, {"洗发动机", "洗發動機", -1 } /* 洗发动机 => 洗發動機 */, {"洗手不干", "洗手不幹", -1 } /* 洗手不干 => 洗手不幹 */, {"洛南", "雒南", -1 } /* 洛南 => 雒南 */, {"洞山良价", "洞山良价", -1 } /* 洞山良价 => 洞山良价 */, {"洩欲", "洩慾", -1 } /* 洩欲 => 洩慾 */, {"洩殖", "泄殖", -1 } /* 洩殖 => 泄殖 */, {"洩沓", "泄沓", -1 } /* 洩沓 => 泄沓 */, {"洩洩", "泄泄", -1 } /* 洩洩 => 泄泄 */, {"洪范", "洪範", -1 } /* 洪范 => 洪範 */, {"洪适", "洪适", -1 } /* 洪适 => 洪适 */, {"洲杯", "洲盃", -1 } /* 洲杯 => 洲盃 */, {"洲游", "洲遊", -1 } /* 洲游 => 洲遊 */, {"活干", "活幹", -1 } /* 活干 => 活幹 */, {"洼", "窪", -1 } /* 洼 => 窪 */, {"洼淀", "窪淀", -1 } /* 洼淀 => 窪淀 */, {"派团参加", "派團參加", -1 } /* 派团参加 => 派團參加 */, {"流卷", "流捲", -1 } /* 流卷 => 流捲 */, {"流干", "流乾", -1 } /* 流干 => 流乾 */, {"流荡", "流蕩", -1 } /* 流荡 => 流蕩 */, {"流风余", "流風餘", -1 } /* 流风余 => 流風餘 */, {"流风余俗", "流風餘俗", -1 } /* 流风余俗 => 流風餘俗 */, {"浃", "浹", -1 } /* 浃 => 浹 */, {"浅", "淺", -1 } /* 浅 => 淺 */, {"浆", "漿", -1 } /* 浆 => 漿 */, {"浆划", "槳劃", -1 } /* 浆划 => 槳劃 */, {"浇", "澆", -1 } /* 浇 => 澆 */, {"浇制", "澆製", -1 } /* 浇制 => 澆製 */, {"浈", "湞", -1 } /* 浈 => 湞 */, {"浉", "溮", -1 } /* 浉 => 溮 */, {"浊", "濁", -1 } /* 浊 => 濁 */, {"测", "測", -1 } /* 测 => 測 */, {"测不准", "測不準", -1 } /* 测不准 => 測不準 */, {"浍", "澮", -1 } /* 浍 => 澮 */, {"济", "濟", -1 } /* 济 => 濟 */, {"浏", "瀏", -1 } /* 浏 => 瀏 */, {"浐", "滻", -1 } /* 浐 => 滻 */, {"浑", "渾", -1 } /* 浑 => 渾 */, {"浑函", "渾涵", -1 } /* 浑函 => 渾涵 */, {"浒", "滸", -1 } /* 浒 => 滸 */, {"浓", "濃", -1 } /* 浓 => 濃 */, {"浓发", "濃髮", -1 } /* 浓发 => 濃髮 */, {"浓纤", "穠纖", -1 } /* 浓纤 => 穠纖 */, {"浓郁", "濃郁", -1 } /* 浓郁 => 濃郁 */, {"浔", "潯", -1 } /* 浔 => 潯 */, {"浕", "濜", -1 } /* 浕 => 濜 */, {"浚深", "濬深", -1 } /* 浚深 => 濬深 */, {"浩荡", "浩蕩", -1 } /* 浩荡 => 浩蕩 */, {"浪冲", "浪衝", -1 } /* 浪冲 => 浪衝 */, {"浪卷", "浪捲", -1 } /* 浪卷 => 浪捲 */, {"浪又冲", "浪又衝", -1 } /* 浪又冲 => 浪又衝 */, {"浪琴表", "浪琴錶", -1 } /* 浪琴表 => 浪琴錶 */, {"浪荡", "浪蕩", -1 } /* 浪荡 => 浪蕩 */, {"浮松", "浮鬆", -1 } /* 浮松 => 浮鬆 */, {"浮簽", "浮籤", -1 } /* 浮簽 => 浮籤 */, {"浮荡", "浮蕩", -1 } /* 浮荡 => 浮蕩 */, {"海函", "海涵", -1 } /* 海函 => 海涵 */, {"海干", "海乾", -1 } /* 海干 => 海乾 */, {"海淀", "海淀", -1 } /* 海淀 => 海淀 */, {"海线", "海線", -1 } /* 海线 => 海線 */, {"海里", "海里", 52 } /* 海里 => 海里 */, {"浸制", "浸製", -1 } /* 浸制 => 浸製 */, {"涂上", "塗上", -1 } /* 涂上 => 塗上 */, {"涂了", "塗了", -1 } /* 涂了 => 塗了 */, {"涂写", "塗寫", -1 } /* 涂写 => 塗寫 */, {"涂到", "塗到", -1 } /* 涂到 => 塗到 */, {"涂制", "塗製", -1 } /* 涂制 => 塗製 */, {"涂去", "塗去", -1 } /* 涂去 => 塗去 */, {"涂在", "塗在", -1 } /* 涂在 => 塗在 */, {"涂地", "塗地", -1 } /* 涂地 => 塗地 */, {"涂好", "塗好", -1 } /* 涂好 => 塗好 */, {"涂层", "塗層", -1 } /* 涂层 => 塗層 */, {"涂布", "塗布", -1 } /* 涂布 => 塗布 */, {"涂得", "塗得", -1 } /* 涂得 => 塗得 */, {"涂成", "塗成", -1 } /* 涂成 => 塗成 */, {"涂抹", "塗抹", -1 } /* 涂抹 => 塗抹 */, {"涂掉", "塗掉", -1 } /* 涂掉 => 塗掉 */, {"涂改", "塗改", -1 } /* 涂改 => 塗改 */, {"涂料", "塗料", -1 } /* 涂料 => 塗料 */, {"涂有", "塗有", -1 } /* 涂有 => 塗有 */, {"涂来涂去", "塗來塗去", -1 } /* 涂来涂去 => 塗來塗去 */, {"涂油", "塗油", -1 } /* 涂油 => 塗油 */, {"涂涂", "塗塗", -1 } /* 涂涂 => 塗塗 */, {"涂消", "塗消", -1 } /* 涂消 => 塗消 */, {"涂满", "塗滿", -1 } /* 涂满 => 塗滿 */, {"涂漆", "塗漆", -1 } /* 涂漆 => 塗漆 */, {"涂潭", "塗潭", -1 } /* 涂潭 => 塗潭 */, {"涂炭", "塗炭", -1 } /* 涂炭 => 塗炭 */, {"涂着", "涂著", -1 } /* 涂着 => 涂著 */, {"涂着", "塗著", -1 } /* 涂着 => 塗著 */, {"涂窜", "塗竄", -1 } /* 涂窜 => 塗竄 */, {"涂粉", "塗粉", -1 } /* 涂粉 => 塗粉 */, {"涂胶", "塗膠", -1 } /* 涂胶 => 塗膠 */, {"涂脂", "塗脂", -1 } /* 涂脂 => 塗脂 */, {"涂色", "塗色", -1 } /* 涂色 => 塗色 */, {"涂药", "塗藥", -1 } /* 涂药 => 塗藥 */, {"涂蜡", "塗蠟", -1 } /* 涂蜡 => 塗蠟 */, {"涂装", "塗裝", -1 } /* 涂装 => 塗裝 */, {"涂覆", "塗覆", -1 } /* 涂覆 => 塗覆 */, {"涂說", "塗說", -1 } /* 涂說 => 塗說 */, {"涂谨申", "涂謹申", -1 } /* 涂谨申 => 涂謹申 */, {"涂过", "塗過", -1 } /* 涂过 => 塗過 */, {"涂销", "塗銷", -1 } /* 涂销 => 塗銷 */, {"涂饰", "塗飾", -1 } /* 涂饰 => 塗飾 */, {"涂鸦", "塗鴉", -1 } /* 涂鸦 => 塗鴉 */, {"涂鸭", "塗鴨", -1 } /* 涂鸭 => 塗鴨 */, {"涂黑", "塗黑", -1 } /* 涂黑 => 塗黑 */, {"涅盘", "涅槃", -1 } /* 涅盘 => 涅槃 */, {"消费欲", "消費慾", -1 } /* 消费欲 => 消費慾 */, {"涌", "湧", -1 } /* 涌 => 湧 */, {"涌现", "湧現", -1 } /* 涌现 => 湧現 */, {"涛", "濤", -1 } /* 涛 => 濤 */, {"涝", "澇", -1 } /* 涝 => 澇 */, {"涞", "淶", -1 } /* 涞 => 淶 */, {"涟", "漣", -1 } /* 涟 => 漣 */, {"涠", "潿", -1 } /* 涠 => 潿 */, {"涡", "渦", -1 } /* 涡 => 渦 */, {"涢", "溳", -1 } /* 涢 => 溳 */, {"涣", "渙", -1 } /* 涣 => 渙 */, {"涤", "滌", -1 } /* 涤 => 滌 */, {"润", "潤", -1 } /* 润 => 潤 */, {"润发", "潤髮", -1 } /* 润发 => 潤髮 */, {"涧", "澗", -1 } /* 涧 => 澗 */, {"涨", "漲", -1 } /* 涨 => 漲 */, {"涩", "澀", -1 } /* 涩 => 澀 */, {"液晶表", "液晶錶", -1 } /* 液晶表 => 液晶錶 */, {"涵蕴", "涵蘊", -1 } /* 涵蕴 => 涵蘊 */, {"涸干", "涸乾", -1 } /* 涸干 => 涸乾 */, {"淀", "澱", -1 } /* 淀 => 澱 */, {"淀殿", "淀殿", -1 } /* 淀殿 => 淀殿 */, {"淋余土", "淋餘土", -1 } /* 淋余土 => 淋餘土 */, {"淑范", "淑範", -1 } /* 淑范 => 淑範 */, {"淒息", "棲息", -1 } /* 淒息 => 棲息 */, {"淒戚", "悽慼", -1 } /* 淒戚 => 悽慼 */, {"淡朱", "淡硃", -1 } /* 淡朱 => 淡硃 */, {"淨余", "淨餘", -1 } /* 淨余 => 淨餘 */, {"淨几", "淨几", -1 } /* 淨几 => 淨几 */, {"淫欲", "淫慾", -1 } /* 淫欲 => 淫慾 */, {"淫荡", "淫蕩", -1 } /* 淫荡 => 淫蕩 */, {"淬厉", "淬礪", -1 } /* 淬厉 => 淬礪 */, {"淳於", "淳于", -1 } /* 淳於 => 淳于 */, {"混肴", "混淆", -1 } /* 混肴 => 混淆 */, {"清扫夫", "清掃伕", -1 } /* 清扫夫 => 清掃伕 */, {"清淅", "清晰", -1 } /* 清淅 => 清晰 */, {"清道夫", "清道伕", -1 } /* 清道夫 => 清道伕 */, {"渊", "淵", -1 } /* 渊 => 淵 */, {"渌", "淥", -1 } /* 渌 => 淥 */, {"渍", "漬", -1 } /* 渍 => 漬 */, {"渍已干", "漬已乾", -1 } /* 渍已干 => 漬已乾 */, {"渎", "瀆", -1 } /* 渎 => 瀆 */, {"渐", "漸", -1 } /* 渐 => 漸 */, {"渐愈", "漸癒", -1 } /* 渐愈 => 漸癒 */, {"渐松", "漸鬆", -1 } /* 渐松 => 漸鬆 */, {"渑", "澠", -1 } /* 渑 => 澠 */, {"渔", "漁", -1 } /* 渔 => 漁 */, {"渖", "瀋", -1 } /* 渖 => 瀋 */, {"渗", "滲", -1 } /* 渗 => 滲 */, {"渠冲", "渠衝", -1 } /* 渠冲 => 渠衝 */, {"温", "溫", -1 } /* 温 => 溫 */, {"港制", "港製", -1 } /* 港制 => 港製 */, {"游中国", "遊中國", -1 } /* 游中国 => 遊中國 */, {"游乐", "遊樂", -1 } /* 游乐 => 遊樂 */, {"游亚洲", "遊亞洲", -1 } /* 游亚洲 => 遊亞洲 */, {"游人", "遊人", -1 } /* 游人 => 遊人 */, {"游仙", "遊仙", -1 } /* 游仙 => 遊仙 */, {"游伴", "遊伴", -1 } /* 游伴 => 遊伴 */, {"游侠", "遊俠", -1 } /* 游侠 => 遊俠 */, {"游兴", "遊興", -1 } /* 游兴 => 遊興 */, {"游兵", "遊兵", -1 } /* 游兵 => 遊兵 */, {"游军", "遊軍", -1 } /* 游军 => 遊軍 */, {"游冶", "遊冶", -1 } /* 游冶 => 遊冶 */, {"游击", "游擊", -1 } /* 游击 => 游擊 */, {"游刃", "遊刃", -1 } /* 游刃 => 遊刃 */, {"游北美", "遊北美", -1 } /* 游北美 => 遊北美 */, {"游历", "遊歷", -1 } /* 游历 => 遊歷 */, {"游台湾", "遊台灣", -1 } /* 游台湾 => 遊台灣 */, {"游唱", "遊唱", -1 } /* 游唱 => 遊唱 */, {"游园", "遊園", -1 } /* 游园 => 遊園 */, {"游子", "遊子", -1 } /* 游子 => 遊子 */, {"游学", "遊學", -1 } /* 游学 => 遊學 */, {"游客", "遊客", -1 } /* 游客 => 遊客 */, {"游宦", "遊宦", -1 } /* 游宦 => 遊宦 */, {"游山", "遊山", -1 } /* 游山 => 遊山 */, {"游巡", "遊巡", -1 } /* 游巡 => 遊巡 */, {"游廊", "遊廊", -1 } /* 游廊 => 遊廊 */, {"游必有方", "遊必有方", -1 } /* 游必有方 => 遊必有方 */, {"游惰", "遊惰", -1 } /* 游惰 => 遊惰 */, {"游憩", "遊憩", -1 } /* 游憩 => 遊憩 */, {"游戏", "遊戲", -1 } /* 游戏 => 遊戲 */, {"游方", "遊方", -1 } /* 游方 => 遊方 */, {"游星", "遊星", -1 } /* 游星 => 遊星 */, {"游欧洲", "遊歐洲", -1 } /* 游欧洲 => 遊歐洲 */, {"游湖", "遊湖", -1 } /* 游湖 => 遊湖 */, {"游澳洲", "遊澳洲", -1 } /* 游澳洲 => 遊澳洲 */, {"游牧", "遊牧", -1 } /* 游牧 => 遊牧 */, {"游狎", "遊狎", -1 } /* 游狎 => 遊狎 */, {"游猎", "遊獵", -1 } /* 游猎 => 遊獵 */, {"游玩", "遊玩", -1 } /* 游玩 => 遊玩 */, {"游目", "遊目", -1 } /* 游目 => 遊目 */, {"游美洲", "遊美洲", -1 } /* 游美洲 => 遊美洲 */, {"游船", "遊船", -1 } /* 游船 => 遊船 */, {"游艇", "遊艇", -1 } /* 游艇 => 遊艇 */, {"游艺", "遊藝", -1 } /* 游艺 => 遊藝 */, {"游荡", "遊蕩", -1 } /* 游荡 => 遊蕩 */, {"游蜂", "遊蜂", -1 } /* 游蜂 => 遊蜂 */, {"游行", "遊行", -1 } /* 游行 => 遊行 */, {"游街", "遊街", -1 } /* 游街 => 遊街 */, {"游观", "遊觀", -1 } /* 游观 => 遊觀 */, {"游览", "遊覽", -1 } /* 游览 => 遊覽 */, {"游說", "遊說", -1 } /* 游說 => 遊說 */, {"游记", "遊記", -1 } /* 游记 => 遊記 */, {"游说", "遊說", -1 } /* 游说 => 遊說 */, {"游豫", "遊豫", -1 } /* 游豫 => 遊豫 */, {"游走", "遊走", -1 } /* 游走 => 遊走 */, {"游踪", "遊蹤", -1 } /* 游踪 => 遊蹤 */, {"游逛", "遊逛", -1 } /* 游逛 => 遊逛 */, {"游遍", "遊遍", -1 } /* 游遍 => 遊遍 */, {"游错", "遊錯", -1 } /* 游错 => 遊錯 */, {"游非洲", "遊非洲", -1 } /* 游非洲 => 遊非洲 */, {"游香港", "遊香港", -1 } /* 游香港 => 遊香港 */, {"游骑", "遊騎", -1 } /* 游骑 => 遊騎 */, {"游魂", "遊魂", -1 } /* 游魂 => 遊魂 */, {"湧卷", "湧捲", -1 } /* 湧卷 => 湧捲 */, {"湾", "灣", -1 } /* 湾 => 灣 */, {"湿", "濕", -1 } /* 湿 => 濕 */, {"湿发", "濕髮", -1 } /* 湿发 => 濕髮 */, {"溃", "潰", -1 } /* 溃 => 潰 */, {"溅", "濺", -1 } /* 溅 => 濺 */, {"溆", "漵", -1 } /* 溆 => 漵 */, {"溇", "漊", -1 } /* 溇 => 漊 */, {"源于", "源於", -1 } /* 源于 => 源於 */, {"源代码", "原始碼", -1 } /* 源代码 => 原始碼 */, {"溜达", "溜躂", -1 } /* 溜达 => 溜躂 */, {"溜须拍马", "溜鬚拍馬", -1 } /* 溜须拍马 => 溜鬚拍馬 */, {"溪壑", "谿壑", -1 } /* 溪壑 => 谿壑 */, {"溶岩", "熔岩", -1 } /* 溶岩 => 熔岩 */, {"溶接", "熔接", -1 } /* 溶接 => 熔接 */, {"溶炉", "熔爐", -1 } /* 溶炉 => 熔爐 */, {"溶铸", "熔鑄", -1 } /* 溶铸 => 熔鑄 */, {"溶销", "熔銷", -1 } /* 溶销 => 熔銷 */, {"滗", "潷", -1 } /* 滗 => 潷 */, {"滚", "滾", -1 } /* 滚 => 滾 */, {"滚动条", "捲動條", -1 } /* 滚动条 => 捲動條 */, {"滚卷", "滾捲", -1 } /* 滚卷 => 滾捲 */, {"滞", "滯", -1 } /* 滞 => 滯 */, {"滟", "灧", -1 } /* 滟 => 灧 */, {"滠", "灄", -1 } /* 滠 => 灄 */, {"满", "滿", -1 } /* 满 => 滿 */, {"满布", "滿佈", -1 } /* 满布 => 滿佈 */, {"满洲里", "滿洲里", -1 } /* 满洲里 => 滿洲里 */, {"滢", "瀅", -1 } /* 滢 => 瀅 */, {"滤", "濾", -1 } /* 滤 => 濾 */, {"滥", "濫", -1 } /* 滥 => 濫 */, {"滥征", "濫徵", -1 } /* 滥征 => 濫徵 */, {"滦", "灤", -1 } /* 滦 => 灤 */, {"滨", "濱", -1 } /* 滨 => 濱 */, {"滩", "灘", -1 } /* 滩 => 灘 */, {"滩涂", "灘塗", -1 } /* 滩涂 => 灘塗 */, {"滪", "澦", -1 } /* 滪 => 澦 */, {"滴干", "滴乾", -1 } /* 滴干 => 滴乾 */, {"漂荡", "漂蕩", -1 } /* 漂荡 => 漂蕩 */, {"漏斗", "漏斗", -1 } /* 漏斗 => 漏斗 */, {"漓水", "灕水", -1 } /* 漓水 => 灕水 */, {"漓江", "灕江", -1 } /* 漓江 => 灕江 */, {"漓湘", "灕湘", -1 } /* 漓湘 => 灕湘 */, {"漤", "灠", -1 } /* 漤 => 灠 */, {"漫游", "漫遊", -1 } /* 漫游 => 漫遊 */, {"潆", "瀠", -1 } /* 潆 => 瀠 */, {"潇", "瀟", -1 } /* 潇 => 瀟 */, {"潋", "瀲", -1 } /* 潋 => 瀲 */, {"潍", "濰", -1 } /* 潍 => 濰 */, {"潜", "潛", -1 } /* 潜 => 潛 */, {"潦阔", "遼闊", -1 } /* 潦阔 => 遼闊 */, {"潮卷", "潮捲", -1 } /* 潮卷 => 潮捲 */, {"潴", "瀦", -1 } /* 潴 => 瀦 */, {"澜", "瀾", -1 } /* 澜 => 瀾 */, {"激干", "激幹", -1 } /* 激干 => 激幹 */, {"激荡", "激蕩", -1 } /* 激荡 => 激蕩 */, {"激荡", "激盪", -1 } /* 激荡 => 激盪 */, {"濑", "瀨", -1 } /* 濑 => 瀨 */, {"濒", "瀕", -1 } /* 濒 => 瀕 */, {"濛松", "濛鬆", -1 } /* 濛松 => 濛鬆 */, {"灌制", "灌製", -1 } /* 灌制 => 灌製 */, {"灏", "灝", -1 } /* 灏 => 灝 */, {"火于", "火於", -1 } /* 火于 => 火於 */, {"火并", "火併", -1 } /* 火并 => 火併 */, {"火折", "火摺", -1 } /* 火折 => 火摺 */, {"火拼", "火拚", -1 } /* 火拼 => 火拚 */, {"火签", "火籤", -1 } /* 火签 => 火籤 */, {"火簽", "火籤", -1 } /* 火簽 => 火籤 */, {"火线", "火線", -1 } /* 火线 => 火線 */, {"火药", "火藥", -1 } /* 火药 => 火藥 */, {"灭", "滅", -1 } /* 灭 => 滅 */, {"灯", "燈", -1 } /* 灯 => 燈 */, {"灯壳", "燈殼", -1 } /* 灯壳 => 燈殼 */, {"灯彩", "燈綵", -1 } /* 灯彩 => 燈綵 */, {"灰于", "灰於", -1 } /* 灰于 => 灰於 */, {"灰发", "灰髮", -1 } /* 灰发 => 灰髮 */, {"灰尽", "灰燼", -1 } /* 灰尽 => 灰燼 */, {"灰胡", "灰鬍", -1 } /* 灰胡 => 灰鬍 */, {"灰蒙", "灰濛", -1 } /* 灰蒙 => 灰濛 */, {"灵", "靈", -1 } /* 灵 => 靈 */, {"灵俐", "伶俐", -1 } /* 灵俐 => 伶俐 */, {"灵幡", "靈旛", -1 } /* 灵幡 => 靈旛 */, {"灵欲", "靈慾", -1 } /* 灵欲 => 靈慾 */, {"灵药", "靈藥", -1 } /* 灵药 => 靈藥 */, {"灸热", "炙熱", -1 } /* 灸热 => 炙熱 */, {"灾", "災", -1 } /* 灾 => 災 */, {"灿", "燦", -1 } /* 灿 => 燦 */, {"炀", "煬", -1 } /* 炀 => 煬 */, {"炉", "爐", -1 } /* 炉 => 爐 */, {"炒干", "炒乾", -1 } /* 炒干 => 炒乾 */, {"炒面", "炒麵", -1 } /* 炒面 => 炒麵 */, {"炖", "燉", -1 } /* 炖 => 燉 */, {"炜", "煒", -1 } /* 炜 => 煒 */, {"炝", "熗", -1 } /* 炝 => 熗 */, {"炮制", "炮製", -1 } /* 炮制 => 炮製 */, {"炸毁", "炸燬", -1 } /* 炸毁 => 炸燬 */, {"炸药", "炸葯", -1 } /* 炸药 => 炸葯 */, {"炸酱面", "炸醬麵", -1 } /* 炸酱面 => 炸醬麵 */, {"点", "點", -1 } /* 点 => 點 */, {"点干", "點幹", -1 } /* 点干 => 點幹 */, {"点松", "點鬆", -1 } /* 点松 => 點鬆 */, {"点球", "十二碼", -1 } /* 点球 => 十二碼 */, {"点线", "點線", -1 } /* 点线 => 點線 */, {"炼", "煉", -1 } /* 炼 => 煉 */, {"炼制", "煉製", -1 } /* 炼制 => 煉製 */, {"炼子", "鍊子", -1 } /* 炼子 => 鍊子 */, {"炼锁", "鍊鎖", -1 } /* 炼锁 => 鍊鎖 */, {"炽", "熾", -1 } /* 炽 => 熾 */, {"烁", "爍", -1 } /* 烁 => 爍 */, {"烂", "爛", -1 } /* 烂 => 爛 */, {"烃", "烴", -1 } /* 烃 => 烴 */, {"烘制", "烘製", -1 } /* 烘制 => 烘製 */, {"烘干", "烘乾", -1 } /* 烘干 => 烘乾 */, {"烘熏", "烘燻", -1 } /* 烘熏 => 烘燻 */, {"烛", "燭", -1 } /* 烛 => 燭 */, {"烟", "煙", -1 } /* 烟 => 煙 */, {"烟卷", "煙捲", -1 } /* 烟卷 => 煙捲 */, {"烟斗", "煙斗", -1 } /* 烟斗 => 煙斗 */, {"烤干", "烤乾", -1 } /* 烤干 => 烤乾 */, {"烦", "煩", -1 } /* 烦 => 煩 */, {"烧", "燒", -1 } /* 烧 => 燒 */, {"烧制", "燒製", -1 } /* 烧制 => 燒製 */, {"烧干", "燒乾", -1 } /* 烧干 => 燒乾 */, {"烧毁", "燒燬", -1 } /* 烧毁 => 燒燬 */, {"烨", "燁", -1 } /* 烨 => 燁 */, {"烩", "燴", -1 } /* 烩 => 燴 */, {"烩制", "燴製", -1 } /* 烩制 => 燴製 */, {"烩干", "燴乾", -1 } /* 烩干 => 燴乾 */, {"烫", "燙", -1 } /* 烫 => 燙 */, {"烫发", "燙髮", -1 } /* 烫发 => 燙髮 */, {"烫面", "燙麵", -1 } /* 烫面 => 燙麵 */, {"烬", "燼", -1 } /* 烬 => 燼 */, {"烬余", "燼餘", -1 } /* 烬余 => 燼餘 */, {"热", "熱", -1 } /* 热 => 熱 */, {"热线", "熱線", -1 } /* 热线 => 熱線 */, {"烹制", "烹製", -1 } /* 烹制 => 烹製 */, {"焊接", "銲接", -1 } /* 焊接 => 銲接 */, {"焕", "煥", -1 } /* 焕 => 煥 */, {"焖", "燜", -1 } /* 焖 => 燜 */, {"焘", "燾", -1 } /* 焘 => 燾 */, {"焙干", "焙乾", -1 } /* 焙干 => 焙乾 */, {"焚毁", "焚燬", -1 } /* 焚毁 => 焚燬 */, {"焦干", "焦乾", -1 } /* 焦干 => 焦乾 */, {"然斗", "然斗", -1 } /* 然斗 => 然斗 */, {"煎制", "煎製", -1 } /* 煎制 => 煎製 */, {"煎药", "煎藥", -1 } /* 煎药 => 煎藥 */, {"照入签", "照入籤", -1 } /* 照入签 => 照入籤 */, {"照准", "照准", -1 } /* 照准 => 照准 */, {"照准", "照準", -1 } /* 照准 => 照準 */, {"照干", "照幹", -1 } /* 照干 => 照幹 */, {"煨干", "煨乾", -1 } /* 煨干 => 煨乾 */, {"煮面", "煮麵", -1 } /* 煮面 => 煮麵 */, {"煴", "熅", -1 } /* 煴 => 熅 */, {"熏", "熏", -1 } /* 熏 => 熏 */, {"熏制", "燻製", -1 } /* 熏制 => 燻製 */, {"熏烟", "燻煙", -1 } /* 熏烟 => 燻煙 */, {"熏热", "燻熱", -1 } /* 熏热 => 燻熱 */, {"熏煮", "燻煮", -1 } /* 熏煮 => 燻煮 */, {"熏熏", "燻燻", -1 } /* 熏熏 => 燻燻 */, {"熏熟", "燻熟", -1 } /* 熏熟 => 燻熟 */, {"熏猪", "燻豬", -1 } /* 熏猪 => 燻豬 */, {"熏肉", "燻肉", -1 } /* 熏肉 => 燻肉 */, {"熏蒸", "燻蒸", -1 } /* 熏蒸 => 燻蒸 */, {"熏鸭", "燻鴨", -1 } /* 熏鸭 => 燻鴨 */, {"熏鹅", "燻鵝", -1 } /* 熏鹅 => 燻鵝 */, {"熏黑", "燻黑", -1 } /* 熏黑 => 燻黑 */, {"熔毁", "熔燬", -1 } /* 熔毁 => 熔燬 */, {"熟于", "熟於", -1 } /* 熟于 => 熟於 */, {"熨干", "熨乾", -1 } /* 熨干 => 熨乾 */, {"熨斗", "熨斗", -1 } /* 熨斗 => 熨斗 */, {"熬制", "熬製", -1 } /* 熬制 => 熬製 */, {"燎发", "燎髮", -1 } /* 燎发 => 燎髮 */, {"燕游", "燕遊", -1 } /* 燕游 => 燕遊 */, {"爬墙", "爬牆", -1 } /* 爬墙 => 爬牆 */, {"爱", "愛", -1 } /* 爱 => 愛 */, {"爱欲", "愛慾", -1 } /* 爱欲 => 愛慾 */, {"爱辉", "瑗琿", -1 } /* 爱辉 => 瑗琿 */, {"父系", "父系", -1 } /* 父系 => 父系 */, {"爷", "爺", -1 } /* 爷 => 爺 */, {"爽荡", "爽蕩", -1 } /* 爽荡 => 爽蕩 */, {"片姜", "片薑", -1 } /* 片姜 => 片薑 */, {"片纸只字", "片紙隻字", -1 } /* 片纸只字 => 片紙隻字 */, {"片言只语", "片言隻語", -1 } /* 片言只语 => 片言隻語 */, {"牍", "牘", -1 } /* 牍 => 牘 */, {"牙签", "牙籤", -1 } /* 牙签 => 牙籤 */, {"牙签万轴", "牙籤萬軸", -1 } /* 牙签万轴 => 牙籤萬軸 */, {"牙签玉轴", "牙籤玉軸", -1 } /* 牙签玉轴 => 牙籤玉軸 */, {"牙签锦轴", "牙籤錦軸", -1 } /* 牙签锦轴 => 牙籤錦軸 */, {"牙簽", "牙籤", -1 } /* 牙簽 => 牙籤 */, {"牛只", "牛隻", -1 } /* 牛只 => 牛隻 */, {"牛斗", "牛斗", -1 } /* 牛斗 => 牛斗 */, {"牛柳面", "牛柳麵", -1 } /* 牛柳面 => 牛柳麵 */, {"牛肉面", "牛肉麵", -1 } /* 牛肉面 => 牛肉麵 */, {"牦", "氂", -1 } /* 牦 => 氂 */, {"物志", "物誌", -1 } /* 物志 => 物誌 */, {"物欲", "物慾", -1 } /* 物欲 => 物慾 */, {"牲干下", "牲幹下", -1 } /* 牲干下 => 牲幹下 */, {"牵", "牽", -1 } /* 牵 => 牽 */, {"牵一发", "牽一髮", -1 } /* 牵一发 => 牽一髮 */, {"牵头", "牽頭", -1 } /* 牵头 => 牽頭 */, {"牵系", "牽繫", -1 } /* 牵系 => 牽繫 */, {"牵线", "牽線", -1 } /* 牵线 => 牽線 */, {"特准", "特准", -1 } /* 特准 => 特准 */, {"特制", "特製", -1 } /* 特制 => 特製 */, {"特古西加尔巴", "德古斯加巴", -1 } /* 特古西加尔巴 => 德古斯加巴 */, {"特征", "特徵", -1 } /* 特征 => 特徵 */, {"特里尔", "特里爾", -1 } /* 特里尔 => 特里爾 */, {"牺", "犧", -1 } /* 牺 => 犧 */, {"犁牛", "犛牛", -1 } /* 犁牛 => 犛牛 */, {"犊", "犢", -1 } /* 犊 => 犢 */, {"犬只", "犬隻", -1 } /* 犬只 => 犬隻 */, {"状", "狀", -1 } /* 状 => 狀 */, {"犷", "獷", -1 } /* 犷 => 獷 */, {"犸", "獁", -1 } /* 犸 => 獁 */, {"犹", "猶", -1 } /* 犹 => 猶 */, {"犹太历", "猶太曆", -1 } /* 犹太历 => 猶太曆 */, {"狂冲", "狂衝", -1 } /* 狂冲 => 狂衝 */, {"狂卷", "狂捲", -1 } /* 狂卷 => 狂捲 */, {"狂征", "狂徵", -1 } /* 狂征 => 狂徵 */, {"狂赞", "狂讚", -1 } /* 狂赞 => 狂讚 */, {"狈", "狽", -1 } /* 狈 => 狽 */, {"狝", "獮", -1 } /* 狝 => 獮 */, {"狞", "獰", -1 } /* 狞 => 獰 */, {"狠干", "狠幹", -1 } /* 狠干 => 狠幹 */, {"独", "獨", -1 } /* 独 => 獨 */, {"独占鳌头", "獨佔鰲頭", -1 } /* 独占鳌头 => 獨佔鰲頭 */, {"独游", "獨遊", -1 } /* 独游 => 獨遊 */, {"独钟", "獨鍾", -1 } /* 独钟 => 獨鍾 */, {"狭", "狹", -1 } /* 狭 => 狹 */, {"狮", "獅", -1 } /* 狮 => 獅 */, {"狯", "獪", -1 } /* 狯 => 獪 */, {"狰", "猙", -1 } /* 狰 => 猙 */, {"狱", "獄", -1 } /* 狱 => 獄 */, {"狲", "猻", -1 } /* 狲 => 猻 */, {"狼借", "狼藉", -1 } /* 狼借 => 狼藉 */, {"猃", "獫", -1 } /* 猃 => 獫 */, {"猎", "獵", -1 } /* 猎 => 獵 */, {"猕", "獼", -1 } /* 猕 => 獼 */, {"猛于", "猛於", -1 } /* 猛于 => 猛於 */, {"猛冲", "猛衝", -1 } /* 猛冲 => 猛衝 */, {"猛卷", "猛捲", -1 } /* 猛卷 => 猛捲 */, {"猛干", "猛幹", -1 } /* 猛干 => 猛幹 */, {"猡", "玀", -1 } /* 猡 => 玀 */, {"猪", "豬", -1 } /* 猪 => 豬 */, {"猪肝面", "豬肝麵", -1 } /* 猪肝面 => 豬肝麵 */, {"猪脚面", "豬腳麵", -1 } /* 猪脚面 => 豬腳麵 */, {"猪舌面", "豬舌麵", -1 } /* 猪舌面 => 豬舌麵 */, {"猫", "貓", -1 } /* 猫 => 貓 */, {"猬", "蝟", -1 } /* 猬 => 蝟 */, {"献", "獻", -1 } /* 献 => 獻 */, {"献于", "獻於", -1 } /* 献于 => 獻於 */, {"猷豫", "猶豫", -1 } /* 猷豫 => 猶豫 */, {"獭", "獺", -1 } /* 獭 => 獺 */, {"率团参加", "率團參加", -1 } /* 率团参加 => 率團參加 */, {"玉佩", "玉珮", -1 } /* 玉佩 => 玉珮 */, {"玉制", "玉製", -1 } /* 玉制 => 玉製 */, {"玉林", "鬰林", -1 } /* 玉林 => 鬰林 */, {"王侯后", "王侯后", -1 } /* 王侯后 => 王侯后 */, {"王后", "王后", -1 } /* 王后 => 王后 */, {"玑", "璣", -1 } /* 玑 => 璣 */, {"玚", "瑒", -1 } /* 玚 => 瑒 */, {"玛", "瑪", -1 } /* 玛 => 瑪 */, {"玮", "瑋", -1 } /* 玮 => 瑋 */, {"环", "環", -1 } /* 环 => 環 */, {"环佩", "環珮", -1 } /* 环佩 => 環珮 */, {"环游", "環遊", -1 } /* 环游 => 環遊 */, {"现", "現", -1 } /* 现 => 現 */, {"玱", "瑲", -1 } /* 玱 => 瑲 */, {"玲胧", "玲瓏", -1 } /* 玲胧 => 玲瓏 */, {"玺", "璽", -1 } /* 玺 => 璽 */, {"珐", "琺", -1 } /* 珐 => 琺 */, {"珐琅", "琺瑯", -1 } /* 珐琅 => 琺瑯 */, {"珑", "瓏", -1 } /* 珑 => 瓏 */, {"珰", "璫", -1 } /* 珰 => 璫 */, {"珲", "琿", -1 } /* 珲 => 琿 */, {"球台", "球檯", -1 } /* 球台 => 球檯 */, {"球杆", "球杆", -1 } /* 球杆 => 球杆 */, {"球果", "毬果", -1 } /* 球果 => 毬果 */, {"球童", "球僮", -1 } /* 球童 => 球僮 */, {"琅嬛", "瑯嬛", -1 } /* 琅嬛 => 瑯嬛 */, {"琅当", "琅璫", -1 } /* 琅当 => 琅璫 */, {"理发", "理髮", -1 } /* 理发 => 理髮 */, {"琎", "璡", -1 } /* 琎 => 璡 */, {"琏", "璉", -1 } /* 琏 => 璉 */, {"琐", "瑣", -1 } /* 琐 => 瑣 */, {"琢制", "琢製", -1 } /* 琢制 => 琢製 */, {"琳琅", "琳瑯", -1 } /* 琳琅 => 琳瑯 */, {"琼", "瓊", -1 } /* 琼 => 瓊 */, {"瑞哲", "睿哲", -1 } /* 瑞哲 => 睿哲 */, {"瑞智", "睿智", -1 } /* 瑞智 => 睿智 */, {"瑶", "瑤", -1 } /* 瑶 => 瑤 */, {"瑶签", "瑤籤", -1 } /* 瑶签 => 瑤籤 */, {"瑶簽", "瑤籤", -1 } /* 瑶簽 => 瑤籤 */, {"瑷", "璦", -1 } /* 瑷 => 璦 */, {"璀灿", "璀璨", -1 } /* 璀灿 => 璀璨 */, {"璎", "瓔", -1 } /* 璎 => 瓔 */, {"璨烂", "燦爛", -1 } /* 璨烂 => 燦爛 */, {"瓒", "瓚", -1 } /* 瓒 => 瓚 */, {"瓯", "甌", -1 } /* 瓯 => 甌 */, {"瓷制", "瓷製", -1 } /* 瓷制 => 瓷製 */, {"甘洛", "呷洛", -1 } /* 甘洛 => 呷洛 */, {"甘薯", "甘藷", -1 } /* 甘薯 => 甘藷 */, {"甚么", "甚麼", -1 } /* 甚么 => 甚麼 */, {"甚么都干", "甚麼都幹", -1 } /* 甚么都干 => 甚麼都幹 */, {"甚松", "甚鬆", -1 } /* 甚松 => 甚鬆 */, {"甚麼", "甚麼", -1 } /* 甚麼 => 甚麼 */, {"甜面酱", "甜麵醬", -1 } /* 甜面酱 => 甜麵醬 */, {"甜面醬", "甜麵醬", -1 } /* 甜面醬 => 甜麵醬 */, {"生于", "生於", -1 } /* 生于 => 生於 */, {"生克", "生剋", -1 } /* 生克 => 生剋 */, {"生力面", "生力麵", -1 } /* 生力面 => 生力麵 */, {"生发水", "生髮水", -1 } /* 生发水 => 生髮水 */, {"生发药", "生髮藥", -1 } /* 生发药 => 生髮藥 */, {"生姜", "生薑", -1 } /* 生姜 => 生薑 */, {"生锈", "生鏽", -1 } /* 生锈 => 生鏽 */, {"用于", "用於", -1 } /* 用于 => 用於 */, {"甩发", "甩髮", -1 } /* 甩发 => 甩髮 */, {"由于", "由於", -1 } /* 由于 => 由於 */, {"甲丑", "甲丑", -1 } /* 甲丑 => 甲丑 */, {"甲壳", "甲殼", -1 } /* 甲壳 => 甲殼 */, {"甲胄", "甲冑", -1 } /* 甲胄 => 甲冑 */, {"电", "電", -1 } /* 电 => 電 */, {"电冲", "電衝", -1 } /* 电冲 => 電衝 */, {"电子表", "電子錶", -1 } /* 电子表 => 電子錶 */, {"电子表单", "電子表單", -1 } /* 电子表单 => 電子表單 */, {"电子表情", "電子表情", -1 } /* 电子表情 => 電子表情 */, {"电子表格", "電子表格", -1 } /* 电子表格 => 電子表格 */, {"电子表示", "電子表示", -1 } /* 电子表示 => 電子表示 */, {"电影集团", "電影集團", -1 } /* 电影集团 => 電影集團 */, {"电杆", "電杆", -1 } /* 电杆 => 電杆 */, {"电线", "電線", -1 } /* 电线 => 電線 */, {"电线杆", "電線杆", -1 } /* 电线杆 => 電線杆 */, {"电脑软件", "電腦軟體", -1 } /* 电脑软件 => 電腦軟體 */, {"电表", "電錶", -1 } /* 电表 => 電錶 */, {"男厕", "男廁", -1 } /* 男厕 => 男廁 */, {"男用表", "男用錶", -1 } /* 男用表 => 男用錶 */, {"画", "畫", -1 } /* 画 => 畫 */, {"畅", "暢", -1 } /* 畅 => 暢 */, {"畅游", "暢遊", -1 } /* 畅游 => 暢遊 */, {"界线", "界線", -1 } /* 界线 => 界線 */, {"留发", "留髮", -1 } /* 留发 => 留髮 */, {"畛怀", "軫懷", -1 } /* 畛怀 => 軫懷 */, {"略干", "略乾", -1 } /* 略干 => 略乾 */, {"略松", "略鬆", -1 } /* 略松 => 略鬆 */, {"畦径", "畦逕", -1 } /* 畦径 => 畦逕 */, {"畴", "疇", -1 } /* 畴 => 疇 */, {"疏于", "疏於", -1 } /* 疏于 => 疏於 */, {"疏松", "疏鬆", -1 } /* 疏松 => 疏鬆 */, {"疏浚", "疏濬", -1 } /* 疏浚 => 疏濬 */, {"疑凶", "疑兇", -1 } /* 疑凶 => 疑兇 */, {"疑系", "疑係", -1 } /* 疑系 => 疑係 */, {"疔伤", "療傷", -1 } /* 疔伤 => 療傷 */, {"疖", "癤", -1 } /* 疖 => 癤 */, {"疗", "療", -1 } /* 疗 => 療 */, {"疟", "瘧", -1 } /* 疟 => 瘧 */, {"疠", "癘", -1 } /* 疠 => 癘 */, {"疡", "瘍", -1 } /* 疡 => 瘍 */, {"疬", "癧", -1 } /* 疬 => 癧 */, {"疭", "瘲", -1 } /* 疭 => 瘲 */, {"疮", "瘡", -1 } /* 疮 => 瘡 */, {"疯", "瘋", -1 } /* 疯 => 瘋 */, {"疱", "皰", -1 } /* 疱 => 皰 */, {"疲困", "疲睏", -1 } /* 疲困 => 疲睏 */, {"疴", "痾", -1 } /* 疴 => 痾 */, {"疾冲", "疾衝", -1 } /* 疾冲 => 疾衝 */, {"疾卷", "疾捲", -1 } /* 疾卷 => 疾捲 */, {"病征", "病徵", -1 } /* 病征 => 病徵 */, {"病愈", "病癒", -1 } /* 病愈 => 病癒 */, {"病症", "病症", -1 } /* 病症 => 病症 */, {"病难愈", "病難癒", -1 } /* 病难愈 => 病難癒 */, {"症候", "癥候", -1 } /* 症候 => 癥候 */, {"症候群", "症候群", -1 } /* 症候群 => 症候群 */, {"症状", "癥狀", -1 } /* 症状 => 癥狀 */, {"症结", "癥結", -1 } /* 症结 => 癥結 */, {"痈", "癰", -1 } /* 痈 => 癰 */, {"痉", "痙", -1 } /* 痉 => 痙 */, {"痉孪", "痙攣", -1 } /* 痉孪 => 痙攣 */, {"痊愈", "痊癒", -1 } /* 痊愈 => 痊癒 */, {"痒", "癢", -1 } /* 痒 => 癢 */, {"痖", "瘂", -1 } /* 痖 => 瘂 */, {"痨", "癆", -1 } /* 痨 => 癆 */, {"痪", "瘓", -1 } /* 痪 => 瘓 */, {"痫", "癇", -1 } /* 痫 => 癇 */, {"瘅", "癉", -1 } /* 瘅 => 癉 */, {"瘆", "瘮", -1 } /* 瘆 => 瘮 */, {"瘗", "瘞", -1 } /* 瘗 => 瘞 */, {"瘘", "瘻", -1 } /* 瘘 => 瘻 */, {"瘦于", "瘦於", -1 } /* 瘦于 => 瘦於 */, {"瘪", "癟", -1 } /* 瘪 => 癟 */, {"瘫", "癱", -1 } /* 瘫 => 癱 */, {"瘾", "癮", -1 } /* 瘾 => 癮 */, {"瘿", "癭", -1 } /* 瘿 => 癭 */, {"癞", "癩", -1 } /* 癞 => 癩 */, {"癣", "癬", -1 } /* 癣 => 癬 */, {"癫", "癲", -1 } /* 癫 => 癲 */, {"癸丑", "癸丑", -1 } /* 癸丑 => 癸丑 */, {"白于", "白於", -1 } /* 白于 => 白於 */, {"白兔捣药", "白兔擣藥", -1 } /* 白兔捣药 => 白兔擣藥 */, {"白发", "白髮", -1 } /* 白发 => 白髮 */, {"白干", "白幹", 53 } /* 白干 => 白幹 */, {"白术", "白朮", -1 } /* 白术 => 白朮 */, {"白蜡", "白蠟", -1 } /* 白蜡 => 白蠟 */, {"白面", "白麵", -1 } /* 白面 => 白麵 */, {"白面", "白面", -1 } /* 白面 => 白面 */, {"白面僧面猴", "白面僧面猴", -1 } /* 白面僧面猴 => 白面僧面猴 */, {"白面无须", "白面無鬚", -1 } /* 白面无须 => 白面無鬚 */, {"白须", "白鬚", -1 } /* 白须 => 白鬚 */, {"百余", "百餘", -1 } /* 百余 => 百餘 */, {"百余只", "百餘隻", -1 } /* 百余只 => 百餘隻 */, {"百余里", "百餘里", -1 } /* 百余里 => 百餘里 */, {"百叶卷", "百葉捲", -1 } /* 百叶卷 => 百葉捲 */, {"百慕大", "百慕達", -1 } /* 百慕大 => 百慕達 */, {"百药之长", "百藥之長", -1 } /* 百药之长 => 百藥之長 */, {"百里", "百里", -1 } /* 百里 => 百里 */, {"的亮发", "的亮髮", -1 } /* 的亮发 => 的亮髮 */, {"皆云", "皆云", -1 } /* 皆云 => 皆云 */, {"皇历", "皇曆", -1 } /* 皇历 => 皇曆 */, {"皇后", "皇后", -1 } /* 皇后 => 皇后 */, {"皑", "皚", -1 } /* 皑 => 皚 */, {"皓发", "皓髮", -1 } /* 皓发 => 皓髮 */, {"皮制", "皮製", -1 } /* 皮制 => 皮製 */, {"皮松", "皮鬆", -1 } /* 皮松 => 皮鬆 */, {"皮特凯恩", "皮特康島", -1 } /* 皮特凯恩 => 皮特康島 */, {"皱", "皺", -1 } /* 皱 => 皺 */, {"皱别", "皺彆", -1 } /* 皱别 => 皺彆 */, {"皱折", "皺摺", -1 } /* 皱折 => 皺摺 */, {"皲", "皸", -1 } /* 皲 => 皸 */, {"盈余", "盈餘", -1 } /* 盈余 => 盈餘 */, {"益于", "益於", -1 } /* 益于 => 益於 */, {"盍然", "溘然", -1 } /* 盍然 => 溘然 */, {"盍盍", "溘溘", -1 } /* 盍盍 => 溘溘 */, {"盍谢", "溘謝", -1 } /* 盍谢 => 溘謝 */, {"盍逝", "溘逝", -1 } /* 盍逝 => 溘逝 */, {"盏", "盞", -1 } /* 盏 => 盞 */, {"盐", "鹽", -1 } /* 盐 => 鹽 */, {"盐余", "鹽餘", -1 } /* 盐余 => 鹽餘 */, {"盐卤", "鹽滷", -1 } /* 盐卤 => 鹽滷 */, {"监", "監", -1 } /* 监 => 監 */, {"监制", "監製", -1 } /* 监制 => 監製 */, {"盖", "蓋", -1 } /* 盖 => 蓋 */, {"盖于", "蓋於", -1 } /* 盖于 => 蓋於 */, {"盖帽", "蓋火鍋", -1 } /* 盖帽 => 蓋火鍋 */, {"盖茨", "蓋茲", -1 } /* 盖茨 => 蓋茲 */, {"盗", "盜", -1 } /* 盗 => 盜 */, {"盗采", "盜採", -1 } /* 盗采 => 盜採 */, {"盘", "盤", -1 } /* 盘 => 盤 */, {"盘卷", "盤捲", -1 } /* 盘卷 => 盤捲 */, {"盘回", "盤迴", -1 } /* 盘回 => 盤迴 */, {"盘涅", "槃涅", -1 } /* 盘涅 => 槃涅 */, {"盘游", "盤遊", -1 } /* 盘游 => 盤遊 */, {"盛赞", "盛讚", -1 } /* 盛赞 => 盛讚 */, {"目定口呆", "目瞪口呆", -1 } /* 目定口呆 => 目瞪口呆 */, {"目我於思", "目我于思", -1 } /* 目我於思 => 目我于思 */, {"目无余子", "目無餘子", -1 } /* 目无余子 => 目無餘子 */, {"盲冲", "盲衝", -1 } /* 盲冲 => 盲衝 */, {"盲干", "盲幹", -1 } /* 盲干 => 盲幹 */, {"直冲", "直衝", -1 } /* 直冲 => 直衝 */, {"直卷", "直捲", -1 } /* 直卷 => 直捲 */, {"直发", "直髮", -1 } /* 直发 => 直髮 */, {"直发女", "直髮女", -1 } /* 直发女 => 直髮女 */, {"直发毛", "直發毛", -1 } /* 直发毛 => 直發毛 */, {"直干", "直幹", -1 } /* 直干 => 直幹 */, {"直线", "直線", -1 } /* 直线 => 直線 */, {"直钩", "直鉤", -1 } /* 直钩 => 直鉤 */, {"相克", "相剋", -1 } /* 相克 => 相剋 */, {"相冲", "相衝", -1 } /* 相冲 => 相衝 */, {"相奸", "相姦", -1 } /* 相奸 => 相姦 */, {"相并", "相併", -1 } /* 相并 => 相併 */, {"相形见拙", "相形見絀", -1 } /* 相形见拙 => 相形見絀 */, {"相拼", "相拚", -1 } /* 相拼 => 相拚 */, {"眈误", "耽誤", -1 } /* 眈误 => 耽誤 */, {"眉县", "郿縣", -1 } /* 眉县 => 郿縣 */, {"看于", "看於", -1 } /* 看于 => 看於 */, {"看出电影", "看齣電影", -1 } /* 看出电影 => 看齣電影 */, {"看着", "看著", -1 } /* 看着 => 看著 */, {"眍", "瞘", -1 } /* 眍 => 瞘 */, {"真于", "真於", -1 } /* 真于 => 真於 */, {"真凶", "真兇", -1 } /* 真凶 => 真兇 */, {"真知卓见", "真知灼見", -1 } /* 真知卓见 => 真知灼見 */, {"真缔", "真諦", -1 } /* 真缔 => 真諦 */, {"眦", "眥", -1 } /* 眦 => 眥 */, {"眩耀", "炫耀", -1 } /* 眩耀 => 炫耀 */, {"眬", "矓", -1 } /* 眬 => 矓 */, {"眼困", "眼睏", -1 } /* 眼困 => 眼睏 */, {"眼帘", "眼帘", -1 } /* 眼帘 => 眼帘 */, {"眼框", "眼眶", -1 } /* 眼框 => 眼眶 */, {"眼线", "眼線", -1 } /* 眼线 => 眼線 */, {"眼花了乱", "眼花瞭亂", -1 } /* 眼花了乱 => 眼花瞭亂 */, {"眼药", "眼藥", -1 } /* 眼药 => 眼藥 */, {"着书立说", "著書立說", -1 } /* 着书立说 => 著書立說 */, {"着儿", "著兒", -1 } /* 着儿 => 著兒 */, {"着录", "著錄", -1 } /* 着录 => 著錄 */, {"着录规则", "著錄規則", -1 } /* 着录规则 => 著錄規則 */, {"着重指出", "著重指出", -1 } /* 着重指出 => 著重指出 */, {"睁", "睜", -1 } /* 睁 => 睜 */, {"睐", "睞", -1 } /* 睐 => 睞 */, {"睑", "瞼", -1 } /* 睑 => 瞼 */, {"睡眠欲", "睡眠慾", -1 } /* 睡眠欲 => 睡眠慾 */, {"睾", "睪", -1 } /* 睾 => 睪 */, {"瞄不准", "瞄不準", -1 } /* 瞄不准 => 瞄不準 */, {"瞅不准", "瞅不準", -1 } /* 瞅不准 => 瞅不準 */, {"瞆", "瞶", -1 } /* 瞆 => 瞶 */, {"瞌然长逝", "溘然長逝", -1 } /* 瞌然长逝 => 溘然長逝 */, {"瞎冲", "瞎衝", -1 } /* 瞎冲 => 瞎衝 */, {"瞒", "瞞", -1 } /* 瞒 => 瞞 */, {"瞧不准", "瞧不準", -1 } /* 瞧不准 => 瞧不準 */, {"瞧着", "瞧著", -1 } /* 瞧着 => 瞧著 */, {"瞩", "矚", -1 } /* 瞩 => 矚 */, {"瞭望", "瞭望", -1 } /* 瞭望 => 瞭望 */, {"矫", "矯", -1 } /* 矫 => 矯 */, {"短于", "短於", -1 } /* 短于 => 短於 */, {"短发", "短髮", -1 } /* 短发 => 短髮 */, {"短发性", "短發性", -1 } /* 短发性 => 短發性 */, {"短线", "短線", -1 } /* 短线 => 短線 */, {"短须", "短鬚", -1 } /* 短须 => 短鬚 */, {"矮于", "矮於", -1 } /* 矮于 => 矮於 */, {"矮墙", "矮牆", -1 } /* 矮墙 => 矮牆 */, {"石制", "石製", -1 } /* 石制 => 石製 */, {"石墙", "石牆", -1 } /* 石墙 => 石牆 */, {"石柱", "石砫", -1 } /* 石柱 => 石砫 */, {"石梁", "石樑", -1 } /* 石梁 => 石樑 */, {"石英表", "石英錶", -1 } /* 石英表 => 石英錶 */, {"石英钟", "石英鍾", -1 } /* 石英钟 => 石英鍾 */, {"石莼", "石蓴", -1 } /* 石莼 => 石蓴 */, {"石蜡", "石蠟", -1 } /* 石蜡 => 石蠟 */, {"矶", "磯", -1 } /* 矶 => 磯 */, {"矾", "礬", -1 } /* 矾 => 礬 */, {"矿", "礦", -1 } /* 矿 => 礦 */, {"砀", "碭", -1 } /* 砀 => 碭 */, {"码", "碼", -1 } /* 码 => 碼 */, {"砌墙", "砌牆", -1 } /* 砌墙 => 砌牆 */, {"砌并", "砌併", -1 } /* 砌并 => 砌併 */, {"研制", "研製", -1 } /* 研制 => 研製 */, {"砖", "磚", -1 } /* 砖 => 磚 */, {"砖墙", "磚牆", -1 } /* 砖墙 => 磚牆 */, {"砗", "硨", -1 } /* 砗 => 硨 */, {"砚", "硯", -1 } /* 砚 => 硯 */, {"砜", "碸", -1 } /* 砜 => 碸 */, {"砰当", "砰噹", -1 } /* 砰当 => 砰噹 */, {"破坏欲", "破壞慾", -1 } /* 破坏欲 => 破壞慾 */, {"砺", "礪", -1 } /* 砺 => 礪 */, {"砻", "礱", -1 } /* 砻 => 礱 */, {"砾", "礫", -1 } /* 砾 => 礫 */, {"础", "礎", -1 } /* 础 => 礎 */, {"硁", "硜", -1 } /* 硁 => 硜 */, {"硅", "矽", -1 } /* 硅 => 矽 */, {"硅片", "矽片", -1 } /* 硅片 => 矽片 */, {"硕", "碩", -1 } /* 硕 => 碩 */, {"硖", "硤", -1 } /* 硖 => 硤 */, {"硗", "磽", -1 } /* 硗 => 磽 */, {"硙", "磑", -1 } /* 硙 => 磑 */, {"硚", "礄", -1 } /* 硚 => 礄 */, {"硬冲", "硬衝", -1 } /* 硬冲 => 硬衝 */, {"硬发", "硬髮", -1 } /* 硬发 => 硬髮 */, {"硬干", "硬幹", -1 } /* 硬干 => 硬幹 */, {"硬拼", "硬拚", -1 } /* 硬拼 => 硬拚 */, {"硬盘", "硬碟", -1 } /* 硬盘 => 硬碟 */, {"确", "確", -1 } /* 确 => 確 */, {"确系", "確係", -1 } /* 确系 => 確係 */, {"确系著", "確繫著", -1 } /* 确系著 => 確繫著 */, {"硷", "礆", -1 } /* 硷 => 礆 */, {"碍", "礙", -1 } /* 碍 => 礙 */, {"碍于", "礙於", -1 } /* 碍于 => 礙於 */, {"碎发", "碎髮", -1 } /* 碎发 => 碎髮 */, {"碑志", "碑誌", -1 } /* 碑志 => 碑誌 */, {"碗干", "碗乾", -1 } /* 碗干 => 碗乾 */, {"碗白干", "碗白乾", -1 } /* 碗白干 => 碗白乾 */, {"碗面", "碗麵", 54 } /* 碗面 => 碗麵 */, {"碛", "磧", -1 } /* 碛 => 磧 */, {"碜", "磣", -1 } /* 碜 => 磣 */, {"碱", "鹼", -1 } /* 碱 => 鹼 */, {"碱化", "鹼化", -1 } /* 碱化 => 鹼化 */, {"碱度", "鹼度", -1 } /* 碱度 => 鹼度 */, {"碱性", "鹼性", -1 } /* 碱性 => 鹼性 */, {"碱液", "鹼液", -1 } /* 碱液 => 鹼液 */, {"磁制", "磁製", -1 } /* 磁制 => 磁製 */, {"磁盘", "磁碟", -1 } /* 磁盘 => 磁碟 */, {"磁道", "磁軌", -1 } /* 磁道 => 磁軌 */, {"磋跎", "蹉跎", -1 } /* 磋跎 => 蹉跎 */, {"磨制", "磨製", -1 } /* 磨制 => 磨製 */, {"示复", "示覆", -1 } /* 示复 => 示覆 */, {"示范", "示範", -1 } /* 示范 => 示範 */, {"礼", "禮", -1 } /* 礼 => 禮 */, {"礼泉", "醴泉", -1 } /* 礼泉 => 醴泉 */, {"礼赞", "禮讚", -1 } /* 礼赞 => 禮讚 */, {"祃", "禡", -1 } /* 祃 => 禡 */, {"祎", "禕", -1 } /* 祎 => 禕 */, {"神佑", "神祐", -1 } /* 神佑 => 神祐 */, {"神只", "神祇", -1 } /* 神只 => 神祇 */, {"神游", "神遊", -1 } /* 神游 => 神遊 */, {"神祗", "神祇", -1 } /* 神祗 => 神祇 */, {"神经干", "神經幹", -1 } /* 神经干 => 神經幹 */, {"神迹", "神蹟", -1 } /* 神迹 => 神蹟 */, {"神采", "神采", -1 } /* 神采 => 神采 */, {"神雕", "神鵰", -1 } /* 神雕 => 神鵰 */, {"神雕像", "神雕像", -1 } /* 神雕像 => 神雕像 */, {"祢", "禰", -1 } /* 祢 => 禰 */, {"祯", "禎", -1 } /* 祯 => 禎 */, {"祷", "禱", -1 } /* 祷 => 禱 */, {"祸", "禍", -1 } /* 祸 => 禍 */, {"祼线", "祼線", -1 } /* 祼线 => 祼線 */, {"禀", "稟", -1 } /* 禀 => 稟 */, {"禀复", "稟覆", -1 } /* 禀复 => 稟覆 */, {"禁欲", "禁慾", -1 } /* 禁欲 => 禁慾 */, {"禁烟", "禁菸", -1 } /* 禁烟 => 禁菸 */, {"禁若寒蝉", "噤若寒蟬", -1 } /* 禁若寒蝉 => 噤若寒蟬 */, {"禁药", "禁藥", -1 } /* 禁药 => 禁藥 */, {"禄", "祿", -1 } /* 禄 => 祿 */, {"禅", "禪", -1 } /* 禅 => 禪 */, {"离", "離", -1 } /* 离 => 離 */, {"离线", "離線", -1 } /* 离线 => 離線 */, {"秀发", "秀髮", -1 } /* 秀发 => 秀髮 */, {"私欲", "私慾", -1 } /* 私欲 => 私慾 */, {"秃", "禿", -1 } /* 秃 => 禿 */, {"秃发", "禿髮", -1 } /* 秃发 => 禿髮 */, {"秆", "稈", -1 } /* 秆 => 稈 */, {"秋不干", "秋不乾", -1 } /* 秋不干 => 秋不乾 */, {"秋千", "鞦韆", -1 } /* 秋千 => 鞦韆 */, {"秋台", "秋颱", -1 } /* 秋台 => 秋颱 */, {"秋游", "秋遊", -1 } /* 秋游 => 秋遊 */, {"秋裤", "秋褲", -1 } /* 秋裤 => 秋褲 */, {"秋阴入井干", "秋陰入井幹", -1 } /* 秋阴入井干 => 秋陰入井幹 */, {"种", "種", -1 } /* 种 => 種 */, {"种师中", "种師中", -1 } /* 种师中 => 种師中 */, {"种师道", "种師道", -1 } /* 种师道 => 种師道 */, {"种放", "种放", -1 } /* 种放 => 种放 */, {"种谷", "種穀", -1 } /* 种谷 => 種穀 */, {"科科斯群岛", "可可斯群島", -1 } /* 科科斯群岛 => 可可斯群島 */, {"秒表", "秒錶", -1 } /* 秒表 => 秒錶 */, {"秘制", "秘製", -1 } /* 秘制 => 秘製 */, {"租贷", "租賃", -1 } /* 租贷 => 租賃 */, {"秤鎚", "秤錘", -1 } /* 秤鎚 => 秤錘 */, {"积", "積", -1 } /* 积 => 積 */, {"积谷", "積穀", -1 } /* 积谷 => 積穀 */, {"称", "稱", -1 } /* 称 => 稱 */, {"称赞", "稱讚", -1 } /* 称赞 => 稱讚 */, {"秽", "穢", -1 } /* 秽 => 穢 */, {"秾", "穠", -1 } /* 秾 => 穠 */, {"稀松", "稀鬆", -1 } /* 稀松 => 稀鬆 */, {"稀里", "稀里", -1 } /* 稀里 => 稀里 */, {"稆", "穭", -1 } /* 稆 => 穭 */, {"程序代码", "程式碼", -1 } /* 程序代码 => 程式碼 */, {"程序库", "程式庫", -1 } /* 程序库 => 程式庫 */, {"稍干的", "稍乾的", -1 } /* 稍干的 => 稍乾的 */, {"稍有不准", "稍有不準", -1 } /* 稍有不准 => 稍有不準 */, {"稍松", "稍鬆", -1 } /* 稍松 => 稍鬆 */, {"税", "稅", -1 } /* 税 => 稅 */, {"稜线", "稜線", -1 } /* 稜线 => 稜線 */, {"稣", "穌", -1 } /* 稣 => 穌 */, {"稳", "穩", -1 } /* 稳 => 穩 */, {"稳扎", "穩紮", -1 } /* 稳扎 => 穩紮 */, {"稳稳当当", "穩穩當當", -1 } /* 稳稳当当 => 穩穩當當 */, {"稻杆", "稻稈", -1 } /* 稻杆 => 稻稈 */, {"稻谷", "稻穀", -1 } /* 稻谷 => 稻穀 */, {"稽康", "嵇康", -1 } /* 稽康 => 嵇康 */, {"稽征", "稽徵", -1 } /* 稽征 => 稽徵 */, {"穑", "穡", -1 } /* 穑 => 穡 */, {"穷", "窮", -1 } /* 穷 => 窮 */, {"穷于", "窮於", -1 } /* 穷于 => 窮於 */, {"穷发", "窮髮", -1 } /* 穷发 => 窮髮 */, {"穷追不舍", "窮追不捨", -1 } /* 穷追不舍 => 窮追不捨 */, {"空余", "空餘", -1 } /* 空余 => 空餘 */, {"空穴来风", "空穴來風", -1 } /* 空穴来风 => 空穴來風 */, {"空荡", "空蕩", -1 } /* 空荡 => 空蕩 */, {"空蒙", "空濛", -1 } /* 空蒙 => 空濛 */, {"穿墙", "穿牆", -1 } /* 穿墙 => 穿牆 */, {"穿着", "穿著", -1 } /* 穿着 => 穿著 */, {"穿线", "穿線", -1 } /* 穿线 => 穿線 */, {"突尼斯", "突尼斯", -1 } /* 突尼斯 => 突尼斯 */, {"窃", "竊", -1 } /* 窃 => 竊 */, {"窃钩窃国", "竊鉤竊國", -1 } /* 窃钩窃国 => 竊鉤竊國 */, {"窍", "竅", -1 } /* 窍 => 竅 */, {"窎", "窵", -1 } /* 窎 => 窵 */, {"窑", "窯", -1 } /* 窑 => 窯 */, {"窒欲", "窒慾", -1 } /* 窒欲 => 窒慾 */, {"窗台", "窗檯", -1 } /* 窗台 => 窗檯 */, {"窗帘", "窗帘", -1 } /* 窗帘 => 窗帘 */, {"窗明几净", "窗明几淨", -1 } /* 窗明几净 => 窗明几淨 */, {"窜", "竄", -1 } /* 窜 => 竄 */, {"窝", "窩", -1 } /* 窝 => 窩 */, {"窝里窝囊", "窩里窩囊", -1 } /* 窝里窝囊 => 窩里窩囊 */, {"窣悉", "窣窸", -1 } /* 窣悉 => 窣窸 */, {"窥", "窺", -1 } /* 窥 => 窺 */, {"窦", "竇", -1 } /* 窦 => 竇 */, {"窭", "窶", -1 } /* 窭 => 窶 */, {"立于", "立於", -1 } /* 立于 => 立於 */, {"竖", "豎", -1 } /* 竖 => 豎 */, {"竖子", "豎子", -1 } /* 竖子 => 豎子 */, {"竖毛", "豎毛", -1 } /* 竖毛 => 豎毛 */, {"竖琴", "豎琴", -1 } /* 竖琴 => 豎琴 */, {"竖眼", "豎眼", -1 } /* 竖眼 => 豎眼 */, {"竖着", "豎著", -1 } /* 竖着 => 豎著 */, {"竖立", "豎立", -1 } /* 竖立 => 豎立 */, {"竖笛", "豎笛", -1 } /* 竖笛 => 豎笛 */, {"竖起", "豎起", -1 } /* 竖起 => 豎起 */, {"站干岸儿", "站乾岸兒", -1 } /* 站干岸儿 => 站乾岸兒 */, {"竞", "競", -1 } /* 竞 => 競 */, {"童仆", "僮僕", -1 } /* 童仆 => 僮僕 */, {"童婢", "僮婢", -1 } /* 童婢 => 僮婢 */, {"端口", "連接埠", -1 } /* 端口 => 連接埠 */, {"竹制", "竹製", -1 } /* 竹制 => 竹製 */, {"竹席", "竹蓆", -1 } /* 竹席 => 竹蓆 */, {"竹杆", "竹竿", -1 } /* 竹杆 => 竹竿 */, {"竹框", "竹筐", -1 } /* 竹框 => 竹筐 */, {"竹簽", "竹籤", -1 } /* 竹簽 => 竹籤 */, {"竹荀", "竹筍", -1 } /* 竹荀 => 竹筍 */, {"竹藤", "竹籐", -1 } /* 竹藤 => 竹籐 */, {"竽头", "芋頭", -1 } /* 竽头 => 芋頭 */, {"笃", "篤", -1 } /* 笃 => 篤 */, {"笆斗", "笆斗", -1 } /* 笆斗 => 笆斗 */, {"笆蕉", "芭蕉", -1 } /* 笆蕉 => 芭蕉 */, {"笋", "筍", -1 } /* 笋 => 筍 */, {"笋干", "筍乾", -1 } /* 笋干 => 筍乾 */, {"笑容可鞠", "笑容可掬", -1 } /* 笑容可鞠 => 笑容可掬 */, {"笑讷", "笑納", -1 } /* 笑讷 => 笑納 */, {"笑魇", "笑靨", -1 } /* 笑魇 => 笑靨 */, {"笔", "筆", -1 } /* 笔 => 筆 */, {"笔划", "筆劃", -1 } /* 笔划 => 筆劃 */, {"笔卷", "筆捲", -1 } /* 笔卷 => 筆捲 */, {"笔秃墨干", "筆禿墨乾", -1 } /* 笔秃墨干 => 筆禿墨乾 */, {"笔记本电脑", "筆記型電腦", -1 } /* 笔记本电脑 => 筆記型電腦 */, {"笕", "筧", -1 } /* 笕 => 筧 */, {"符录", "符籙", -1 } /* 符录 => 符籙 */, {"笺", "箋", -1 } /* 笺 => 箋 */, {"笼", "籠", -1 } /* 笼 => 籠 */, {"笾", "籩", -1 } /* 笾 => 籩 */, {"等于", "等於", -1 } /* 等于 => 等於 */, {"筋斗", "筋斗", -1 } /* 筋斗 => 筋斗 */, {"筋斗", "觔斗", -1 } /* 筋斗 => 觔斗 */, {"筑", "築", -1 } /* 筑 => 築 */, {"筑前", "筑前", -1 } /* 筑前 => 筑前 */, {"筑北", "筑北", -1 } /* 筑北 => 筑北 */, {"筑墙", "築牆", -1 } /* 筑墙 => 築牆 */, {"筑州", "筑州", -1 } /* 筑州 => 筑州 */, {"筑波", "筑波", -1 } /* 筑波 => 筑波 */, {"筑紫", "筑紫", -1 } /* 筑紫 => 筑紫 */, {"筑肥", "筑肥", -1 } /* 筑肥 => 筑肥 */, {"筑西", "筑西", -1 } /* 筑西 => 筑西 */, {"筑邦", "筑邦", -1 } /* 筑邦 => 筑邦 */, {"筑阳", "筑陽", -1 } /* 筑阳 => 筑陽 */, {"答复", "答覆", -1 } /* 答复 => 答覆 */, {"策勳", "策勛", -1 } /* 策勳 => 策勛 */, {"筚", "篳", -1 } /* 筚 => 篳 */, {"筛", "篩", -1 } /* 筛 => 篩 */, {"筜", "簹", -1 } /* 筜 => 簹 */, {"筝", "箏", -1 } /* 筝 => 箏 */, {"筵几", "筵几", -1 } /* 筵几 => 筵几 */, {"筹", "籌", -1 } /* 筹 => 籌 */, {"筼", "篔", -1 } /* 筼 => 篔 */, {"签", "簽", -1 } /* 签 => 簽 */, {"签押", "籤押", -1 } /* 签押 => 籤押 */, {"签着", "簽著", -1 } /* 签着 => 簽著 */, {"签诗", "籤詩", -1 } /* 签诗 => 籤詩 */, {"简", "簡", -1 } /* 简 => 簡 */, {"箓", "籙", -1 } /* 箓 => 籙 */, {"箕斗", "箕斗", -1 } /* 箕斗 => 箕斗 */, {"管干", "管幹", -1 } /* 管干 => 管幹 */, {"管线", "管線", -1 } /* 管线 => 管線 */, {"箦", "簀", -1 } /* 箦 => 簀 */, {"箧", "篋", -1 } /* 箧 => 篋 */, {"箨", "籜", -1 } /* 箨 => 籜 */, {"箩", "籮", -1 } /* 箩 => 籮 */, {"箩卜", "蘿蔔", -1 } /* 箩卜 => 蘿蔔 */, {"箪", "簞", -1 } /* 箪 => 簞 */, {"箫", "簫", -1 } /* 箫 => 簫 */, {"箫条", "蕭條", -1 } /* 箫条 => 蕭條 */, {"箱函", "箱涵", -1 } /* 箱函 => 箱涵 */, {"篑", "簣", -1 } /* 篑 => 簣 */, {"篓", "簍", -1 } /* 篓 => 簍 */, {"篮", "籃", -1 } /* 篮 => 籃 */, {"篱", "籬", -1 } /* 篱 => 籬 */, {"篷松", "篷鬆", -1 } /* 篷松 => 篷鬆 */, {"篾箪", "篾簟", -1 } /* 篾箪 => 篾簟 */, {"簖", "籪", -1 } /* 簖 => 籪 */, {"簽卜", "籤卜", -1 } /* 簽卜 => 籤卜 */, {"簽文", "籤文", -1 } /* 簽文 => 籤文 */, {"簽条", "籤條", -1 } /* 簽条 => 籤條 */, {"簽爪", "籤爪", -1 } /* 簽爪 => 籤爪 */, {"簽筒", "籤筒", -1 } /* 簽筒 => 籤筒 */, {"簽诗", "籤詩", -1 } /* 簽诗 => 籤詩 */, {"籁", "籟", -1 } /* 籁 => 籟 */, {"米余", "米餘", -1 } /* 米余 => 米餘 */, {"米谷", "米穀", -1 } /* 米谷 => 米穀 */, {"籴", "糴", -1 } /* 籴 => 糴 */, {"类", "類", -1 } /* 类 => 類 */, {"籼", "秈", -1 } /* 籼 => 秈 */, {"粉制", "粉製", -1 } /* 粉制 => 粉製 */, {"粉墙", "粉牆", -1 } /* 粉墙 => 粉牆 */, {"粉干", "粉乾", -1 } /* 粉干 => 粉乾 */, {"粉签子", "粉籤子", -1 } /* 粉签子 => 粉籤子 */, {"粗", "粗", -1 } /* 粗 => 粗 */, {"粗于", "粗於", -1 } /* 粗于 => 粗於 */, {"粗制", "粗製", -1 } /* 粗制 => 粗製 */, {"粗卤", "粗鹵", -1 } /* 粗卤 => 粗鹵 */, {"粗线", "粗線", -1 } /* 粗线 => 粗線 */, {"粜", "糶", -1 } /* 粜 => 糶 */, {"粝", "糲", -1 } /* 粝 => 糲 */, {"粤", "粵", -1 } /* 粤 => 粵 */, {"粪", "糞", -1 } /* 粪 => 糞 */, {"粮", "糧", -1 } /* 粮 => 糧 */, {"精于", "精於", -1 } /* 精于 => 精於 */, {"精制", "精製", -1 } /* 精制 => 精製 */, {"精干", "精幹", -1 } /* 精干 => 精幹 */, {"精明强干", "精明強幹", -1 } /* 精明强干 => 精明強幹 */, {"精致", "精緻", -1 } /* 精致 => 精緻 */, {"精辟", "精闢", -1 } /* 精辟 => 精闢 */, {"精采", "精采", -1 } /* 精采 => 精采 */, {"糁", "糝", -1 } /* 糁 => 糝 */, {"糇", "餱", -1 } /* 糇 => 餱 */, {"糊口", "餬口", -1 } /* 糊口 => 餬口 */, {"糊涂", "糊塗", -1 } /* 糊涂 => 糊塗 */, {"糊里糊涂", "糊里糊塗", -1 } /* 糊里糊涂 => 糊里糊塗 */, {"糕干", "糕乾", -1 } /* 糕干 => 糕乾 */, {"糟遢", "糟蹋", -1 } /* 糟遢 => 糟蹋 */, {"糸於一线", "繫於一線", -1 } /* 糸於一线 => 繫於一線 */, {"系一片", "係一片", -1 } /* 系一片 => 係一片 */, {"系一番", "係一番", -1 } /* 系一番 => 係一番 */, {"系一种", "係一種", -1 } /* 系一种 => 係一種 */, {"系一线", "繫一線", -1 } /* 系一线 => 繫一線 */, {"系上", "繫上", -1 } /* 系上 => 繫上 */, {"系世", "繫世", -1 } /* 系世 => 繫世 */, {"系丝带", "繫絲帶", -1 } /* 系丝带 => 繫絲帶 */, {"系个", "繫個", -1 } /* 系个 => 繫個 */, {"系为", "係為", -1 } /* 系为 => 係為 */, {"系乎", "繫乎", -1 } /* 系乎 => 繫乎 */, {"系了", "繫了", -1 } /* 系了 => 繫了 */, {"系争", "係爭", -1 } /* 系争 => 係爭 */, {"系住", "繫住", -1 } /* 系住 => 繫住 */, {"系到", "繫到", -1 } /* 系到 => 繫到 */, {"系发带", "繫髮帶", -1 } /* 系发带 => 繫髮帶 */, {"系囚", "繫囚", -1 } /* 系囚 => 繫囚 */, {"系块", "繫塊", -1 } /* 系块 => 繫塊 */, {"系头巾", "繫頭巾", -1 } /* 系头巾 => 繫頭巾 */, {"系妥", "繫妥", -1 } /* 系妥 => 繫妥 */, {"系带", "繫帶", -1 } /* 系带 => 繫帶 */, {"系引", "係引", -1 } /* 系引 => 係引 */, {"系心", "繫心", -1 } /* 系心 => 繫心 */, {"系念", "繫念", -1 } /* 系念 => 繫念 */, {"系怀", "繫懷", -1 } /* 系怀 => 繫懷 */, {"系恋", "繫戀", -1 } /* 系恋 => 繫戀 */, {"系手", "繫手", -1 } /* 系手 => 繫手 */, {"系指", "係指", -1 } /* 系指 => 係指 */, {"系掛", "繫掛", -1 } /* 系掛 => 繫掛 */, {"系数", "繫數", -1 } /* 系数 => 繫數 */, {"系数", "係數", -1 } /* 系数 => 係數 */, {"系条", "繫條", -1 } /* 系条 => 繫條 */, {"系牢", "繫牢", -1 } /* 系牢 => 繫牢 */, {"系留", "繫留", -1 } /* 系留 => 繫留 */, {"系着", "繫著", -1 } /* 系着 => 繫著 */, {"系系", "繫系", -1 } /* 系系 => 繫系 */, {"系紧", "繫緊", -1 } /* 系紧 => 繫緊 */, {"系累", "繫纍", -1 } /* 系累 => 繫纍 */, {"系累", "係累", -1 } /* 系累 => 係累 */, {"系绊", "繫絆", -1 } /* 系绊 => 繫絆 */, {"系结", "繫結", -1 } /* 系结 => 繫結 */, {"系统", "系統", -1 } /* 系统 => 系統 */, {"系绳", "繫繩", -1 } /* 系绳 => 繫繩 */, {"系缆", "繫纜", -1 } /* 系缆 => 繫纜 */, {"系缚", "繫縛", -1 } /* 系缚 => 繫縛 */, {"系脚", "繫腳", -1 } /* 系脚 => 繫腳 */, {"系腰", "繫腰", -1 } /* 系腰 => 繫腰 */, {"系膜", "繫膜", -1 } /* 系膜 => 繫膜 */, {"系获", "係獲", -1 } /* 系获 => 係獲 */, {"系著", "繫著", -1 } /* 系著 => 繫著 */, {"系裤子", "繫褲子", -1 } /* 系裤子 => 繫褲子 */, {"系裹", "繫裹", -1 } /* 系裹 => 繫裹 */, {"系起", "繫起", -1 } /* 系起 => 繫起 */, {"系踵", "係踵", -1 } /* 系踵 => 係踵 */, {"系辞", "繫辭", -1 } /* 系辞 => 繫辭 */, {"系里", "系裏", -1 } /* 系里 => 系裏 */, {"系铃", "繫鈴", -1 } /* 系铃 => 繫鈴 */, {"系铃人", "繫鈴人", -1 } /* 系铃人 => 繫鈴人 */, {"系鞋带", "繫鞋帶", -1 } /* 系鞋带 => 繫鞋帶 */, {"系颈", "繫頸", -1 } /* 系颈 => 繫頸 */, {"系颈阙庭", "係頸闕庭", -1 } /* 系颈阙庭 => 係頸闕庭 */, {"系风捕影", "繫風捕影", -1 } /* 系风捕影 => 繫風捕影 */, {"系风捕景", "係風捕景", -1 } /* 系风捕景 => 係風捕景 */, {"系马", "繫馬", -1 } /* 系马 => 繫馬 */, {"素发", "素髮", -1 } /* 素发 => 素髮 */, {"素面", "素麵", -1 } /* 素面 => 素麵 */, {"素食面", "素食麵", -1 } /* 素食面 => 素食麵 */, {"索尼中国", "索尼中國", -1 } /* 索尼中国 => 索尼中國 */, {"紧", "緊", -1 } /* 紧 => 緊 */, {"紧卷", "緊捲", -1 } /* 紧卷 => 緊捲 */, {"紧扎", "緊紮", -1 } /* 紧扎 => 緊紮 */, {"紧绷", "緊繃", -1 } /* 紧绷 => 緊繃 */, {"紧绷着", "緊繃著", -1 } /* 紧绷着 => 緊繃著 */, {"紧追不舍", "緊追不捨", -1 } /* 紧追不舍 => 緊追不捨 */, {"紫姜", "紫薑", -1 } /* 紫姜 => 紫薑 */, {"累", "累", -1 } /* 累 => 累 */, {"累囚", "纍囚", -1 } /* 累囚 => 纍囚 */, {"累累", "纍纍", -1 } /* 累累 => 纍纍 */, {"絷", "縶", -1 } /* 絷 => 縶 */, {"縻系", "縻繫", -1 } /* 縻系 => 縻繫 */, {"繁复", "繁複", -1 } /* 繁复 => 繁複 */, {"纂位", "篡位", -1 } /* 纂位 => 篡位 */, {"纟", "糹", -1 } /* 纟 => 糹 */, {"纠", "糾", -1 } /* 纠 => 糾 */, {"纡", "紆", -1 } /* 纡 => 紆 */, {"纡余", "紆餘", -1 } /* 纡余 => 紆餘 */, {"纡回", "紆迴", -1 } /* 纡回 => 紆迴 */, {"红", "紅", -1 } /* 红 => 紅 */, {"红于", "紅於", -1 } /* 红于 => 紅於 */, {"红发", "紅髮", -1 } /* 红发 => 紅髮 */, {"红簽", "紅籤", -1 } /* 红簽 => 紅籤 */, {"红线", "紅線", -1 } /* 红线 => 紅線 */, {"红绳系足", "紅繩繫足", -1 } /* 红绳系足 => 紅繩繫足 */, {"红霉素", "紅黴素", -1 } /* 红霉素 => 紅黴素 */, {"红须绿眼", "紅鬚綠眼", -1 } /* 红须绿眼 => 紅鬚綠眼 */, {"纣", "紂", -1 } /* 纣 => 紂 */, {"纤", "纖", -1 } /* 纤 => 纖 */, {"纤夫", "縴夫", -1 } /* 纤夫 => 縴夫 */, {"纥", "紇", -1 } /* 纥 => 紇 */, {"约", "約", -1 } /* 约 => 約 */, {"级", "級", -1 } /* 级 => 級 */, {"纨", "紈", -1 } /* 纨 => 紈 */, {"纨绔", "紈袴", -1 } /* 纨绔 => 紈袴 */, {"纩", "纊", -1 } /* 纩 => 纊 */, {"纪", "紀", -1 } /* 纪 => 紀 */, {"纪历", "紀曆", -1 } /* 纪历 => 紀曆 */, {"纪念周", "紀念週", -1 } /* 纪念周 => 紀念週 */, {"纫", "紉", -1 } /* 纫 => 紉 */, {"纬", "緯", -1 } /* 纬 => 緯 */, {"纬线", "緯線", -1 } /* 纬线 => 緯線 */, {"纭", "紜", -1 } /* 纭 => 紜 */, {"纮", "紘", -1 } /* 纮 => 紘 */, {"纯", "純", -1 } /* 纯 => 純 */, {"纯文本", "純文字檔案", -1 } /* 纯文本 => 純文字檔案 */, {"纯系", "純係", -1 } /* 纯系 => 純係 */, {"纰", "紕", -1 } /* 纰 => 紕 */, {"纱", "紗", -1 } /* 纱 => 紗 */, {"纱线", "紗線", -1 } /* 纱线 => 紗線 */, {"纲", "綱", -1 } /* 纲 => 綱 */, {"纳", "納", -1 } /* 纳 => 納 */, {"纳征", "納徵", -1 } /* 纳征 => 納徵 */, {"纳米比亚", "納米比亞", -1 } /* 纳米比亚 => 納米比亞 */, {"纳采", "納采", -1 } /* 纳采 => 納采 */, {"纴", "紝", -1 } /* 纴 => 紝 */, {"纵", "縱", -1 } /* 纵 => 縱 */, {"纵横交布", "縱橫交佈", -1 } /* 纵横交布 => 縱橫交佈 */, {"纵欲", "縱慾", -1 } /* 纵欲 => 縱慾 */, {"纶", "綸", -1 } /* 纶 => 綸 */, {"纷", "紛", -1 } /* 纷 => 紛 */, {"纸", "紙", -1 } /* 纸 => 紙 */, {"纸扎", "紙紮", -1 } /* 纸扎 => 紙紮 */, {"纹", "紋", -1 } /* 纹 => 紋 */, {"纺", "紡", -1 } /* 纺 => 紡 */, {"纺鎚", "紡錘", -1 } /* 纺鎚 => 紡錘 */, {"纻", "紵", -1 } /* 纻 => 紵 */, {"纼", "紖", -1 } /* 纼 => 紖 */, {"纽", "紐", -1 } /* 纽 => 紐 */, {"纽埃", "紐埃", -1 } /* 纽埃 => 紐埃 */, {"纾", "紓", -1 } /* 纾 => 紓 */, {"线", "綫", -1 } /* 线 => 綫 */, {"线上", "線上", -1 } /* 线上 => 線上 */, {"线图", "線圖", -1 } /* 线图 => 線圖 */, {"线圈", "線圈", -1 } /* 线圈 => 線圈 */, {"线头", "線頭", -1 } /* 线头 => 線頭 */, {"线形", "線形", -1 } /* 线形 => 線形 */, {"线性", "線性", -1 } /* 线性 => 線性 */, {"线条", "線條", -1 } /* 线条 => 線條 */, {"线框", "線框", -1 } /* 线框 => 線框 */, {"线段", "線段", -1 } /* 线段 => 線段 */, {"线民", "線民", -1 } /* 线民 => 線民 */, {"线状", "線狀", -1 } /* 线状 => 線狀 */, {"线管", "線管", -1 } /* 线管 => 線管 */, {"线索", "線索", -1 } /* 线索 => 線索 */, {"线装", "線裝", -1 } /* 线装 => 線裝 */, {"线西", "線西", -1 } /* 线西 => 線西 */, {"线路", "線路", -1 } /* 线路 => 線路 */, {"线道", "線道", -1 } /* 线道 => 線道 */, {"绀", "紺", -1 } /* 绀 => 紺 */, {"绁", "紲", -1 } /* 绁 => 紲 */, {"绂", "紱", -1 } /* 绂 => 紱 */, {"练", "練", -1 } /* 练 => 練 */, {"组", "組", -1 } /* 组 => 組 */, {"绅", "紳", -1 } /* 绅 => 紳 */, {"细", "細", -1 } /* 细 => 細 */, {"细于", "細於", -1 } /* 细于 => 細於 */, {"细线", "細線", -1 } /* 细线 => 細線 */, {"细致", "細緻", -1 } /* 细致 => 細緻 */, {"织", "織", -1 } /* 织 => 織 */, {"终", "終", -1 } /* 终 => 終 */, {"终于", "終於", -1 } /* 终于 => 終於 */, {"绉", "縐", -1 } /* 绉 => 縐 */, {"绊", "絆", -1 } /* 绊 => 絆 */, {"绋", "紼", -1 } /* 绋 => 紼 */, {"绌", "絀", -1 } /* 绌 => 絀 */, {"绍", "紹", -1 } /* 绍 => 紹 */, {"绎", "繹", -1 } /* 绎 => 繹 */, {"经", "經", -1 } /* 经 => 經 */, {"经斗", "經斗", 55 } /* 经斗 => 經斗 */, {"经线", "經線", -1 } /* 经线 => 經線 */, {"绐", "紿", -1 } /* 绐 => 紿 */, {"绑", "綁", -1 } /* 绑 => 綁 */, {"绑扎", "綁紮", -1 } /* 绑扎 => 綁紮 */, {"绒", "絨", -1 } /* 绒 => 絨 */, {"绒线", "絨線", -1 } /* 绒线 => 絨線 */, {"结", "結", -1 } /* 结 => 結 */, {"结伙", "結夥", -1 } /* 结伙 => 結夥 */, {"结余", "結餘", -1 } /* 结余 => 結餘 */, {"结发", "結髮", -1 } /* 结发 => 結髮 */, {"结彩", "結綵", -1 } /* 结彩 => 結綵 */, {"结扎", "結紮", -1 } /* 结扎 => 結紮 */, {"绔", "絝", -1 } /* 绔 => 絝 */, {"绕", "繞", -1 } /* 绕 => 繞 */, {"绕梁", "繞樑", -1 } /* 绕梁 => 繞樑 */, {"绕线", "繞線", -1 } /* 绕线 => 繞線 */, {"绖", "絰", -1 } /* 绖 => 絰 */, {"绗", "絎", -1 } /* 绗 => 絎 */, {"绘", "繪", -1 } /* 绘 => 繪 */, {"绘制", "繪製", -1 } /* 绘制 => 繪製 */, {"给", "給", -1 } /* 给 => 給 */, {"绚", "絢", -1 } /* 绚 => 絢 */, {"绛", "絳", -1 } /* 绛 => 絳 */, {"络", "絡", -1 } /* 络 => 絡 */, {"绝", "絶", -1 } /* 绝 => 絶 */, {"绝对参照", "絕對參照", -1 } /* 绝对参照 => 絕對參照 */, {"绞", "絞", -1 } /* 绞 => 絞 */, {"绞干", "絞乾", -1 } /* 绞干 => 絞乾 */, {"统", "統", -1 } /* 统 => 統 */, {"绠", "綆", -1 } /* 绠 => 綆 */, {"绡", "綃", -1 } /* 绡 => 綃 */, {"绢", "絹", -1 } /* 绢 => 絹 */, {"绣", "綉", -1 } /* 绣 => 綉 */, {"绣像", "繡像", -1 } /* 绣像 => 繡像 */, {"绣口", "繡口", -1 } /* 绣口 => 繡口 */, {"绣户", "繡戶", -1 } /* 绣户 => 繡戶 */, {"绣房", "繡房", -1 } /* 绣房 => 繡房 */, {"绣球", "繡球", -1 } /* 绣球 => 繡球 */, {"绣花", "繡花", -1 } /* 绣花 => 繡花 */, {"绣阁", "繡閣", -1 } /* 绣阁 => 繡閣 */, {"绤", "綌", -1 } /* 绤 => 綌 */, {"绥", "綏", -1 } /* 绥 => 綏 */, {"绦", "縧", -1 } /* 绦 => 縧 */, {"继", "繼", -1 } /* 继 => 繼 */, {"继续干", "繼續幹", -1 } /* 继续干 => 繼續幹 */, {"绨", "綈", -1 } /* 绨 => 綈 */, {"绩", "績", -1 } /* 绩 => 績 */, {"绪", "緒", -1 } /* 绪 => 緒 */, {"绪余", "緒餘", -1 } /* 绪余 => 緒餘 */, {"绫", "綾", -1 } /* 绫 => 綾 */, {"绬", "緓", -1 } /* 绬 => 緓 */, {"续", "續", -1 } /* 续 => 續 */, {"续弦", "續絃", -1 } /* 续弦 => 續絃 */, {"绮", "綺", -1 } /* 绮 => 綺 */, {"绯", "緋", -1 } /* 绯 => 緋 */, {"绰", "綽", -1 } /* 绰 => 綽 */, {"绲", "緄", -1 } /* 绲 => 緄 */, {"绳", "繩", -1 } /* 绳 => 繩 */, {"维", "維", -1 } /* 维 => 維 */, {"维基共享资源", "維基共享資源", -1 } /* 维基共享资源 => 維基共享資源 */, {"维系", "維繫", -1 } /* 维系 => 維繫 */, {"绵", "綿", -1 } /* 绵 => 綿 */, {"绶", "綬", -1 } /* 绶 => 綬 */, {"绷", "綳", -1 } /* 绷 => 綳 */, {"绷住", "繃住", -1 } /* 绷住 => 繃住 */, {"绷子", "繃子", -1 } /* 绷子 => 繃子 */, {"绷带", "繃帶", -1 } /* 绷带 => 繃帶 */, {"绷开", "繃開", -1 } /* 绷开 => 繃開 */, {"绷着", "繃著", -1 } /* 绷着 => 繃著 */, {"绷着脸", "繃著臉", -1 } /* 绷着脸 => 繃著臉 */, {"绷着脸儿", "繃著臉兒", -1 } /* 绷着脸儿 => 繃著臉兒 */, {"绷紧", "繃緊", -1 } /* 绷紧 => 繃緊 */, {"绷脸", "繃臉", -1 } /* 绷脸 => 繃臉 */, {"绸", "綢", -1 } /* 绸 => 綢 */, {"绸密", "稠密", -1 } /* 绸密 => 稠密 */, {"绹", "綯", -1 } /* 绹 => 綯 */, {"绺", "綹", -1 } /* 绺 => 綹 */, {"绻", "綣", -1 } /* 绻 => 綣 */, {"综", "綜", -1 } /* 综 => 綜 */, {"综合征", "綜合徵", -1 } /* 综合征 => 綜合徵 */, {"绽", "綻", -1 } /* 绽 => 綻 */, {"绾", "綰", -1 } /* 绾 => 綰 */, {"绾发", "綰髮", -1 } /* 绾发 => 綰髮 */, {"绿", "綠", -1 } /* 绿 => 綠 */, {"绿霉素", "綠黴素", -1 } /* 绿霉素 => 綠黴素 */, {"缀", "綴", -1 } /* 缀 => 綴 */, {"缀于", "綴於", -1 } /* 缀于 => 綴於 */, {"缁", "緇", -1 } /* 缁 => 緇 */, {"缂", "緙", -1 } /* 缂 => 緙 */, {"缃", "緗", -1 } /* 缃 => 緗 */, {"缄", "緘", -1 } /* 缄 => 緘 */, {"缅", "緬", -1 } /* 缅 => 緬 */, {"缆", "纜", -1 } /* 缆 => 纜 */, {"缆线", "纜線", -1 } /* 缆线 => 纜線 */, {"缇", "緹", -1 } /* 缇 => 緹 */, {"缈", "緲", -1 } /* 缈 => 緲 */, {"缈茫", "渺茫", -1 } /* 缈茫 => 渺茫 */, {"缉", "緝", -1 } /* 缉 => 緝 */, {"缉凶", "緝兇", -1 } /* 缉凶 => 緝兇 */, {"缊", "緼", -1 } /* 缊 => 緼 */, {"缊", "縕", -1 } /* 缊 => 縕 */, {"缋", "繢", -1 } /* 缋 => 繢 */, {"缌", "緦", -1 } /* 缌 => 緦 */, {"缍", "綞", -1 } /* 缍 => 綞 */, {"缎", "緞", -1 } /* 缎 => 緞 */, {"缏", "緶", -1 } /* 缏 => 緶 */, {"缑", "緱", -1 } /* 缑 => 緱 */, {"缒", "縋", -1 } /* 缒 => 縋 */, {"缓", "緩", -1 } /* 缓 => 緩 */, {"缓于", "緩於", -1 } /* 缓于 => 緩於 */, {"缓冲", "緩衝", -1 } /* 缓冲 => 緩衝 */, {"缓征", "緩徵", -1 } /* 缓征 => 緩徵 */, {"缔", "締", -1 } /* 缔 => 締 */, {"缕", "縷", -1 } /* 缕 => 縷 */, {"编", "編", -1 } /* 编 => 編 */, {"编于", "編於", -1 } /* 编于 => 編於 */, {"编制", "編製", -1 } /* 编制 => 編製 */, {"编篡", "編纂", -1 } /* 编篡 => 編纂 */, {"编采", "編採", -1 } /* 编采 => 編採 */, {"缗", "緡", -1 } /* 缗 => 緡 */, {"缘", "緣", -1 } /* 缘 => 緣 */, {"缙", "縉", -1 } /* 缙 => 縉 */, {"缚", "縛", -1 } /* 缚 => 縛 */, {"缛", "縟", -1 } /* 缛 => 縟 */, {"缜", "縝", -1 } /* 缜 => 縝 */, {"缜致", "縝緻", -1 } /* 缜致 => 縝緻 */, {"缝", "縫", -1 } /* 缝 => 縫 */, {"缝制", "縫製", -1 } /* 缝制 => 縫製 */, {"缝扎", "縫紮", -1 } /* 缝扎 => 縫紮 */, {"缝纴", "縫紉", -1 } /* 缝纴 => 縫紉 */, {"缞", "縗", -1 } /* 缞 => 縗 */, {"缟", "縞", -1 } /* 缟 => 縞 */, {"缠", "纏", -1 } /* 缠 => 纏 */, {"缠卷", "纏捲", -1 } /* 缠卷 => 纏捲 */, {"缡", "縭", -1 } /* 缡 => 縭 */, {"缢", "縊", -1 } /* 缢 => 縊 */, {"缣", "縑", -1 } /* 缣 => 縑 */, {"缤", "繽", -1 } /* 缤 => 繽 */, {"缥", "縹", -1 } /* 缥 => 縹 */, {"缦", "縵", -1 } /* 缦 => 縵 */, {"缧", "縲", -1 } /* 缧 => 縲 */, {"缨", "纓", -1 } /* 缨 => 纓 */, {"缩", "縮", -1 } /* 缩 => 縮 */, {"缩影微卷", "縮影微捲", -1 } /* 缩影微卷 => 縮影微捲 */, {"缪", "繆", -1 } /* 缪 => 繆 */, {"缫", "繅", -1 } /* 缫 => 繅 */, {"缬", "纈", -1 } /* 缬 => 纈 */, {"缭", "繚", -1 } /* 缭 => 繚 */, {"缮", "繕", -1 } /* 缮 => 繕 */, {"缯", "繒", -1 } /* 缯 => 繒 */, {"缰", "繮", -1 } /* 缰 => 繮 */, {"缱", "繾", -1 } /* 缱 => 繾 */, {"缲", "繰", -1 } /* 缲 => 繰 */, {"缳", "繯", -1 } /* 缳 => 繯 */, {"缴", "繳", -1 } /* 缴 => 繳 */, {"缵", "纘", -1 } /* 缵 => 纘 */, {"缺省", "預設", -1 } /* 缺省 => 預設 */, {"罂", "罌", -1 } /* 罂 => 罌 */, {"网", "網", -1 } /* 网 => 網 */, {"网上邻居", "網路上的芳鄰", -1 } /* 网上邻居 => 網路上的芳鄰 */, {"网志", "網誌", -1 } /* 网志 => 網誌 */, {"网游", "網遊", -1 } /* 网游 => 網遊 */, {"罗", "羅", -1 } /* 罗 => 羅 */, {"罗得岛", "羅德島", -1 } /* 罗得岛 => 羅德島 */, {"罚", "罰", -1 } /* 罚 => 罰 */, {"罢", "罷", -1 } /* 罢 => 罷 */, {"罩卷", "罩捲", -1 } /* 罩卷 => 罩捲 */, {"置于", "置於", -1 } /* 置于 => 置於 */, {"罴", "羆", -1 } /* 罴 => 羆 */, {"羁", "覊", -1 } /* 羁 => 覊 */, {"羁", "羈", -1 } /* 羁 => 羈 */, {"羁系", "羈繫", -1 } /* 羁系 => 羈繫 */, {"羈拌", "羈絆", -1 } /* 羈拌 => 羈絆 */, {"美制", "美製", 56 } /* 美制 => 美製 */, {"美发", "美髮", 57 } /* 美发 => 美髮 */, {"美后", "美后", -1 } /* 美后 => 美后 */, {"美国本土外小岛屿", "美國邊疆小島", -1 } /* 美国本土外小岛屿 => 美國邊疆小島 */, {"羞于", "羞於", -1 } /* 羞于 => 羞於 */, {"羞赦", "羞赧", -1 } /* 羞赦 => 羞赧 */, {"羟", "羥", -1 } /* 羟 => 羥 */, {"羡余", "羨餘", -1 } /* 羡余 => 羨餘 */, {"羹面", "羹麵", -1 } /* 羹面 => 羹麵 */, {"翘", "翹", -1 } /* 翘 => 翹 */, {"翚", "翬", -1 } /* 翚 => 翬 */, {"翦彩", "翦綵", -1 } /* 翦彩 => 翦綵 */, {"翱游", "翱遊", -1 } /* 翱游 => 翱遊 */, {"翻卷", "翻捲", -1 } /* 翻卷 => 翻捲 */, {"翻台", "翻檯", -1 } /* 翻台 => 翻檯 */, {"翻复", "翻覆", -1 } /* 翻复 => 翻覆 */, {"翻天复地", "翻天覆地", -1 } /* 翻天复地 => 翻天覆地 */, {"翻来复去", "翻來覆去", -1 } /* 翻来复去 => 翻來覆去 */, {"翻松", "翻鬆", -1 } /* 翻松 => 翻鬆 */, {"老么", "老么", -1 } /* 老么 => 老么 */, {"老姜", "老薑", -1 } /* 老姜 => 老薑 */, {"老字号", "老字號", -1 } /* 老字号 => 老字號 */, {"老干", "老乾", -1 } /* 老干 => 老乾 */, {"老挝", "寮國", -1 } /* 老挝 => 寮國 */, {"老板", "老闆", -1 } /* 老板 => 老闆 */, {"考征", "考徵", -1 } /* 考征 => 考徵 */, {"者云", "者云", -1 } /* 者云 => 者云 */, {"者系", "者係", -1 } /* 者系 => 者係 */, {"而云", "而云", -1 } /* 而云 => 而云 */, {"耕九余三", "耕九餘三", -1 } /* 耕九余三 => 耕九餘三 */, {"耕获", "耕穫", -1 } /* 耕获 => 耕穫 */, {"耗干", "耗乾", -1 } /* 耗干 => 耗乾 */, {"耢", "耮", -1 } /* 耢 => 耮 */, {"耧", "耬", -1 } /* 耧 => 耬 */, {"耸", "聳", -1 } /* 耸 => 聳 */, {"耻", "恥", -1 } /* 耻 => 恥 */, {"耻夺", "褫奪", -1 } /* 耻夺 => 褫奪 */, {"聂", "聶", -1 } /* 聂 => 聶 */, {"聊斋志异", "聊齋誌異", -1 } /* 聊斋志异 => 聊齋誌異 */, {"聋", "聾", -1 } /* 聋 => 聾 */, {"职", "職", -1 } /* 职 => 職 */, {"聍", "聹", -1 } /* 聍 => 聹 */, {"联", "聯", -1 } /* 联 => 聯 */, {"联准", "聯准", -1 } /* 联准 => 聯准 */, {"联征", "聯徵", -1 } /* 联征 => 聯徵 */, {"联系", "聯繫", -1 } /* 联系 => 聯繫 */, {"联系统", "聯系統", -1 } /* 联系统 => 聯系統 */, {"聩", "聵", -1 } /* 聩 => 聵 */, {"聪", "聰", -1 } /* 聪 => 聰 */, {"肃", "肅", -1 } /* 肃 => 肅 */, {"肆业", "肄業", -1 } /* 肆业 => 肄業 */, {"肉丝面", "肉絲麵", -1 } /* 肉丝面 => 肉絲麵 */, {"肉干", "肉乾", -1 } /* 肉干 => 肉乾 */, {"肉松", "肉鬆", -1 } /* 肉松 => 肉鬆 */, {"肉欲", "肉慾", -1 } /* 肉欲 => 肉慾 */, {"肉羹面", "肉羹麵", -1 } /* 肉羹面 => 肉羹麵 */, {"肉面", "肉麵", -1 } /* 肉面 => 肉麵 */, {"肖邦", "蕭邦", -1 } /* 肖邦 => 蕭邦 */, {"肠", "腸", -1 } /* 肠 => 腸 */, {"肠线", "腸線", -1 } /* 肠线 => 腸線 */, {"股东", "股東", -1 } /* 股东 => 股東 */, {"肢体", "肢体", -1 } /* 肢体 => 肢体 */, {"肢体", "肢體", -1 } /* 肢体 => 肢體 */, {"肤", "膚", -1 } /* 肤 => 膚 */, {"肥筑方言", "肥筑方言", -1 } /* 肥筑方言 => 肥筑方言 */, {"肮", "骯", -1 } /* 肮 => 骯 */, {"肮脏", "骯髒", -1 } /* 肮脏 => 骯髒 */, {"肯尼迪", "甘迺迪", -1 } /* 肯尼迪 => 甘迺迪 */, {"肯干", "肯幹", -1 } /* 肯干 => 肯幹 */, {"肯干啊", "肯幹啊", -1 } /* 肯干啊 => 肯幹啊 */, {"肴", "餚", -1 } /* 肴 => 餚 */, {"肴撰", "餚饌", -1 } /* 肴撰 => 餚饌 */, {"肾", "腎", -1 } /* 肾 => 腎 */, {"肿", "腫", -1 } /* 肿 => 腫 */, {"胀", "脹", -1 } /* 胀 => 脹 */, {"胁", "脅", -1 } /* 胁 => 脅 */, {"胄", "冑", -1 } /* 胄 => 冑 */, {"胆", "膽", -1 } /* 胆 => 膽 */, {"胆战", "膽顫", -1 } /* 胆战 => 膽顫 */, {"背系", "背繫", -1 } /* 背系 => 背繫 */, {"胖于", "胖於", -1 } /* 胖于 => 胖於 */, {"胜", "勝", -1 } /* 胜 => 勝 */, {"胜于", "勝於", -1 } /* 胜于 => 勝於 */, {"胜余", "勝餘", -1 } /* 胜余 => 勝餘 */, {"胡", "胡", -1 } /* 胡 => 胡 */, {"胡同", "衚衕", -1 } /* 胡同 => 衚衕 */, {"胡子", "鬍子", -1 } /* 胡子 => 鬍子 */, {"胡干", "胡幹", -1 } /* 胡干 => 胡幹 */, {"胡梢", "鬍梢", -1 } /* 胡梢 => 鬍梢 */, {"胡涂", "胡塗", -1 } /* 胡涂 => 胡塗 */, {"胡渣", "鬍渣", -1 } /* 胡渣 => 鬍渣 */, {"胡碴子", "鬍碴子", -1 } /* 胡碴子 => 鬍碴子 */, {"胡里胡涂", "胡里胡塗", -1 } /* 胡里胡涂 => 胡里胡塗 */, {"胡里胡涂", "糊裡糊塗", -1 } /* 胡里胡涂 => 糊裡糊塗 */, {"胡雪岩", "胡雪巖", -1 } /* 胡雪岩 => 胡雪巖 */, {"胡须", "鬍鬚", -1 } /* 胡须 => 鬍鬚 */, {"胡髭", "鬍髭", -1 } /* 胡髭 => 鬍髭 */, {"胡髯", "鬍髯", -1 } /* 胡髯 => 鬍髯 */, {"胡鬓", "鬍鬢", -1 } /* 胡鬓 => 鬍鬢 */, {"胧", "朧", -1 } /* 胧 => 朧 */, {"胨", "腖", -1 } /* 胨 => 腖 */, {"胪", "臚", -1 } /* 胪 => 臚 */, {"胫", "脛", -1 } /* 胫 => 脛 */, {"胶", "膠", -1 } /* 胶 => 膠 */, {"胶制", "膠製", -1 } /* 胶制 => 膠製 */, {"胶卷", "膠捲", -1 } /* 胶卷 => 膠捲 */, {"能干", "能幹", 58 } /* 能干 => 能幹 */, {"能干休", "能干休", -1 } /* 能干休 => 能干休 */, {"能干嚎", "能乾嚎", -1 } /* 能干嚎 => 能乾嚎 */, {"能干巴巴", "能乾巴巴", -1 } /* 能干巴巴 => 能乾巴巴 */, {"能干扰", "能干擾", -1 } /* 能干扰 => 能干擾 */, {"能干搁", "能乾擱", -1 } /* 能干搁 => 能乾擱 */, {"能干政", "能干政", -1 } /* 能干政 => 能干政 */, {"能干杯", "能乾杯", -1 } /* 能干杯 => 能乾杯 */, {"能干涉", "能干涉", -1 } /* 能干涉 => 能干涉 */, {"能干着急", "能乾著急", -1 } /* 能干着急 => 能乾著急 */, {"能干瞪", "能乾瞪", -1 } /* 能干瞪 => 能乾瞪 */, {"能干笑", "能乾笑", -1 } /* 能干笑 => 能乾笑 */, {"能干耗", "能乾耗", -1 } /* 能干耗 => 能乾耗 */, {"能干脆", "能乾脆", -1 } /* 能干脆 => 能乾脆 */, {"能干预", "能干預", -1 } /* 能干预 => 能干預 */, {"能舍", "能捨", -1 } /* 能舍 => 能捨 */, {"脉", "脈", -1 } /* 脉 => 脈 */, {"脉冲", "脈衝", -1 } /* 脉冲 => 脈衝 */, {"脊梁", "脊樑", -1 } /* 脊梁 => 脊樑 */, {"脍", "膾", -1 } /* 脍 => 膾 */, {"脏", "臟", -1 } /* 脏 => 臟 */, {"脏东西", "髒東西", -1 } /* 脏东西 => 髒東西 */, {"脏乱", "髒亂", -1 } /* 脏乱 => 髒亂 */, {"脏兮兮", "髒兮兮", -1 } /* 脏兮兮 => 髒兮兮 */, {"脏字", "髒字", -1 } /* 脏字 => 髒字 */, {"脏得", "髒得", -1 } /* 脏得 => 髒得 */, {"脏心", "髒心", -1 } /* 脏心 => 髒心 */, {"脏水", "髒水", -1 } /* 脏水 => 髒水 */, {"脏的", "髒的", -1 } /* 脏的 => 髒的 */, {"脏词", "髒詞", -1 } /* 脏词 => 髒詞 */, {"脏话", "髒話", -1 } /* 脏话 => 髒話 */, {"脏钱", "髒錢", -1 } /* 脏钱 => 髒錢 */, {"脐", "臍", -1 } /* 脐 => 臍 */, {"脑", "腦", -1 } /* 脑 => 腦 */, {"脑壳", "腦殼", -1 } /* 脑壳 => 腦殼 */, {"脑干", "腦幹", -1 } /* 脑干 => 腦幹 */, {"脓", "膿", -1 } /* 脓 => 膿 */, {"脔", "臠", -1 } /* 脔 => 臠 */, {"脚", "腳", -1 } /* 脚 => 腳 */, {"脚夫", "腳伕", -1 } /* 脚夫 => 腳伕 */, {"脚注", "腳註", -1 } /* 脚注 => 腳註 */, {"脚炼", "腳鍊", -1 } /* 脚炼 => 腳鍊 */, {"脣干", "脣乾", -1 } /* 脣干 => 脣乾 */, {"脱", "脫", -1 } /* 脱 => 脫 */, {"脱发", "脫髮", -1 } /* 脱发 => 脫髮 */, {"脱壳", "脫殼", -1 } /* 脱壳 => 脫殼 */, {"脱机", "離線", -1 } /* 脱机 => 離線 */, {"脱线", "脫線", -1 } /* 脱线 => 脫線 */, {"脱缰之马", "脫韁之馬", -1 } /* 脱缰之马 => 脫韁之馬 */, {"脱缰野马", "脫韁野馬", -1 } /* 脱缰野马 => 脫韁野馬 */, {"脶", "腡", -1 } /* 脶 => 腡 */, {"脸", "臉", -1 } /* 脸 => 臉 */, {"腊", "臘", -1 } /* 腊 => 臘 */, {"腊味", "腊味", -1 } /* 腊味 => 腊味 */, {"腊笔", "腊筆", -1 } /* 腊笔 => 腊筆 */, {"腊肉", "臘肉", -1 } /* 腊肉 => 臘肉 */, {"腌", "醃", -1 } /* 腌 => 醃 */, {"腐余", "腐餘", -1 } /* 腐余 => 腐餘 */, {"腕表", "腕錶", -1 } /* 腕表 => 腕錶 */, {"腘", "膕", -1 } /* 腘 => 膕 */, {"腭", "齶", -1 } /* 腭 => 齶 */, {"腮胡", "腮鬍", -1 } /* 腮胡 => 腮鬍 */, {"腰一卷", "腰一捲", -1 } /* 腰一卷 => 腰一捲 */, {"腰干", "腰幹", -1 } /* 腰干 => 腰幹 */, {"腰系", "腰繫", -1 } /* 腰系 => 腰繫 */, {"腰间系", "腰間繫", -1 } /* 腰间系 => 腰間繫 */, {"腻", "膩", -1 } /* 腻 => 膩 */, {"腼", "靦", -1 } /* 腼 => 靦 */, {"腽", "膃", -1 } /* 腽 => 膃 */, {"腾", "騰", -1 } /* 腾 => 騰 */, {"腾冲", "騰衝", -1 } /* 腾冲 => 騰衝 */, {"腾格里", "騰格里", -1 } /* 腾格里 => 騰格里 */, {"膏药", "膏藥", -1 } /* 膏药 => 膏藥 */, {"膑", "臏", -1 } /* 膑 => 臏 */, {"膨松", "膨鬆", -1 } /* 膨松 => 膨鬆 */, {"膺品", "贗品", -1 } /* 膺品 => 贗品 */, {"臂一卷", "臂一捲", -1 } /* 臂一卷 => 臂一捲 */, {"臜", "臢", -1 } /* 臜 => 臢 */, {"臥游", "臥遊", -1 } /* 臥游 => 臥遊 */, {"自制", "自製", -1 } /* 自制 => 自製 */, {"自助游", "自助遊", -1 } /* 自助游 => 自助遊 */, {"自愈", "自癒", -1 } /* 自愈 => 自癒 */, {"自觉自愿", "自覺自愿", -1 } /* 自觉自愿 => 自覺自愿 */, {"自赞", "自讚", -1 } /* 自赞 => 自讚 */, {"自采", "自採", -1 } /* 自采 => 自採 */, {"致", "致", -1 } /* 致 => 致 */, {"致密", "緻密", -1 } /* 致密 => 緻密 */, {"舂谷", "舂穀", -1 } /* 舂谷 => 舂穀 */, {"舄湖", "潟湖", -1 } /* 舄湖 => 潟湖 */, {"舆", "輿", -1 } /* 舆 => 輿 */, {"舌一卷", "舌一捲", -1 } /* 舌一卷 => 舌一捲 */, {"舍下他", "捨下他", -1 } /* 舍下他 => 捨下他 */, {"舍下你", "捨下你", -1 } /* 舍下你 => 捨下你 */, {"舍下她", "捨下她", -1 } /* 舍下她 => 捨下她 */, {"舍下我", "捨下我", -1 } /* 舍下我 => 捨下我 */, {"舍不得", "捨不得", -1 } /* 舍不得 => 捨不得 */, {"舍出", "捨出", -1 } /* 舍出 => 捨出 */, {"舍去", "捨去", -1 } /* 舍去 => 捨去 */, {"舍命", "捨命", -1 } /* 舍命 => 捨命 */, {"舍堕", "捨墮", -1 } /* 舍堕 => 捨墮 */, {"舍安就危", "捨安就危", -1 } /* 舍安就危 => 捨安就危 */, {"舍实", "捨實", -1 } /* 舍实 => 捨實 */, {"舍己", "捨己", -1 } /* 舍己 => 捨己 */, {"舍己为人", "捨己為人", -1 } /* 舍己为人 => 捨己為人 */, {"舍己为公", "捨己為公", -1 } /* 舍己为公 => 捨己為公 */, {"舍己为国", "捨己為國", -1 } /* 舍己为国 => 捨己為國 */, {"舍己从人", "捨己從人", -1 } /* 舍己从人 => 捨己從人 */, {"舍己救人", "捨己救人", -1 } /* 舍己救人 => 捨己救人 */, {"舍弃", "捨棄", -1 } /* 舍弃 => 捨棄 */, {"舍得", "捨得", -1 } /* 舍得 => 捨得 */, {"舍我其谁", "捨我其誰", -1 } /* 舍我其谁 => 捨我其誰 */, {"舍旧迎新", "捨舊迎新", -1 } /* 舍旧迎新 => 捨舊迎新 */, {"舍本", "捨本", -1 } /* 舍本 => 捨本 */, {"舍本逐末", "捨本逐末", -1 } /* 舍本逐末 => 捨本逐末 */, {"舍死", "捨死", -1 } /* 舍死 => 捨死 */, {"舍死忘生", "捨死忘生", -1 } /* 舍死忘生 => 捨死忘生 */, {"舍生", "捨生", -1 } /* 舍生 => 捨生 */, {"舍短", "捨短", -1 } /* 舍短 => 捨短 */, {"舍短取长", "捨短取長", -1 } /* 舍短取长 => 捨短取長 */, {"舍身", "捨身", -1 } /* 舍身 => 捨身 */, {"舍车保帅", "捨車保帥", -1 } /* 舍车保帅 => 捨車保帥 */, {"舍近", "捨近", -1 } /* 舍近 => 捨近 */, {"舍近求远", "捨近求遠", -1 } /* 舍近求远 => 捨近求遠 */, {"舒卷", "舒捲", -1 } /* 舒卷 => 舒捲 */, {"舔干", "舔乾", -1 } /* 舔干 => 舔乾 */, {"舞卷", "舞捲", -1 } /* 舞卷 => 舞捲 */, {"舞后", "舞后", -1 } /* 舞后 => 舞后 */, {"舞娘", "舞孃", -1 } /* 舞娘 => 舞孃 */, {"舟揖", "舟楫", -1 } /* 舟揖 => 舟楫 */, {"舣", "艤", -1 } /* 舣 => 艤 */, {"航天大学", "航天大學", -1 } /* 航天大学 => 航天大學 */, {"航天工业部", "航天工業部", -1 } /* 航天工业部 => 航天工業部 */, {"航海历", "航海曆", -1 } /* 航海历 => 航海曆 */, {"航线", "航線", -1 } /* 航线 => 航線 */, {"舰", "艦", -1 } /* 舰 => 艦 */, {"舰只", "艦隻", -1 } /* 舰只 => 艦隻 */, {"舱", "艙", -1 } /* 舱 => 艙 */, {"舶船", "泊船", -1 } /* 舶船 => 泊船 */, {"船只", "船隻", -1 } /* 船只 => 船隻 */, {"船夫", "船伕", -1 } /* 船夫 => 船伕 */, {"船梁", "船樑", -1 } /* 船梁 => 船樑 */, {"船浆", "船槳", -1 } /* 船浆 => 船槳 */, {"船纤", "船縴", -1 } /* 船纤 => 船縴 */, {"船蓬", "船篷", -1 } /* 船蓬 => 船篷 */, {"舻", "艫", -1 } /* 舻 => 艫 */, {"艨冲", "艨衝", -1 } /* 艨冲 => 艨衝 */, {"良于", "良於", -1 } /* 良于 => 良於 */, {"良游", "良遊", -1 } /* 良游 => 良遊 */, {"良药", "良藥", -1 } /* 良药 => 良藥 */, {"艰", "艱", -1 } /* 艰 => 艱 */, {"色欲", "色慾", -1 } /* 色欲 => 色慾 */, {"艳", "艷", -1 } /* 艳 => 艷 */, {"艳后", "艷后", -1 } /* 艳后 => 艷后 */, {"艺", "藝", -1 } /* 艺 => 藝 */, {"艾奥瓦", "衣阿华", -1 } /* 艾奥瓦 => 衣阿华 */, {"节", "節", -1 } /* 节 => 節 */, {"节余", "節餘", -1 } /* 节余 => 節餘 */, {"节欲", "節慾", -1 } /* 节欲 => 節慾 */, {"芈", "羋", -1 } /* 芈 => 羋 */, {"芍药", "芍藥", -1 } /* 芍药 => 芍藥 */, {"芒果干", "芒果乾", -1 } /* 芒果干 => 芒果乾 */, {"芗", "薌", -1 } /* 芗 => 薌 */, {"芜", "蕪", -1 } /* 芜 => 蕪 */, {"芦", "蘆", -1 } /* 芦 => 蘆 */, {"芬郁", "芬郁", -1 } /* 芬郁 => 芬郁 */, {"芯片", "晶片", -1 } /* 芯片 => 晶片 */, {"芯片组", "晶片集", -1 } /* 芯片组 => 晶片集 */, {"花卷", "花捲", -1 } /* 花卷 => 花捲 */, {"花发老", "花髮老", -1 } /* 花发老 => 花髮老 */, {"花哄", "花鬨", -1 } /* 花哄 => 花鬨 */, {"花拳绣腿", "花拳繡腿", -1 } /* 花拳绣腿 => 花拳繡腿 */, {"花采", "花采", -1 } /* 花采 => 花采 */, {"花雕", "花彫", -1 } /* 花雕 => 花彫 */, {"芸", "蕓", -1 } /* 芸 => 蕓 */, {"苁", "蓯", -1 } /* 苁 => 蓯 */, {"苇", "葦", -1 } /* 苇 => 葦 */, {"苈", "藶", -1 } /* 苈 => 藶 */, {"苋", "莧", -1 } /* 苋 => 莧 */, {"苌", "萇", -1 } /* 苌 => 萇 */, {"苍", "蒼", -1 } /* 苍 => 蒼 */, {"苍术", "蒼朮", -1 } /* 苍术 => 蒼朮 */, {"苎", "苧", -1 } /* 苎 => 苧 */, {"苏", "蘇", -1 } /* 苏 => 蘇 */, {"苏醒", "甦醒", -1 } /* 苏醒 => 甦醒 */, {"苏里", "蘇里", -1 } /* 苏里 => 蘇里 */, {"苗栗", "苗栗", -1 } /* 苗栗 => 苗栗 */, {"苛征", "苛徵", -1 } /* 苛征 => 苛徵 */, {"若干", "若幹", -1 } /* 若干 => 若幹 */, {"若干", "若干", -1 } /* 若干 => 若干 */, {"若羌", "羌縣", -1 } /* 若羌 => 羌縣 */, {"苦卤", "苦鹵", -1 } /* 苦卤 => 苦鹵 */, {"苦干", "苦幹", -1 } /* 苦干 => 苦幹 */, {"苦瓜干", "苦瓜乾", -1 } /* 苦瓜干 => 苦瓜乾 */, {"苧", "薴", -1 } /* 苧 => 薴 */, {"英寸", "英吋", -1 } /* 英寸 => 英吋 */, {"英尺", "英呎", -1 } /* 英尺 => 英呎 */, {"英里", "英里", -1 } /* 英里 => 英里 */, {"苹", "蘋", -1 } /* 苹 => 蘋 */, {"范不著", "範不著", -1 } /* 范不著 => 範不著 */, {"范例", "範例", -1 } /* 范例 => 範例 */, {"范围", "範圍", -1 } /* 范围 => 範圍 */, {"范式", "範式", -1 } /* 范式 => 範式 */, {"范文", "範文", -1 } /* 范文 => 範文 */, {"范本", "範本", -1 } /* 范本 => 範本 */, {"范畴", "範疇", -1 } /* 范畴 => 範疇 */, {"范行", "範行", -1 } /* 范行 => 範行 */, {"范险", "範險", -1 } /* 范险 => 範險 */, {"茅厕", "茅廁", -1 } /* 茅厕 => 茅廁 */, {"茅芦", "茅廬", -1 } /* 茅芦 => 茅廬 */, {"茎", "莖", -1 } /* 茎 => 莖 */, {"茎干", "莖幹", -1 } /* 茎干 => 莖幹 */, {"茏", "蘢", -1 } /* 茏 => 蘢 */, {"茑", "蔦", -1 } /* 茑 => 蔦 */, {"茔", "塋", -1 } /* 茔 => 塋 */, {"茕", "煢", -1 } /* 茕 => 煢 */, {"茧", "繭", -1 } /* 茧 => 繭 */, {"茶余", "茶餘", -1 } /* 茶余 => 茶餘 */, {"茶几", "茶几", -1 } /* 茶几 => 茶几 */, {"茶卤", "茶滷", -1 } /* 茶卤 => 茶滷 */, {"茶已干", "茶已乾", -1 } /* 茶已干 => 茶已乾 */, {"茶干尽", "茶乾盡", -1 } /* 茶干尽 => 茶乾盡 */, {"茶干掉", "荼乾掉", -1 } /* 茶干掉 => 荼乾掉 */, {"茶毒", "荼毒", -1 } /* 茶毒 => 荼毒 */, {"荆", "荊", -1 } /* 荆 => 荊 */, {"草席", "草蓆", -1 } /* 草席 => 草蓆 */, {"草广", "草广", -1 } /* 草广 => 草广 */, {"草药", "草藥", -1 } /* 草药 => 草藥 */, {"荊朴", "荊璞", -1 } /* 荊朴 => 荊璞 */, {"荐", "薦", -1 } /* 荐 => 薦 */, {"荙", "薘", -1 } /* 荙 => 薘 */, {"荚", "莢", -1 } /* 荚 => 莢 */, {"荛", "蕘", -1 } /* 荛 => 蕘 */, {"荜", "蓽", -1 } /* 荜 => 蓽 */, {"荞", "蕎", -1 } /* 荞 => 蕎 */, {"荟", "薈", -1 } /* 荟 => 薈 */, {"荠", "薺", -1 } /* 荠 => 薺 */, {"荡", "蕩", -1 } /* 荡 => 蕩 */, {"荡口", "盪口", -1 } /* 荡口 => 盪口 */, {"荡女", "蕩女", -1 } /* 荡女 => 蕩女 */, {"荡妇", "蕩婦", -1 } /* 荡妇 => 蕩婦 */, {"荡寇", "蕩寇", -1 } /* 荡寇 => 蕩寇 */, {"荡平", "蕩平", -1 } /* 荡平 => 蕩平 */, {"荡开", "盪開", -1 } /* 荡开 => 盪開 */, {"荡来荡去", "蕩來蕩去", -1 } /* 荡来荡去 => 蕩來蕩去 */, {"荡气回阳", "蕩氣迴陽", -1 } /* 荡气回阳 => 蕩氣迴陽 */, {"荡涤", "蕩滌", -1 } /* 荡涤 => 蕩滌 */, {"荡漾", "蕩漾", -1 } /* 荡漾 => 蕩漾 */, {"荡然", "蕩然", -1 } /* 荡然 => 蕩然 */, {"荡秋千", "盪鞦韆", -1 } /* 荡秋千 => 盪鞦韆 */, {"荡舟", "蕩舟", -1 } /* 荡舟 => 蕩舟 */, {"荡舟", "盪舟", -1 } /* 荡舟 => 盪舟 */, {"荡船", "蕩船", -1 } /* 荡船 => 蕩船 */, {"荡荡", "蕩蕩", -1 } /* 荡荡 => 蕩蕩 */, {"荣", "榮", -1 } /* 荣 => 榮 */, {"荤", "葷", -1 } /* 荤 => 葷 */, {"荥", "滎", -1 } /* 荥 => 滎 */, {"荦", "犖", -1 } /* 荦 => 犖 */, {"荧", "熒", -1 } /* 荧 => 熒 */, {"荧光", "螢光", -1 } /* 荧光 => 螢光 */, {"荧屏", "螢屏", -1 } /* 荧屏 => 螢屏 */, {"荧幕", "螢幕", -1 } /* 荧幕 => 螢幕 */, {"荨", "蕁", -1 } /* 荨 => 蕁 */, {"荩", "藎", -1 } /* 荩 => 藎 */, {"荪", "蓀", -1 } /* 荪 => 蓀 */, {"荫", "蔭", -1 } /* 荫 => 蔭 */, {"荬", "蕒", -1 } /* 荬 => 蕒 */, {"荭", "葒", -1 } /* 荭 => 葒 */, {"荮", "葤", -1 } /* 荮 => 葤 */, {"药", "藥", -1 } /* 药 => 藥 */, {"药丸", "藥丸", -1 } /* 药丸 => 藥丸 */, {"药典", "藥典", -1 } /* 药典 => 藥典 */, {"药到命除", "藥到命除", -1 } /* 药到命除 => 藥到命除 */, {"药到病除", "藥到病除", -1 } /* 药到病除 => 藥到病除 */, {"药制", "藥製", -1 } /* 药制 => 藥製 */, {"药剂", "藥劑", -1 } /* 药剂 => 藥劑 */, {"药力", "藥力", -1 } /* 药力 => 藥力 */, {"药包", "藥包", -1 } /* 药包 => 藥包 */, {"药医学系", "藥醫學系", -1 } /* 药医学系 => 藥醫學系 */, {"药单", "藥單", -1 } /* 药单 => 藥單 */, {"药味", "藥味", -1 } /* 药味 => 藥味 */, {"药品", "藥品", -1 } /* 药品 => 藥品 */, {"药商", "藥商", -1 } /* 药商 => 藥商 */, {"药学", "藥學", -1 } /* 药学 => 藥學 */, {"药局", "藥局", -1 } /* 药局 => 藥局 */, {"药师", "藥師", -1 } /* 药师 => 藥師 */, {"药店", "藥店", -1 } /* 药店 => 藥店 */, {"药引", "藥引", -1 } /* 药引 => 藥引 */, {"药性", "藥性", -1 } /* 药性 => 藥性 */, {"药房", "藥房", -1 } /* 药房 => 藥房 */, {"药效", "藥效", -1 } /* 药效 => 藥效 */, {"药方", "藥方", -1 } /* 药方 => 藥方 */, {"药材", "藥材", -1 } /* 药材 => 藥材 */, {"药棉", "藥棉", -1 } /* 药棉 => 藥棉 */, {"药水", "藥水", -1 } /* 药水 => 藥水 */, {"药液", "藥液", -1 } /* 药液 => 藥液 */, {"药片", "藥片", -1 } /* 药片 => 藥片 */, {"药物", "藥物", -1 } /* 药物 => 藥物 */, {"药王", "藥王", -1 } /* 药王 => 藥王 */, {"药理", "藥理", -1 } /* 药理 => 藥理 */, {"药瓶", "藥瓶", -1 } /* 药瓶 => 藥瓶 */, {"药用", "藥用", -1 } /* 药用 => 藥用 */, {"药石", "藥石", -1 } /* 药石 => 藥石 */, {"药科", "藥科", -1 } /* 药科 => 藥科 */, {"药签", "藥籤", -1 } /* 药签 => 藥籤 */, {"药箱", "藥箱", -1 } /* 药箱 => 藥箱 */, {"药簽", "藥籤", -1 } /* 药簽 => 藥籤 */, {"药粉", "藥粉", -1 } /* 药粉 => 藥粉 */, {"药罐", "藥罐", -1 } /* 药罐 => 藥罐 */, {"药而愈", "藥而癒", -1 } /* 药而愈 => 藥而癒 */, {"药膏", "藥膏", -1 } /* 药膏 => 藥膏 */, {"药草", "藥草", -1 } /* 药草 => 藥草 */, {"药行", "藥行", -1 } /* 药行 => 藥行 */, {"药酒", "藥酒", -1 } /* 药酒 => 藥酒 */, {"药量", "藥量", -1 } /* 药量 => 藥量 */, {"药针", "藥針", -1 } /* 药针 => 藥針 */, {"药铺", "藥鋪", -1 } /* 药铺 => 藥鋪 */, {"药饵", "藥餌", -1 } /* 药饵 => 藥餌 */, {"荷属安的列斯", "荷屬安地列斯", -1 } /* 荷属安的列斯 => 荷屬安地列斯 */, {"荷里活", "荷里活", -1 } /* 荷里活 => 荷里活 */, {"莅", "蒞", -1 } /* 莅 => 蒞 */, {"莒光周", "莒光週", -1 } /* 莒光周 => 莒光週 */, {"莫余毒也", "莫余毒也", -1 } /* 莫余毒也 => 莫余毒也 */, {"莫里", "莫里", -1 } /* 莫里 => 莫里 */, {"莫里斯", "莫里斯", -1 } /* 莫里斯 => 莫里斯 */, {"莱", "萊", -1 } /* 莱 => 萊 */, {"莱因克尔", "连尼嘉", -1 } /* 莱因克尔 => 连尼嘉 */, {"莲", "蓮", -1 } /* 莲 => 蓮 */, {"莳", "蒔", -1 } /* 莳 => 蒔 */, {"莴", "萵", -1 } /* 莴 => 萵 */, {"莶", "薟", -1 } /* 莶 => 薟 */, {"获", "獲", -1 } /* 获 => 獲 */, {"获准", "獲准", -1 } /* 获准 => 獲准 */, {"莸", "蕕", -1 } /* 莸 => 蕕 */, {"莹", "瑩", -1 } /* 莹 => 瑩 */, {"莺", "鶯", -1 } /* 莺 => 鶯 */, {"莼", "蒓", -1 } /* 莼 => 蒓 */, {"莽荡", "莽蕩", -1 } /* 莽荡 => 莽蕩 */, {"菌丝体", "菌絲體", -1 } /* 菌丝体 => 菌絲體 */, {"菜干", "菜乾", -1 } /* 菜干 => 菜乾 */, {"菸鹼", "菸鹼", -1 } /* 菸鹼 => 菸鹼 */, {"萚", "蘀", -1 } /* 萚 => 蘀 */, {"萝", "蘿", -1 } /* 萝 => 蘿 */, {"萝卜", "蘿蔔", -1 } /* 萝卜 => 蘿蔔 */, {"萝卜干", "蘿蔔乾", -1 } /* 萝卜干 => 蘿蔔乾 */, {"萤", "螢", -1 } /* 萤 => 螢 */, {"营", "營", -1 } /* 营 => 營 */, {"营干", "營幹", -1 } /* 营干 => 營幹 */, {"萦", "縈", -1 } /* 萦 => 縈 */, {"萦回", "縈迴", -1 } /* 萦回 => 縈迴 */, {"萧", "蕭", -1 } /* 萧 => 蕭 */, {"萧墙", "蕭牆", -1 } /* 萧墙 => 蕭牆 */, {"萨", "薩", -1 } /* 萨 => 薩 */, {"落发", "落髮", -1 } /* 落发 => 落髮 */, {"葑菲之采", "葑菲之采", -1 } /* 葑菲之采 => 葑菲之采 */, {"葡萄干", "葡萄乾", -1 } /* 葡萄干 => 葡萄乾 */, {"葱", "蔥", -1 } /* 葱 => 蔥 */, {"葵涌", "葵涌", -1 } /* 葵涌 => 葵涌 */, {"蒇", "蕆", -1 } /* 蒇 => 蕆 */, {"蒉", "蕢", -1 } /* 蒉 => 蕢 */, {"蒋", "蔣", -1 } /* 蒋 => 蔣 */, {"蒋干", "蔣幹", -1 } /* 蒋干 => 蔣幹 */, {"蒌", "蔞", -1 } /* 蒌 => 蔞 */, {"蒙住", "矇住", -1 } /* 蒙住 => 矇住 */, {"蒙叟", "矇叟", -1 } /* 蒙叟 => 矇叟 */, {"蒙头转", "矇頭轉", -1 } /* 蒙头转 => 矇頭轉 */, {"蒙懂", "懞懂", -1 } /* 蒙懂 => 懞懂 */, {"蒙敝", "矇蔽", -1 } /* 蒙敝 => 矇蔽 */, {"蒙昧", "矇昧", -1 } /* 蒙昧 => 矇昧 */, {"蒙昧无知", "矇昧無知", -1 } /* 蒙昧无知 => 矇昧無知 */, {"蒙松雨", "矇松雨", -1 } /* 蒙松雨 => 矇松雨 */, {"蒙混", "矇混", -1 } /* 蒙混 => 矇混 */, {"蒙眬", "矇矓", -1 } /* 蒙眬 => 矇矓 */, {"蒙瞀", "矇瞀", -1 } /* 蒙瞀 => 矇瞀 */, {"蒙瞍", "矇瞍", -1 } /* 蒙瞍 => 矇瞍 */, {"蒙瞢", "矇瞢", -1 } /* 蒙瞢 => 矇瞢 */, {"蒙瞽", "矇瞽", -1 } /* 蒙瞽 => 矇瞽 */, {"蒙聩", "矇聵", -1 } /* 蒙聩 => 矇聵 */, {"蒙胧", "矇矓", -1 } /* 蒙胧 => 矇矓 */, {"蒙蔽", "矇蔽", -1 } /* 蒙蔽 => 矇蔽 */, {"蒙雾", "濛霧", -1 } /* 蒙雾 => 濛霧 */, {"蒙骗", "矇騙", -1 } /* 蒙骗 => 矇騙 */, {"蒲席", "蒲蓆", -1 } /* 蒲席 => 蒲蓆 */, {"蒸干", "蒸乾", -1 } /* 蒸干 => 蒸乾 */, {"蓄发", "蓄髮", -1 } /* 蓄发 => 蓄髮 */, {"蓄须", "蓄鬚", -1 } /* 蓄须 => 蓄鬚 */, {"蓝", "藍", -1 } /* 蓝 => 藍 */, {"蓝于", "藍於", -1 } /* 蓝于 => 藍於 */, {"蓝牙", "藍芽", -1 } /* 蓝牙 => 藍芽 */, {"蓝采和", "藍采和", -1 } /* 蓝采和 => 藍采和 */, {"蓟", "薊", -1 } /* 蓟 => 薊 */, {"蓠", "蘺", -1 } /* 蓠 => 蘺 */, {"蓣", "蕷", -1 } /* 蓣 => 蕷 */, {"蓥", "鎣", -1 } /* 蓥 => 鎣 */, {"蓦", "驀", -1 } /* 蓦 => 驀 */, {"蓬发", "蓬髮", -1 } /* 蓬发 => 蓬髮 */, {"蓬松", "蓬鬆", -1 } /* 蓬松 => 蓬鬆 */, {"蓬蓬松松", "蓬蓬鬆鬆", -1 } /* 蓬蓬松松 => 蓬蓬鬆鬆 */, {"蔂", "虆", -1 } /* 蔂 => 虆 */, {"蔑", "衊", -1 } /* 蔑 => 衊 */, {"蔑", "蔑", -1 } /* 蔑 => 蔑 */, {"蔷", "薔", -1 } /* 蔷 => 薔 */, {"蔹", "蘞", -1 } /* 蔹 => 蘞 */, {"蔺", "藺", -1 } /* 蔺 => 藺 */, {"蔼", "藹", -1 } /* 蔼 => 藹 */, {"蕰", "薀", -1 } /* 蕰 => 薀 */, {"蕲", "蘄", -1 } /* 蕲 => 蘄 */, {"蕴", "藴", -1 } /* 蕴 => 藴 */, {"蕴借", "蘊藉", -1 } /* 蕴借 => 蘊藉 */, {"蕴函", "蘊涵", -1 } /* 蕴函 => 蘊涵 */, {"蕴含", "蘊含", -1 } /* 蕴含 => 蘊含 */, {"蕴含着", "蘊含著", -1 } /* 蕴含着 => 蘊含著 */, {"蕴涵", "蘊涵", -1 } /* 蕴涵 => 蘊涵 */, {"蕴涵着", "蘊涵著", -1 } /* 蕴涵着 => 蘊涵著 */, {"蕴结", "蘊結", -1 } /* 蕴结 => 蘊結 */, {"蕴育", "蘊育", -1 } /* 蕴育 => 蘊育 */, {"蕴藉", "蘊藉", -1 } /* 蕴藉 => 蘊藉 */, {"蕴藏", "蘊藏", -1 } /* 蕴藏 => 蘊藏 */, {"蕴酿", "蘊釀", -1 } /* 蕴酿 => 蘊釀 */, {"蕴酿", "醞釀", -1 } /* 蕴酿 => 醞釀 */, {"薄干", "薄幹", -1 } /* 薄干 => 薄幹 */, {"薄幸", "薄倖", -1 } /* 薄幸 => 薄倖 */, {"薮", "藪", -1 } /* 薮 => 藪 */, {"藏于", "藏於", -1 } /* 藏于 => 藏於 */, {"藓", "蘚", -1 } /* 藓 => 蘚 */, {"藤制", "藤製", -1 } /* 藤制 => 藤製 */, {"藤条", "籐條", -1 } /* 藤条 => 籐條 */, {"藤椅", "籐椅", -1 } /* 藤椅 => 籐椅 */, {"蘖", "櫱", -1 } /* 蘖 => 櫱 */, {"虎咽", "虎嚥", -1 } /* 虎咽 => 虎嚥 */, {"虎须", "虎鬚", -1 } /* 虎须 => 虎鬚 */, {"虏", "虜", -1 } /* 虏 => 虜 */, {"虑", "慮", -1 } /* 虑 => 慮 */, {"虚", "虛", -1 } /* 虚 => 虛 */, {"虚线", "虛線", -1 } /* 虚线 => 虛線 */, {"虫", "蟲", -1 } /* 虫 => 蟲 */, {"虬", "虯", -1 } /* 虬 => 虯 */, {"虬须", "虯鬚", -1 } /* 虬须 => 虯鬚 */, {"虮", "蟣", -1 } /* 虮 => 蟣 */, {"虽", "雖", -1 } /* 虽 => 雖 */, {"虾", "蝦", -1 } /* 虾 => 蝦 */, {"虿", "蠆", -1 } /* 虿 => 蠆 */, {"蚀", "蝕", -1 } /* 蚀 => 蝕 */, {"蚁", "蟻", -1 } /* 蚁 => 蟻 */, {"蚂", "螞", -1 } /* 蚂 => 螞 */, {"蚌壳", "蚌殼", -1 } /* 蚌壳 => 蚌殼 */, {"蚕", "蠶", -1 } /* 蚕 => 蠶 */, {"蚬", "蜆", -1 } /* 蚬 => 蜆 */, {"蛇发女妖", "蛇髮女妖", -1 } /* 蛇发女妖 => 蛇髮女妖 */, {"蛊", "蠱", -1 } /* 蛊 => 蠱 */, {"蛋卷", "蛋捲", -1 } /* 蛋卷 => 蛋捲 */, {"蛋壳", "蛋殼", -1 } /* 蛋壳 => 蛋殼 */, {"蛋家", "蜑家", -1 } /* 蛋家 => 蜑家 */, {"蛎", "蠣", -1 } /* 蛎 => 蠣 */, {"蛏", "蟶", -1 } /* 蛏 => 蟶 */, {"蛏干", "蟶乾", -1 } /* 蛏干 => 蟶乾 */, {"蛩音", "跫音", -1 } /* 蛩音 => 跫音 */, {"蛮", "蠻", -1 } /* 蛮 => 蠻 */, {"蛮干", "蠻幹", -1 } /* 蛮干 => 蠻幹 */, {"蛮干淨", "蠻乾淨", -1 } /* 蛮干淨 => 蠻乾淨 */, {"蛮干爽", "蠻乾爽", -1 } /* 蛮干爽 => 蠻乾爽 */, {"蛰", "蟄", -1 } /* 蛰 => 蟄 */, {"蛱", "蛺", -1 } /* 蛱 => 蛺 */, {"蛲", "蟯", -1 } /* 蛲 => 蟯 */, {"蛳", "螄", -1 } /* 蛳 => 螄 */, {"蛴", "蠐", -1 } /* 蛴 => 蠐 */, {"蜂后", "蜂后", -1 } /* 蜂后 => 蜂后 */, {"蜂蜡", "蜂蠟", -1 } /* 蜂蜡 => 蜂蠟 */, {"蜕", "蛻", -1 } /* 蜕 => 蛻 */, {"蜗", "蝸", -1 } /* 蜗 => 蝸 */, {"蜜蜡", "蜜蠟", -1 } /* 蜜蜡 => 蜜蠟 */, {"蜡", "蠟", -1 } /* 蜡 => 蠟 */, {"蜡书", "蠟書", -1 } /* 蜡书 => 蠟書 */, {"蜡人", "蠟人", -1 } /* 蜡人 => 蠟人 */, {"蜡像", "蠟像", -1 } /* 蜡像 => 蠟像 */, {"蜡板", "蠟板", -1 } /* 蜡板 => 蠟板 */, {"蜡染", "蠟染", -1 } /* 蜡染 => 蠟染 */, {"蜡梅", "蠟梅", -1 } /* 蜡梅 => 蠟梅 */, {"蜡油", "蠟油", -1 } /* 蜡油 => 蠟油 */, {"蜡泪", "蠟淚", -1 } /* 蜡泪 => 蠟淚 */, {"蜡炬", "蠟炬", -1 } /* 蜡炬 => 蠟炬 */, {"蜡烛", "蠟燭", -1 } /* 蜡烛 => 蠟燭 */, {"蜡笔", "蠟筆", -1 } /* 蜡笔 => 蠟筆 */, {"蜡纸", "蠟紙", -1 } /* 蜡纸 => 蠟紙 */, {"蝇", "蠅", -1 } /* 蝇 => 蠅 */, {"蝈", "蟈", -1 } /* 蝈 => 蟈 */, {"蝉", "蟬", -1 } /* 蝉 => 蟬 */, {"蝨目", "虱目", -1 } /* 蝨目 => 虱目 */, {"蝼", "螻", -1 } /* 蝼 => 螻 */, {"蝾", "蠑", -1 } /* 蝾 => 蠑 */, {"螀", "螿", -1 } /* 螀 => 螿 */, {"螨", "蟎", -1 } /* 螨 => 蟎 */, {"螺线", "螺線", -1 } /* 螺线 => 螺線 */, {"蟏", "蠨", -1 } /* 蟏 => 蠨 */, {"蟹螫", "蟹螯", -1 } /* 蟹螫 => 蟹螯 */, {"蠁干", "蠁幹", -1 } /* 蠁干 => 蠁幹 */, {"血已干", "血已乾", -1 } /* 血已干 => 血已乾 */, {"血才干", "血才乾", -1 } /* 血才干 => 血才乾 */, {"衅", "釁", -1 } /* 衅 => 釁 */, {"行事历", "行事曆", -1 } /* 行事历 => 行事曆 */, {"行凶", "行兇", -1 } /* 行凶 => 行兇 */, {"行尸", "行尸", -1 } /* 行尸 => 行尸 */, {"行李卷", "行李捲", -1 } /* 行李卷 => 行李捲 */, {"行游", "行遊", -1 } /* 行游 => 行遊 */, {"衔", "銜", -1 } /* 衔 => 銜 */, {"衔土", "啣土", -1 } /* 衔土 => 啣土 */, {"衔泥", "啣泥", -1 } /* 衔泥 => 啣泥 */, {"衔环", "啣環", -1 } /* 衔环 => 啣環 */, {"衔草", "啣草", -1 } /* 衔草 => 啣草 */, {"街头", "街頭", -1 } /* 街头 => 街頭 */, {"衣物已干", "衣物已乾", -1 } /* 衣物已干 => 衣物已乾 */, {"衣物渐干", "衣物漸乾", -1 } /* 衣物渐干 => 衣物漸乾 */, {"衣绣昼行", "衣繡晝行", -1 } /* 衣绣昼行 => 衣繡晝行 */, {"衣衫已干", "衣衫已乾", -1 } /* 衣衫已干 => 衣衫已乾 */, {"衣驱", "衣袪", -1 } /* 衣驱 => 衣袪 */, {"补", "補", -1 } /* 补 => 補 */, {"补注", "補註", -1 } /* 补注 => 補註 */, {"补药", "補藥", -1 } /* 补药 => 補藥 */, {"表厂", "錶廠", -1 } /* 表厂 => 錶廠 */, {"表壳", "錶殼", -1 } /* 表壳 => 錶殼 */, {"表带", "錶帶", -1 } /* 表带 => 錶帶 */, {"表店", "錶店", -1 } /* 表店 => 錶店 */, {"表征", "表徵", -1 } /* 表征 => 表徵 */, {"表殼", "錶殼", -1 } /* 表殼 => 錶殼 */, {"表演欲", "表演慾", -1 } /* 表演欲 => 表演慾 */, {"表炼", "錶鏈", -1 } /* 表炼 => 錶鏈 */, {"表盘", "錶盤", -1 } /* 表盘 => 錶盤 */, {"表范", "表範", -1 } /* 表范 => 表範 */, {"表蒙子", "錶蒙子", -1 } /* 表蒙子 => 錶蒙子 */, {"表针", "錶針", -1 } /* 表针 => 錶針 */, {"表链", "錶鏈", -1 } /* 表链 => 錶鏈 */, {"衫毕挺", "衫筆挺", -1 } /* 衫毕挺 => 衫筆挺 */, {"衬", "襯", -1 } /* 衬 => 襯 */, {"衬线", "襯線", -1 } /* 衬线 => 襯線 */, {"衮", "袞", -1 } /* 衮 => 袞 */, {"袄", "襖", -1 } /* 袄 => 襖 */, {"袅", "裊", -1 } /* 袅 => 裊 */, {"袅", "嫋", -1 } /* 袅 => 嫋 */, {"袅雄", "梟雄", -1 } /* 袅雄 => 梟雄 */, {"袆", "褘", -1 } /* 袆 => 褘 */, {"袋里", "袋裏", -1 } /* 袋里 => 袋裏 */, {"袖一卷", "袖一捲", -1 } /* 袖一卷 => 袖一捲 */, {"袜", "襪", -1 } /* 袜 => 襪 */, {"袜线", "襪線", -1 } /* 袜线 => 襪線 */, {"被卷", "被捲", -1 } /* 被卷 => 被捲 */, {"被发左衽", "被髮左衽", -1 } /* 被发左衽 => 被髮左衽 */, {"被发文身", "被髮文身", -1 } /* 被发文身 => 被髮文身 */, {"被发缨冠", "被髮纓冠", -1 } /* 被发缨冠 => 被髮纓冠 */, {"被复", "被覆", -1 } /* 被复 => 被覆 */, {"被干", "被幹", 59 } /* 被干 => 被幹 */, {"被并", "被併", -1 } /* 被并 => 被併 */, {"被褥", "被縟", -1 } /* 被褥 => 被縟 */, {"袭", "襲", -1 } /* 袭 => 襲 */, {"袭卷", "襲捲", -1 } /* 袭卷 => 襲捲 */, {"袯", "襏", -1 } /* 袯 => 襏 */, {"裁判员", "球證", -1 } /* 裁判员 => 球證 */, {"裁制", "裁製", -1 } /* 裁制 => 裁製 */, {"裁并", "裁併", -1 } /* 裁并 => 裁併 */, {"装", "裝", -1 } /* 装 => 裝 */, {"装璜", "裝潢", -1 } /* 装璜 => 裝潢 */, {"裆", "襠", -1 } /* 裆 => 襠 */, {"裈", "褌", -1 } /* 裈 => 褌 */, {"裕余", "裕餘", -1 } /* 裕余 => 裕餘 */, {"裙摆", "裙襬", -1 } /* 裙摆 => 裙襬 */, {"裢", "褳", -1 } /* 裢 => 褳 */, {"裣", "襝", -1 } /* 裣 => 襝 */, {"裤", "褲", -1 } /* 裤 => 褲 */, {"裥", "襇", -1 } /* 裥 => 襇 */, {"裹尸", "裹尸", -1 } /* 裹尸 => 裹尸 */, {"裹扎", "裹紮", -1 } /* 裹扎 => 裹紮 */, {"褐发", "褐髮", -1 } /* 褐发 => 褐髮 */, {"褛", "褸", -1 } /* 褛 => 褸 */, {"褴", "襤", -1 } /* 褴 => 襤 */, {"褴缕", "襤褸", -1 } /* 褴缕 => 襤褸 */, {"西冲", "西衝", -1 } /* 西冲 => 西衝 */, {"西历", "西曆", -1 } /* 西历 => 西曆 */, {"西后", "西后", -1 } /* 西后 => 西后 */, {"西岳", "西嶽", -1 } /* 西岳 => 西嶽 */, {"西弗吉尼亚", "西維吉尼亞", -1 } /* 西弗吉尼亚 => 西維吉尼亞 */, {"西昆", "西崑", -1 } /* 西昆 => 西崑 */, {"西游", "西遊", -1 } /* 西游 => 西遊 */, {"西线", "西線", -1 } /* 西线 => 西線 */, {"西药", "西藥", -1 } /* 西药 => 西藥 */, {"西装毕挺", "西裝筆挺", -1 } /* 西装毕挺 => 西裝筆挺 */, {"西里", "西里", 60 } /* 西里 => 西里 */, {"要么", "要麼", -1 } /* 要么 => 要麼 */, {"要冲", "要衝", -1 } /* 要冲 => 要衝 */, {"要干了", "要乾了", -1 } /* 要干了 => 要乾了 */, {"要麼", "要麼", -1 } /* 要麼 => 要麼 */, {"覆水难收", "覆水難收", -1 } /* 覆水难收 => 覆水難收 */, {"覆车之戒", "覆車之戒", -1 } /* 覆车之戒 => 覆車之戒 */, {"见", "見", -1 } /* 见 => 見 */, {"见复", "見覆", -1 } /* 见复 => 見覆 */, {"观", "觀", -1 } /* 观 => 觀 */, {"观采", "觀採", -1 } /* 观采 => 觀採 */, {"觃", "覎", -1 } /* 觃 => 覎 */, {"规", "規", -1 } /* 规 => 規 */, {"规范", "規範", -1 } /* 规范 => 規範 */, {"觅", "覓", -1 } /* 觅 => 覓 */, {"视", "視", -1 } /* 视 => 視 */, {"视线", "視線", -1 } /* 视线 => 視線 */, {"觇", "覘", -1 } /* 觇 => 覘 */, {"览", "覽", -1 } /* 览 => 覽 */, {"觉", "覺", -1 } /* 觉 => 覺 */, {"觊", "覬", -1 } /* 觊 => 覬 */, {"觊幸", "覬倖", -1 } /* 觊幸 => 覬倖 */, {"觋", "覡", -1 } /* 觋 => 覡 */, {"觌", "覿", -1 } /* 觌 => 覿 */, {"觍", "覥", -1 } /* 觍 => 覥 */, {"觎", "覦", -1 } /* 觎 => 覦 */, {"觏", "覯", -1 } /* 觏 => 覯 */, {"觐", "覲", -1 } /* 觐 => 覲 */, {"觑", "覷", -1 } /* 觑 => 覷 */, {"觞", "觴", -1 } /* 觞 => 觴 */, {"觞子", "殤子", -1 } /* 觞子 => 殤子 */, {"解簽", "解籤", -1 } /* 解簽 => 解籤 */, {"解药", "解藥", -1 } /* 解药 => 解藥 */, {"触", "觸", -1 } /* 触 => 觸 */, {"触须", "觸鬚", -1 } /* 触须 => 觸鬚 */, {"觯", "觶", -1 } /* 觯 => 觶 */, {"訚", "誾", -1 } /* 訚 => 誾 */, {"詟", "讋", -1 } /* 詟 => 讋 */, {"誉", "譽", -1 } /* 誉 => 譽 */, {"誊", "謄", -1 } /* 誊 => 謄 */, {"讠", "訁", -1 } /* 讠 => 訁 */, {"计", "計", -1 } /* 计 => 計 */, {"订", "訂", -1 } /* 订 => 訂 */, {"订制", "訂製", -1 } /* 订制 => 訂製 */, {"讣", "訃", -1 } /* 讣 => 訃 */, {"认", "認", -1 } /* 认 => 認 */, {"讥", "譏", -1 } /* 讥 => 譏 */, {"讦", "訐", -1 } /* 讦 => 訐 */, {"讧", "訌", -1 } /* 讧 => 訌 */, {"讨", "討", -1 } /* 讨 => 討 */, {"让", "讓", -1 } /* 让 => 讓 */, {"讪", "訕", -1 } /* 讪 => 訕 */, {"讫", "訖", -1 } /* 讫 => 訖 */, {"讬", "託", -1 } /* 讬 => 託 */, {"训", "訓", -1 } /* 训 => 訓 */, {"议", "議", -1 } /* 议 => 議 */, {"讯", "訊", -1 } /* 讯 => 訊 */, {"记", "記", -1 } /* 记 => 記 */, {"记于", "記於", -1 } /* 记于 => 記於 */, {"讱", "訒", -1 } /* 讱 => 訒 */, {"讲", "講", -1 } /* 讲 => 講 */, {"讳", "諱", -1 } /* 讳 => 諱 */, {"讴", "謳", -1 } /* 讴 => 謳 */, {"讵", "詎", -1 } /* 讵 => 詎 */, {"讶", "訝", -1 } /* 讶 => 訝 */, {"讷", "訥", -1 } /* 讷 => 訥 */, {"许", "許", -1 } /* 许 => 許 */, {"讹", "訛", -1 } /* 讹 => 訛 */, {"论", "論", -1 } /* 论 => 論 */, {"讻", "訩", -1 } /* 讻 => 訩 */, {"讼", "訟", -1 } /* 讼 => 訟 */, {"讽", "諷", -1 } /* 讽 => 諷 */, {"设", "設", -1 } /* 设 => 設 */, {"访", "訪", -1 } /* 访 => 訪 */, {"诀", "訣", -1 } /* 诀 => 訣 */, {"证", "證", -1 } /* 证 => 證 */, {"诂", "詁", -1 } /* 诂 => 詁 */, {"诃", "訶", -1 } /* 诃 => 訶 */, {"评", "評", -1 } /* 评 => 評 */, {"评击", "抨擊", -1 } /* 评击 => 抨擊 */, {"评注", "評註", -1 } /* 评注 => 評註 */, {"诅", "詛", -1 } /* 诅 => 詛 */, {"识", "識", -1 } /* 识 => 識 */, {"诇", "詗", -1 } /* 诇 => 詗 */, {"诈", "詐", -1 } /* 诈 => 詐 */, {"诉", "訴", -1 } /* 诉 => 訴 */, {"诉说着", "訴說著", -1 } /* 诉说着 => 訴說著 */, {"诊", "診", -1 } /* 诊 => 診 */, {"诋", "詆", -1 } /* 诋 => 詆 */, {"诌", "謅", -1 } /* 诌 => 謅 */, {"词", "詞", -1 } /* 词 => 詞 */, {"词余", "詞餘", -1 } /* 词余 => 詞餘 */, {"词干", "詞幹", -1 } /* 词干 => 詞幹 */, {"词汇", "詞彙", -1 } /* 词汇 => 詞彙 */, {"词采", "詞采", -1 } /* 词采 => 詞采 */, {"诎", "詘", -1 } /* 诎 => 詘 */, {"诏", "詔", -1 } /* 诏 => 詔 */, {"诐", "詖", -1 } /* 诐 => 詖 */, {"译", "譯", -1 } /* 译 => 譯 */, {"译注", "譯註", -1 } /* 译注 => 譯註 */, {"诒", "詒", -1 } /* 诒 => 詒 */, {"诓", "誆", -1 } /* 诓 => 誆 */, {"诔", "誄", -1 } /* 诔 => 誄 */, {"试", "試", -1 } /* 试 => 試 */, {"试药", "試藥", -1 } /* 试药 => 試藥 */, {"诖", "詿", -1 } /* 诖 => 詿 */, {"诗", "詩", -1 } /* 诗 => 詩 */, {"诗云", "詩云", -1 } /* 诗云 => 詩云 */, {"诗余", "詩餘", -1 } /* 诗余 => 詩餘 */, {"诘", "詰", -1 } /* 诘 => 詰 */, {"诙", "詼", -1 } /* 诙 => 詼 */, {"诚", "誠", -1 } /* 诚 => 誠 */, {"诚征", "誠徵", -1 } /* 诚征 => 誠徵 */, {"诛", "誅", -1 } /* 诛 => 誅 */, {"诜", "詵", -1 } /* 诜 => 詵 */, {"话", "話", -1 } /* 话 => 話 */, {"话云", "話云", -1 } /* 话云 => 話云 */, {"诞", "誕", -1 } /* 诞 => 誕 */, {"诟", "詬", -1 } /* 诟 => 詬 */, {"诠", "詮", -1 } /* 诠 => 詮 */, {"诡", "詭", -1 } /* 诡 => 詭 */, {"询", "詢", -1 } /* 询 => 詢 */, {"诣", "詣", -1 } /* 诣 => 詣 */, {"诤", "諍", -1 } /* 诤 => 諍 */, {"该", "該", -1 } /* 该 => 該 */, {"详", "詳", -1 } /* 详 => 詳 */, {"详征", "詳徵", -1 } /* 详征 => 詳徵 */, {"详注", "詳註", -1 } /* 详注 => 詳註 */, {"诧", "詫", -1 } /* 诧 => 詫 */, {"诨", "諢", -1 } /* 诨 => 諢 */, {"诩", "詡", -1 } /* 诩 => 詡 */, {"诪", "譸", -1 } /* 诪 => 譸 */, {"诫", "誡", -1 } /* 诫 => 誡 */, {"诬", "誣", -1 } /* 诬 => 誣 */, {"诬蔑", "誣衊", -1 } /* 诬蔑 => 誣衊 */, {"语", "語", -1 } /* 语 => 語 */, {"语云", "語云", -1 } /* 语云 => 語云 */, {"语汇", "語彙", -1 } /* 语汇 => 語彙 */, {"诮", "誚", -1 } /* 诮 => 誚 */, {"误", "誤", -1 } /* 误 => 誤 */, {"误冲", "誤衝", -1 } /* 误冲 => 誤衝 */, {"诰", "誥", -1 } /* 诰 => 誥 */, {"诱", "誘", -1 } /* 诱 => 誘 */, {"诱发型", "誘發型", -1 } /* 诱发型 => 誘發型 */, {"诱奸", "誘姦", -1 } /* 诱奸 => 誘姦 */, {"诱欲", "誘慾", -1 } /* 诱欲 => 誘慾 */, {"诲", "誨", -1 } /* 诲 => 誨 */, {"诳", "誑", -1 } /* 诳 => 誑 */, {"说", "說", -1 } /* 说 => 說 */, {"说干便干", "說幹便幹", -1 } /* 说干便干 => 說幹便幹 */, {"说着", "說著", -1 } /* 说着 => 說著 */, {"诵", "誦", -1 } /* 诵 => 誦 */, {"诶", "誒", -1 } /* 诶 => 誒 */, {"请", "請", -1 } /* 请 => 請 */, {"请参阅", "請參閱", -1 } /* 请参阅 => 請參閱 */, {"请君入瓮", "請君入甕", -1 } /* 请君入瓮 => 請君入甕 */, {"请托", "請託", -1 } /* 请托 => 請託 */, {"诸", "諸", -1 } /* 诸 => 諸 */, {"诸余", "諸餘", -1 } /* 诸余 => 諸餘 */, {"诸候", "諸侯", -1 } /* 诸候 => 諸侯 */, {"诹", "諏", -1 } /* 诹 => 諏 */, {"诺", "諾", -1 } /* 诺 => 諾 */, {"读", "讀", -1 } /* 读 => 讀 */, {"读书三余", "讀書三余", -1 } /* 读书三余 => 讀書三余 */, {"读于", "讀於", -1 } /* 读于 => 讀於 */, {"诼", "諑", -1 } /* 诼 => 諑 */, {"诽", "誹", -1 } /* 诽 => 誹 */, {"课", "課", -1 } /* 课 => 課 */, {"课余", "課餘", -1 } /* 课余 => 課餘 */, {"课征", "課徵", -1 } /* 课征 => 課徵 */, {"诿", "諉", -1 } /* 诿 => 諉 */, {"谀", "諛", -1 } /* 谀 => 諛 */, {"谁", "誰", -1 } /* 谁 => 誰 */, {"谁干", "誰幹", -1 } /* 谁干 => 誰幹 */, {"谁干净", "誰乾淨", -1 } /* 谁干净 => 誰乾淨 */, {"谂", "諗", -1 } /* 谂 => 諗 */, {"调", "調", -1 } /* 调 => 調 */, {"调制", "調製", -1 } /* 调制 => 調製 */, {"调松", "調鬆", -1 } /* 调松 => 調鬆 */, {"谄", "諂", -1 } /* 谄 => 諂 */, {"谅", "諒", -1 } /* 谅 => 諒 */, {"谆", "諄", -1 } /* 谆 => 諄 */, {"谇", "誶", -1 } /* 谇 => 誶 */, {"谈", "談", -1 } /* 谈 => 談 */, {"谉", "讅", -1 } /* 谉 => 讅 */, {"谊", "誼", -1 } /* 谊 => 誼 */, {"谋", "謀", -1 } /* 谋 => 謀 */, {"谋干", "謀幹", -1 } /* 谋干 => 謀幹 */, {"谌", "諶", -1 } /* 谌 => 諶 */, {"谍", "諜", -1 } /* 谍 => 諜 */, {"谎", "謊", -1 } /* 谎 => 謊 */, {"谏", "諫", -1 } /* 谏 => 諫 */, {"谐", "諧", -1 } /* 谐 => 諧 */, {"谑", "謔", -1 } /* 谑 => 謔 */, {"谒", "謁", -1 } /* 谒 => 謁 */, {"谓", "謂", -1 } /* 谓 => 謂 */, {"谔", "諤", -1 } /* 谔 => 諤 */, {"谕", "諭", -1 } /* 谕 => 諭 */, {"谖", "諼", -1 } /* 谖 => 諼 */, {"谗", "讒", -1 } /* 谗 => 讒 */, {"谘", "諮", -1 } /* 谘 => 諮 */, {"谙", "諳", -1 } /* 谙 => 諳 */, {"谚", "諺", -1 } /* 谚 => 諺 */, {"谚云", "諺云", -1 } /* 谚云 => 諺云 */, {"谛", "諦", -1 } /* 谛 => 諦 */, {"谜", "謎", -1 } /* 谜 => 謎 */, {"谝", "諞", -1 } /* 谝 => 諞 */, {"谞", "諝", -1 } /* 谞 => 諝 */, {"谟", "謨", -1 } /* 谟 => 謨 */, {"谠", "讜", -1 } /* 谠 => 讜 */, {"谡", "謖", -1 } /* 谡 => 謖 */, {"谢", "謝", -1 } /* 谢 => 謝 */, {"谢绝参观", "謝絕參觀", -1 } /* 谢绝参观 => 謝絕參觀 */, {"谣", "謡", -1 } /* 谣 => 謡 */, {"谤", "謗", -1 } /* 谤 => 謗 */, {"谥", "謚", -1 } /* 谥 => 謚 */, {"谦", "謙", -1 } /* 谦 => 謙 */, {"谦于", "謙於", -1 } /* 谦于 => 謙於 */, {"谧", "謐", -1 } /* 谧 => 謐 */, {"谨", "謹", -1 } /* 谨 => 謹 */, {"谨启", "謹啟", -1 } /* 谨启 => 謹啟 */, {"谩", "謾", -1 } /* 谩 => 謾 */, {"谪", "謫", -1 } /* 谪 => 謫 */, {"谫", "譾", -1 } /* 谫 => 譾 */, {"谬", "謬", -1 } /* 谬 => 謬 */, {"谬赞", "謬讚", -1 } /* 谬赞 => 謬讚 */, {"谭", "譚", -1 } /* 谭 => 譚 */, {"谮", "譖", -1 } /* 谮 => 譖 */, {"谯", "譙", -1 } /* 谯 => 譙 */, {"谰", "讕", -1 } /* 谰 => 讕 */, {"谱", "譜", -1 } /* 谱 => 譜 */, {"谲", "譎", -1 } /* 谲 => 譎 */, {"谳", "讞", -1 } /* 谳 => 讞 */, {"谴", "譴", -1 } /* 谴 => 譴 */, {"谵", "譫", -1 } /* 谵 => 譫 */, {"谶", "讖", -1 } /* 谶 => 讖 */, {"谶悔", "懺悔", -1 } /* 谶悔 => 懺悔 */, {"谷仓", "穀倉", -1 } /* 谷仓 => 穀倉 */, {"谷场", "穀場", -1 } /* 谷场 => 穀場 */, {"谷壳", "穀殼", -1 } /* 谷壳 => 穀殼 */, {"谷子", "穀子", -1 } /* 谷子 => 穀子 */, {"谷殼", "穀殼", -1 } /* 谷殼 => 穀殼 */, {"谷物", "穀物", -1 } /* 谷物 => 穀物 */, {"谷皮", "穀皮", -1 } /* 谷皮 => 穀皮 */, {"谷神", "穀神", -1 } /* 谷神 => 穀神 */, {"谷稻", "穀稻", -1 } /* 谷稻 => 穀稻 */, {"谷米", "穀米", -1 } /* 谷米 => 穀米 */, {"谷类", "穀類", -1 } /* 谷类 => 穀類 */, {"谷粉", "穀粉", -1 } /* 谷粉 => 穀粉 */, {"谷粒", "穀粒", -1 } /* 谷粒 => 穀粒 */, {"谷粟", "穀粟", -1 } /* 谷粟 => 穀粟 */, {"谷舱", "穀艙", -1 } /* 谷舱 => 穀艙 */, {"谷苗", "穀苗", -1 } /* 谷苗 => 穀苗 */, {"谷草", "穀草", -1 } /* 谷草 => 穀草 */, {"谷贱", "穀賤", -1 } /* 谷贱 => 穀賤 */, {"谷贱伤农", "穀賤傷農", -1 } /* 谷贱伤农 => 穀賤傷農 */, {"谷道", "穀道", -1 } /* 谷道 => 穀道 */, {"谷雨", "穀雨", -1 } /* 谷雨 => 穀雨 */, {"谷麦", "穀麥", -1 } /* 谷麦 => 穀麥 */, {"豁上干", "豁上幹", -1 } /* 豁上干 => 豁上幹 */, {"豁出命干", "豁出命幹", -1 } /* 豁出命干 => 豁出命幹 */, {"豁命干", "豁命幹", -1 } /* 豁命干 => 豁命幹 */, {"豁壑", "谿壑", -1 } /* 豁壑 => 谿壑 */, {"豁死干", "豁死幹", -1 } /* 豁死干 => 豁死幹 */, {"豁起来干", "豁起來幹", -1 } /* 豁起来干 => 豁起來幹 */, {"豆制", "豆製", -1 } /* 豆制 => 豆製 */, {"豆干", "豆乾", -1 } /* 豆干 => 豆乾 */, {"豆腐干", "豆腐乾", -1 } /* 豆腐干 => 豆腐乾 */, {"豆蔻", "荳蔻", -1 } /* 豆蔻 => 荳蔻 */, {"豆鼓", "豆豉", -1 } /* 豆鼓 => 豆豉 */, {"豔后", "豔后", -1 } /* 豔后 => 豔后 */, {"象征", "象徵", 61 } /* 象征 => 象徵 */, {"象征着", "象徵著", -1 } /* 象征着 => 象徵著 */, {"豪华游", "豪華遊", -1 } /* 豪华游 => 豪華遊 */, {"豮", "豶", -1 } /* 豮 => 豶 */, {"賸余", "賸餘", -1 } /* 賸余 => 賸餘 */, {"贝", "貝", -1 } /* 贝 => 貝 */, {"贝克汉姆", "貝克漢", -1 } /* 贝克汉姆 => 貝克漢 */, {"贝壳", "貝殼", -1 } /* 贝壳 => 貝殼 */, {"贝胄", "貝冑", -1 } /* 贝胄 => 貝冑 */, {"贝里", "貝里", -1 } /* 贝里 => 貝里 */, {"贞", "貞", -1 } /* 贞 => 貞 */, {"负", "負", -1 } /* 负 => 負 */, {"负债累累", "負債纍纍", -1 } /* 负债累累 => 負債纍纍 */, {"贠", "貟", -1 } /* 贠 => 貟 */, {"贡", "貢", -1 } /* 贡 => 貢 */, {"财", "財", -1 } /* 财 => 財 */, {"财欲", "財慾", -1 } /* 财欲 => 財慾 */, {"责", "責", -1 } /* 责 => 責 */, {"贤", "賢", -1 } /* 贤 => 賢 */, {"贤后", "賢后", -1 } /* 贤后 => 賢后 */, {"败", "敗", -1 } /* 败 => 敗 */, {"败于", "敗於", -1 } /* 败于 => 敗於 */, {"账", "賬", -1 } /* 账 => 賬 */, {"货", "貨", -1 } /* 货 => 貨 */, {"质", "質", -1 } /* 质 => 質 */, {"质朴", "質朴", -1 } /* 质朴 => 質朴 */, {"质朴", "質樸", -1 } /* 质朴 => 質樸 */, {"贩", "販", -1 } /* 贩 => 販 */, {"贪", "貪", -1 } /* 贪 => 貪 */, {"贪心法", "貪進法", -1 } /* 贪心法 => 貪進法 */, {"贪欲", "貪慾", -1 } /* 贪欲 => 貪慾 */, {"贫", "貧", -1 } /* 贫 => 貧 */, {"贫于", "貧於", -1 } /* 贫于 => 貧於 */, {"贬", "貶", -1 } /* 贬 => 貶 */, {"购", "購", -1 } /* 购 => 購 */, {"购买欲", "購買慾", -1 } /* 购买欲 => 購買慾 */, {"购于", "購於", -1 } /* 购于 => 購於 */, {"购并", "購併", 62 } /* 购并 => 購併 */, {"贮", "貯", -1 } /* 贮 => 貯 */, {"贯", "貫", -1 } /* 贯 => 貫 */, {"贰", "貳", -1 } /* 贰 => 貳 */, {"贱", "賤", -1 } /* 贱 => 賤 */, {"贲", "賁", -1 } /* 贲 => 賁 */, {"贳", "貰", -1 } /* 贳 => 貰 */, {"贴", "貼", -1 } /* 贴 => 貼 */, {"贴墙", "貼牆", -1 } /* 贴墙 => 貼牆 */, {"贴志", "貼誌", -1 } /* 贴志 => 貼誌 */, {"贴着", "貼著", -1 } /* 贴着 => 貼著 */, {"贵", "貴", -1 } /* 贵 => 貴 */, {"贵干", "貴幹", -1 } /* 贵干 => 貴幹 */, {"贶", "貺", -1 } /* 贶 => 貺 */, {"贷", "貸", -1 } /* 贷 => 貸 */, {"贸", "貿", -1 } /* 贸 => 貿 */, {"费", "費", -1 } /* 费 => 費 */, {"贺", "賀", -1 } /* 贺 => 賀 */, {"贻", "貽", -1 } /* 贻 => 貽 */, {"贼", "賊", -1 } /* 贼 => 賊 */, {"贽", "贄", -1 } /* 贽 => 贄 */, {"贾", "賈", -1 } /* 贾 => 賈 */, {"贾后", "賈后", -1 } /* 贾后 => 賈后 */, {"贿", "賄", -1 } /* 贿 => 賄 */, {"赀", "貲", -1 } /* 赀 => 貲 */, {"赁", "賃", -1 } /* 赁 => 賃 */, {"赂", "賂", -1 } /* 赂 => 賂 */, {"赃", "臓", -1 } /* 赃 => 臓 */, {"资", "資", -1 } /* 资 => 資 */, {"赅", "賅", -1 } /* 赅 => 賅 */, {"赆", "贐", -1 } /* 赆 => 贐 */, {"赇", "賕", -1 } /* 赇 => 賕 */, {"赈", "賑", -1 } /* 赈 => 賑 */, {"赈饥", "賑饑", -1 } /* 赈饥 => 賑饑 */, {"赉", "賚", -1 } /* 赉 => 賚 */, {"赊", "賒", -1 } /* 赊 => 賒 */, {"赋", "賦", -1 } /* 赋 => 賦 */, {"赋于", "賦於", -1 } /* 赋于 => 賦於 */, {"赌", "賭", -1 } /* 赌 => 賭 */, {"赌台", "賭檯", -1 } /* 赌台 => 賭檯 */, {"赍", "賫", -1 } /* 赍 => 賫 */, {"赍志", "齎志", -1 } /* 赍志 => 齎志 */, {"赎", "贖", -1 } /* 赎 => 贖 */, {"赏", "賞", -1 } /* 赏 => 賞 */, {"赐", "賜", -1 } /* 赐 => 賜 */, {"赐复", "賜覆", -1 } /* 赐复 => 賜覆 */, {"赑", "贔", -1 } /* 赑 => 贔 */, {"赒", "賙", -1 } /* 赒 => 賙 */, {"赓", "賡", -1 } /* 赓 => 賡 */, {"赔", "賠", -1 } /* 赔 => 賠 */, {"赕", "賧", -1 } /* 赕 => 賧 */, {"赖", "賴", -1 } /* 赖 => 賴 */, {"赗", "賵", -1 } /* 赗 => 賵 */, {"赘", "贅", -1 } /* 赘 => 贅 */, {"赙", "賻", -1 } /* 赙 => 賻 */, {"赚", "賺", -1 } /* 赚 => 賺 */, {"赛", "賽", -1 } /* 赛 => 賽 */, {"赜", "賾", -1 } /* 赜 => 賾 */, {"赝", "贋", -1 } /* 赝 => 贋 */, {"赝品", "贗品", -1 } /* 赝品 => 贗品 */, {"赝本", "贗本", -1 } /* 赝本 => 贗本 */, {"赞", "贊", -1 } /* 赞 => 贊 */, {"赞一句", "讚一句", -1 } /* 赞一句 => 讚一句 */, {"赞一声", "讚一聲", -1 } /* 赞一声 => 讚一聲 */, {"赞一赞", "讚一讚", -1 } /* 赞一赞 => 讚一讚 */, {"赞不绝口", "讚不絕口", -1 } /* 赞不绝口 => 讚不絕口 */, {"赞两句", "讚兩句", -1 } /* 赞两句 => 讚兩句 */, {"赞个不", "讚個不", -1 } /* 赞个不 => 讚個不 */, {"赞乐", "讚樂", -1 } /* 赞乐 => 讚樂 */, {"赞了", "讚了", -1 } /* 赞了 => 讚了 */, {"赞他", "讚他", -1 } /* 赞他 => 讚他 */, {"赞仰", "讚仰", -1 } /* 赞仰 => 讚仰 */, {"赞你", "讚你", -1 } /* 赞你 => 讚你 */, {"赞佩", "讚佩", -1 } /* 赞佩 => 讚佩 */, {"赞口不", "讚口不", -1 } /* 赞口不 => 讚口不 */, {"赞叹", "讚歎", -1 } /* 赞叹 => 讚歎 */, {"赞咏", "讚詠", -1 } /* 赞咏 => 讚詠 */, {"赞声", "讚聲", -1 } /* 赞声 => 讚聲 */, {"赞她", "讚她", -1 } /* 赞她 => 讚她 */, {"赞好", "讚好", -1 } /* 赞好 => 讚好 */, {"赞妙", "讚妙", -1 } /* 赞妙 => 讚妙 */, {"赞得", "讚得", -1 } /* 赞得 => 讚得 */, {"赞您", "讚您", -1 } /* 赞您 => 讚您 */, {"赞我", "讚我", -1 } /* 赞我 => 讚我 */, {"赞扬", "讚揚", -1 } /* 赞扬 => 讚揚 */, {"赞捧", "讚捧", -1 } /* 赞捧 => 讚捧 */, {"赞歌", "讚歌", -1 } /* 赞歌 => 讚歌 */, {"赞的", "讚的", -1 } /* 赞的 => 讚的 */, {"赞美", "讚美", -1 } /* 赞美 => 讚美 */, {"赞羡", "讚羨", -1 } /* 赞羡 => 讚羨 */, {"赞羨", "讚羨", -1 } /* 赞羨 => 讚羨 */, {"赞自己", "讚自己", -1 } /* 赞自己 => 讚自己 */, {"赞著", "讚著", -1 } /* 赞著 => 讚著 */, {"赞誉", "讚譽", -1 } /* 赞誉 => 讚譽 */, {"赞许", "讚許", -1 } /* 赞许 => 讚許 */, {"赞词", "讚詞", -1 } /* 赞词 => 讚詞 */, {"赞诵", "讚誦", -1 } /* 赞诵 => 讚誦 */, {"赞赏", "讚賞", -1 } /* 赞赏 => 讚賞 */, {"赞辞", "讚辭", -1 } /* 赞辞 => 讚辭 */, {"赞过", "讚過", -1 } /* 赞过 => 讚過 */, {"赞这", "讚這", -1 } /* 赞这 => 讚這 */, {"赞道", "讚道", -1 } /* 赞道 => 讚道 */, {"赞那", "讚那", -1 } /* 赞那 => 讚那 */, {"赞颂", "讚頌", -1 } /* 赞颂 => 讚頌 */, {"赞:", "讚:", -1 } /* 赞: => 讚: */, {"赟", "贇", -1 } /* 赟 => 贇 */, {"赠", "贈", -1 } /* 赠 => 贈 */, {"赠于", "贈於", -1 } /* 赠于 => 贈於 */, {"赡", "贍", -1 } /* 赡 => 贍 */, {"赢", "贏", -1 } /* 赢 => 贏 */, {"赢余", "贏餘", -1 } /* 赢余 => 贏餘 */, {"赣", "贛", -1 } /* 赣 => 贛 */, {"赤发", "赤髮", -1 } /* 赤发 => 赤髮 */, {"赤坎", "赤崁", -1 } /* 赤坎 => 赤崁 */, {"赤绳系足", "赤繩繫足", -1 } /* 赤绳系足 => 赤繩繫足 */, {"赪", "赬", -1 } /* 赪 => 赬 */, {"赫拉", "赫拉", -1 } /* 赫拉 => 赫拉 */, {"赵", "趙", -1 } /* 赵 => 趙 */, {"赶", "趕", -1 } /* 赶 => 趕 */, {"赶制", "趕製", -1 } /* 赶制 => 趕製 */, {"起于", "起於", -1 } /* 起于 => 起於 */, {"起吊", "起吊", -1 } /* 起吊 => 起吊 */, {"起哄", "起鬨", -1 } /* 起哄 => 起鬨 */, {"起复", "起複", -1 } /* 起复 => 起複 */, {"起干", "起幹", -1 } /* 起干 => 起幹 */, {"超于", "超於", -1 } /* 超于 => 超於 */, {"超征", "超徵", -1 } /* 超征 => 超徵 */, {"越咸", "越鹹", -1 } /* 越咸 => 越鹹 */, {"越线", "越線", -1 } /* 越线 => 越線 */, {"越西", "越嶲", -1 } /* 越西 => 越嶲 */, {"趋", "趨", -1 } /* 趋 => 趨 */, {"趱", "趲", -1 } /* 趱 => 趲 */, {"趱干", "趲幹", -1 } /* 趱干 => 趲幹 */, {"趸", "躉", -1 } /* 趸 => 躉 */, {"跃", "躍", -1 } /* 跃 => 躍 */, {"跄", "蹌", -1 } /* 跄 => 蹌 */, {"跌冲", "跌衝", -1 } /* 跌冲 => 跌衝 */, {"跌荡", "跌蕩", -1 } /* 跌荡 => 跌蕩 */, {"跖骨", "蹠骨", -1 } /* 跖骨 => 蹠骨 */, {"跞", "躒", -1 } /* 跞 => 躒 */, {"跟他一斗", "跟他一鬥", -1 } /* 跟他一斗 => 跟他一鬥 */, {"跟斗", "跟斗", -1 } /* 跟斗 => 跟斗 */, {"跟斗", "觔斗", -1 } /* 跟斗 => 觔斗 */, {"跟跄", "踉蹌", -1 } /* 跟跄 => 踉蹌 */, {"路柳墙花", "路柳牆花", -1 } /* 路柳墙花 => 路柳牆花 */, {"路签", "路籤", -1 } /* 路签 => 路籤 */, {"路簽", "路籤", -1 } /* 路簽 => 路籤 */, {"路线", "路線", -1 } /* 路线 => 路線 */, {"路里", "路里", -1 } /* 路里 => 路里 */, {"跳只舞", "跳隻舞", -1 } /* 跳只舞 => 跳隻舞 */, {"跳墙", "跳牆", -1 } /* 跳墙 => 跳牆 */, {"跳梁", "跳樑", -1 } /* 跳梁 => 跳樑 */, {"跳梁小丑", "跳樑小醜", -1 } /* 跳梁小丑 => 跳樑小醜 */, {"跳梁猖獗之小丑", "跳樑猖獗之小醜", -1 } /* 跳梁猖獗之小丑 => 跳樑猖獗之小醜 */, {"跳荡", "跳蕩", -1 } /* 跳荡 => 跳蕩 */, {"跳表", "跳錶", -1 } /* 跳表 => 跳錶 */, {"践", "踐", -1 } /* 践 => 踐 */, {"践道", "棧道", -1 } /* 践道 => 棧道 */, {"跶", "躂", -1 } /* 跶 => 躂 */, {"跷", "蹺", -1 } /* 跷 => 蹺 */, {"跸", "蹕", -1 } /* 跸 => 蹕 */, {"跹", "躚", -1 } /* 跹 => 躚 */, {"跻", "躋", -1 } /* 跻 => 躋 */, {"踅门了户", "踅門瞭戶", -1 } /* 踅门了户 => 踅門瞭戶 */, {"踊", "踴", -1 } /* 踊 => 踴 */, {"踌", "躊", -1 } /* 踌 => 躊 */, {"踢踏舞", "踢躂舞", -1 } /* 踢踏舞 => 踢躂舞 */, {"踪", "蹤", -1 } /* 踪 => 蹤 */, {"踬", "躓", -1 } /* 踬 => 躓 */, {"踯", "躑", -1 } /* 踯 => 躑 */, {"蹉陀", "蹉跎", -1 } /* 蹉陀 => 蹉跎 */, {"蹑", "躡", -1 } /* 蹑 => 躡 */, {"蹒", "蹣", -1 } /* 蹒 => 蹣 */, {"蹒顸", "顢頇", -1 } /* 蹒顸 => 顢頇 */, {"蹰", "躕", -1 } /* 蹰 => 躕 */, {"蹿", "躥", -1 } /* 蹿 => 躥 */, {"躏", "躪", -1 } /* 躏 => 躪 */, {"躜", "躦", -1 } /* 躜 => 躦 */, {"身系", "身繫", -1 } /* 身系 => 身繫 */, {"躬敬", "恭敬", -1 } /* 躬敬 => 恭敬 */, {"躯", "軀", -1 } /* 躯 => 軀 */, {"躯壳", "軀殼", -1 } /* 躯壳 => 軀殼 */, {"躯干", "軀幹", -1 } /* 躯干 => 軀幹 */, {"车", "車", -1 } /* 车 => 車 */, {"车夫", "車伕", -1 } /* 车夫 => 車伕 */, {"车游", "車遊", -1 } /* 车游 => 車遊 */, {"轧", "軋", -1 } /* 轧 => 軋 */, {"轨", "軌", -1 } /* 轨 => 軌 */, {"轨范", "軌範", -1 } /* 轨范 => 軌範 */, {"轩", "軒", -1 } /* 轩 => 軒 */, {"轪", "軑", -1 } /* 轪 => 軑 */, {"轫", "軔", -1 } /* 轫 => 軔 */, {"轫性", "韌性", -1 } /* 轫性 => 韌性 */, {"转", "轉", -1 } /* 转 => 轉 */, {"转台", "轉檯", -1 } /* 转台 => 轉檯 */, {"转寰", "轉圜", -1 } /* 转寰 => 轉圜 */, {"转戾点", "轉捩點", -1 } /* 转戾点 => 轉捩點 */, {"转托", "轉託", -1 } /* 转托 => 轉託 */, {"轭", "軛", -1 } /* 轭 => 軛 */, {"轮", "輪", -1 } /* 轮 => 輪 */, {"轮回", "輪迴", -1 } /* 轮回 => 輪迴 */, {"轮奸", "輪姦", -1 } /* 轮奸 => 輪姦 */, {"轮流干", "輪流幹", -1 } /* 轮流干 => 輪流幹 */, {"软", "軟", -1 } /* 软 => 軟 */, {"软发", "軟髮", -1 } /* 软发 => 軟髮 */, {"软盘", "磁片", -1 } /* 软盘 => 磁片 */, {"软驱", "軟碟機", -1 } /* 软驱 => 軟碟機 */, {"轰", "轟", -1 } /* 轰 => 轟 */, {"轱", "軲", -1 } /* 轱 => 軲 */, {"轲", "軻", -1 } /* 轲 => 軻 */, {"轳", "轤", -1 } /* 轳 => 轤 */, {"轴", "軸", -1 } /* 轴 => 軸 */, {"轴线", "軸線", -1 } /* 轴线 => 軸線 */, {"轵", "軹", -1 } /* 轵 => 軹 */, {"轶", "軼", -1 } /* 轶 => 軼 */, {"轷", "軤", -1 } /* 轷 => 軤 */, {"轸", "軫", -1 } /* 轸 => 軫 */, {"轸域", "畛域", -1 } /* 轸域 => 畛域 */, {"轹", "轢", -1 } /* 轹 => 轢 */, {"轺", "軺", -1 } /* 轺 => 軺 */, {"轻", "輕", -1 } /* 轻 => 輕 */, {"轻于", "輕於", -1 } /* 轻于 => 輕於 */, {"轻台", "輕颱", -1 } /* 轻台 => 輕颱 */, {"轻挑", "輕佻", -1 } /* 轻挑 => 輕佻 */, {"轻松", "輕鬆", -1 } /* 轻松 => 輕鬆 */, {"轻篾", "輕蔑", -1 } /* 轻篾 => 輕蔑 */, {"轻蟆", "輕鬆", -1 } /* 轻蟆 => 輕鬆 */, {"轼", "軾", -1 } /* 轼 => 軾 */, {"载", "載", -1 } /* 载 => 載 */, {"轾", "輊", -1 } /* 轾 => 輊 */, {"轿", "轎", -1 } /* 轿 => 轎 */, {"轿夫", "轎伕", -1 } /* 轿夫 => 轎伕 */, {"辀", "輈", -1 } /* 辀 => 輈 */, {"辁", "輇", -1 } /* 辁 => 輇 */, {"辂", "輅", -1 } /* 辂 => 輅 */, {"较", "較", -1 } /* 较 => 較 */, {"较松", "較鬆", -1 } /* 较松 => 較鬆 */, {"辄", "輒", -1 } /* 辄 => 輒 */, {"辅", "輔", -1 } /* 辅 => 輔 */, {"辆", "輛", -1 } /* 辆 => 輛 */, {"辇", "輦", -1 } /* 辇 => 輦 */, {"辈", "輩", -1 } /* 辈 => 輩 */, {"辈子干", "輩子幹", -1 } /* 辈子干 => 輩子幹 */, {"辉", "輝", -1 } /* 辉 => 輝 */, {"辊", "輥", -1 } /* 辊 => 輥 */, {"辋", "輞", -1 } /* 辋 => 輞 */, {"辌", "輬", -1 } /* 辌 => 輬 */, {"辍", "輟", -1 } /* 辍 => 輟 */, {"辎", "輜", -1 } /* 辎 => 輜 */, {"辏", "輳", -1 } /* 辏 => 輳 */, {"辐", "輻", -1 } /* 辐 => 輻 */, {"辑", "輯", -1 } /* 辑 => 輯 */, {"辑凶", "輯兇", -1 } /* 辑凶 => 輯兇 */, {"辒", "轀", -1 } /* 辒 => 轀 */, {"输", "輸", -1 } /* 输 => 輸 */, {"辔", "轡", -1 } /* 辔 => 轡 */, {"辕", "轅", -1 } /* 辕 => 轅 */, {"辖", "轄", -1 } /* 辖 => 轄 */, {"辗", "輾", -1 } /* 辗 => 輾 */, {"辘", "轆", -1 } /* 辘 => 轆 */, {"辙", "轍", -1 } /* 辙 => 轍 */, {"辚", "轔", -1 } /* 辚 => 轔 */, {"辛丑", "辛丑", -1 } /* 辛丑 => 辛丑 */, {"辞", "辭", -1 } /* 辞 => 辭 */, {"辞汇", "辭彙", -1 } /* 辞汇 => 辭彙 */, {"辞采", "辭采", -1 } /* 辞采 => 辭采 */, {"辟", "闢", -1 } /* 辟 => 闢 */, {"辟", "辟", -1 } /* 辟 => 辟 */, {"辟味", "辟味", -1 } /* 辟味 => 辟味 */, {"辟地", "闢地", -1 } /* 辟地 => 闢地 */, {"辟臭", "辟臭", -1 } /* 辟臭 => 辟臭 */, {"辟谣", "闢謠", -1 } /* 辟谣 => 闢謠 */, {"辟谷", "辟榖", -1 } /* 辟谷 => 辟榖 */, {"辟蹊", "辟蹊", -1 } /* 辟蹊 => 辟蹊 */, {"辟邪", "辟邪", -1 } /* 辟邪 => 辟邪 */, {"辟邪", "闢邪", -1 } /* 辟邪 => 闢邪 */, {"辟门", "辟門", -1 } /* 辟门 => 辟門 */, {"辣面", "辣麵", -1 } /* 辣面 => 辣麵 */, {"辨奸论", "辨姦論", -1 } /* 辨奸论 => 辨姦論 */, {"辩", "辯", -1 } /* 辩 => 辯 */, {"辫", "辮", -1 } /* 辫 => 辮 */, {"辫发", "辮髮", -1 } /* 辫发 => 辮髮 */, {"边", "邊", -1 } /* 边 => 邊 */, {"边斗", "邊斗", -1 } /* 边斗 => 邊斗 */, {"边线", "邊線", -1 } /* 边线 => 邊線 */, {"辽", "遼", -1 } /* 辽 => 遼 */, {"辽亮", "嘹喨", -1 } /* 辽亮 => 嘹喨 */, {"辽沈", "遼瀋", -1 } /* 辽沈 => 遼瀋 */, {"达", "達", -1 } /* 达 => 達 */, {"达芬奇", "達文西", -1 } /* 达芬奇 => 達文西 */, {"迁", "遷", -1 } /* 迁 => 遷 */, {"迂回", "迂迴", -1 } /* 迂回 => 迂迴 */, {"过", "過", -1 } /* 过 => 過 */, {"过干瘾", "過乾瘾", -1 } /* 过干瘾 => 過乾瘾 */, {"过松", "過鬆", -1 } /* 过松 => 過鬆 */, {"迈", "邁", -1 } /* 迈 => 邁 */, {"运", "運", -1 } /* 运 => 運 */, {"近于", "近於", -1 } /* 近于 => 近於 */, {"还", "還", -1 } /* 还 => 還 */, {"还于", "還於", -1 } /* 还于 => 還於 */, {"还冲", "還衝", -1 } /* 还冲 => 還衝 */, {"这", "這", -1 } /* 这 => 這 */, {"这么", "這麼", -1 } /* 这么 => 這麼 */, {"这么干", "這麼幹", -1 } /* 这么干 => 這麼幹 */, {"这么着", "這麼著", -1 } /* 这么着 => 這麼著 */, {"这伙人", "這夥人", -1 } /* 这伙人 => 這夥人 */, {"这出剧", "這齣劇", -1 } /* 这出剧 => 這齣劇 */, {"这出好戏", "這齣好戲", -1 } /* 这出好戏 => 這齣好戲 */, {"这出电影", "這齣電影", -1 } /* 这出电影 => 這齣電影 */, {"这般干法", "這般幹法", -1 } /* 这般干法 => 這般幹法 */, {"这麼", "這麼", -1 } /* 这麼 => 這麼 */, {"进", "進", -1 } /* 进 => 進 */, {"远", "遠", -1 } /* 远 => 遠 */, {"远游", "遠遊", -1 } /* 远游 => 遠遊 */, {"违", "違", -1 } /* 违 => 違 */, {"连", "連", -1 } /* 连 => 連 */, {"连卷", "連捲", -1 } /* 连卷 => 連捲 */, {"连字号", "連字號", -1 } /* 连字号 => 連字號 */, {"连抉", "連袂", -1 } /* 连抉 => 連袂 */, {"连杰", "連杰", -1 } /* 连杰 => 連杰 */, {"连系", "連繫", -1 } /* 连系 => 連繫 */, {"连线", "連線", -1 } /* 连线 => 連線 */, {"连络", "聯絡", -1 } /* 连络 => 聯絡 */, {"迟", "遲", -1 } /* 迟 => 遲 */, {"迥然回异", "迥然迴異", -1 } /* 迥然回异 => 迥然迴異 */, {"迩", "邇", -1 } /* 迩 => 邇 */, {"迳", "逕", -1 } /* 迳 => 逕 */, {"迷奸", "迷姦", -1 } /* 迷奸 => 迷姦 */, {"迷药", "迷藥", -1 } /* 迷药 => 迷藥 */, {"迹", "跡", -1 } /* 迹 => 跡 */, {"迻逦", "迆邐", -1 } /* 迻逦 => 迆邐 */, {"追凶", "追兇", -1 } /* 追凶 => 追兇 */, {"追根究抵", "追根究柢", -1 } /* 追根究抵 => 追根究柢 */, {"追谥", "追諡", -1 } /* 追谥 => 追諡 */, {"退伙", "退伙", -1 } /* 退伙 => 退伙 */, {"送于", "送於", -1 } /* 送于 => 送於 */, {"适", "適", -1 } /* 适 => 適 */, {"适才", "適纔", -1 } /* 适才 => 適纔 */, {"选", "選", -1 } /* 选 => 選 */, {"逊", "遜", -1 } /* 逊 => 遜 */, {"透射", "透射", -1 } /* 透射 => 透射 */, {"递", "遞", -1 } /* 递 => 遞 */, {"递回", "遞迴", -1 } /* 递回 => 遞迴 */, {"通奸", "通姦", -1 } /* 通奸 => 通姦 */, {"通心面", "通心麵", -1 } /* 通心面 => 通心麵 */, {"通浚", "通濬", -1 } /* 通浚 => 通濬 */, {"通谍", "通牒", -1 } /* 通谍 => 通牒 */, {"通辑", "通緝", -1 } /* 通辑 => 通緝 */, {"逞凶", "逞兇", -1 } /* 逞凶 => 逞兇 */, {"速干", "速乾", -1 } /* 速干 => 速乾 */, {"速食面", "速食麵", -1 } /* 速食面 => 速食麵 */, {"造于", "造於", -1 } /* 造于 => 造於 */, {"逦", "邐", -1 } /* 逦 => 邐 */, {"逻", "邏", -1 } /* 逻 => 邏 */, {"逼奸", "逼姦", -1 } /* 逼奸 => 逼姦 */, {"逾年", "踰年", -1 } /* 逾年 => 踰年 */, {"逾矩", "踰矩", -1 } /* 逾矩 => 踰矩 */, {"逾越", "踰越", -1 } /* 逾越 => 踰越 */, {"逾閒", "踰閒", -1 } /* 逾閒 => 踰閒 */, {"遂于", "遂於", -1 } /* 遂于 => 遂於 */, {"遇着", "遇著", -1 } /* 遇着 => 遇著 */, {"遍布", "遍佈", -1 } /* 遍布 => 遍佈 */, {"遐疵", "瑕疵", -1 } /* 遐疵 => 瑕疵 */, {"道坎", "道檻", -1 } /* 道坎 => 道檻 */, {"道赞", "道讚", -1 } /* 道赞 => 道讚 */, {"道里", "道里", -1 } /* 道里 => 道里 */, {"遗", "遺", -1 } /* 遗 => 遺 */, {"遗撼", "遺憾", -1 } /* 遗撼 => 遺憾 */, {"遗范", "遺範", -1 } /* 遗范 => 遺範 */, {"遗葑菲采", "遺葑菲采", -1 } /* 遗葑菲采 => 遺葑菲采 */, {"遗迹", "遺蹟", -1 } /* 遗迹 => 遺蹟 */, {"遗风余", "遺風餘", -1 } /* 遗风余 => 遺風餘 */, {"遥", "遙", -1 } /* 遥 => 遙 */, {"遨游", "遨遊", -1 } /* 遨游 => 遨遊 */, {"邂怠", "懈怠", -1 } /* 邂怠 => 懈怠 */, {"邋塌", "邋遢", -1 } /* 邋塌 => 邋遢 */, {"邋蹋", "邋遢", -1 } /* 邋蹋 => 邋遢 */, {"邋里邋遢", "邋里邋遢", -1 } /* 邋里邋遢 => 邋里邋遢 */, {"邓", "鄧", -1 } /* 邓 => 鄧 */, {"邝", "鄺", -1 } /* 邝 => 鄺 */, {"那么", "那麼", -1 } /* 那么 => 那麼 */, {"那么干", "那麼幹", -1 } /* 那么干 => 那麼幹 */, {"那么着", "那麼著", -1 } /* 那么着 => 那麼著 */, {"那伙人", "那夥人", -1 } /* 那伙人 => 那夥人 */, {"那出剧", "那齣劇", -1 } /* 那出剧 => 那齣劇 */, {"那出好戏", "那齣好戲", -1 } /* 那出好戏 => 那齣好戲 */, {"那出电影", "那齣電影", -1 } /* 那出电影 => 那齣電影 */, {"邪欲", "邪慾", -1 } /* 邪欲 => 邪慾 */, {"邪辟", "邪辟", -1 } /* 邪辟 => 邪辟 */, {"邬", "鄔", -1 } /* 邬 => 鄔 */, {"邮", "郵", -1 } /* 邮 => 郵 */, {"邵廷采", "邵廷采", -1 } /* 邵廷采 => 邵廷采 */, {"邹", "鄒", -1 } /* 邹 => 鄒 */, {"邺", "鄴", -1 } /* 邺 => 鄴 */, {"邻", "鄰", -1 } /* 邻 => 鄰 */, {"邻里", "鄰里", -1 } /* 邻里 => 鄰里 */, {"郁", "鬱", -1 } /* 郁 => 鬱 */, {"郁烈", "郁烈", -1 } /* 郁烈 => 郁烈 */, {"郁穆", "郁穆", -1 } /* 郁穆 => 郁穆 */, {"郁金", "郁金", -1 } /* 郁金 => 郁金 */, {"郁闭", "郁閉", -1 } /* 郁闭 => 郁閉 */, {"郁闭", "鬱閉", -1 } /* 郁闭 => 鬱閉 */, {"郁馥", "郁馥", -1 } /* 郁馥 => 郁馥 */, {"郊游", "郊遊", -1 } /* 郊游 => 郊遊 */, {"郎铛", "啷鐺", -1 } /* 郎铛 => 啷鐺 */, {"郏", "郟", -1 } /* 郏 => 郟 */, {"郐", "鄶", -1 } /* 郐 => 鄶 */, {"郑", "鄭", -1 } /* 郑 => 鄭 */, {"郑凯云", "鄭凱云", -1 } /* 郑凯云 => 鄭凱云 */, {"郓", "鄆", -1 } /* 郓 => 鄆 */, {"郦", "酈", -1 } /* 郦 => 酈 */, {"郧", "鄖", -1 } /* 郧 => 鄖 */, {"郭朴", "郭璞", -1 } /* 郭朴 => 郭璞 */, {"郭采洁", "郭采潔", -1 } /* 郭采洁 => 郭采潔 */, {"郸", "鄲", -1 } /* 郸 => 鄲 */, {"都肯干", "都肯幹", -1 } /* 都肯干 => 都肯幹 */, {"都舍下", "都捨下", -1 } /* 都舍下 => 都捨下 */, {"鄙于", "鄙於", -1 } /* 鄙于 => 鄙於 */, {"酂", "酇", -1 } /* 酂 => 酇 */, {"配制", "配製", -1 } /* 配制 => 配製 */, {"配合着", "配合著", -1 } /* 配合着 => 配合著 */, {"配水干管", "配水幹管", -1 } /* 配水干管 => 配水幹管 */, {"配膳台", "配膳檯", -1 } /* 配膳台 => 配膳檯 */, {"配药", "配藥", -1 } /* 配药 => 配藥 */, {"酒坛", "酒罈", -1 } /* 酒坛 => 酒罈 */, {"酒已干", "酒已乾", -1 } /* 酒已干 => 酒已乾 */, {"酒干了", "酒乾了", -1 } /* 酒干了 => 酒乾了 */, {"酒干尽", "酒乾盡", -1 } /* 酒干尽 => 酒乾盡 */, {"酒干掉", "酒乾掉", -1 } /* 酒干掉 => 酒乾掉 */, {"酒曲", "酒麴", -1 } /* 酒曲 => 酒麴 */, {"酒杯", "酒杯", -1 } /* 酒杯 => 酒杯 */, {"酝", "醖", -1 } /* 酝 => 醖 */, {"酝借", "醞藉", -1 } /* 酝借 => 醞藉 */, {"酝成", "醞成", -1 } /* 酝成 => 醞成 */, {"酝藉", "醞藉", -1 } /* 酝藉 => 醞藉 */, {"酝酿", "醞釀", -1 } /* 酝酿 => 醞釀 */, {"酝酿着", "醞釀著", -1 } /* 酝酿着 => 醞釀著 */, {"酥松", "酥鬆", -1 } /* 酥松 => 酥鬆 */, {"酦", "醱", -1 } /* 酦 => 醱 */, {"酬", "酬", -1 } /* 酬 => 酬 */, {"酬佣", "酬佣", -1 } /* 酬佣 => 酬佣 */, {"酰胺", "醯胺", -1 } /* 酰胺 => 醯胺 */, {"酱", "醬", -1 } /* 酱 => 醬 */, {"酸疼", "痠疼", -1 } /* 酸疼 => 痠疼 */, {"酸痛", "痠痛", -1 } /* 酸痛 => 痠痛 */, {"酸碱", "酸鹼", -1 } /* 酸碱 => 酸鹼 */, {"酸软", "痠軟", -1 } /* 酸软 => 痠軟 */, {"酽", "釅", -1 } /* 酽 => 釅 */, {"酾", "釃", -1 } /* 酾 => 釃 */, {"酿", "釀", -1 } /* 酿 => 釀 */, {"酿制", "釀製", -1 } /* 酿制 => 釀製 */, {"醃制", "醃製", -1 } /* 醃制 => 醃製 */, {"醃臜", "腌臢", -1 } /* 醃臜 => 腌臢 */, {"醋坛", "醋罈", -1 } /* 醋坛 => 醋罈 */, {"醬面", "醬麵", -1 } /* 醬面 => 醬麵 */, {"醮墨", "蘸墨", -1 } /* 醮墨 => 蘸墨 */, {"采下", "採下", -1 } /* 采下 => 採下 */, {"采买", "採買", -1 } /* 采买 => 採買 */, {"采于", "采於", -1 } /* 采于 => 采於 */, {"采伐", "採伐", -1 } /* 采伐 => 採伐 */, {"采供", "採供", -1 } /* 采供 => 採供 */, {"采信", "採信", -1 } /* 采信 => 採信 */, {"采光", "採光", -1 } /* 采光 => 採光 */, {"采兰赠药", "採蘭贈藥", -1 } /* 采兰赠药 => 採蘭贈藥 */, {"采写", "採寫", -1 } /* 采写 => 採寫 */, {"采办", "採辦", -1 } /* 采办 => 採辦 */, {"采卵", "採卵", -1 } /* 采卵 => 採卵 */, {"采及葑菲", "采及葑菲", -1 } /* 采及葑菲 => 采及葑菲 */, {"采取", "採取", -1 } /* 采取 => 採取 */, {"采地", "采地", -1 } /* 采地 => 采地 */, {"采声", "采聲", -1 } /* 采声 => 采聲 */, {"采女", "采女", -1 } /* 采女 => 采女 */, {"采录", "採錄", -1 } /* 采录 => 採錄 */, {"采择", "採擇", -1 } /* 采择 => 採擇 */, {"采拾", "採拾", -1 } /* 采拾 => 採拾 */, {"采挖", "採挖", -1 } /* 采挖 => 採挖 */, {"采掘", "採掘", -1 } /* 采掘 => 採掘 */, {"采摘", "採摘", -1 } /* 采摘 => 採摘 */, {"采摭", "採摭", -1 } /* 采摭 => 採摭 */, {"采撷", "採擷", -1 } /* 采撷 => 採擷 */, {"采收", "採收", -1 } /* 采收 => 採收 */, {"采料", "採料", -1 } /* 采料 => 採料 */, {"采树", "採樹", -1 } /* 采树 => 採樹 */, {"采样", "採樣", -1 } /* 采样 => 採樣 */, {"采桑", "採桑", -1 } /* 采桑 => 採桑 */, {"采梅", "採梅", -1 } /* 采梅 => 採梅 */, {"采检", "採檢", -1 } /* 采检 => 採檢 */, {"采樵", "採樵", -1 } /* 采樵 => 採樵 */, {"采水", "採水", -1 } /* 采水 => 採水 */, {"采油", "採油", -1 } /* 采油 => 採油 */, {"采烈", "采烈", -1 } /* 采烈 => 采烈 */, {"采煤", "採煤", -1 } /* 采煤 => 採煤 */, {"采猎", "採獵", -1 } /* 采猎 => 採獵 */, {"采珠", "採珠", -1 } /* 采珠 => 採珠 */, {"采生", "採生", -1 } /* 采生 => 採生 */, {"采用", "採用", -1 } /* 采用 => 採用 */, {"采石", "採石", -1 } /* 采石 => 採石 */, {"采石之役", "采石之役", -1 } /* 采石之役 => 采石之役 */, {"采石之战", "采石之戰", -1 } /* 采石之战 => 采石之戰 */, {"采石矶", "采石磯", -1 } /* 采石矶 => 采石磯 */, {"采矿", "採礦", -1 } /* 采矿 => 採礦 */, {"采硫", "採硫", -1 } /* 采硫 => 採硫 */, {"采种", "採種", -1 } /* 采种 => 採種 */, {"采稿", "採稿", -1 } /* 采稿 => 採稿 */, {"采章", "采章", -1 } /* 采章 => 采章 */, {"采粉", "採粉", -1 } /* 采粉 => 採粉 */, {"采精", "採精", -1 } /* 采精 => 採精 */, {"采纳", "採納", -1 } /* 采纳 => 採納 */, {"采编", "採編", -1 } /* 采编 => 採編 */, {"采色", "采色", -1 } /* 采色 => 采色 */, {"采花", "採花", -1 } /* 采花 => 採花 */, {"采芹", "採芹", -1 } /* 采芹 => 採芹 */, {"采茶", "採茶", -1 } /* 采茶 => 採茶 */, {"采草", "採草", -1 } /* 采草 => 採草 */, {"采药", "採藥", -1 } /* 采药 => 採藥 */, {"采莲", "採蓮", -1 } /* 采莲 => 採蓮 */, {"采获", "採獲", -1 } /* 采获 => 採獲 */, {"采菲", "采菲", -1 } /* 采菲 => 采菲 */, {"采葑", "采葑", -1 } /* 采葑 => 采葑 */, {"采薇", "採薇", -1 } /* 采薇 => 採薇 */, {"采薪", "採薪", -1 } /* 采薪 => 採薪 */, {"采蜜", "採蜜", -1 } /* 采蜜 => 採蜜 */, {"采血", "採血", -1 } /* 采血 => 採血 */, {"采行", "採行", -1 } /* 采行 => 採行 */, {"采补", "採補", -1 } /* 采补 => 採補 */, {"采计", "採計", -1 } /* 采计 => 採計 */, {"采认", "採認", -1 } /* 采认 => 採認 */, {"采访", "採訪", -1 } /* 采访 => 採訪 */, {"采证", "採證", -1 } /* 采证 => 採證 */, {"采购", "採購", -1 } /* 采购 => 採購 */, {"采选", "採選", -1 } /* 采选 => 採選 */, {"采邑", "采邑", -1 } /* 采邑 => 采邑 */, {"采金", "採金", -1 } /* 采金 => 採金 */, {"采集", "採集", -1 } /* 采集 => 採集 */, {"采颐", "采頤", -1 } /* 采颐 => 采頤 */, {"采风", "採風", -1 } /* 采风 => 採風 */, {"采风", "采風", -1 } /* 采风 => 采風 */, {"采风问俗", "採風問俗", -1 } /* 采风问俗 => 採風問俗 */, {"采食", "採食", -1 } /* 采食 => 採食 */, {"采饵", "採餌", -1 } /* 采饵 => 採餌 */, {"采验", "採驗", -1 } /* 采验 => 採驗 */, {"释", "釋", -1 } /* 释 => 釋 */, {"里", "裡", 63 } /* 里 => 裡 */, {"里亚", "里亞", -1 } /* 里亚 => 里亞 */, {"里仁", "里仁", -1 } /* 里仁 => 里仁 */, {"里兰", "里蘭", -1 } /* 里兰 => 里蘭 */, {"里加", "里加", -1 } /* 里加 => 里加 */, {"里夫", "里夫", -1 } /* 里夫 => 里夫 */, {"里奥", "里奧", -1 } /* 里奥 => 里奧 */, {"里子", "裏子", -1 } /* 里子 => 裏子 */, {"里尔", "里爾", -1 } /* 里尔 => 里爾 */, {"里尼", "里尼", -1 } /* 里尼 => 里尼 */, {"里屋", "裏屋", -1 } /* 里屋 => 裏屋 */, {"里布", "裏布", -1 } /* 里布 => 裏布 */, {"里布", "里布", -1 } /* 里布 => 里布 */, {"里拉", "里拉", -1 } /* 里拉 => 里拉 */, {"里斯本", "里斯本", -1 } /* 里斯本 => 里斯本 */, {"里昂", "里昂", -1 } /* 里昂 => 里昂 */, {"里根", "里根", -1 } /* 里根 => 里根 */, {"里民", "里民", -1 } /* 里民 => 里民 */, {"里海", "裏海", -1 } /* 里海 => 裏海 */, {"里科", "里科", -1 } /* 里科 => 里科 */, {"里程", "里程", -1 } /* 里程 => 里程 */, {"里程表", "里程錶", -1 } /* 里程表 => 里程錶 */, {"里约", "里約", -1 } /* 里约 => 里約 */, {"里纳", "里納", -1 } /* 里纳 => 里納 */, {"里美", "里美", -1 } /* 里美 => 里美 */, {"里肌", "里肌", -1 } /* 里肌 => 里肌 */, {"里衣", "裏衣", -1 } /* 里衣 => 裏衣 */, {"里路", "里路", -1 } /* 里路 => 里路 */, {"里边", "裏邊", -1 } /* 里边 => 裏邊 */, {"里里", "里奇", -1 } /* 里里 => 里奇 */, {"里长", "里長", -1 } /* 里长 => 里長 */, {"重于", "重於", -1 } /* 重于 => 重於 */, {"重复", "重覆", -1 } /* 重复 => 重覆 */, {"重复", "重複", -1 } /* 重复 => 重複 */, {"重托", "重託", -1 } /* 重托 => 重託 */, {"重折", "重摺", -1 } /* 重折 => 重摺 */, {"重涂", "重塗", -1 } /* 重涂 => 重塗 */, {"重游", "重遊", -1 } /* 重游 => 重遊 */, {"重簷", "重檐", -1 } /* 重簷 => 重檐 */, {"重锤", "重鎚", -1 } /* 重锤 => 重鎚 */, {"野游", "野遊", -1 } /* 野游 => 野遊 */, {"金仑", "金崙", -1 } /* 金仑 => 金崙 */, {"金发", "金髮", -1 } /* 金发 => 金髮 */, {"金斗", "金斗", -1 } /* 金斗 => 金斗 */, {"金杯", "金盃", -1 } /* 金杯 => 金盃 */, {"金沙萨", "金夏沙", -1 } /* 金沙萨 => 金夏沙 */, {"金表", "金錶", -1 } /* 金表 => 金錶 */, {"金霉素", "金黴素", -1 } /* 金霉素 => 金黴素 */, {"鉴", "鑒", -1 } /* 鉴 => 鑒 */, {"鉴于", "鑒於", -1 } /* 鉴于 => 鑒於 */, {"銮", "鑾", -1 } /* 銮 => 鑾 */, {"錾", "鏨", -1 } /* 錾 => 鏨 */, {"鎚炼", "錘煉", -1 } /* 鎚炼 => 錘煉 */, {"钅", "釒", -1 } /* 钅 => 釒 */, {"钆", "釓", -1 } /* 钆 => 釓 */, {"钇", "釔", -1 } /* 钇 => 釔 */, {"针", "針", -1 } /* 针 => 針 */, {"针线", "針線", -1 } /* 针线 => 針線 */, {"针黹", "鍼黹", -1 } /* 针黹 => 鍼黹 */, {"钉", "釘", -1 } /* 钉 => 釘 */, {"钉锤", "釘鎚", -1 } /* 钉锤 => 釘鎚 */, {"钊", "釗", -1 } /* 钊 => 釗 */, {"钋", "釙", -1 } /* 钋 => 釙 */, {"钌", "釕", -1 } /* 钌 => 釕 */, {"钍", "釷", -1 } /* 钍 => 釷 */, {"钎", "釺", -1 } /* 钎 => 釺 */, {"钏", "釧", -1 } /* 钏 => 釧 */, {"钐", "釤", -1 } /* 钐 => 釤 */, {"钑", "鈒", -1 } /* 钑 => 鈒 */, {"钒", "釩", -1 } /* 钒 => 釩 */, {"钓", "釣", -1 } /* 钓 => 釣 */, {"钓游", "釣遊", -1 } /* 钓游 => 釣遊 */, {"钓线", "釣線", -1 } /* 钓线 => 釣線 */, {"钓钩", "釣鉤", -1 } /* 钓钩 => 釣鉤 */, {"钔", "鍆", -1 } /* 钔 => 鍆 */, {"钕", "釹", -1 } /* 钕 => 釹 */, {"钖", "鍚", -1 } /* 钖 => 鍚 */, {"钗", "釵", -1 } /* 钗 => 釵 */, {"钗环", "釵鐶", -1 } /* 钗环 => 釵鐶 */, {"钘", "鈃", -1 } /* 钘 => 鈃 */, {"钙", "鈣", -1 } /* 钙 => 鈣 */, {"钚", "鈈", -1 } /* 钚 => 鈈 */, {"钛", "鈦", -1 } /* 钛 => 鈦 */, {"钜", "鉅", -1 } /* 钜 => 鉅 */, {"钝", "鈍", -1 } /* 钝 => 鈍 */, {"钞", "鈔", -1 } /* 钞 => 鈔 */, {"钟", "鐘", -1 } /* 钟 => 鐘 */, {"钟不", "鍾不", -1 } /* 钟不 => 鍾不 */, {"钟情", "鍾情", -1 } /* 钟情 => 鍾情 */, {"钟意", "鍾意", -1 } /* 钟意 => 鍾意 */, {"钟无豔", "鍾無艷", -1 } /* 钟无豔 => 鍾無艷 */, {"钟欣桐", "鍾欣桐", -1 } /* 钟欣桐 => 鍾欣桐 */, {"钟爱", "鍾愛", -1 } /* 钟爱 => 鍾愛 */, {"钟表", "鐘錶", -1 } /* 钟表 => 鐘錶 */, {"钟表决", "鍾表決", -1 } /* 钟表决 => 鍾表決 */, {"钟表态", "鍾表態", -1 } /* 钟表态 => 鍾表態 */, {"钟表明", "鍾表明", -1 } /* 钟表明 => 鍾表明 */, {"钟表演", "鐘表演", -1 } /* 钟表演 => 鐘表演 */, {"钟表现", "鐘表現", -1 } /* 钟表现 => 鐘表現 */, {"钟表示", "鍾表示", -1 } /* 钟表示 => 鍾表示 */, {"钟表露", "鍾表露", -1 } /* 钟表露 => 鍾表露 */, {"钟馗", "鍾馗", -1 } /* 钟馗 => 鍾馗 */, {"钠", "鈉", -1 } /* 钠 => 鈉 */, {"钡", "鋇", -1 } /* 钡 => 鋇 */, {"钢", "鋼", -1 } /* 钢 => 鋼 */, {"钢制", "鋼製", -1 } /* 钢制 => 鋼製 */, {"钢梁", "鋼樑", -1 } /* 钢梁 => 鋼樑 */, {"钢线", "鋼線", -1 } /* 钢线 => 鋼線 */, {"钣", "鈑", -1 } /* 钣 => 鈑 */, {"钤", "鈐", -1 } /* 钤 => 鈐 */, {"钥", "鑰", -1 } /* 钥 => 鑰 */, {"钦", "欽", -1 } /* 钦 => 欽 */, {"钦崎", "嶔崎", -1 } /* 钦崎 => 嶔崎 */, {"钧", "鈞", -1 } /* 钧 => 鈞 */, {"钧启", "鈞啟", -1 } /* 钧启 => 鈞啟 */, {"钨", "鎢", -1 } /* 钨 => 鎢 */, {"钩", "鈎", -1 } /* 钩 => 鈎 */, {"钩上", "鉤上", -1 } /* 钩上 => 鉤上 */, {"钩勒", "鉤勒", -1 } /* 钩勒 => 鉤勒 */, {"钩爪", "鉤爪", -1 } /* 钩爪 => 鉤爪 */, {"钩玄", "鉤玄", -1 } /* 钩玄 => 鉤玄 */, {"钪", "鈧", -1 } /* 钪 => 鈧 */, {"钫", "鈁", -1 } /* 钫 => 鈁 */, {"钬", "鈥", -1 } /* 钬 => 鈥 */, {"钭", "鈄", -1 } /* 钭 => 鈄 */, {"钮", "鈕", -1 } /* 钮 => 鈕 */, {"钯", "鈀", -1 } /* 钯 => 鈀 */, {"钰", "鈺", -1 } /* 钰 => 鈺 */, {"钱", "錢", -1 } /* 钱 => 錢 */, {"钱钟书", "錢鍾書", -1 } /* 钱钟书 => 錢鍾書 */, {"钲", "鉦", -1 } /* 钲 => 鉦 */, {"钳", "鉗", -1 } /* 钳 => 鉗 */, {"钳制", "箝制", -1 } /* 钳制 => 箝制 */, {"钳口", "箝口", -1 } /* 钳口 => 箝口 */, {"钴", "鈷", -1 } /* 钴 => 鈷 */, {"钵", "鉢", -1 } /* 钵 => 鉢 */, {"钶", "鈳", -1 } /* 钶 => 鈳 */, {"钷", "鉕", -1 } /* 钷 => 鉕 */, {"钸", "鈽", -1 } /* 钸 => 鈽 */, {"钹", "鈸", -1 } /* 钹 => 鈸 */, {"钺", "鉞", -1 } /* 钺 => 鉞 */, {"钻", "鑽", -1 } /* 钻 => 鑽 */, {"钼", "鉬", -1 } /* 钼 => 鉬 */, {"钽", "鉭", -1 } /* 钽 => 鉭 */, {"钾", "鉀", -1 } /* 钾 => 鉀 */, {"钿", "鈿", -1 } /* 钿 => 鈿 */, {"铀", "鈾", -1 } /* 铀 => 鈾 */, {"铁", "鐵", -1 } /* 铁 => 鐵 */, {"铁制", "鐵製", -1 } /* 铁制 => 鐵製 */, {"铁力", "鐵驪", -1 } /* 铁力 => 鐵驪 */, {"铁壳", "鐵殼", -1 } /* 铁壳 => 鐵殼 */, {"铁槌", "鐵鎚", -1 } /* 铁槌 => 鐵鎚 */, {"铁炼", "鐵鍊", -1 } /* 铁炼 => 鐵鍊 */, {"铁线", "鐵線", -1 } /* 铁线 => 鐵線 */, {"铁练", "鐵鍊", -1 } /* 铁练 => 鐵鍊 */, {"铁钩", "鐵鉤", -1 } /* 铁钩 => 鐵鉤 */, {"铁锈", "鐵鏽", -1 } /* 铁锈 => 鐵鏽 */, {"铁锤", "鐵鎚", -1 } /* 铁锤 => 鐵鎚 */, {"铁面", "鐵面", -1 } /* 铁面 => 鐵面 */, {"铂", "鉑", -1 } /* 铂 => 鉑 */, {"铃", "鈴", -1 } /* 铃 => 鈴 */, {"铄", "鑠", -1 } /* 铄 => 鑠 */, {"铅", "鉛", -1 } /* 铅 => 鉛 */, {"铅鎚", "鉛錘", -1 } /* 铅鎚 => 鉛錘 */, {"铆", "鉚", -1 } /* 铆 => 鉚 */, {"铇", "鉋", -1 } /* 铇 => 鉋 */, {"铈", "鈰", -1 } /* 铈 => 鈰 */, {"铉", "鉉", -1 } /* 铉 => 鉉 */, {"铊", "鉈", -1 } /* 铊 => 鉈 */, {"铋", "鉍", -1 } /* 铋 => 鉍 */, {"铌", "鈮", -1 } /* 铌 => 鈮 */, {"铍", "鈹", -1 } /* 铍 => 鈹 */, {"铎", "鐸", -1 } /* 铎 => 鐸 */, {"铏", "鉶", -1 } /* 铏 => 鉶 */, {"铐", "銬", -1 } /* 铐 => 銬 */, {"铑", "銠", -1 } /* 铑 => 銠 */, {"铒", "鉺", -1 } /* 铒 => 鉺 */, {"铓", "鋩", -1 } /* 铓 => 鋩 */, {"铔", "錏", -1 } /* 铔 => 錏 */, {"铕", "銪", -1 } /* 铕 => 銪 */, {"铖", "鋮", -1 } /* 铖 => 鋮 */, {"铗", "鋏", -1 } /* 铗 => 鋏 */, {"铘", "鋣", -1 } /* 铘 => 鋣 */, {"铙", "鐃", -1 } /* 铙 => 鐃 */, {"铚", "銍", -1 } /* 铚 => 銍 */, {"铛", "鐺", -1 } /* 铛 => 鐺 */, {"铜", "銅", -1 } /* 铜 => 銅 */, {"铜制", "銅製", -1 } /* 铜制 => 銅製 */, {"铜墙铁壁", "銅牆鐵壁", -1 } /* 铜墙铁壁 => 銅牆鐵壁 */, {"铜线", "銅線", -1 } /* 铜线 => 銅線 */, {"铝", "鋁", -1 } /* 铝 => 鋁 */, {"铝制", "鋁製", -1 } /* 铝制 => 鋁製 */, {"铞", "銱", -1 } /* 铞 => 銱 */, {"铟", "銦", -1 } /* 铟 => 銦 */, {"铠", "鎧", -1 } /* 铠 => 鎧 */, {"铠胄", "鎧冑", -1 } /* 铠胄 => 鎧冑 */, {"铡", "鍘", -1 } /* 铡 => 鍘 */, {"铢", "銖", -1 } /* 铢 => 銖 */, {"铣", "銑", -1 } /* 铣 => 銑 */, {"铤", "鋌", -1 } /* 铤 => 鋌 */, {"铥", "銩", -1 } /* 铥 => 銩 */, {"铦", "銛", -1 } /* 铦 => 銛 */, {"铧", "鏵", -1 } /* 铧 => 鏵 */, {"铨", "銓", -1 } /* 铨 => 銓 */, {"铩", "鎩", -1 } /* 铩 => 鎩 */, {"铪", "鉿", -1 } /* 铪 => 鉿 */, {"铫", "銚", -1 } /* 铫 => 銚 */, {"铬", "鉻", -1 } /* 铬 => 鉻 */, {"铭", "銘", -1 } /* 铭 => 銘 */, {"铮", "錚", -1 } /* 铮 => 錚 */, {"铯", "銫", -1 } /* 铯 => 銫 */, {"铰", "鉸", -1 } /* 铰 => 鉸 */, {"铰炼", "鉸鍊", -1 } /* 铰炼 => 鉸鍊 */, {"铱", "銥", -1 } /* 铱 => 銥 */, {"铲", "鏟", -1 } /* 铲 => 鏟 */, {"铲刈", "剷刈", -1 } /* 铲刈 => 剷刈 */, {"铲去", "剷去", -1 } /* 铲去 => 剷去 */, {"铲平", "剷平", -1 } /* 铲平 => 剷平 */, {"铲灭", "剷滅", -1 } /* 铲灭 => 剷滅 */, {"铲起", "剷起", -1 } /* 铲起 => 剷起 */, {"铲除", "剷除", -1 } /* 铲除 => 剷除 */, {"铳", "銃", -1 } /* 铳 => 銃 */, {"铴", "鐋", -1 } /* 铴 => 鐋 */, {"铵", "銨", -1 } /* 铵 => 銨 */, {"银", "銀", -1 } /* 银 => 銀 */, {"银丝卷", "銀絲捲", -1 } /* 银丝卷 => 銀絲捲 */, {"银制", "銀製", -1 } /* 银制 => 銀製 */, {"银发", "銀髮", -1 } /* 银发 => 銀髮 */, {"银朱", "銀硃", -1 } /* 银朱 => 銀硃 */, {"银钩", "銀鉤", -1 } /* 银钩 => 銀鉤 */, {"银须", "銀鬚", -1 } /* 银须 => 銀鬚 */, {"铷", "銣", -1 } /* 铷 => 銣 */, {"铸", "鑄", -1 } /* 铸 => 鑄 */, {"铹", "鐒", -1 } /* 铹 => 鐒 */, {"铺", "鋪", -1 } /* 铺 => 鋪 */, {"铺位", "舖位", -1 } /* 铺位 => 舖位 */, {"铺盖卷儿", "鋪蓋捲兒", -1 } /* 铺盖卷儿 => 鋪蓋捲兒 */, {"铺锦列绣", "鋪錦列繡", -1 } /* 铺锦列绣 => 鋪錦列繡 */, {"铻", "鋙", -1 } /* 铻 => 鋙 */, {"铼", "錸", -1 } /* 铼 => 錸 */, {"铽", "鋱", -1 } /* 铽 => 鋱 */, {"链", "鏈", -1 } /* 链 => 鏈 */, {"链接", "連結", -1 } /* 链接 => 連結 */, {"链霉素", "鏈黴素", -1 } /* 链霉素 => 鏈黴素 */, {"铿", "鏗", -1 } /* 铿 => 鏗 */, {"销", "銷", -1 } /* 销 => 銷 */, {"销溶", "銷鎔", -1 } /* 销溶 => 銷鎔 */, {"锁", "鎖", -1 } /* 锁 => 鎖 */, {"锁炼", "鎖鍊", -1 } /* 锁炼 => 鎖鍊 */, {"锁碎", "瑣碎", -1 } /* 锁碎 => 瑣碎 */, {"锂", "鋰", -1 } /* 锂 => 鋰 */, {"锃", "鋥", -1 } /* 锃 => 鋥 */, {"锄", "鋤", -1 } /* 锄 => 鋤 */, {"锅", "鍋", -1 } /* 锅 => 鍋 */, {"锆", "鋯", -1 } /* 锆 => 鋯 */, {"锇", "鋨", -1 } /* 锇 => 鋨 */, {"锈", "銹", -1 } /* 锈 => 銹 */, {"锈病", "鏽病", -1 } /* 锈病 => 鏽病 */, {"锈菌", "鏽菌", -1 } /* 锈菌 => 鏽菌 */, {"锈蚀", "鏽蝕", -1 } /* 锈蚀 => 鏽蝕 */, {"锉", "銼", -1 } /* 锉 => 銼 */, {"锊", "鋝", -1 } /* 锊 => 鋝 */, {"锋", "鋒", -1 } /* 锋 => 鋒 */, {"锌", "鋅", -1 } /* 锌 => 鋅 */, {"锍", "鋶", -1 } /* 锍 => 鋶 */, {"锎", "鐦", -1 } /* 锎 => 鐦 */, {"锏", "鐧", -1 } /* 锏 => 鐧 */, {"锐", "鋭", -1 } /* 锐 => 鋭 */, {"锑", "銻", -1 } /* 锑 => 銻 */, {"锒", "鋃", -1 } /* 锒 => 鋃 */, {"锓", "鋟", -1 } /* 锓 => 鋟 */, {"锔", "鋦", -1 } /* 锔 => 鋦 */, {"锕", "錒", -1 } /* 锕 => 錒 */, {"锖", "錆", -1 } /* 锖 => 錆 */, {"锗", "鍺", -1 } /* 锗 => 鍺 */, {"锘", "鍩", -1 } /* 锘 => 鍩 */, {"错", "錯", -1 } /* 错 => 錯 */, {"锚", "錨", -1 } /* 锚 => 錨 */, {"锛", "錛", -1 } /* 锛 => 錛 */, {"锜", "錡", -1 } /* 锜 => 錡 */, {"锝", "鍀", -1 } /* 锝 => 鍀 */, {"锞", "錁", -1 } /* 锞 => 錁 */, {"锟", "錕", -1 } /* 锟 => 錕 */, {"锠", "錩", -1 } /* 锠 => 錩 */, {"锡", "錫", -1 } /* 锡 => 錫 */, {"锡制", "錫製", -1 } /* 锡制 => 錫製 */, {"锡坤", "錫堃", -1 } /* 锡坤 => 錫堃 */, {"锢", "錮", -1 } /* 锢 => 錮 */, {"锣", "鑼", -1 } /* 锣 => 鑼 */, {"锤", "錘", -1 } /* 锤 => 錘 */, {"锤儿", "鎚兒", -1 } /* 锤儿 => 鎚兒 */, {"锤头", "鎚頭", -1 } /* 锤头 => 鎚頭 */, {"锤子", "鎚子", -1 } /* 锤子 => 鎚子 */, {"锥", "錐", -1 } /* 锥 => 錐 */, {"锦", "錦", -1 } /* 锦 => 錦 */, {"锦绣", "錦繡", -1 } /* 锦绣 => 錦繡 */, {"锦镖", "錦標", -1 } /* 锦镖 => 錦標 */, {"锧", "鑕", -1 } /* 锧 => 鑕 */, {"锨", "鍁", -1 } /* 锨 => 鍁 */, {"锩", "錈", -1 } /* 锩 => 錈 */, {"锪", "鍃", -1 } /* 锪 => 鍃 */, {"锫", "錇", -1 } /* 锫 => 錇 */, {"锬", "錟", -1 } /* 锬 => 錟 */, {"锭", "錠", -1 } /* 锭 => 錠 */, {"键", "鍵", -1 } /* 键 => 鍵 */, {"锯", "鋸", -1 } /* 锯 => 鋸 */, {"锰", "錳", -1 } /* 锰 => 錳 */, {"锱", "錙", -1 } /* 锱 => 錙 */, {"锱衣", "緇衣", -1 } /* 锱衣 => 緇衣 */, {"锲", "鍥", -1 } /* 锲 => 鍥 */, {"锲而不舍", "鍥而不捨", -1 } /* 锲而不舍 => 鍥而不捨 */, {"锳", "鍈", -1 } /* 锳 => 鍈 */, {"锴", "鍇", -1 } /* 锴 => 鍇 */, {"锵", "鏘", -1 } /* 锵 => 鏘 */, {"锶", "鍶", -1 } /* 锶 => 鍶 */, {"锷", "鍔", -1 } /* 锷 => 鍔 */, {"锸", "鍤", -1 } /* 锸 => 鍤 */, {"锹", "鍬", -1 } /* 锹 => 鍬 */, {"锺", "鍾", -1 } /* 锺 => 鍾 */, {"锻", "鍛", -1 } /* 锻 => 鍛 */, {"锻炼", "鍛鍊", -1 } /* 锻炼 => 鍛鍊 */, {"锻羽", "鎩羽", -1 } /* 锻羽 => 鎩羽 */, {"锼", "鎪", -1 } /* 锼 => 鎪 */, {"锽", "鍠", -1 } /* 锽 => 鍠 */, {"锾", "鍰", -1 } /* 锾 => 鍰 */, {"锿", "鎄", -1 } /* 锿 => 鎄 */, {"镀", "鍍", -1 } /* 镀 => 鍍 */, {"镁", "鎂", -1 } /* 镁 => 鎂 */, {"镂", "鏤", -1 } /* 镂 => 鏤 */, {"镃", "鎡", -1 } /* 镃 => 鎡 */, {"镄", "鐨", -1 } /* 镄 => 鐨 */, {"镅", "鎇", -1 } /* 镅 => 鎇 */, {"镆", "鏌", -1 } /* 镆 => 鏌 */, {"镇", "鎮", -1 } /* 镇 => 鎮 */, {"镈", "鎛", -1 } /* 镈 => 鎛 */, {"镉", "鎘", -1 } /* 镉 => 鎘 */, {"镊", "鑷", -1 } /* 镊 => 鑷 */, {"镋", "鎲", -1 } /* 镋 => 鎲 */, {"镌", "鎸", -1 } /* 镌 => 鎸 */, {"镌刻", "鐫刻", -1 } /* 镌刻 => 鐫刻 */, {"镌琢", "鐫琢", -1 } /* 镌琢 => 鐫琢 */, {"镌黜", "鐫黜", -1 } /* 镌黜 => 鐫黜 */, {"镍", "鎳", -1 } /* 镍 => 鎳 */, {"镎", "鎿", -1 } /* 镎 => 鎿 */, {"镏", "鎦", -1 } /* 镏 => 鎦 */, {"镐", "鎬", -1 } /* 镐 => 鎬 */, {"镑", "鎊", -1 } /* 镑 => 鎊 */, {"镒", "鎰", -1 } /* 镒 => 鎰 */, {"镓", "鎵", -1 } /* 镓 => 鎵 */, {"镔", "鑌", -1 } /* 镔 => 鑌 */, {"镕", "鎔", -1 } /* 镕 => 鎔 */, {"镖", "鏢", -1 } /* 镖 => 鏢 */, {"镗", "鏜", -1 } /* 镗 => 鏜 */, {"镘", "鏝", -1 } /* 镘 => 鏝 */, {"镙", "鏍", -1 } /* 镙 => 鏍 */, {"镚", "鏰", -1 } /* 镚 => 鏰 */, {"镛", "鏞", -1 } /* 镛 => 鏞 */, {"镜", "鏡", -1 } /* 镜 => 鏡 */, {"镜台", "鏡檯", -1 } /* 镜台 => 鏡檯 */, {"镝", "鏑", -1 } /* 镝 => 鏑 */, {"镞", "鏃", -1 } /* 镞 => 鏃 */, {"镟", "鏇", -1 } /* 镟 => 鏇 */, {"镠", "鏐", -1 } /* 镠 => 鏐 */, {"镡", "鐔", -1 } /* 镡 => 鐔 */, {"镢", "鐝", -1 } /* 镢 => 鐝 */, {"镢头", "钁頭", -1 } /* 镢头 => 钁頭 */, {"镣", "鐐", -1 } /* 镣 => 鐐 */, {"镤", "鏷", -1 } /* 镤 => 鏷 */, {"镥", "鑥", -1 } /* 镥 => 鑥 */, {"镦", "鐓", -1 } /* 镦 => 鐓 */, {"镧", "鑭", -1 } /* 镧 => 鑭 */, {"镨", "鐠", -1 } /* 镨 => 鐠 */, {"镩", "鑹", -1 } /* 镩 => 鑹 */, {"镪", "鏹", -1 } /* 镪 => 鏹 */, {"镫", "鐙", -1 } /* 镫 => 鐙 */, {"镬", "鑊", -1 } /* 镬 => 鑊 */, {"镭", "鐳", -1 } /* 镭 => 鐳 */, {"镮", "鐶", -1 } /* 镮 => 鐶 */, {"镯", "鐲", -1 } /* 镯 => 鐲 */, {"镰", "鐮", -1 } /* 镰 => 鐮 */, {"镰仓", "鎌倉", -1 } /* 镰仓 => 鎌倉 */, {"镱", "鐿", -1 } /* 镱 => 鐿 */, {"镲", "鑔", -1 } /* 镲 => 鑔 */, {"镳", "鑣", -1 } /* 镳 => 鑣 */, {"镴", "鑞", -1 } /* 镴 => 鑞 */, {"镵", "鑱", -1 } /* 镵 => 鑱 */, {"镶", "鑲", -1 } /* 镶 => 鑲 */, {"镶制", "鑲製", -1 } /* 镶制 => 鑲製 */, {"镶崁", "鑲嵌", -1 } /* 镶崁 => 鑲嵌 */, {"长", "長", -1 } /* 长 => 長 */, {"长于", "長於", -1 } /* 长于 => 長於 */, {"长发", "長髮", 64 } /* 长发 => 長髮 */, {"长台", "長檯", -1 } /* 长台 => 長檯 */, {"长吁", "長吁", -1 } /* 长吁 => 長吁 */, {"长须", "長鬚", -1 } /* 长须 => 長鬚 */, {"长须鲸", "長鬚鯨", -1 } /* 长须鲸 => 長鬚鯨 */, {"閒余", "閒餘", -1 } /* 閒余 => 閒餘 */, {"閒游", "閒遊", -1 } /* 閒游 => 閒遊 */, {"閒遐", "閒暇", -1 } /* 閒遐 => 閒暇 */, {"閒静", "閑靜", -1 } /* 閒静 => 閑靜 */, {"门", "門", -1 } /* 门 => 門 */, {"门坎", "門檻", -1 } /* 门坎 => 門檻 */, {"门墙", "門牆", -1 } /* 门墙 => 門牆 */, {"门帘", "門帘", -1 } /* 门帘 => 門帘 */, {"门梁", "門樑", -1 } /* 门梁 => 門樑 */, {"门源", "亹源", -1 } /* 门源 => 亹源 */, {"门神里边卷灶爷", "門神裡邊捲灶爺", -1 } /* 门神里边卷灶爷 => 門神裡邊捲灶爺 */, {"闩", "閂", -1 } /* 闩 => 閂 */, {"闪", "閃", -1 } /* 闪 => 閃 */, {"闪存", "快閃記憶體", -1 } /* 闪存 => 快閃記憶體 */, {"闪铄", "閃爍", -1 } /* 闪铄 => 閃爍 */, {"闫", "閆", -1 } /* 闫 => 閆 */, {"闬", "閈", -1 } /* 闬 => 閈 */, {"闭", "閉", -1 } /* 闭 => 閉 */, {"问", "問", -1 } /* 问 => 問 */, {"闯", "闖", -1 } /* 闯 => 闖 */, {"闰", "閏", -1 } /* 闰 => 閏 */, {"闱", "闈", -1 } /* 闱 => 闈 */, {"闲", "閒", -1 } /* 闲 => 閒 */, {"闳", "閎", -1 } /* 闳 => 閎 */, {"间", "間", -1 } /* 间 => 間 */, {"间不容发", "間不容髮", -1 } /* 间不容发 => 間不容髮 */, {"闵", "閔", -1 } /* 闵 => 閔 */, {"闵采尔", "閔采爾", -1 } /* 闵采尔 => 閔采爾 */, {"闶", "閌", -1 } /* 闶 => 閌 */, {"闷", "悶", -1 } /* 闷 => 悶 */, {"闷着头儿干", "悶著頭兒幹", -1 } /* 闷着头儿干 => 悶著頭兒幹 */, {"闸", "閘", -1 } /* 闸 => 閘 */, {"闹", "閙", -1 } /* 闹 => 閙 */, {"闹", "鬧", -1 } /* 闹 => 鬧 */, {"闹于", "鬧於", -1 } /* 闹于 => 鬧於 */, {"闹着玩儿", "鬧著玩兒", -1 } /* 闹着玩儿 => 鬧著玩兒 */, {"闺", "閨", -1 } /* 闺 => 閨 */, {"闺范", "閨範", -1 } /* 闺范 => 閨範 */, {"闻", "聞", -1 } /* 闻 => 聞 */, {"闼", "闥", -1 } /* 闼 => 闥 */, {"闽", "閩", -1 } /* 闽 => 閩 */, {"闾", "閭", -1 } /* 闾 => 閭 */, {"闿", "闓", -1 } /* 闿 => 闓 */, {"阀", "閥", -1 } /* 阀 => 閥 */, {"阁", "閣", -1 } /* 阁 => 閣 */, {"阂", "閡", -1 } /* 阂 => 閡 */, {"阃", "閫", -1 } /* 阃 => 閫 */, {"阃范", "閫範", -1 } /* 阃范 => 閫範 */, {"阄", "鬮", -1 } /* 阄 => 鬮 */, {"阅", "閲", -1 } /* 阅 => 閲 */, {"阆", "閬", -1 } /* 阆 => 閬 */, {"阇", "闍", -1 } /* 阇 => 闍 */, {"阈", "閾", -1 } /* 阈 => 閾 */, {"阉", "閹", -1 } /* 阉 => 閹 */, {"阊", "閶", -1 } /* 阊 => 閶 */, {"阋", "鬩", -1 } /* 阋 => 鬩 */, {"阋墙", "鬩牆", -1 } /* 阋墙 => 鬩牆 */, {"阌", "閿", -1 } /* 阌 => 閿 */, {"阍", "閽", -1 } /* 阍 => 閽 */, {"阎", "閻", -1 } /* 阎 => 閻 */, {"阏", "閼", -1 } /* 阏 => 閼 */, {"阐", "闡", -1 } /* 阐 => 闡 */, {"阑", "闌", -1 } /* 阑 => 闌 */, {"阒", "闃", -1 } /* 阒 => 闃 */, {"阓", "闠", -1 } /* 阓 => 闠 */, {"阔", "闊", -1 } /* 阔 => 闊 */, {"阕", "闋", -1 } /* 阕 => 闋 */, {"阖", "闔", -1 } /* 阖 => 闔 */, {"阖家", "閤家", -1 } /* 阖家 => 閤家 */, {"阖府", "閤府", -1 } /* 阖府 => 閤府 */, {"阖府上下", "閤府上下", -1 } /* 阖府上下 => 閤府上下 */, {"阗", "闐", -1 } /* 阗 => 闐 */, {"阘", "闒", -1 } /* 阘 => 闒 */, {"阙", "闕", -1 } /* 阙 => 闕 */, {"阚", "闞", -1 } /* 阚 => 闞 */, {"阛", "闤", -1 } /* 阛 => 闤 */, {"队", "隊", -1 } /* 队 => 隊 */, {"防台", "防颱", 65 } /* 防台 => 防颱 */, {"防碍", "妨礙", -1 } /* 防碍 => 妨礙 */, {"防线", "防線", -1 } /* 防线 => 防線 */, {"防范", "防範", -1 } /* 防范 => 防範 */, {"防锈", "防鏽", -1 } /* 防锈 => 防鏽 */, {"阳", "陽", -1 } /* 阳 => 陽 */, {"阳历", "陽曆", -1 } /* 阳历 => 陽曆 */, {"阳春面", "陽春麵", -1 } /* 阳春面 => 陽春麵 */, {"阴", "陰", -1 } /* 阴 => 陰 */, {"阴历", "陰曆", -1 } /* 阴历 => 陰曆 */, {"阴干", "陰乾", -1 } /* 阴干 => 陰乾 */, {"阵", "陣", -1 } /* 阵 => 陣 */, {"阵线", "陣線", -1 } /* 阵线 => 陣線 */, {"阶", "階", -1 } /* 阶 => 階 */, {"阿什克隆", "阿什克隆", -1 } /* 阿什克隆 => 阿什克隆 */, {"阿斗", "阿斗", -1 } /* 阿斗 => 阿斗 */, {"阿比让", "阿必尚", -1 } /* 阿比让 => 阿必尚 */, {"阿腴", "阿諛", -1 } /* 阿腴 => 阿諛 */, {"阿里", "阿里", -1 } /* 阿里 => 阿里 */, {"阿里山", "阿里山", -1 } /* 阿里山 => 阿里山 */, {"陀手", "舵手", -1 } /* 陀手 => 舵手 */, {"陀表", "陀錶", -1 } /* 陀表 => 陀錶 */, {"附于", "附於", -1 } /* 附于 => 附於 */, {"附注", "附註", -1 } /* 附注 => 附註 */, {"际", "際", -1 } /* 际 => 際 */, {"陆", "陸", -1 } /* 陆 => 陸 */, {"陇", "隴", -1 } /* 陇 => 隴 */, {"陈", "陳", -1 } /* 陈 => 陳 */, {"陉", "陘", -1 } /* 陉 => 陘 */, {"陕", "陝", -1 } /* 陕 => 陝 */, {"陡松", "陡鬆", -1 } /* 陡松 => 陡鬆 */, {"除旧布新", "除舊佈新", -1 } /* 除旧布新 => 除舊佈新 */, {"陧", "隉", -1 } /* 陧 => 隉 */, {"陨", "隕", -1 } /* 陨 => 隕 */, {"险", "險", -1 } /* 险 => 險 */, {"随", "隨", -1 } /* 随 => 隨 */, {"隐", "隱", -1 } /* 隐 => 隱 */, {"隔墙有耳", "隔牆有耳", -1 } /* 隔墙有耳 => 隔牆有耳 */, {"隶", "隷", -1 } /* 隶 => 隷 */, {"隶", "隸", -1 } /* 隶 => 隸 */, {"隽", "雋", -1 } /* 隽 => 雋 */, {"难", "難", -1 } /* 难 => 難 */, {"难于", "難於", -1 } /* 难于 => 難於 */, {"难咽", "難嚥", -1 } /* 难咽 => 難嚥 */, {"难干", "難乾", 66 } /* 难干 => 難乾 */, {"难舍", "難捨", -1 } /* 难舍 => 難捨 */, {"雅尔塔", "雅爾達", -1 } /* 雅尔塔 => 雅爾達 */, {"雅致", "雅緻", -1 } /* 雅致 => 雅緻 */, {"雅范", "雅範", -1 } /* 雅范 => 雅範 */, {"集于", "集於", -1 } /* 集于 => 集於 */, {"集成", "整合", -1 } /* 集成 => 整合 */, {"集游法", "集遊法", -1 } /* 集游法 => 集遊法 */, {"雇", "僱", -1 } /* 雇 => 僱 */, {"雇不", "雇不", -1 } /* 雇不 => 雇不 */, {"雇不起", "僱不起", -1 } /* 雇不起 => 僱不起 */, {"雇佣", "雇傭", -1 } /* 雇佣 => 雇傭 */, {"雇佣", "僱傭", -1 } /* 雇佣 => 僱傭 */, {"雏", "雛", -1 } /* 雏 => 雛 */, {"雕丧", "彫喪", -1 } /* 雕丧 => 彫喪 */, {"雕梁", "雕樑", -1 } /* 雕梁 => 雕樑 */, {"雕残", "彫殘", -1 } /* 雕残 => 彫殘 */, {"雕落", "彫落", -1 } /* 雕落 => 彫落 */, {"雕虫", "彫蟲", -1 } /* 雕虫 => 彫蟲 */, {"雕谢", "彫謝", -1 } /* 雕谢 => 彫謝 */, {"雕零", "彫零", -1 } /* 雕零 => 彫零 */, {"雠", "讎", -1 } /* 雠 => 讎 */, {"雠隙", "讎隙", -1 } /* 雠隙 => 讎隙 */, {"雪糕", "雪糕", -1 } /* 雪糕 => 雪糕 */, {"雪线", "雪線", -1 } /* 雪线 => 雪線 */, {"雳", "靂", -1 } /* 雳 => 靂 */, {"零余子", "零餘子", -1 } /* 零余子 => 零餘子 */, {"雾", "霧", -1 } /* 雾 => 霧 */, {"霁", "霽", -1 } /* 霁 => 霽 */, {"震松", "震鬆", -1 } /* 震松 => 震鬆 */, {"震荡", "震蕩", -1 } /* 震荡 => 震蕩 */, {"震荡", "震盪", -1 } /* 震荡 => 震盪 */, {"霉毒", "黴毒", -1 } /* 霉毒 => 黴毒 */, {"霉菌", "黴菌", -1 } /* 霉菌 => 黴菌 */, {"霡", "霢", -1 } /* 霡 => 霢 */, {"霭", "靄", -1 } /* 霭 => 靄 */, {"霸占", "霸佔", -1 } /* 霸占 => 霸佔 */, {"青于", "青於", -1 } /* 青于 => 青於 */, {"青朴", "青朴", -1 } /* 青朴 => 青朴 */, {"青笞", "青苔", -1 } /* 青笞 => 青苔 */, {"青霉", "青黴", -1 } /* 青霉 => 青黴 */, {"靓", "靚", -1 } /* 靓 => 靚 */, {"静", "靜", -1 } /* 静 => 靜 */, {"静于", "靜於", -1 } /* 静于 => 靜於 */, {"非涂不可", "非塗不可", -1 } /* 非涂不可 => 非塗不可 */, {"面价", "麵價", 67 } /* 面价 => 麵價 */, {"面包", "麵包", -1 } /* 面包 => 麵包 */, {"面厂", "麵廠", -1 } /* 面厂 => 麵廠 */, {"面团", "麵糰", -1 } /* 面团 => 麵糰 */, {"面店", "麵店", -1 } /* 面店 => 麵店 */, {"面店铺", "麵店舖", -1 } /* 面店铺 => 麵店舖 */, {"面摊", "麵攤", 68 } /* 面摊 => 麵攤 */, {"面杖", "麵杖", -1 } /* 面杖 => 麵杖 */, {"面条", "麵條", -1 } /* 面条 => 麵條 */, {"面汤", "麵湯", -1 } /* 面汤 => 麵湯 */, {"面灰", "麵灰", -1 } /* 面灰 => 麵灰 */, {"面疙瘩", "麵疙瘩", -1 } /* 面疙瘩 => 麵疙瘩 */, {"面白无须", "面白無鬚", -1 } /* 面白无须 => 面白無鬚 */, {"面皮", "麵皮", -1 } /* 面皮 => 麵皮 */, {"面碗", "麵碗", -1 } /* 面碗 => 麵碗 */, {"面筋", "麵筋", -1 } /* 面筋 => 麵筋 */, {"面粉", "麵粉", -1 } /* 面粉 => 麵粉 */, {"面糊", "麵糊", -1 } /* 面糊 => 麵糊 */, {"面线", "麪線", -1 } /* 面线 => 麪線 */, {"面线", "麵線", -1 } /* 面线 => 麵線 */, {"面茶", "麵茶", -1 } /* 面茶 => 麵茶 */, {"面铺", "麵舖", -1 } /* 面铺 => 麵舖 */, {"面食", "麵食", -1 } /* 面食 => 麵食 */, {"面饺", "麵餃", -1 } /* 面饺 => 麵餃 */, {"面饼", "麵餅", -1 } /* 面饼 => 麵餅 */, {"面馆", "麵館", -1 } /* 面馆 => 麵館 */, {"面馍", "麵饃", -1 } /* 面馍 => 麵饃 */, {"面龟", "麵龜", -1 } /* 面龟 => 麵龜 */, {"靥", "靨", -1 } /* 靥 => 靨 */, {"靦典", "靦腆", -1 } /* 靦典 => 靦腆 */, {"鞑", "韃", -1 } /* 鞑 => 韃 */, {"鞑伐", "撻伐", -1 } /* 鞑伐 => 撻伐 */, {"鞒", "鞽", -1 } /* 鞒 => 鞽 */, {"鞣制", "鞣製", -1 } /* 鞣制 => 鞣製 */, {"鞯", "韉", -1 } /* 鞯 => 韉 */, {"韦", "韋", -1 } /* 韦 => 韋 */, {"韦后", "韋后", -1 } /* 韦后 => 韋后 */, {"韦席", "韋蓆", -1 } /* 韦席 => 韋蓆 */, {"韧", "韌", -1 } /* 韧 => 韌 */, {"韨", "韍", -1 } /* 韨 => 韍 */, {"韩", "韓", -1 } /* 韩 => 韓 */, {"韩制", "韓製", -1 } /* 韩制 => 韓製 */, {"韪", "韙", -1 } /* 韪 => 韙 */, {"韫", "韞", -1 } /* 韫 => 韞 */, {"韬", "韜", -1 } /* 韬 => 韜 */, {"韵", "韻", -1 } /* 韵 => 韻 */, {"韶山冲", "韶山衝", -1 } /* 韶山冲 => 韶山衝 */, {"页", "頁", -1 } /* 页 => 頁 */, {"页簽", "頁籤", -1 } /* 页簽 => 頁籤 */, {"顶", "頂", -1 } /* 顶 => 頂 */, {"顶凶", "頂兇", -1 } /* 顶凶 => 頂兇 */, {"顷", "頃", -1 } /* 顷 => 頃 */, {"顸", "頇", -1 } /* 顸 => 頇 */, {"项", "項", -1 } /* 项 => 項 */, {"顺", "順", -1 } /* 顺 => 順 */, {"顺发", "順髮", 69 } /* 顺发 => 順髮 */, {"须", "須", -1 } /* 须 => 須 */, {"须发", "鬚髮", 70 } /* 须发 => 鬚髮 */, {"须发展", "須發展", -1 } /* 须发展 => 須發展 */, {"须发文", "須發文", -1 } /* 须发文 => 須發文 */, {"须发表", "須發表", -1 } /* 须发表 => 須發表 */, {"须叟", "須臾", -1 } /* 须叟 => 須臾 */, {"须子", "鬚子", -1 } /* 须子 => 鬚子 */, {"须根", "鬚根", -1 } /* 须根 => 鬚根 */, {"须毛", "鬚毛", -1 } /* 须毛 => 鬚毛 */, {"须生", "鬚生", -1 } /* 须生 => 鬚生 */, {"须眉", "鬚眉", -1 } /* 须眉 => 鬚眉 */, {"须采", "須採", -1 } /* 须采 => 須採 */, {"须须", "鬚鬚", -1 } /* 须须 => 鬚鬚 */, {"须髯", "鬚髯", -1 } /* 须髯 => 鬚髯 */, {"须鬓", "鬚鬢", -1 } /* 须鬓 => 鬚鬢 */, {"须鲨", "鬚鯊", -1 } /* 须鲨 => 鬚鯊 */, {"须鲸", "鬚鯨", -1 } /* 须鲸 => 鬚鯨 */, {"顼", "頊", -1 } /* 顼 => 頊 */, {"顽", "頑", -1 } /* 顽 => 頑 */, {"顾", "顧", -1 } /* 顾 => 顧 */, {"顿", "頓", -1 } /* 顿 => 頓 */, {"颀", "頎", -1 } /* 颀 => 頎 */, {"颁", "頒", -1 } /* 颁 => 頒 */, {"颁布", "頒佈", -1 } /* 颁布 => 頒佈 */, {"颂", "頌", -1 } /* 颂 => 頌 */, {"颂系", "頌繫", -1 } /* 颂系 => 頌繫 */, {"颂赞", "頌讚", -1 } /* 颂赞 => 頌讚 */, {"颃", "頏", -1 } /* 颃 => 頏 */, {"预", "預", -1 } /* 预 => 預 */, {"预制", "預製", -1 } /* 预制 => 預製 */, {"预布", "預佈", -1 } /* 预布 => 預佈 */, {"颅", "顱", -1 } /* 颅 => 顱 */, {"领", "領", -1 } /* 领 => 領 */, {"领头", "领頭", -1 } /* 领头 => 领頭 */, {"领袖欲", "領袖慾", -1 } /* 领袖欲 => 領袖慾 */, {"颇", "頗", -1 } /* 颇 => 頗 */, {"颈", "頸", -1 } /* 颈 => 頸 */, {"颈系", "頸繫", -1 } /* 颈系 => 頸繫 */, {"颉", "頡", -1 } /* 颉 => 頡 */, {"颊", "頰", -1 } /* 颊 => 頰 */, {"颊须", "頰鬚", -1 } /* 颊须 => 頰鬚 */, {"颋", "頲", -1 } /* 颋 => 頲 */, {"颌", "頜", -1 } /* 颌 => 頜 */, {"颌须", "頜鬚", -1 } /* 颌须 => 頜鬚 */, {"颍", "潁", -1 } /* 颍 => 潁 */, {"颎", "熲", -1 } /* 颎 => 熲 */, {"颏", "頦", -1 } /* 颏 => 頦 */, {"颐", "頤", -1 } /* 颐 => 頤 */, {"频", "頻", -1 } /* 频 => 頻 */, {"颒", "頮", -1 } /* 颒 => 頮 */, {"颓", "頽", -1 } /* 颓 => 頽 */, {"颓圯", "頹圮", -1 } /* 颓圯 => 頹圮 */, {"颔", "頷", -1 } /* 颔 => 頷 */, {"颕", "頴", -1 } /* 颕 => 頴 */, {"颖", "穎", -1 } /* 颖 => 穎 */, {"颗", "顆", -1 } /* 颗 => 顆 */, {"题", "題", -1 } /* 题 => 題 */, {"题簽", "題籤", -1 } /* 题簽 => 題籤 */, {"颙", "顒", -1 } /* 颙 => 顒 */, {"颚", "顎", -1 } /* 颚 => 顎 */, {"颛", "顓", -1 } /* 颛 => 顓 */, {"颜", "顏", -1 } /* 颜 => 顏 */, {"额", "額", -1 } /* 额 => 額 */, {"颞", "顳", -1 } /* 颞 => 顳 */, {"颟", "顢", -1 } /* 颟 => 顢 */, {"颠", "顛", -1 } /* 颠 => 顛 */, {"颠复", "顛覆", -1 } /* 颠复 => 顛覆 */, {"颠覆", "顛覆", -1 } /* 颠覆 => 顛覆 */, {"颡", "顙", -1 } /* 颡 => 顙 */, {"颢", "顥", -1 } /* 颢 => 顥 */, {"颤", "顫", -1 } /* 颤 => 顫 */, {"颥", "顬", -1 } /* 颥 => 顬 */, {"颦", "顰", -1 } /* 颦 => 顰 */, {"颧", "顴", -1 } /* 颧 => 顴 */, {"风", "風", -1 } /* 风 => 風 */, {"风刮", "風颳", -1 } /* 风刮 => 風颳 */, {"风卷", "風捲", -1 } /* 风卷 => 風捲 */, {"风土志", "風土誌", -1 } /* 风土志 => 風土誌 */, {"风干", "風乾", -1 } /* 风干 => 風乾 */, {"风斗", "風斗", -1 } /* 风斗 => 風斗 */, {"风物志", "風物誌", -1 } /* 风物志 => 風物誌 */, {"风范", "風範", -1 } /* 风范 => 風範 */, {"风采", "風采", -1 } /* 风采 => 風采 */, {"飏", "颺", -1 } /* 飏 => 颺 */, {"飐", "颭", -1 } /* 飐 => 颭 */, {"飑", "颮", -1 } /* 飑 => 颮 */, {"飒", "颯", -1 } /* 飒 => 颯 */, {"飓", "颶", -1 } /* 飓 => 颶 */, {"飔", "颸", -1 } /* 飔 => 颸 */, {"飕", "颼", -1 } /* 飕 => 颼 */, {"飖", "颻", -1 } /* 飖 => 颻 */, {"飗", "飀", -1 } /* 飗 => 飀 */, {"飘", "飄", -1 } /* 飘 => 飄 */, {"飘游", "飄遊", -1 } /* 飘游 => 飄遊 */, {"飘荡", "飄蕩", -1 } /* 飘荡 => 飄蕩 */, {"飙", "飆", -1 } /* 飙 => 飆 */, {"飙卷", "飆捲", -1 } /* 飙卷 => 飆捲 */, {"飚", "飈", -1 } /* 飚 => 飈 */, {"飞", "飛", -1 } /* 飞 => 飛 */, {"飞升", "飛昇", -1 } /* 飞升 => 飛昇 */, {"食欲", "食慾", -1 } /* 食欲 => 食慾 */, {"食面", "食麵", -1 } /* 食面 => 食麵 */, {"飨", "饗", -1 } /* 飨 => 饗 */, {"餍", "饜", -1 } /* 餍 => 饜 */, {"餐台", "餐檯", -1 } /* 餐台 => 餐檯 */, {"饣", "飠", -1 } /* 饣 => 飠 */, {"饤", "飣", -1 } /* 饤 => 飣 */, {"饥", "饑", -1 } /* 饥 => 饑 */, {"饥不择食", "饑不擇食", -1 } /* 饥不择食 => 饑不擇食 */, {"饥寒", "饑寒", -1 } /* 饥寒 => 饑寒 */, {"饥年", "饑年", -1 } /* 饥年 => 饑年 */, {"饥民", "饑民", -1 } /* 饥民 => 饑民 */, {"饥渴", "饑渴", -1 } /* 饥渴 => 饑渴 */, {"饥溺", "饑溺", -1 } /* 饥溺 => 饑溺 */, {"饥荒", "饑荒", -1 } /* 饥荒 => 饑荒 */, {"饥饱", "饑飽", -1 } /* 饥饱 => 饑飽 */, {"饥饿", "饑餓", -1 } /* 饥饿 => 饑餓 */, {"饥馑", "饑饉", -1 } /* 饥馑 => 饑饉 */, {"饦", "飥", -1 } /* 饦 => 飥 */, {"饧", "餳", -1 } /* 饧 => 餳 */, {"饨", "飩", -1 } /* 饨 => 飩 */, {"饩", "餼", -1 } /* 饩 => 餼 */, {"饪", "飪", -1 } /* 饪 => 飪 */, {"饫", "飫", -1 } /* 饫 => 飫 */, {"饬", "飭", -1 } /* 饬 => 飭 */, {"饭", "飯", -1 } /* 饭 => 飯 */, {"饭团", "飯糰", -1 } /* 饭团 => 飯糰 */, {"饭饱生余事", "飯飽生餘事", -1 } /* 饭饱生余事 => 飯飽生餘事 */, {"饮", "飲", -1 } /* 饮 => 飲 */, {"饮干", "飲乾", -1 } /* 饮干 => 飲乾 */, {"饯", "餞", -1 } /* 饯 => 餞 */, {"饰", "飾", -1 } /* 饰 => 飾 */, {"饱", "飽", -1 } /* 饱 => 飽 */, {"饲", "飼", -1 } /* 饲 => 飼 */, {"饳", "飿", -1 } /* 饳 => 飿 */, {"饴", "飴", -1 } /* 饴 => 飴 */, {"饵", "餌", -1 } /* 饵 => 餌 */, {"饶", "饒", -1 } /* 饶 => 饒 */, {"饷", "餉", -1 } /* 饷 => 餉 */, {"饸", "餄", -1 } /* 饸 => 餄 */, {"饹", "餎", -1 } /* 饹 => 餎 */, {"饺", "餃", -1 } /* 饺 => 餃 */, {"饻", "餏", -1 } /* 饻 => 餏 */, {"饼", "餅", -1 } /* 饼 => 餅 */, {"饼干", "餅乾", -1 } /* 饼干 => 餅乾 */, {"饽", "餑", -1 } /* 饽 => 餑 */, {"饾", "餖", -1 } /* 饾 => 餖 */, {"饿", "餓", -1 } /* 饿 => 餓 */, {"馀", "餘", -1 } /* 馀 => 餘 */, {"馁", "餒", -1 } /* 馁 => 餒 */, {"馂", "餕", -1 } /* 馂 => 餕 */, {"馃", "餜", -1 } /* 馃 => 餜 */, {"馄", "餛", -1 } /* 馄 => 餛 */, {"馄饨面", "餛飩麵", -1 } /* 馄饨面 => 餛飩麵 */, {"馅", "餡", -1 } /* 馅 => 餡 */, {"馆", "館", -1 } /* 馆 => 館 */, {"馇", "餷", -1 } /* 馇 => 餷 */, {"馈", "饋", -1 } /* 馈 => 饋 */, {"馈赠", "餽贈", -1 } /* 馈赠 => 餽贈 */, {"馉", "餶", -1 } /* 馉 => 餶 */, {"馊", "餿", -1 } /* 馊 => 餿 */, {"馋", "饞", -1 } /* 馋 => 饞 */, {"馌", "饁", -1 } /* 馌 => 饁 */, {"馍", "饃", -1 } /* 馍 => 饃 */, {"馎", "餺", -1 } /* 馎 => 餺 */, {"馏", "餾", -1 } /* 馏 => 餾 */, {"馐", "饈", -1 } /* 馐 => 饈 */, {"馑", "饉", -1 } /* 馑 => 饉 */, {"馒", "饅", -1 } /* 馒 => 饅 */, {"馓", "饊", -1 } /* 馓 => 饊 */, {"馔", "饌", -1 } /* 馔 => 饌 */, {"馕", "饟", -1 } /* 馕 => 饟 */, {"馕", "饢", -1 } /* 馕 => 饢 */, {"香山庄", "香山庄", -1 } /* 香山庄 => 香山庄 */, {"香干", "香乾", -1 } /* 香干 => 香乾 */, {"香格里拉", "香格里拉", -1 } /* 香格里拉 => 香格里拉 */, {"香港游", "香港遊", -1 } /* 香港游 => 香港遊 */, {"香蜡", "香蠟", -1 } /* 香蜡 => 香蠟 */, {"香郁", "香郁", -1 } /* 香郁 => 香郁 */, {"馥郁", "馥郁", -1 } /* 馥郁 => 馥郁 */, {"马", "馬", -1 } /* 马 => 馬 */, {"马僵", "馬韁", -1 } /* 马僵 => 馬韁 */, {"马多夫", "麥道夫", -1 } /* 马多夫 => 麥道夫 */, {"马干", "馬乾", -1 } /* 马干 => 馬乾 */, {"马德里", "馬德里", -1 } /* 马德里 => 馬德里 */, {"马恩岛", "曼島", -1 } /* 马恩岛 => 曼島 */, {"马略卡", "馬霍卡", -1 } /* 马略卡 => 馬霍卡 */, {"马约特", "美亞特", -1 } /* 马约特 => 美亞特 */, {"马耳他", "馬爾他", -1 } /* 马耳他 => 馬爾他 */, {"马表", "馬錶", -1 } /* 马表 => 馬錶 */, {"马里亚纳", "馬里亞納", -1 } /* 马里亚纳 => 馬里亞納 */, {"马里内斯科", "馬里內斯科", -1 } /* 马里内斯科 => 馬里內斯科 */, {"马里奥", "馬里奧", -1 } /* 马里奥 => 馬里奧 */, {"驭", "馭", -1 } /* 驭 => 馭 */, {"驮", "馱", -1 } /* 驮 => 馱 */, {"驯", "馴", -1 } /* 驯 => 馴 */, {"驰", "馳", -1 } /* 驰 => 馳 */, {"驱", "驅", -1 } /* 驱 => 驅 */, {"驱动程序", "驅動程式", -1 } /* 驱动程序 => 驅動程式 */, {"驲", "馹", -1 } /* 驲 => 馹 */, {"驳", "駁", -1 } /* 驳 => 駁 */, {"驴", "驢", -1 } /* 驴 => 驢 */, {"驵", "駔", -1 } /* 驵 => 駔 */, {"驶", "駛", -1 } /* 驶 => 駛 */, {"驷", "駟", -1 } /* 驷 => 駟 */, {"驸", "駙", -1 } /* 驸 => 駙 */, {"驹", "駒", -1 } /* 驹 => 駒 */, {"驺", "騶", -1 } /* 驺 => 騶 */, {"驻", "駐", -1 } /* 驻 => 駐 */, {"驼", "駝", -1 } /* 驼 => 駝 */, {"驽", "駑", -1 } /* 驽 => 駑 */, {"驾", "駕", -1 } /* 驾 => 駕 */, {"驿", "驛", -1 } /* 驿 => 驛 */, {"骀", "駘", -1 } /* 骀 => 駘 */, {"骀荡", "駘蕩", -1 } /* 骀荡 => 駘蕩 */, {"骁", "驍", -1 } /* 骁 => 驍 */, {"骂", "罵", -1 } /* 骂 => 罵 */, {"骂着", "罵著", -1 } /* 骂着 => 罵著 */, {"骃", "駰", -1 } /* 骃 => 駰 */, {"骄", "驕", -1 } /* 骄 => 驕 */, {"骅", "驊", -1 } /* 骅 => 驊 */, {"骆", "駱", -1 } /* 骆 => 駱 */, {"骇", "駭", -1 } /* 骇 => 駭 */, {"骈", "駢", -1 } /* 骈 => 駢 */, {"骉", "驫", -1 } /* 骉 => 驫 */, {"骊", "驪", -1 } /* 骊 => 驪 */, {"骋", "騁", -1 } /* 骋 => 騁 */, {"骋凶", "騁兇", -1 } /* 骋凶 => 騁兇 */, {"验", "驗", -1 } /* 验 => 驗 */, {"骍", "騂", -1 } /* 骍 => 騂 */, {"骎", "駸", -1 } /* 骎 => 駸 */, {"骏", "駿", -1 } /* 骏 => 駿 */, {"骐", "騏", -1 } /* 骐 => 騏 */, {"骑", "騎", -1 } /* 骑 => 騎 */, {"骑墙", "騎牆", -1 } /* 骑墙 => 騎牆 */, {"骒", "騍", -1 } /* 骒 => 騍 */, {"骓", "騅", -1 } /* 骓 => 騅 */, {"骔", "騌", -1 } /* 骔 => 騌 */, {"骕", "驌", -1 } /* 骕 => 驌 */, {"骖", "驂", -1 } /* 骖 => 驂 */, {"骗", "騙", -1 } /* 骗 => 騙 */, {"骘", "騭", -1 } /* 骘 => 騭 */, {"骙", "騤", -1 } /* 骙 => 騤 */, {"骚", "騷", -1 } /* 骚 => 騷 */, {"骛", "騖", -1 } /* 骛 => 騖 */, {"骜", "驁", -1 } /* 骜 => 驁 */, {"骝", "騮", -1 } /* 骝 => 騮 */, {"骞", "騫", -1 } /* 骞 => 騫 */, {"骟", "騸", -1 } /* 骟 => 騸 */, {"骠", "驃", -1 } /* 骠 => 驃 */, {"骡", "騾", -1 } /* 骡 => 騾 */, {"骢", "驄", -1 } /* 骢 => 驄 */, {"骣", "驏", -1 } /* 骣 => 驏 */, {"骤", "驟", -1 } /* 骤 => 驟 */, {"骤松", "驟鬆", -1 } /* 骤松 => 驟鬆 */, {"骥", "驥", -1 } /* 骥 => 驥 */, {"骦", "驦", -1 } /* 骦 => 驦 */, {"骧", "驤", -1 } /* 骧 => 驤 */, {"骨坛", "骨罈", -1 } /* 骨坛 => 骨罈 */, {"骨寒毛竖", "骨寒毛豎", -1 } /* 骨寒毛竖 => 骨寒毛豎 */, {"骨干", "骨幹", -1 } /* 骨干 => 骨幹 */, {"骨松", "骨鬆", -1 } /* 骨松 => 骨鬆 */, {"骨灰坛", "骨灰罈", -1 } /* 骨灰坛 => 骨灰罈 */, {"骼膊", "胳膊", -1 } /* 骼膊 => 胳膊 */, {"髅", "髏", -1 } /* 髅 => 髏 */, {"髋", "髖", -1 } /* 髋 => 髖 */, {"髌", "髕", -1 } /* 髌 => 髕 */, {"高于", "高於", -1 } /* 高于 => 高於 */, {"高干", "高幹", 71 } /* 高干 => 高幹 */, {"高速缓存", "快取記憶體", -1 } /* 高速缓存 => 快取記憶體 */, {"髭须", "髭鬚", -1 } /* 髭须 => 髭鬚 */, {"髯发", "髯髮", -1 } /* 髯发 => 髯髮 */, {"髯胡", "髯鬍", -1 } /* 髯胡 => 髯鬍 */, {"髯须", "髯鬚", -1 } /* 髯须 => 髯鬚 */, {"鬈发", "鬈髮", -1 } /* 鬈发 => 鬈髮 */, {"鬓", "鬢", -1 } /* 鬓 => 鬢 */, {"鬓发", "鬢髮", -1 } /* 鬓发 => 鬢髮 */, {"鬓须", "鬢鬚", -1 } /* 鬓须 => 鬢鬚 */, {"鬼谷子", "鬼谷子", -1 } /* 鬼谷子 => 鬼谷子 */, {"魂游", "魂遊", -1 } /* 魂游 => 魂遊 */, {"魂牵梦系", "魂牽夢繫", -1 } /* 魂牵梦系 => 魂牽夢繫 */, {"魇", "魘", -1 } /* 魇 => 魘 */, {"魉", "魎", -1 } /* 魉 => 魎 */, {"魏征", "魏徵", -1 } /* 魏征 => 魏徵 */, {"鱼", "魚", -1 } /* 鱼 => 魚 */, {"鱼干", "魚乾", -1 } /* 鱼干 => 魚乾 */, {"鱼松", "魚鬆", -1 } /* 鱼松 => 魚鬆 */, {"鱽", "魛", -1 } /* 鱽 => 魛 */, {"鱾", "魢", -1 } /* 鱾 => 魢 */, {"鱿", "魷", -1 } /* 鱿 => 魷 */, {"鲀", "魨", -1 } /* 鲀 => 魨 */, {"鲁", "魯", -1 } /* 鲁 => 魯 */, {"鲂", "魴", -1 } /* 鲂 => 魴 */, {"鲃", "䰾", -1 } /* 鲃 => 䰾 */, {"鲄", "魺", -1 } /* 鲄 => 魺 */, {"鲅", "鮁", -1 } /* 鲅 => 鮁 */, {"鲆", "鮃", -1 } /* 鲆 => 鮃 */, {"鲇", "鮎", -1 } /* 鲇 => 鮎 */, {"鲇鱼", "鯰魚", -1 } /* 鲇鱼 => 鯰魚 */, {"鲈", "鱸", -1 } /* 鲈 => 鱸 */, {"鲉", "鮋", -1 } /* 鲉 => 鮋 */, {"鲊", "鮓", -1 } /* 鲊 => 鮓 */, {"鲋", "鮒", -1 } /* 鲋 => 鮒 */, {"鲌", "鮊", -1 } /* 鲌 => 鮊 */, {"鲍", "鮑", -1 } /* 鲍 => 鮑 */, {"鲎", "鱟", -1 } /* 鲎 => 鱟 */, {"鲏", "鮍", -1 } /* 鲏 => 鮍 */, {"鲐", "鮐", -1 } /* 鲐 => 鮐 */, {"鲑", "鮭", -1 } /* 鲑 => 鮭 */, {"鲒", "鮚", -1 } /* 鲒 => 鮚 */, {"鲓", "鮳", -1 } /* 鲓 => 鮳 */, {"鲔", "鮪", -1 } /* 鲔 => 鮪 */, {"鲕", "鮞", -1 } /* 鲕 => 鮞 */, {"鲖", "鮦", -1 } /* 鲖 => 鮦 */, {"鲗", "鰂", -1 } /* 鲗 => 鰂 */, {"鲘", "鮜", -1 } /* 鲘 => 鮜 */, {"鲙", "鱠", -1 } /* 鲙 => 鱠 */, {"鲚", "鱭", -1 } /* 鲚 => 鱭 */, {"鲛", "鮫", -1 } /* 鲛 => 鮫 */, {"鲜", "鮮", -1 } /* 鲜 => 鮮 */, {"鲝", "鮺", -1 } /* 鲝 => 鮺 */, {"鲞", "鯗", -1 } /* 鲞 => 鯗 */, {"鲟", "鱘", -1 } /* 鲟 => 鱘 */, {"鲠", "鯁", -1 } /* 鲠 => 鯁 */, {"鲡", "鱺", -1 } /* 鲡 => 鱺 */, {"鲢", "鰱", -1 } /* 鲢 => 鰱 */, {"鲣", "鰹", -1 } /* 鲣 => 鰹 */, {"鲤", "鯉", -1 } /* 鲤 => 鯉 */, {"鲥", "鰣", -1 } /* 鲥 => 鰣 */, {"鲦", "鰷", -1 } /* 鲦 => 鰷 */, {"鲧", "鯀", -1 } /* 鲧 => 鯀 */, {"鲨", "鯊", -1 } /* 鲨 => 鯊 */, {"鲩", "鯇", -1 } /* 鲩 => 鯇 */, {"鲪", "鮶", -1 } /* 鲪 => 鮶 */, {"鲫", "鯽", -1 } /* 鲫 => 鯽 */, {"鲬", "鯒", -1 } /* 鲬 => 鯒 */, {"鲭", "鯖", -1 } /* 鲭 => 鯖 */, {"鲮", "鯪", -1 } /* 鲮 => 鯪 */, {"鲯", "鯕", -1 } /* 鲯 => 鯕 */, {"鲰", "鯫", -1 } /* 鲰 => 鯫 */, {"鲱", "鯡", -1 } /* 鲱 => 鯡 */, {"鲲", "鯤", -1 } /* 鲲 => 鯤 */, {"鲳", "鯧", -1 } /* 鲳 => 鯧 */, {"鲴", "鯝", -1 } /* 鲴 => 鯝 */, {"鲵", "鯢", -1 } /* 鲵 => 鯢 */, {"鲶", "鯰", -1 } /* 鲶 => 鯰 */, {"鲷", "鯛", -1 } /* 鲷 => 鯛 */, {"鲸", "鯨", -1 } /* 鲸 => 鯨 */, {"鲸须", "鯨鬚", -1 } /* 鲸须 => 鯨鬚 */, {"鲹", "鰺", -1 } /* 鲹 => 鰺 */, {"鲺", "鯴", -1 } /* 鲺 => 鯴 */, {"鲻", "鯔", -1 } /* 鲻 => 鯔 */, {"鲼", "鱝", -1 } /* 鲼 => 鱝 */, {"鲽", "鰈", -1 } /* 鲽 => 鰈 */, {"鲾", "鰏", -1 } /* 鲾 => 鰏 */, {"鲿", "鱨", -1 } /* 鲿 => 鱨 */, {"鳀", "鯷", -1 } /* 鳀 => 鯷 */, {"鳁", "鰛", -1 } /* 鳁 => 鰛 */, {"鳂", "鰃", -1 } /* 鳂 => 鰃 */, {"鳃", "鰓", -1 } /* 鳃 => 鰓 */, {"鳄", "鰐", -1 } /* 鳄 => 鰐 */, {"鳄鱼", "鱷魚", -1 } /* 鳄鱼 => 鱷魚 */, {"鳅", "鰍", -1 } /* 鳅 => 鰍 */, {"鳆", "鰒", -1 } /* 鳆 => 鰒 */, {"鳇", "鰉", -1 } /* 鳇 => 鰉 */, {"鳈", "鰁", -1 } /* 鳈 => 鰁 */, {"鳉", "鱂", -1 } /* 鳉 => 鱂 */, {"鳊", "鯿", -1 } /* 鳊 => 鯿 */, {"鳋", "鰠", -1 } /* 鳋 => 鰠 */, {"鳌", "鰲", -1 } /* 鳌 => 鰲 */, {"鳍", "鰭", -1 } /* 鳍 => 鰭 */, {"鳎", "鰨", -1 } /* 鳎 => 鰨 */, {"鳏", "鰥", -1 } /* 鳏 => 鰥 */, {"鳐", "鰩", -1 } /* 鳐 => 鰩 */, {"鳑", "鰟", -1 } /* 鳑 => 鰟 */, {"鳒", "鰜", -1 } /* 鳒 => 鰜 */, {"鳓", "鰳", -1 } /* 鳓 => 鰳 */, {"鳔", "鰾", -1 } /* 鳔 => 鰾 */, {"鳕", "鱈", -1 } /* 鳕 => 鱈 */, {"鳖", "鱉", -1 } /* 鳖 => 鱉 */, {"鳗", "鰻", -1 } /* 鳗 => 鰻 */, {"鳘", "鰵", -1 } /* 鳘 => 鰵 */, {"鳙", "鱅", -1 } /* 鳙 => 鱅 */, {"鳚", "䲁", -1 } /* 鳚 => 䲁 */, {"鳛", "鰼", -1 } /* 鳛 => 鰼 */, {"鳜", "鱖", -1 } /* 鳜 => 鱖 */, {"鳝", "鱔", -1 } /* 鳝 => 鱔 */, {"鳞", "鱗", -1 } /* 鳞 => 鱗 */, {"鳟", "鱒", -1 } /* 鳟 => 鱒 */, {"鳠", "鱯", -1 } /* 鳠 => 鱯 */, {"鳡", "鱤", -1 } /* 鳡 => 鱤 */, {"鳢", "鱧", -1 } /* 鳢 => 鱧 */, {"鳣", "鱣", -1 } /* 鳣 => 鱣 */, {"鸟", "鳥", -1 } /* 鸟 => 鳥 */, {"鸠", "鳩", -1 } /* 鸠 => 鳩 */, {"鸡", "鷄", -1 } /* 鸡 => 鷄 */, {"鸡丝", "雞絲", -1 } /* 鸡丝 => 雞絲 */, {"鸡丝面", "雞絲麵", -1 } /* 鸡丝面 => 雞絲麵 */, {"鸡奸", "雞姦", -1 } /* 鸡奸 => 雞姦 */, {"鸡腿", "雞腿", -1 } /* 鸡腿 => 雞腿 */, {"鸡腿面", "雞腿麵", -1 } /* 鸡腿面 => 雞腿麵 */, {"鸢", "鳶", -1 } /* 鸢 => 鳶 */, {"鸣", "鳴", -1 } /* 鸣 => 鳴 */, {"鸤", "鳲", -1 } /* 鸤 => 鳲 */, {"鸥", "鷗", -1 } /* 鸥 => 鷗 */, {"鸦", "鴉", -1 } /* 鸦 => 鴉 */, {"鸧", "鶬", -1 } /* 鸧 => 鶬 */, {"鸨", "鴇", -1 } /* 鸨 => 鴇 */, {"鸩", "鴆", -1 } /* 鸩 => 鴆 */, {"鸪", "鴣", -1 } /* 鸪 => 鴣 */, {"鸫", "鶇", -1 } /* 鸫 => 鶇 */, {"鸬", "鸕", -1 } /* 鸬 => 鸕 */, {"鸬慈", "鸕鶿", -1 } /* 鸬慈 => 鸕鶿 */, {"鸭", "鴨", -1 } /* 鸭 => 鴨 */, {"鸮", "鴞", -1 } /* 鸮 => 鴞 */, {"鸯", "鴦", -1 } /* 鸯 => 鴦 */, {"鸰", "鴒", -1 } /* 鸰 => 鴒 */, {"鸱", "鴟", -1 } /* 鸱 => 鴟 */, {"鸲", "鴝", -1 } /* 鸲 => 鴝 */, {"鸳", "鴛", -1 } /* 鸳 => 鴛 */, {"鸴", "鷽", -1 } /* 鸴 => 鷽 */, {"鸵", "鴕", -1 } /* 鸵 => 鴕 */, {"鸶", "鷥", -1 } /* 鸶 => 鷥 */, {"鸷", "鷙", -1 } /* 鸷 => 鷙 */, {"鸸", "鴯", -1 } /* 鸸 => 鴯 */, {"鸹", "鴰", -1 } /* 鸹 => 鴰 */, {"鸺", "鵂", -1 } /* 鸺 => 鵂 */, {"鸻", "鴴", -1 } /* 鸻 => 鴴 */, {"鸼", "鵃", -1 } /* 鸼 => 鵃 */, {"鸽", "鴿", -1 } /* 鸽 => 鴿 */, {"鸾", "鸞", -1 } /* 鸾 => 鸞 */, {"鸿", "鴻", -1 } /* 鸿 => 鴻 */, {"鸿范", "鴻範", -1 } /* 鸿范 => 鴻範 */, {"鹀", "鵐", -1 } /* 鹀 => 鵐 */, {"鹁", "鵓", -1 } /* 鹁 => 鵓 */, {"鹂", "鸝", -1 } /* 鹂 => 鸝 */, {"鹃", "鵑", -1 } /* 鹃 => 鵑 */, {"鹄", "鵠", -1 } /* 鹄 => 鵠 */, {"鹅", "鵝", -1 } /* 鹅 => 鵝 */, {"鹆", "鵒", -1 } /* 鹆 => 鵒 */, {"鹇", "鷴", -1 } /* 鹇 => 鷴 */, {"鹈", "鵜", -1 } /* 鹈 => 鵜 */, {"鹉", "鵡", -1 } /* 鹉 => 鵡 */, {"鹊", "鵲", -1 } /* 鹊 => 鵲 */, {"鹋", "鶓", -1 } /* 鹋 => 鶓 */, {"鹌", "鵪", -1 } /* 鹌 => 鵪 */, {"鹍", "鵾", -1 } /* 鹍 => 鵾 */, {"鹎", "鵯", -1 } /* 鹎 => 鵯 */, {"鹏", "鵬", -1 } /* 鹏 => 鵬 */, {"鹐", "鵮", -1 } /* 鹐 => 鵮 */, {"鹑", "鶉", -1 } /* 鹑 => 鶉 */, {"鹒", "鶊", -1 } /* 鹒 => 鶊 */, {"鹓", "鵷", -1 } /* 鹓 => 鵷 */, {"鹔", "鷫", -1 } /* 鹔 => 鷫 */, {"鹕", "鶘", -1 } /* 鹕 => 鶘 */, {"鹖", "鶡", -1 } /* 鹖 => 鶡 */, {"鹗", "鶚", -1 } /* 鹗 => 鶚 */, {"鹘", "鶻", -1 } /* 鹘 => 鶻 */, {"鹙", "鶖", -1 } /* 鹙 => 鶖 */, {"鹚", "鷀", -1 } /* 鹚 => 鷀 */, {"鹛", "鶥", -1 } /* 鹛 => 鶥 */, {"鹜", "鶩", -1 } /* 鹜 => 鶩 */, {"鹝", "鷊", -1 } /* 鹝 => 鷊 */, {"鹞", "鷂", -1 } /* 鹞 => 鷂 */, {"鹟", "鶲", -1 } /* 鹟 => 鶲 */, {"鹠", "鶹", -1 } /* 鹠 => 鶹 */, {"鹡", "鶺", -1 } /* 鹡 => 鶺 */, {"鹢", "鷁", -1 } /* 鹢 => 鷁 */, {"鹣", "鶼", -1 } /* 鹣 => 鶼 */, {"鹤", "鶴", -1 } /* 鹤 => 鶴 */, {"鹤发", "鶴髮", -1 } /* 鹤发 => 鶴髮 */, {"鹥", "鷖", -1 } /* 鹥 => 鷖 */, {"鹦", "鸚", -1 } /* 鹦 => 鸚 */, {"鹧", "鷓", -1 } /* 鹧 => 鷓 */, {"鹨", "鷚", -1 } /* 鹨 => 鷚 */, {"鹩", "鷯", -1 } /* 鹩 => 鷯 */, {"鹪", "鷦", -1 } /* 鹪 => 鷦 */, {"鹫", "鷲", -1 } /* 鹫 => 鷲 */, {"鹬", "鷸", -1 } /* 鹬 => 鷸 */, {"鹭", "鷺", -1 } /* 鹭 => 鷺 */, {"鹯", "鸇", -1 } /* 鹯 => 鸇 */, {"鹰", "鷹", -1 } /* 鹰 => 鷹 */, {"鹱", "鸌", -1 } /* 鹱 => 鸌 */, {"鹲", "鸏", -1 } /* 鹲 => 鸏 */, {"鹳", "鸛", -1 } /* 鹳 => 鸛 */, {"鹴", "鸘", -1 } /* 鹴 => 鸘 */, {"鹾", "鹺", -1 } /* 鹾 => 鹺 */, {"麦", "麥", -1 } /* 麦 => 麥 */, {"麦当娜", "瑪丹娜", -1 } /* 麦当娜 => 瑪丹娜 */, {"麦面", "麥麵", -1 } /* 麦面 => 麥麵 */, {"麸", "麩", -1 } /* 麸 => 麩 */, {"麻团", "麻糰", -1 } /* 麻团 => 麻糰 */, {"麻疯", "痲瘋", -1 } /* 麻疯 => 痲瘋 */, {"麻病", "痲病", -1 } /* 麻病 => 痲病 */, {"麻线", "麻線", -1 } /* 麻线 => 麻線 */, {"麻药", "麻藥", -1 } /* 麻药 => 麻藥 */, {"麻酱面", "麻醬麵", -1 } /* 麻酱面 => 麻醬麵 */, {"麽", "麼", -1 } /* 麽 => 麼 */, {"黃长发", "黃長發", -1 } /* 黃长发 => 黃長發 */, {"黄", "黃", -1 } /* 黄 => 黃 */, {"黄于", "黃於", -1 } /* 黄于 => 黃於 */, {"黄历", "黃曆", -1 } /* 黄历 => 黃曆 */, {"黄发", "黃髮", -1 } /* 黄发 => 黃髮 */, {"黄发垂髫", "黃髮垂髫", -1 } /* 黄发垂髫 => 黃髮垂髫 */, {"黉", "黌", -1 } /* 黉 => 黌 */, {"黑亮发", "黑亮髮", -1 } /* 黑亮发 => 黑亮髮 */, {"黑发", "黑髮", -1 } /* 黑发 => 黑髮 */, {"黑发暗", "黑發暗", -1 } /* 黑发暗 => 黑發暗 */, {"黑线", "黑線", -1 } /* 黑线 => 黑線 */, {"黑须", "黑鬚", -1 } /* 黑须 => 黑鬚 */, {"默塞德", "美熹德", -1 } /* 默塞德 => 美熹德 */, {"默认", "預設", -1 } /* 默认 => 預設 */, {"黡", "黶", -1 } /* 黡 => 黶 */, {"黩", "黷", -1 } /* 黩 => 黷 */, {"黪", "黲", -1 } /* 黪 => 黲 */, {"黾", "黽", -1 } /* 黾 => 黽 */, {"鼋", "黿", -1 } /* 鼋 => 黿 */, {"鼍", "鼉", -1 } /* 鼍 => 鼉 */, {"鼎边剉", "鼎邊銼", -1 } /* 鼎边剉 => 鼎邊銼 */, {"鼗", "鞀", -1 } /* 鼗 => 鞀 */, {"鼠标", "滑鼠", -1 } /* 鼠标 => 滑鼠 */, {"鼠药", "鼠藥", -1 } /* 鼠药 => 鼠藥 */, {"鼹", "鼴", -1 } /* 鼹 => 鼴 */, {"鼻梁", "鼻樑", -1 } /* 鼻梁 => 鼻樑 */, {"齐", "齊", -1 } /* 齐 => 齊 */, {"齐克隆", "齊克隆", -1 } /* 齐克隆 => 齊克隆 */, {"齐冲", "齊衝", -1 } /* 齐冲 => 齊衝 */, {"齐王舍牛", "齊王捨牛", -1 } /* 齐王舍牛 => 齊王捨牛 */, {"齐达内", "施丹", -1 } /* 齐达内 => 施丹 */, {"齑", "齏", -1 } /* 齑 => 齏 */, {"齧齿", "囓齒", -1 } /* 齧齿 => 囓齒 */, {"齿", "齒", -1 } /* 齿 => 齒 */, {"龀", "齔", -1 } /* 龀 => 齔 */, {"龁", "齕", -1 } /* 龁 => 齕 */, {"龂", "齗", -1 } /* 龂 => 齗 */, {"龃", "齟", -1 } /* 龃 => 齟 */, {"龄", "齡", -1 } /* 龄 => 齡 */, {"龅", "齙", -1 } /* 龅 => 齙 */, {"龆", "齠", -1 } /* 龆 => 齠 */, {"龇", "齜", -1 } /* 龇 => 齜 */, {"龈", "齦", -1 } /* 龈 => 齦 */, {"龉", "齬", -1 } /* 龉 => 齬 */, {"龊", "齪", -1 } /* 龊 => 齪 */, {"龋", "齲", -1 } /* 龋 => 齲 */, {"龌", "齷", -1 } /* 龌 => 齷 */, {"龙", "龍", -1 } /* 龙 => 龍 */, {"龙卷", "龍捲", -1 } /* 龙卷 => 龍捲 */, {"龙卷风", "龍捲風", -1 } /* 龙卷风 => 龍捲風 */, {"龙眼干", "龍眼乾", -1 } /* 龙眼干 => 龍眼乾 */, {"龙钟", "龍鍾", -1 } /* 龙钟 => 龍鍾 */, {"龙须", "龍鬚", -1 } /* 龙须 => 龍鬚 */, {"龚", "龔", -1 } /* 龚 => 龔 */, {"龛", "龕", -1 } /* 龛 => 龕 */, {"龟", "龜", -1 } /* 龟 => 龜 */, {"龟壳", "龜殼", -1 } /* 龟壳 => 龜殼 */ }; int map_uni_s2t_size = 8851; language_zh_map map_uni_t2s[] = { {"㠏", "㟆", -1 } /* 㠏 => 㟆 */, {"䎱", "䎬", -1 } /* 䎱 => 䎬 */, {"䰾", "鲃", -1 } /* 䰾 => 鲃 */, {"䲁", "鳚", -1 } /* 䲁 => 鳚 */, {"一伙", "一伙", -1 } /* 一伙 => 一伙 */, {"一併", "一并", -1 } /* 一併 => 一并 */, {"一准", "一准", -1 } /* 一准 => 一准 */, {"一划", "一划", -1 } /* 一划 => 一划 */, {"一彆頭", "一别头", -1 } /* 一彆頭 => 一别头 */, {"一樹百穫", "一树百获", -1 } /* 一樹百穫 => 一树百获 */, {"一紮", "一扎", -1 } /* 一紮 => 一扎 */, {"一衝", "一冲", -1 } /* 一衝 => 一冲 */, {"丁丑", "丁丑", -1 } /* 丁丑 => 丁丑 */, {"七紮", "七扎", -1 } /* 七紮 => 七扎 */, {"万俟", "万俟", -1 } /* 万俟 => 万俟 */, {"三國志", "三国志", -1 } /* 三國志 => 三国志 */, {"三紮", "三扎", -1 } /* 三紮 => 三扎 */, {"三複", "三复", -1 } /* 三複 => 三复 */, {"上吊", "上吊", -1 } /* 上吊 => 上吊 */, {"下著", "下着", -1 } /* 下著 => 下着 */, {"不准", "不准", -1 } /* 不准 => 不准 */, {"不吊", "不吊", -1 } /* 不吊 => 不吊 */, {"不知所云", "不知所云", -1 } /* 不知所云 => 不知所云 */, {"不遺餘力", "不遗余力", -1 } /* 不遺餘力 => 不遗余力 */, {"丑三", "丑三", -1 } /* 丑三 => 丑三 */, {"丑劇", "丑剧", -1 } /* 丑劇 => 丑剧 */, {"丑婆子", "丑婆子", -1 } /* 丑婆子 => 丑婆子 */, {"丑年", "丑年", -1 } /* 丑年 => 丑年 */, {"丑旦", "丑旦", -1 } /* 丑旦 => 丑旦 */, {"丑時", "丑时", -1 } /* 丑時 => 丑时 */, {"丑牛", "丑牛", -1 } /* 丑牛 => 丑牛 */, {"丑角", "丑角", -1 } /* 丑角 => 丑角 */, {"丙丑", "丙丑", -1 } /* 丙丑 => 丙丑 */, {"並", "并", -1 } /* 並 => 并 */, {"並力", "并力", -1 } /* 並力 => 并力 */, {"並在", "并在", -1 } /* 並在 => 并在 */, {"並存著", "并存着", -1 } /* 並存著 => 并存着 */, {"並成", "并成", -1 } /* 並成 => 并成 */, {"並行", "并行", -1 } /* 並行 => 并行 */, {"並行不悖", "并行不悖", -1 } /* 並行不悖 => 并行不悖 */, {"中嶽", "中岳", -1 } /* 中嶽 => 中岳 */, {"丰仪", "丰仪", -1 } /* 丰仪 => 丰仪 */, {"丰南", "丰南", -1 } /* 丰南 => 丰南 */, {"丰姿", "丰姿", -1 } /* 丰姿 => 丰姿 */, {"丰标不凡", "丰标不凡", -1 } /* 丰标不凡 => 丰标不凡 */, {"丰神", "丰神", -1 } /* 丰神 => 丰神 */, {"丰茸", "丰茸", -1 } /* 丰茸 => 丰茸 */, {"丰采", "丰采", -1 } /* 丰采 => 丰采 */, {"丰韵", "丰韵", -1 } /* 丰韵 => 丰韵 */, {"串列", "串行", -1 } /* 串列 => 串行 */, {"丸藥", "丸药", -1 } /* 丸藥 => 丸药 */, {"主幹", "主干", -1 } /* 主幹 => 主干 */, {"么么唱唱", "么么唱唱", -1 } /* 么么唱唱 => 么么唱唱 */, {"么九", "么九", -1 } /* 么九 => 么九 */, {"么兒", "么儿", -1 } /* 么兒 => 么儿 */, {"么喝", "么喝", -1 } /* 么喝 => 么喝 */, {"么女", "么女", -1 } /* 么女 => 么女 */, {"么妹", "么妹", -1 } /* 么妹 => 么妹 */, {"么廝", "幺厮", -1 } /* 么廝 => 幺厮 */, {"么弟", "么弟", -1 } /* 么弟 => 么弟 */, {"么正", "么正", -1 } /* 么正 => 么正 */, {"么爹", "幺爹", -1 } /* 么爹 => 幺爹 */, {"么爺", "么爷", -1 } /* 么爺 => 么爷 */, {"么麼", "幺麽", -1 } /* 么麼 => 幺麽 */, {"么麼小醜", "么么小丑", -1 } /* 么麼小醜 => 么么小丑 */, {"之於", "之于", -1 } /* 之於 => 之于 */, {"之餘", "之余", -1 } /* 之餘 => 之余 */, {"乘著", "乘着", -1 } /* 乘著 => 乘着 */, {"乙丑", "乙丑", -1 } /* 乙丑 => 乙丑 */, {"乙太網", "以太网", -1 } /* 乙太網 => 以太网 */, {"九世之讎", "九世之雠", -1 } /* 九世之讎 => 九世之雠 */, {"九紮", "九扎", -1 } /* 九紮 => 九扎 */, {"也門", "也门", -1 } /* 也門 => 也门 */, {"乾", "干", 72 } /* 乾 => 干 */, {"乾嘉學派", "乾嘉学派", -1 } /* 乾嘉學派 => 乾嘉学派 */, {"亂", "乱", -1 } /* 亂 => 乱 */, {"亂於", "乱于", -1 } /* 亂於 => 乱于 */, {"亂鬨不過來", "乱哄不过来", -1 } /* 亂鬨不過來 => 乱哄不过来 */, {"二元堆積", "二叉堆", -1 } /* 二元堆積 => 二叉堆 */, {"二里頭", "二里头", -1 } /* 二里頭 => 二里头 */, {"云云", "云云", -1 } /* 云云 => 云云 */, {"云爾", "云尔", -1 } /* 云爾 => 云尔 */, {"互動式", "交互式", -1 } /* 互動式 => 交互式 */, {"互聯網協會", "互联网协会", -1 } /* 互聯網協會 => 互联网协会 */, {"互聯網工程工作小組", "互联网工程工作小组", -1 } /* 互聯網工程工作小組 => 互联网工程工作小组 */, {"互聯網結構委員會", "互联网结构委员会", -1 } /* 互聯網結構委員會 => 互联网结构委员会 */, {"五嶽", "五岳", -1 } /* 五嶽 => 五岳 */, {"五斗櫃", "五斗柜", -1 } /* 五斗櫃 => 五斗柜 */, {"五斗櫥", "五斗橱", -1 } /* 五斗櫥 => 五斗橱 */, {"五穀", "五谷", -1 } /* 五穀 => 五谷 */, {"五紮", "五扎", -1 } /* 五紮 => 五扎 */, {"五行生剋", "五行生克", -1 } /* 五行生剋 => 五行生克 */, {"五采", "五采", -1 } /* 五采 => 五采 */, {"五齣", "五出", -1 } /* 五齣 => 五出 */, {"井榦摧敗", "井干摧败", -1 } /* 井榦摧敗 => 井干摧败 */, {"亙", "亘", -1 } /* 亙 => 亘 */, {"亞", "亚", -1 } /* 亞 => 亚 */, {"亞於", "亚于", -1 } /* 亞於 => 亚于 */, {"亞蘭群島", "奥兰群岛", -1 } /* 亞蘭群島 => 奥兰群岛 */, {"亡於", "亡于", -1 } /* 亡於 => 亡于 */, {"亮著", "亮着", -1 } /* 亮著 => 亮着 */, {"亹源", "门源", -1 } /* 亹源 => 门源 */, {"人云亦云", "人云亦云", -1 } /* 人云亦云 => 人云亦云 */, {"人物誌", "人物志", -1 } /* 人物誌 => 人物志 */, {"什麼", "什么", -1 } /* 什麼 => 什么 */, {"介於", "介于", -1 } /* 介於 => 介于 */, {"介繫詞", "介系词", -1 } /* 介繫詞 => 介系词 */, {"仙后", "仙后", -1 } /* 仙后 => 仙后 */, {"代表著", "代表着", -1 } /* 代表著 => 代表着 */, {"伊恩佛萊明", "伊安法蘭明", -1 } /* 伊恩佛萊明 => 伊安法蘭明 */, {"伊斯蘭曆", "伊斯兰历", -1 } /* 伊斯蘭曆 => 伊斯兰历 */, {"伍采克", "伍采克", -1 } /* 伍采克 => 伍采克 */, {"伐於", "伐于", -1 } /* 伐於 => 伐于 */, {"伙伴", "伙伴", -1 } /* 伙伴 => 伙伴 */, {"伙同", "伙同", -1 } /* 伙同 => 伙同 */, {"伙夫", "伙夫", -1 } /* 伙夫 => 伙夫 */, {"伙房", "伙房", -1 } /* 伙房 => 伙房 */, {"伙計", "伙计", -1 } /* 伙計 => 伙计 */, {"伙食", "伙食", -1 } /* 伙食 => 伙食 */, {"伸展著", "伸展着", -1 } /* 伸展著 => 伸展着 */, {"伺服器", "服务器", -1 } /* 伺服器 => 服务器 */, {"佇", "伫", -1 } /* 佇 => 伫 */, {"佈下", "布下", -1 } /* 佈下 => 布下 */, {"佈告", "布告", -1 } /* 佈告 => 布告 */, {"佈哨", "布哨", -1 } /* 佈哨 => 布哨 */, {"佈局", "布局", -1 } /* 佈局 => 布局 */, {"佈崗", "布岗", -1 } /* 佈崗 => 布岗 */, {"佈施", "布施", -1 } /* 佈施 => 布施 */, {"佈景", "布景", -1 } /* 佈景 => 布景 */, {"佈滿", "布满", -1 } /* 佈滿 => 布满 */, {"佈線", "布线", -1 } /* 佈線 => 布线 */, {"佈置", "布置", -1 } /* 佈置 => 布置 */, {"佈署", "布署", -1 } /* 佈署 => 布署 */, {"佈道", "布道", -1 } /* 佈道 => 布道 */, {"佈達", "布达", -1 } /* 佈達 => 布达 */, {"佈防", "布防", -1 } /* 佈防 => 布防 */, {"佈陣", "布阵", -1 } /* 佈陣 => 布阵 */, {"佈雷", "布雷", -1 } /* 佈雷 => 布雷 */, {"位元組", "字节", -1 } /* 位元組 => 字节 */, {"位於", "位于", -1 } /* 位於 => 位于 */, {"低於", "低于", -1 } /* 低於 => 低于 */, {"住著", "住着", -1 } /* 住著 => 住着 */, {"佔據", "占据", -1 } /* 佔據 => 占据 */, {"佔有", "占有", -1 } /* 佔有 => 占有 */, {"佔領", "占领", -1 } /* 佔領 => 占领 */, {"作於", "作于", -1 } /* 作於 => 作于 */, {"作業系統", "操作系统", -1 } /* 作業系統 => 操作系统 */, {"佣人", "佣人", -1 } /* 佣人 => 佣人 */, {"佣工", "佣工", -1 } /* 佣工 => 佣工 */, {"佣金", "佣金", -1 } /* 佣金 => 佣金 */, {"併", "并", -1 } /* 併 => 并 */, {"併一不二", "并一不二", -1 } /* 併一不二 => 并一不二 */, {"併入", "并入", -1 } /* 併入 => 并入 */, {"併兼", "并兼", -1 } /* 併兼 => 并兼 */, {"併到", "并到", -1 } /* 併到 => 并到 */, {"併排", "并排", -1 } /* 併排 => 并排 */, {"併攏", "并拢", -1 } /* 併攏 => 并拢 */, {"併流", "并流", -1 } /* 併流 => 并流 */, {"併為", "并为", -1 } /* 併為 => 并为 */, {"併產", "并产", -1 } /* 併產 => 并产 */, {"併疊", "并叠", -1 } /* 併疊 => 并叠 */, {"併網", "并网", -1 } /* 併網 => 并网 */, {"併線", "并线", -1 } /* 併線 => 并线 */, {"併購", "并购", -1 } /* 併購 => 并购 */, {"併進", "并进", -1 } /* 併進 => 并进 */, {"併骨", "并骨", -1 } /* 併骨 => 并骨 */, {"來", "来", -1 } /* 來 => 来 */, {"來著", "来着", -1 } /* 來著 => 来着 */, {"來複", "来复", -1 } /* 來複 => 来复 */, {"侖", "仑", -1 } /* 侖 => 仑 */, {"依依不捨", "依依不舍", -1 } /* 依依不捨 => 依依不舍 */, {"侵佔", "侵占", -1 } /* 侵佔 => 侵占 */, {"侵併", "侵并", -1 } /* 侵併 => 侵并 */, {"侶", "侣", -1 } /* 侶 => 侣 */, {"便辟", "便辟", -1 } /* 便辟 => 便辟 */, {"俁", "俣", -1 } /* 俁 => 俣 */, {"係", "系", -1 } /* 係 => 系 */, {"係為", "系为", -1 } /* 係為 => 系为 */, {"俔", "伣", -1 } /* 俔 => 伣 */, {"保安", "保安", -1 } /* 保安 => 保安 */, {"保險柜", "保险柜", -1 } /* 保險柜 => 保险柜 */, {"俠", "侠", -1 } /* 俠 => 侠 */, {"修復", "修复", -1 } /* 修復 => 修复 */, {"修於", "修于", -1 } /* 修於 => 修于 */, {"修飾鍵", "控制键", -1 } /* 修飾鍵 => 控制键 */, {"修鬍刀", "修胡刀", -1 } /* 修鬍刀 => 修胡刀 */, {"倀", "伥", -1 } /* 倀 => 伥 */, {"倆", "俩", -1 } /* 倆 => 俩 */, {"倈", "俫", -1 } /* 倈 => 俫 */, {"倉", "仓", -1 } /* 倉 => 仓 */, {"個", "个", -1 } /* 個 => 个 */, {"們", "们", -1 } /* 們 => 们 */, {"倒著", "倒着", -1 } /* 倒著 => 倒着 */, {"倖免", "幸免", -1 } /* 倖免 => 幸免 */, {"倖存", "幸存", -1 } /* 倖存 => 幸存 */, {"候著", "候着", -1 } /* 候著 => 候着 */, {"倫", "伦", -1 } /* 倫 => 伦 */, {"倫斯斐", "拉姆斯菲尔德", -1 } /* 倫斯斐 => 拉姆斯菲尔德 */, {"倮", "裸", -1 } /* 倮 => 裸 */, {"假於", "假于", -1 } /* 假於 => 假于 */, {"偉", "伟", -1 } /* 偉 => 伟 */, {"做著", "做着", -1 } /* 做著 => 做着 */, {"側", "侧", -1 } /* 側 => 侧 */, {"偵", "侦", -1 } /* 偵 => 侦 */, {"偷雞不著", "偷鸡不着", -1 } /* 偷雞不著 => 偷鸡不着 */, {"偽", "伪", -1 } /* 偽 => 伪 */, {"傑", "杰", -1 } /* 傑 => 杰 */, {"傖", "伧", -1 } /* 傖 => 伧 */, {"傘", "伞", -1 } /* 傘 => 伞 */, {"備", "备", -1 } /* 備 => 备 */, {"傢伙", "家伙", -1 } /* 傢伙 => 家伙 */, {"傢俱", "家俱", -1 } /* 傢俱 => 家俱 */, {"傢具", "家具", -1 } /* 傢具 => 家具 */, {"傭", "佣", -1 } /* 傭 => 佣 */, {"傯", "偬", -1 } /* 傯 => 偬 */, {"傳", "传", -1 } /* 傳 => 传 */, {"傳佈", "传布", -1 } /* 傳佈 => 传布 */, {"傴", "伛", -1 } /* 傴 => 伛 */, {"債", "债", -1 } /* 債 => 债 */, {"傷", "伤", -1 } /* 傷 => 伤 */, {"傾", "倾", -1 } /* 傾 => 倾 */, {"傾覆", "倾复", -1 } /* 傾覆 => 倾复 */, {"僂", "偻", -1 } /* 僂 => 偻 */, {"僅", "仅", -1 } /* 僅 => 仅 */, {"僉", "佥", -1 } /* 僉 => 佥 */, {"僑", "侨", -1 } /* 僑 => 侨 */, {"僕", "仆", -1 } /* 僕 => 仆 */, {"僞", "伪", -1 } /* 僞 => 伪 */, {"僥", "侥", -1 } /* 僥 => 侥 */, {"僥倖", "侥幸", -1 } /* 僥倖 => 侥幸 */, {"僨", "偾", -1 } /* 僨 => 偾 */, {"僱", "雇", -1 } /* 僱 => 雇 */, {"價", "价", -1 } /* 價 => 价 */, {"儀", "仪", -1 } /* 儀 => 仪 */, {"儀表", "仪表", -1 } /* 儀表 => 仪表 */, {"儂", "侬", -1 } /* 儂 => 侬 */, {"億", "亿", -1 } /* 億 => 亿 */, {"儈", "侩", -1 } /* 儈 => 侩 */, {"儉", "俭", -1 } /* 儉 => 俭 */, {"儐", "傧", -1 } /* 儐 => 傧 */, {"儒略曆", "儒略历", -1 } /* 儒略曆 => 儒略历 */, {"儔", "俦", -1 } /* 儔 => 俦 */, {"儕", "侪", -1 } /* 儕 => 侪 */, {"儘", "尽", -1 } /* 儘 => 尽 */, {"儘儘", "尽尽", -1 } /* 儘儘 => 尽尽 */, {"儘先", "尽先", -1 } /* 儘先 => 尽先 */, {"儘其所有", "尽其所有", -1 } /* 儘其所有 => 尽其所有 */, {"儘力", "尽力", -1 } /* 儘力 => 尽力 */, {"儘快", "尽快", -1 } /* 儘快 => 尽快 */, {"儘早", "尽早", -1 } /* 儘早 => 尽早 */, {"儘是", "尽是", -1 } /* 儘是 => 尽是 */, {"儘管", "尽管", -1 } /* 儘管 => 尽管 */, {"儘速", "尽速", -1 } /* 儘速 => 尽速 */, {"償", "偿", -1 } /* 償 => 偿 */, {"優", "优", -1 } /* 優 => 优 */, {"優先順序", "优先级", -1 } /* 優先順序 => 优先级 */, {"優於", "优于", -1 } /* 優於 => 优于 */, {"儲", "储", -1 } /* 儲 => 储 */, {"儷", "俪", -1 } /* 儷 => 俪 */, {"儺", "傩", -1 } /* 儺 => 傩 */, {"儻", "傥", -1 } /* 儻 => 傥 */, {"儼", "俨", -1 } /* 儼 => 俨 */, {"允准", "允准", -1 } /* 允准 => 允准 */, {"元兇", "元凶", -1 } /* 元兇 => 元凶 */, {"充饑", "充饥", -1 } /* 充饑 => 充饥 */, {"兇器", "凶器", -1 } /* 兇器 => 凶器 */, {"兇徒", "凶徒", -1 } /* 兇徒 => 凶徒 */, {"兇手", "凶手", -1 } /* 兇手 => 凶手 */, {"兇案", "凶案", -1 } /* 兇案 => 凶案 */, {"兇殺", "凶杀", -1 } /* 兇殺 => 凶杀 */, {"先於", "先于", -1 } /* 先於 => 先于 */, {"光復", "光复", -1 } /* 光復 => 光复 */, {"光碟機", "光驱", -1 } /* 光碟機 => 光驱 */, {"光著", "光着", -1 } /* 光著 => 光着 */, {"光采", "光采", -1 } /* 光采 => 光采 */, {"克希荷夫", "基尔霍夫", -1 } /* 克希荷夫 => 基尔霍夫 */, {"克服", "克服", -1 } /* 克服 => 克服 */, {"克複", "克复", -1 } /* 克複 => 克复 */, {"兒", "儿", -1 } /* 兒 => 儿 */, {"兗", "兖", -1 } /* 兗 => 兖 */, {"入伙", "入伙", -1 } /* 入伙 => 入伙 */, {"內", "内", -1 } /* 內 => 内 */, {"內鬨", "内哄", -1 } /* 內鬨 => 内哄 */, {"全形", "全角", -1 } /* 全形 => 全角 */, {"全於", "全于", -1 } /* 全於 => 全于 */, {"兩", "两", -1 } /* 兩 => 两 */, {"八字鬍", "八字胡", -1 } /* 八字鬍 => 八字胡 */, {"八斗", "八斗", -1 } /* 八斗 => 八斗 */, {"八紮", "八扎", -1 } /* 八紮 => 八扎 */, {"公佈", "公布", -1 } /* 公佈 => 公布 */, {"公孫丑", "公孙丑", -1 } /* 公孫丑 => 公孙丑 */, {"公斗", "公斗", -1 } /* 公斗 => 公斗 */, {"公曆", "公历", -1 } /* 公曆 => 公历 */, {"公車上書", "公车上书", -1 } /* 公車上書 => 公车上书 */, {"公餘", "公余", -1 } /* 公餘 => 公余 */, {"六紮", "六扎", -1 } /* 六紮 => 六扎 */, {"六齣", "六出", -1 } /* 六齣 => 六出 */, {"共享", "共享", -1 } /* 共享 => 共享 */, {"兵著", "兵着", -1 } /* 兵著 => 兵着 */, {"其餘", "其余", -1 } /* 其餘 => 其余 */, {"典範", "典范", -1 } /* 典範 => 典范 */, {"冊", "册", -1 } /* 冊 => 册 */, {"冑", "胄", -1 } /* 冑 => 胄 */, {"冗餘", "冗余", -1 } /* 冗餘 => 冗余 */, {"写著", "写着", -1 } /* 写著 => 写着 */, {"冤讎", "冤雠", -1 } /* 冤讎 => 冤雠 */, {"冬山庄", "冬山庄", -1 } /* 冬山庄 => 冬山庄 */, {"准予", "准予", -1 } /* 准予 => 准予 */, {"准假", "准假", -1 } /* 准假 => 准假 */, {"准將", "准将", -1 } /* 准將 => 准将 */, {"准考證", "准考证", -1 } /* 准考證 => 准考证 */, {"准許", "准许", -1 } /* 准許 => 准许 */, {"凈餘", "净余", -1 } /* 凈餘 => 净余 */, {"凍", "冻", -1 } /* 凍 => 冻 */, {"凖", "准", -1 } /* 凖 => 准 */, {"几案", "几案", -1 } /* 几案 => 几案 */, {"処", "处", -1 } /* 処 => 处 */, {"凱", "凯", -1 } /* 凱 => 凯 */, {"出於", "出于", -1 } /* 出於 => 出于 */, {"函式", "函数", -1 } /* 函式 => 函数 */, {"函式館", "函数库", -1 } /* 函式館 => 函数库 */, {"刁斗", "刁斗", -1 } /* 刁斗 => 刁斗 */, {"分佈", "分布", -1 } /* 分佈 => 分布 */, {"分散式", "分布式", -1 } /* 分散式 => 分布式 */, {"刊佈", "刊布", -1 } /* 刊佈 => 刊布 */, {"划上", "划上", -1 } /* 划上 => 划上 */, {"划下", "划下", -1 } /* 划下 => 划下 */, {"划不來", "划不来", -1 } /* 划不來 => 划不来 */, {"划具", "划具", -1 } /* 划具 => 划具 */, {"划出", "划出", -1 } /* 划出 => 划出 */, {"划到", "划到", -1 } /* 划到 => 划到 */, {"划動", "划动", -1 } /* 划動 => 划动 */, {"划去", "划去", -1 } /* 划去 => 划去 */, {"划子", "划子", -1 } /* 划子 => 划子 */, {"划得來", "划得来", -1 } /* 划得來 => 划得来 */, {"划拳", "划拳", -1 } /* 划拳 => 划拳 */, {"划槳", "划桨", -1 } /* 划槳 => 划桨 */, {"划水", "划水", -1 } /* 划水 => 划水 */, {"划船", "划船", -1 } /* 划船 => 划船 */, {"划艇", "划艇", -1 } /* 划艇 => 划艇 */, {"划著", "划着", -1 } /* 划著 => 划着 */, {"划行", "划行", -1 } /* 划行 => 划行 */, {"划走", "划走", -1 } /* 划走 => 划走 */, {"划起", "划起", -1 } /* 划起 => 划起 */, {"划進", "划进", -1 } /* 划進 => 划进 */, {"划過", "划过", -1 } /* 划過 => 划过 */, {"列支敦士登", "列支敦士登", -1 } /* 列支敦士登 => 列支敦士登 */, {"別緻", "别致", -1 } /* 別緻 => 别致 */, {"別腳", "别脚", -1 } /* 別腳 => 别脚 */, {"利於", "利于", -1 } /* 利於 => 利于 */, {"刪", "删", -1 } /* 刪 => 删 */, {"刮鬍刀", "刮胡刀", -1 } /* 刮鬍刀 => 刮胡刀 */, {"制於", "制于", -1 } /* 制於 => 制于 */, {"刺酮鹼", "刺酮碱", -1 } /* 刺酮鹼 => 刺酮碱 */, {"刻於", "刻于", -1 } /* 刻於 => 刻于 */, {"剃鬚", "剃须", -1 } /* 剃鬚 => 剃须 */, {"剄", "刭", -1 } /* 剄 => 刭 */, {"則", "则", -1 } /* 則 => 则 */, {"剉著", "剉着", -1 } /* 剉著 => 剉着 */, {"剋", "克", -1 } /* 剋 => 克 */, {"剋制", "克制", -1 } /* 剋制 => 克制 */, {"剋星", "克星", -1 } /* 剋星 => 克星 */, {"剋死", "克死", -1 } /* 剋死 => 克死 */, {"剋薄", "克薄", -1 } /* 剋薄 => 克薄 */, {"剗", "刬", -1 } /* 剗 => 刬 */, {"剛", "刚", -1 } /* 剛 => 刚 */, {"剛才", "刚才", -1 } /* 剛才 => 刚才 */, {"剝", "剥", -1 } /* 剝 => 剥 */, {"剪綵", "剪彩", -1 } /* 剪綵 => 剪彩 */, {"剮", "剐", -1 } /* 剮 => 剐 */, {"副檔名", "扩展名", -1 } /* 副檔名 => 扩展名 */, {"割捨", "割舍", -1 } /* 割捨 => 割舍 */, {"剴", "剀", -1 } /* 剴 => 剀 */, {"創", "创", -1 } /* 創 => 创 */, {"劃", "划", -1 } /* 劃 => 划 */, {"劇", "剧", -1 } /* 劇 => 剧 */, {"劉", "刘", -1 } /* 劉 => 刘 */, {"劊", "刽", -1 } /* 劊 => 刽 */, {"劌", "刿", -1 } /* 劌 => 刿 */, {"劍", "剑", -1 } /* 劍 => 剑 */, {"劑", "剂", -1 } /* 劑 => 剂 */, {"劣於", "劣于", -1 } /* 劣於 => 劣于 */, {"勁", "劲", -1 } /* 勁 => 劲 */, {"動", "动", -1 } /* 動 => 动 */, {"動著", "动着", -1 } /* 動著 => 动着 */, {"動蕩", "动荡", -1 } /* 動蕩 => 动荡 */, {"務", "务", -1 } /* 務 => 务 */, {"勛", "勋", -1 } /* 勛 => 勋 */, {"勝", "胜", -1 } /* 勝 => 胜 */, {"勝於", "胜于", -1 } /* 勝於 => 胜于 */, {"勝著", "胜着", -1 } /* 勝著 => 胜着 */, {"勞", "劳", -1 } /* 勞 => 劳 */, {"勞力士錶", "劳力士表", -1 } /* 勞力士錶 => 劳力士表 */, {"勢", "势", -1 } /* 勢 => 势 */, {"勤於", "勤于", -1 } /* 勤於 => 勤于 */, {"勦", "剿", -1 } /* 勦 => 剿 */, {"勩", "勚", -1 } /* 勩 => 勚 */, {"勱", "劢", -1 } /* 勱 => 劢 */, {"勳", "勋", -1 } /* 勳 => 勋 */, {"勳章", "勋章", -1 } /* 勳章 => 勋章 */, {"勵", "励", -1 } /* 勵 => 励 */, {"勸", "劝", -1 } /* 勸 => 劝 */, {"勻", "匀", -1 } /* 勻 => 匀 */, {"包准", "包准", -1 } /* 包准 => 包准 */, {"包穀", "包谷", -1 } /* 包穀 => 包谷 */, {"包著", "包着", -1 } /* 包著 => 包着 */, {"北回", "北回", -1 } /* 北回 => 北回 */, {"北斗", "北斗", -1 } /* 北斗 => 北斗 */, {"北潭涌", "北潭涌", -1 } /* 北潭涌 => 北潭涌 */, {"北迴線", "北回线", -1 } /* 北迴線 => 北回线 */, {"北迴鐵路", "北回铁路", -1 } /* 北迴鐵路 => 北回铁路 */, {"匡複", "匡复", -1 } /* 匡複 => 匡复 */, {"匭", "匦", -1 } /* 匭 => 匦 */, {"匯", "汇", -1 } /* 匯 => 汇 */, {"匯流排", "总线", -1 } /* 匯流排 => 总线 */, {"匱", "匮", -1 } /* 匱 => 匮 */, {"區", "区", -1 } /* 區 => 区 */, {"區域網路", "局域网", -1 } /* 區域網路 => 局域网 */, {"十二碼", "点球", -1 } /* 十二碼 => 点球 */, {"十紮", "十扎", -1 } /* 十紮 => 十扎 */, {"十齣", "十出", -1 } /* 十齣 => 十出 */, {"千紮", "千扎", -1 } /* 千紮 => 千扎 */, {"千絲萬縷", "千丝万缕", -1 } /* 千絲萬縷 => 千丝万缕 */, {"千迴百折", "千回百折", -1 } /* 千迴百折 => 千回百折 */, {"千迴百轉", "千回百转", -1 } /* 千迴百轉 => 千回百转 */, {"千餘", "千余", -1 } /* 千餘 => 千余 */, {"升斗小民", "升斗小民", -1 } /* 升斗小民 => 升斗小民 */, {"半形", "半角", -1 } /* 半形 => 半角 */, {"卒於", "卒于", -1 } /* 卒於 => 卒于 */, {"協", "协", -1 } /* 協 => 协 */, {"南喬治亞", "南乔治亚", -1 } /* 南喬治亞 => 南乔治亚 */, {"南回", "南回", -1 } /* 南回 => 南回 */, {"南嶽", "南岳", -1 } /* 南嶽 => 南岳 */, {"南涌", "南涌", -1 } /* 南涌 => 南涌 */, {"南筑", "南筑", -1 } /* 南筑 => 南筑 */, {"南韓", "南朝鲜", -1 } /* 南韓 => 南朝鲜 */, {"卡佩雅蒂", "卡普里亚蒂", -1 } /* 卡佩雅蒂 => 卡普里亚蒂 */, {"卡斯翠", "卡斯特里", -1 } /* 卡斯翠 => 卡斯特里 */, {"卻", "却", -1 } /* 卻 => 却 */, {"厘米", "厘米", -1 } /* 厘米 => 厘米 */, {"厙", "厍", -1 } /* 厙 => 厍 */, {"原始碼", "源代码", -1 } /* 原始碼 => 源代码 */, {"厭", "厌", -1 } /* 厭 => 厌 */, {"厰", "厂", -1 } /* 厰 => 厂 */, {"厲", "厉", -1 } /* 厲 => 厉 */, {"厴", "厣", -1 } /* 厴 => 厣 */, {"去著", "去着", -1 } /* 去著 => 去着 */, {"參", "参", -1 } /* 參 => 参 */, {"參合", "参合", -1 } /* 參合 => 参合 */, {"參考價值", "参考价值", -1 } /* 參考價值 => 参考价值 */, {"參觀團", "参观团", -1 } /* 參觀團 => 参观团 */, {"參觀團體", "参观团体", -1 } /* 參觀團體 => 参观团体 */, {"叄", "叁", -1 } /* 叄 => 叁 */, {"反斗", "反斗", -1 } /* 反斗 => 反斗 */, {"反著", "反着", -1 } /* 反著 => 反着 */, {"反衝", "反冲", -1 } /* 反衝 => 反冲 */, {"发展著", "发展着", -1 } /* 发展著 => 发展着 */, {"取捨", "取舍", -1 } /* 取捨 => 取舍 */, {"变著", "变着", -1 } /* 变著 => 变着 */, {"叢", "丛", -1 } /* 叢 => 丛 */, {"口鹼", "口碱", -1 } /* 口鹼 => 口碱 */, {"叮噹", "叮当", -1 } /* 叮噹 => 叮当 */, {"可可斯群島", "科科斯群岛", -1 } /* 可可斯群島 => 科科斯群岛 */, {"可憐虫", "可怜虫", -1 } /* 可憐虫 => 可怜虫 */, {"史蒂芬史匹柏", "斯皮尔博格", -1 } /* 史蒂芬史匹柏 => 斯皮尔博格 */, {"史達林", "斯大林", -1 } /* 史達林 => 斯大林 */, {"叶恭弘", "叶恭弘", -1 } /* 叶恭弘 => 叶恭弘 */, {"叶音", "叶音", -1 } /* 叶音 => 叶音 */, {"叶韻", "叶韵", -1 } /* 叶韻 => 叶韵 */, {"吃著", "吃着", -1 } /* 吃著 => 吃着 */, {"各吊", "各吊", -1 } /* 各吊 => 各吊 */, {"合伙", "合伙", -1 } /* 合伙 => 合伙 */, {"合著", "合着", -1 } /* 合著 => 合着 */, {"合著者", "合着者", -1 } /* 合著者 => 合着者 */, {"吊上", "吊上", -1 } /* 吊上 => 吊上 */, {"吊下", "吊下", -1 } /* 吊下 => 吊下 */, {"吊到", "吊到", -1 } /* 吊到 => 吊到 */, {"吊去", "吊去", -1 } /* 吊去 => 吊去 */, {"吊取", "吊取", -1 } /* 吊取 => 吊取 */, {"吊吊", "吊吊", -1 } /* 吊吊 => 吊吊 */, {"吊嗓", "吊嗓", -1 } /* 吊嗓 => 吊嗓 */, {"吊好", "吊好", -1 } /* 吊好 => 吊好 */, {"吊子", "吊子", -1 } /* 吊子 => 吊子 */, {"吊床", "吊床", -1 } /* 吊床 => 吊床 */, {"吊得", "吊得", -1 } /* 吊得 => 吊得 */, {"吊掛", "吊挂", -1 } /* 吊掛 => 吊挂 */, {"吊掛著", "吊挂着", -1 } /* 吊掛著 => 吊挂着 */, {"吊架", "吊架", -1 } /* 吊架 => 吊架 */, {"吊桶", "吊桶", -1 } /* 吊桶 => 吊桶 */, {"吊桿", "吊杆", -1 } /* 吊桿 => 吊杆 */, {"吊橋", "吊桥", -1 } /* 吊橋 => 吊桥 */, {"吊死", "吊死", -1 } /* 吊死 => 吊死 */, {"吊燈", "吊灯", -1 } /* 吊燈 => 吊灯 */, {"吊環", "吊环", -1 } /* 吊環 => 吊环 */, {"吊盤", "吊盘", -1 } /* 吊盤 => 吊盘 */, {"吊索", "吊索", -1 } /* 吊索 => 吊索 */, {"吊著", "吊着", -1 } /* 吊著 => 吊着 */, {"吊裝", "吊装", -1 } /* 吊裝 => 吊装 */, {"吊褲", "吊裤", -1 } /* 吊褲 => 吊裤 */, {"吊襪", "吊袜", -1 } /* 吊襪 => 吊袜 */, {"吊走", "吊走", -1 } /* 吊走 => 吊走 */, {"吊起", "吊起", -1 } /* 吊起 => 吊起 */, {"吊車", "吊车", -1 } /* 吊車 => 吊车 */, {"吊鉤", "吊钩", -1 } /* 吊鉤 => 吊钩 */, {"吊銷", "吊销", -1 } /* 吊銷 => 吊销 */, {"吊鐘", "吊钟", -1 } /* 吊鐘 => 吊钟 */, {"吋", "寸", -1 } /* 吋 => 寸 */, {"同伙", "同伙", -1 } /* 同伙 => 同伙 */, {"同於", "同于", -1 } /* 同於 => 同于 */, {"名采", "名采", -1 } /* 名采 => 名采 */, {"后冠", "后冠", -1 } /* 后冠 => 后冠 */, {"后北街", "后北街", -1 } /* 后北街 => 后北街 */, {"后土", "后土", -1 } /* 后土 => 后土 */, {"后妃", "后妃", -1 } /* 后妃 => 后妃 */, {"后安路", "后安路", -1 } /* 后安路 => 后安路 */, {"后平路", "后平路", -1 } /* 后平路 => 后平路 */, {"后座", "后座", -1 } /* 后座 => 后座 */, {"后海灣", "后海湾", -1 } /* 后海灣 => 后海湾 */, {"后稷", "后稷", -1 } /* 后稷 => 后稷 */, {"后羿", "后羿", -1 } /* 后羿 => 后羿 */, {"后街", "后街", -1 } /* 后街 => 后街 */, {"后角", "后角", -1 } /* 后角 => 后角 */, {"向日葵", "向日葵", -1 } /* 向日葵 => 向日葵 */, {"向著", "向着", -1 } /* 向著 => 向着 */, {"含著", "含着", -1 } /* 含著 => 含着 */, {"吳", "吴", -1 } /* 吳 => 吴 */, {"吸著", "吸着", -1 } /* 吸著 => 吸着 */, {"呂", "吕", -1 } /* 呂 => 吕 */, {"呂后", "吕后", -1 } /* 呂后 => 吕后 */, {"周而複始", "周而复始", -1 } /* 周而複始 => 周而复始 */, {"周采詩", "周采诗", -1 } /* 周采詩 => 周采诗 */, {"味著", "味着", -1 } /* 味著 => 味着 */, {"呷洛", "甘洛", -1 } /* 呷洛 => 甘洛 */, {"呼么喝六", "呼幺喝六", -1 } /* 呼么喝六 => 呼幺喝六 */, {"呼籲", "呼吁", -1 } /* 呼籲 => 呼吁 */, {"和闐", "和田", -1 } /* 和闐 => 和田 */, {"咖啡鹼", "咖啡碱", -1 } /* 咖啡鹼 => 咖啡碱 */, {"咼", "呙", -1 } /* 咼 => 呙 */, {"員", "员", -1 } /* 員 => 员 */, {"哪吒", "哪吒", -1 } /* 哪吒 => 哪吒 */, {"哭著", "哭着", -1 } /* 哭著 => 哭着 */, {"哭髒", "哭脏", -1 } /* 哭髒 => 哭脏 */, {"哼著", "哼着", -1 } /* 哼著 => 哼着 */, {"唄", "呗", -1 } /* 唄 => 呗 */, {"唾餘", "唾余", -1 } /* 唾餘 => 唾余 */, {"商雒", "商洛", -1 } /* 商雒 => 商洛 */, {"問", "问", -1 } /* 問 => 问 */, {"啓", "启", -1 } /* 啓 => 启 */, {"啞", "哑", -1 } /* 啞 => 哑 */, {"啟", "启", -1 } /* 啟 => 启 */, {"啢", "唡", -1 } /* 啢 => 唡 */, {"善於", "善于", -1 } /* 善於 => 善于 */, {"喊著", "喊着", -1 } /* 喊著 => 喊着 */, {"喎", "㖞", -1 } /* 喎 => 㖞 */, {"喚", "唤", -1 } /* 喚 => 唤 */, {"喜樹鹼", "喜树碱", -1 } /* 喜樹鹼 => 喜树碱 */, {"喝倒采", "喝倒采", -1 } /* 喝倒采 => 喝倒采 */, {"喝著", "喝着", -1 } /* 喝著 => 喝着 */, {"喝采", "喝采", -1 } /* 喝采 => 喝采 */, {"喧鬨", "喧哄", -1 } /* 喧鬨 => 喧哄 */, {"喪", "丧", -1 } /* 喪 => 丧 */, {"喬", "乔", -1 } /* 喬 => 乔 */, {"喬治亞州", "佐治亚州", -1 } /* 喬治亞州 => 佐治亚州 */, {"喬治亞州", "乔治亚州", -1 } /* 喬治亞州 => 乔治亚州 */, {"單", "单", -1 } /* 單 => 单 */, {"喲", "哟", -1 } /* 喲 => 哟 */, {"嗆", "呛", -1 } /* 嗆 => 呛 */, {"嗇", "啬", -1 } /* 嗇 => 啬 */, {"嗊", "唝", -1 } /* 嗊 => 唝 */, {"嗎", "吗", -1 } /* 嗎 => 吗 */, {"嗚", "呜", -1 } /* 嗚 => 呜 */, {"嗩", "唢", -1 } /* 嗩 => 唢 */, {"嗬", "呵", -1 } /* 嗬 => 呵 */, {"嗶", "哔", -1 } /* 嗶 => 哔 */, {"嘆", "叹", -1 } /* 嘆 => 叹 */, {"嘍", "喽", -1 } /* 嘍 => 喽 */, {"嘔", "呕", -1 } /* 嘔 => 呕 */, {"嘖", "啧", -1 } /* 嘖 => 啧 */, {"嘗", "尝", -1 } /* 嘗 => 尝 */, {"嘜", "唛", -1 } /* 嘜 => 唛 */, {"嘩", "哗", -1 } /* 嘩 => 哗 */, {"嘮", "唠", -1 } /* 嘮 => 唠 */, {"嘯", "啸", -1 } /* 嘯 => 啸 */, {"嘰", "叽", -1 } /* 嘰 => 叽 */, {"嘵", "哓", -1 } /* 嘵 => 哓 */, {"嘸", "呒", -1 } /* 嘸 => 呒 */, {"嘽", "啴", -1 } /* 嘽 => 啴 */, {"噁心", "恶心", -1 } /* 噁心 => 恶心 */, {"噓", "嘘", -1 } /* 噓 => 嘘 */, {"噝", "咝", -1 } /* 噝 => 咝 */, {"噠", "哒", -1 } /* 噠 => 哒 */, {"噥", "哝", -1 } /* 噥 => 哝 */, {"噦", "哕", -1 } /* 噦 => 哕 */, {"噪聲", "噪声", -1 } /* 噪聲 => 噪声 */, {"噯", "嗳", -1 } /* 噯 => 嗳 */, {"噲", "哙", -1 } /* 噲 => 哙 */, {"噴", "喷", -1 } /* 噴 => 喷 */, {"噸", "吨", -1 } /* 噸 => 吨 */, {"噹", "当", -1 } /* 噹 => 当 */, {"噹啷", "当啷", -1 } /* 噹啷 => 当啷 */, {"噹噹", "当当", -1 } /* 噹噹 => 当当 */, {"嚀", "咛", -1 } /* 嚀 => 咛 */, {"嚇", "吓", -1 } /* 嚇 => 吓 */, {"嚌", "哜", -1 } /* 嚌 => 哜 */, {"嚕", "噜", -1 } /* 嚕 => 噜 */, {"嚕囌", "噜苏", -1 } /* 嚕囌 => 噜苏 */, {"嚙", "啮", -1 } /* 嚙 => 啮 */, {"嚥", "咽", -1 } /* 嚥 => 咽 */, {"嚦", "呖", -1 } /* 嚦 => 呖 */, {"嚨", "咙", -1 } /* 嚨 => 咙 */, {"嚮", "向", -1 } /* 嚮 => 向 */, {"嚮導", "向导", -1 } /* 嚮導 => 向导 */, {"嚮往", "向往", -1 } /* 嚮往 => 向往 */, {"嚮應", "向应", -1 } /* 嚮應 => 向应 */, {"嚮日", "向日", -1 } /* 嚮日 => 向日 */, {"嚮邇", "向迩", -1 } /* 嚮邇 => 向迩 */, {"嚲", "亸", -1 } /* 嚲 => 亸 */, {"嚳", "喾", -1 } /* 嚳 => 喾 */, {"嚴", "严", -1 } /* 嚴 => 严 */, {"嚴復", "严复", -1 } /* 嚴復 => 严复 */, {"嚴於", "严于", -1 } /* 嚴於 => 严于 */, {"嚴絲合縫", "严丝合缝", -1 } /* 嚴絲合縫 => 严丝合缝 */, {"嚶", "嘤", -1 } /* 嚶 => 嘤 */, {"囀", "啭", -1 } /* 囀 => 啭 */, {"囁", "嗫", -1 } /* 囁 => 嗫 */, {"囂", "嚣", -1 } /* 囂 => 嚣 */, {"囅", "冁", -1 } /* 囅 => 冁 */, {"囈", "呓", -1 } /* 囈 => 呓 */, {"囉", "啰", -1 } /* 囉 => 啰 */, {"囑", "嘱", -1 } /* 囑 => 嘱 */, {"四捨五入", "四舍五入", -1 } /* 四捨五入 => 四舍五入 */, {"四紮", "四扎", -1 } /* 四紮 => 四扎 */, {"四齣", "四出", -1 } /* 四齣 => 四出 */, {"回採", "回采", -1 } /* 回採 => 回采 */, {"回絲", "回丝", -1 } /* 回絲 => 回丝 */, {"回著", "回着", -1 } /* 回著 => 回着 */, {"回音", "回音", -1 } /* 回音 => 回音 */, {"因子", "因子", -1 } /* 因子 => 因子 */, {"圇", "囵", -1 } /* 圇 => 囵 */, {"國", "国", -1 } /* 國 => 国 */, {"國之楨榦", "国之桢干", -1 } /* 國之楨榦 => 国之桢干 */, {"國曆", "国历", -1 } /* 國曆 => 国历 */, {"國讎", "国雠", -1 } /* 國讎 => 国雠 */, {"圍", "围", -1 } /* 圍 => 围 */, {"圍著", "围着", -1 } /* 圍著 => 围着 */, {"園", "园", -1 } /* 園 => 园 */, {"圓", "圆", -1 } /* 圓 => 圆 */, {"圖", "图", -1 } /* 圖 => 图 */, {"團", "团", -1 } /* 團 => 团 */, {"在於", "在于", -1 } /* 在於 => 在于 */, {"地誌", "地志", -1 } /* 地誌 => 地志 */, {"坐著", "坐着", -1 } /* 坐著 => 坐着 */, {"坦蕩", "坦荡", -1 } /* 坦蕩 => 坦荡 */, {"埋佈", "埋布", -1 } /* 埋佈 => 埋布 */, {"域名", "域名", -1 } /* 域名 => 域名 */, {"埡", "垭", -1 } /* 埡 => 垭 */, {"埰", "采", -1 } /* 埰 => 采 */, {"執", "执", -1 } /* 執 => 执 */, {"執行檔", "可执行文件", -1 } /* 執行檔 => 可执行文件 */, {"堅", "坚", -1 } /* 堅 => 坚 */, {"堊", "垩", -1 } /* 堊 => 垩 */, {"堖", "垴", -1 } /* 堖 => 垴 */, {"堝", "埚", -1 } /* 堝 => 埚 */, {"堯", "尧", -1 } /* 堯 => 尧 */, {"報", "报", -1 } /* 報 => 报 */, {"場", "场", -1 } /* 場 => 场 */, {"塊", "块", -1 } /* 塊 => 块 */, {"塋", "茔", -1 } /* 塋 => 茔 */, {"塏", "垲", -1 } /* 塏 => 垲 */, {"塒", "埘", -1 } /* 塒 => 埘 */, {"塗", "涂", -1 } /* 塗 => 涂 */, {"塞著", "塞着", -1 } /* 塞著 => 塞着 */, {"塢", "坞", -1 } /* 塢 => 坞 */, {"塤", "埙", -1 } /* 塤 => 埙 */, {"塵", "尘", -1 } /* 塵 => 尘 */, {"塹", "堑", -1 } /* 塹 => 堑 */, {"墊", "垫", -1 } /* 墊 => 垫 */, {"墓誌", "墓志", -1 } /* 墓誌 => 墓志 */, {"墜", "坠", -1 } /* 墜 => 坠 */, {"墜於", "坠于", -1 } /* 墜於 => 坠于 */, {"墨斗", "墨斗", -1 } /* 墨斗 => 墨斗 */, {"墮", "堕", -1 } /* 墮 => 堕 */, {"墳", "坟", -1 } /* 墳 => 坟 */, {"墻", "墙", -1 } /* 墻 => 墙 */, {"墾", "垦", -1 } /* 墾 => 垦 */, {"墾複", "垦复", -1 } /* 墾複 => 垦复 */, {"壇", "坛", -1 } /* 壇 => 坛 */, {"壋", "垱", -1 } /* 壋 => 垱 */, {"壓", "压", -1 } /* 壓 => 压 */, {"壓著", "压着", -1 } /* 壓著 => 压着 */, {"壘", "垒", -1 } /* 壘 => 垒 */, {"壙", "圹", -1 } /* 壙 => 圹 */, {"壚", "垆", -1 } /* 壚 => 垆 */, {"壞", "坏", -1 } /* 壞 => 坏 */, {"壞於", "坏于", -1 } /* 壞於 => 坏于 */, {"壟", "垄", -1 } /* 壟 => 垄 */, {"壟斷價格", "垄断价格", -1 } /* 壟斷價格 => 垄断价格 */, {"壟斷資產", "垄断资产", -1 } /* 壟斷資產 => 垄断资产 */, {"壟斷集團", "垄断集团", -1 } /* 壟斷集團 => 垄断集团 */, {"壠", "垅", -1 } /* 壠 => 垅 */, {"壢", "坜", -1 } /* 壢 => 坜 */, {"壩", "坝", -1 } /* 壩 => 坝 */, {"士多啤梨", "草莓", -1 } /* 士多啤梨 => 草莓 */, {"壬丑", "壬丑", -1 } /* 壬丑 => 壬丑 */, {"壯", "壮", -1 } /* 壯 => 壮 */, {"壼", "壸", -1 } /* 壼 => 壸 */, {"夀", "寿", -1 } /* 夀 => 寿 */, {"夏曆", "夏历", -1 } /* 夏曆 => 夏历 */, {"外科學系", "外科学系", -1 } /* 外科學系 => 外科学系 */, {"外部連結", "外部链接", -1 } /* 外部連結 => 外部链接 */, {"多於", "多于", -1 } /* 多於 => 多于 */, {"多明尼加", "多米尼加", -1 } /* 多明尼加 => 多米尼加 */, {"多衝", "多冲", -1 } /* 多衝 => 多冲 */, {"多采", "多采", -1 } /* 多采 => 多采 */, {"多采多姿", "多采多姿", -1 } /* 多采多姿 => 多采多姿 */, {"多餘", "多余", -1 } /* 多餘 => 多余 */, {"多麼", "多么", -1 } /* 多麼 => 多么 */, {"夜光錶", "夜光表", -1 } /* 夜光錶 => 夜光表 */, {"夠", "够", -1 } /* 夠 => 够 */, {"夢", "梦", -1 } /* 夢 => 梦 */, {"夥", "伙", -1 } /* 夥 => 伙 */, {"大伙", "大伙", -1 } /* 大伙 => 大伙 */, {"大夥兒", "大伙儿", -1 } /* 大夥兒 => 大伙儿 */, {"大庾", "大余", -1 } /* 大庾 => 大余 */, {"大放異采", "大放异采", -1 } /* 大放異采 => 大放异采 */, {"大於", "大于", -1 } /* 大於 => 大于 */, {"大餘", "大余", -1 } /* 大餘 => 大余 */, {"大麻鹼", "大麻碱", -1 } /* 大麻鹼 => 大麻碱 */, {"天然鹼", "天然碱", -1 } /* 天然鹼 => 天然碱 */, {"太后", "太后", -1 } /* 太后 => 太后 */, {"夸克", "夸克", -1 } /* 夸克 => 夸克 */, {"夸克星", "夸克星", -1 } /* 夸克星 => 夸克星 */, {"夾", "夹", -1 } /* 夾 => 夹 */, {"夾著", "夹着", -1 } /* 夾著 => 夹着 */, {"奉於", "奉于", -1 } /* 奉於 => 奉于 */, {"奏摺", "奏折", -1 } /* 奏摺 => 奏折 */, {"奐", "奂", -1 } /* 奐 => 奂 */, {"奔馳", "奔驰", -1 } /* 奔馳 => 奔驰 */, {"奧", "奥", -1 } /* 奧 => 奥 */, {"奧克拉荷馬", "俄克拉何马", -1 } /* 奧克拉荷馬 => 俄克拉何马 */, {"奩", "奁", -1 } /* 奩 => 奁 */, {"奪", "夺", -1 } /* 奪 => 夺 */, {"奬", "奖", -1 } /* 奬 => 奖 */, {"奮", "奋", -1 } /* 奮 => 奋 */, {"奮鬥", "奋斗", -1 } /* 奮鬥 => 奋斗 */, {"女丑", "女丑", -1 } /* 女丑 => 女丑 */, {"女佣", "女佣", -1 } /* 女佣 => 女佣 */, {"好傢夥", "好家夥", -1 } /* 好傢夥 => 好家夥 */, {"好於", "好于", -1 } /* 好於 => 好于 */, {"好籤", "好签", -1 } /* 好籤 => 好签 */, {"妖后", "妖后", -1 } /* 妖后 => 妖后 */, {"妝", "妆", -1 } /* 妝 => 妆 */, {"始於", "始于", -1 } /* 始於 => 始于 */, {"姍", "姗", -1 } /* 姍 => 姗 */, {"委託", "委托", -1 } /* 委託 => 委托 */, {"委託書", "委托书", -1 } /* 委託書 => 委托书 */, {"姚采穎", "姚采颖", -1 } /* 姚采穎 => 姚采颖 */, {"姦殺", "奸杀", -1 } /* 姦殺 => 奸杀 */, {"姿采", "姿采", -1 } /* 姿采 => 姿采 */, {"威斯康辛", "威斯康星", -1 } /* 威斯康辛 => 威斯康星 */, {"娛", "娱", -1 } /* 娛 => 娱 */, {"婁", "娄", -1 } /* 婁 => 娄 */, {"婦", "妇", -1 } /* 婦 => 妇 */, {"婭", "娅", -1 } /* 婭 => 娅 */, {"婺川", "务川", -1 } /* 婺川 => 务川 */, {"媧", "娲", -1 } /* 媧 => 娲 */, {"媯", "妫", -1 } /* 媯 => 妫 */, {"媼", "媪", -1 } /* 媼 => 媪 */, {"媽", "妈", -1 } /* 媽 => 妈 */, {"嫗", "妪", -1 } /* 嫗 => 妪 */, {"嫵", "妩", -1 } /* 嫵 => 妩 */, {"嫻", "娴", -1 } /* 嫻 => 娴 */, {"嫿", "婳", -1 } /* 嫿 => 婳 */, {"嬀", "妫", -1 } /* 嬀 => 妫 */, {"嬈", "娆", -1 } /* 嬈 => 娆 */, {"嬋", "婵", -1 } /* 嬋 => 婵 */, {"嬌", "娇", -1 } /* 嬌 => 娇 */, {"嬙", "嫱", -1 } /* 嬙 => 嫱 */, {"嬡", "嫒", -1 } /* 嬡 => 嫒 */, {"嬪", "嫔", -1 } /* 嬪 => 嫔 */, {"嬰", "婴", -1 } /* 嬰 => 婴 */, {"嬸", "婶", -1 } /* 嬸 => 婶 */, {"孌", "娈", -1 } /* 孌 => 娈 */, {"子之丰兮", "子之丰兮", -1 } /* 子之丰兮 => 子之丰兮 */, {"字元", "字符", -1 } /* 字元 => 字符 */, {"字型", "字体", -1 } /* 字型 => 字体 */, {"字型檔", "字体文件", -1 } /* 字型檔 => 字体文件 */, {"字符集", "字符集", -1 } /* 字符集 => 字符集 */, {"存摺", "存折", -1 } /* 存摺 => 存折 */, {"存於", "存于", -1 } /* 存於 => 存于 */, {"存檔", "存盘", -1 } /* 存檔 => 存盘 */, {"存著", "存着", -1 } /* 存著 => 存着 */, {"孫", "孙", -1 } /* 孫 => 孙 */, {"學", "学", -1 } /* 學 => 学 */, {"學著", "学着", -1 } /* 學著 => 学着 */, {"孿", "孪", -1 } /* 孿 => 孪 */, {"宇宙誌", "宇宙志", -1 } /* 宇宙誌 => 宇宙志 */, {"守著", "守着", -1 } /* 守著 => 守着 */, {"安於", "安于", -1 } /* 安於 => 安于 */, {"宋元", "宋元", -1 } /* 宋元 => 宋元 */, {"定准", "定准", -1 } /* 定准 => 定准 */, {"定址", "寻址", -1 } /* 定址 => 寻址 */, {"定於", "定于", -1 } /* 定於 => 定于 */, {"宣佈", "宣布", -1 } /* 宣佈 => 宣布 */, {"宣洩", "宣泄", -1 } /* 宣洩 => 宣泄 */, {"宮", "宫", -1 } /* 宮 => 宫 */, {"宿舍", "宿舍", -1 } /* 宿舍 => 宿舍 */, {"寀", "采", -1 } /* 寀 => 采 */, {"寄於", "寄于", -1 } /* 寄於 => 寄于 */, {"密佈", "密布", -1 } /* 密佈 => 密布 */, {"密执安", "密歇根", -1 } /* 密执安 => 密歇根 */, {"密於", "密于", -1 } /* 密於 => 密于 */, {"寇準", "寇准", -1 } /* 寇準 => 寇准 */, {"寇讎", "寇雠", -1 } /* 寇讎 => 寇雠 */, {"富於", "富于", -1 } /* 富於 => 富于 */, {"富餘", "富余", -1 } /* 富餘 => 富余 */, {"寢", "寝", -1 } /* 寢 => 寝 */, {"實", "实", -1 } /* 實 => 实 */, {"寧", "宁", -1 } /* 寧 => 宁 */, {"審", "审", -1 } /* 審 => 审 */, {"寫", "写", -1 } /* 寫 => 写 */, {"寫於", "写于", -1 } /* 寫於 => 写于 */, {"寬", "宽", -1 } /* 寬 => 宽 */, {"寬頻", "宽带", -1 } /* 寬頻 => 宽带 */, {"寬餘", "宽余", -1 } /* 寬餘 => 宽余 */, {"寮國", "老挝", -1 } /* 寮國 => 老挝 */, {"寮寀", "寮采", -1 } /* 寮寀 => 寮采 */, {"寵", "宠", -1 } /* 寵 => 宠 */, {"寶", "宝", -1 } /* 寶 => 宝 */, {"寶曆", "宝历", -1 } /* 寶曆 => 宝历 */, {"封后", "封后", -1 } /* 封后 => 封后 */, {"射鵰", "射雕", -1 } /* 射鵰 => 射雕 */, {"將", "将", -1 } /* 將 => 将 */, {"將於", "将于", -1 } /* 將於 => 将于 */, {"專", "专", -1 } /* 專 => 专 */, {"專線", "专线", -1 } /* 專線 => 专线 */, {"尋", "寻", -1 } /* 尋 => 寻 */, {"尋鄔", "寻乌", -1 } /* 尋鄔 => 寻乌 */, {"對", "对", -1 } /* 對 => 对 */, {"對摺", "对折", -1 } /* 對摺 => 对折 */, {"對於", "对于", -1 } /* 對於 => 对于 */, {"對著", "对着", -1 } /* 對著 => 对着 */, {"對錶", "对表", -1 } /* 對錶 => 对表 */, {"導", "导", -1 } /* 導 => 导 */, {"小丑", "小丑", -1 } /* 小丑 => 小丑 */, {"小伙", "小伙", -1 } /* 小伙 => 小伙 */, {"小於", "小于", -1 } /* 小於 => 小于 */, {"小醜跳樑", "小丑跳梁", -1 } /* 小醜跳樑 => 小丑跳梁 */, {"少吊", "少吊", -1 } /* 少吊 => 少吊 */, {"少於", "少于", -1 } /* 少於 => 少于 */, {"尖棉島", "扬马延岛", -1 } /* 尖棉島 => 扬马延岛 */, {"尚餘", "尚余", -1 } /* 尚餘 => 尚余 */, {"尷", "尴", -1 } /* 尷 => 尴 */, {"尺布斗粟", "尺布斗粟", -1 } /* 尺布斗粟 => 尺布斗粟 */, {"尼克森", "尼克松", -1 } /* 尼克森 => 尼克松 */, {"尼加拉瀑布", "尼亚加拉大瀑布", -1 } /* 尼加拉瀑布 => 尼亚加拉大瀑布 */, {"尼采", "尼采", -1 } /* 尼采 => 尼采 */, {"尾碼", "后缀", -1 } /* 尾碼 => 后缀 */, {"尿斗", "尿斗", -1 } /* 尿斗 => 尿斗 */, {"屆", "届", -1 } /* 屆 => 届 */, {"屋樑", "屋梁", -1 } /* 屋樑 => 屋梁 */, {"屍", "尸", -1 } /* 屍 => 尸 */, {"屓", "屃", -1 } /* 屓 => 屃 */, {"展佈", "展布", -1 } /* 展佈 => 展布 */, {"屜", "屉", -1 } /* 屜 => 屉 */, {"屢", "屡", -1 } /* 屢 => 屡 */, {"層", "层", -1 } /* 層 => 层 */, {"屨", "屦", -1 } /* 屨 => 屦 */, {"屬", "属", -1 } /* 屬 => 属 */, {"屬於", "属于", -1 } /* 屬於 => 属于 */, {"山嶽", "山岳", -1 } /* 山嶽 => 山岳 */, {"山谷", "山谷", -1 } /* 山谷 => 山谷 */, {"岡", "冈", -1 } /* 岡 => 冈 */, {"峰迴", "峰回", -1 } /* 峰迴 => 峰回 */, {"峴", "岘", -1 } /* 峴 => 岘 */, {"島", "岛", -1 } /* 島 => 岛 */, {"峽", "峡", -1 } /* 峽 => 峡 */, {"崍", "崃", -1 } /* 崍 => 崃 */, {"崑崙", "昆仑", -1 } /* 崑崙 => 昆仑 */, {"崗", "岗", -1 } /* 崗 => 岗 */, {"崢", "峥", -1 } /* 崢 => 峥 */, {"崬", "岽", -1 } /* 崬 => 岽 */, {"嵐", "岚", -1 } /* 嵐 => 岚 */, {"嶁", "嵝", -1 } /* 嶁 => 嵝 */, {"嶄", "崭", -1 } /* 嶄 => 崭 */, {"嶇", "岖", -1 } /* 嶇 => 岖 */, {"嶔", "嵚", -1 } /* 嶔 => 嵚 */, {"嶗", "崂", -1 } /* 嶗 => 崂 */, {"嶠", "峤", -1 } /* 嶠 => 峤 */, {"嶢", "峣", -1 } /* 嶢 => 峣 */, {"嶧", "峄", -1 } /* 嶧 => 峄 */, {"嶨", "峃", -1 } /* 嶨 => 峃 */, {"嶮", "崄", -1 } /* 嶮 => 崄 */, {"嶴", "岙", -1 } /* 嶴 => 岙 */, {"嶸", "嵘", -1 } /* 嶸 => 嵘 */, {"嶺", "岭", -1 } /* 嶺 => 岭 */, {"嶼", "屿", -1 } /* 嶼 => 屿 */, {"嶽麓山", "岳麓山", -1 } /* 嶽麓山 => 岳麓山 */, {"巋", "岿", -1 } /* 巋 => 岿 */, {"巒", "峦", -1 } /* 巒 => 峦 */, {"巔", "巅", -1 } /* 巔 => 巅 */, {"川朴", "川朴", -1 } /* 川朴 => 川朴 */, {"巡迴", "巡回", -1 } /* 巡迴 => 巡回 */, {"工餘", "工余", -1 } /* 工餘 => 工余 */, {"左右采之", "左右采之", -1 } /* 左右采之 => 左右采之 */, {"巧於", "巧于", -1 } /* 巧於 => 巧于 */, {"巨集指令", "宏指令", -1 } /* 巨集指令 => 宏指令 */, {"巨集病毒", "宏病毒", -1 } /* 巨集病毒 => 宏病毒 */, {"巰", "巯", -1 } /* 巰 => 巯 */, {"己丑", "己丑", -1 } /* 己丑 => 己丑 */, {"巴哈", "巴赫", -1 } /* 巴哈 => 巴赫 */, {"巴士", "巴士", -1 } /* 巴士 => 巴士 */, {"巴拉馬利波", "帕拉马里博", -1 } /* 巴拉馬利波 => 帕拉马里博 */, {"布什爾省", "布什尔省", -1 } /* 布什爾省 => 布什尔省 */, {"布穀", "布谷", -1 } /* 布穀 => 布谷 */, {"布達佩斯", "布达佩斯", -1 } /* 布達佩斯 => 布达佩斯 */, {"布雷頓", "布雷顿", -1 } /* 布雷頓 => 布雷顿 */, {"希特拉", "希特勒", -1 } /* 希特拉 => 希特勒 */, {"希臘", "希腊", -1 } /* 希臘 => 希腊 */, {"帘子", "帘子", -1 } /* 帘子 => 帘子 */, {"帘布", "帘布", -1 } /* 帘布 => 帘布 */, {"帥", "帅", -1 } /* 帥 => 帅 */, {"師", "师", -1 } /* 師 => 师 */, {"師範", "师范", -1 } /* 師範 => 师范 */, {"帳", "帐", -1 } /* 帳 => 帐 */, {"帶", "带", -1 } /* 帶 => 带 */, {"帶著", "带着", -1 } /* 帶著 => 带着 */, {"常式", "例程", -1 } /* 常式 => 例程 */, {"幀", "帧", -1 } /* 幀 => 帧 */, {"幃", "帏", -1 } /* 幃 => 帏 */, {"幗", "帼", -1 } /* 幗 => 帼 */, {"幘", "帻", -1 } /* 幘 => 帻 */, {"幟", "帜", -1 } /* 幟 => 帜 */, {"幣", "币", -1 } /* 幣 => 币 */, {"幫", "帮", -1 } /* 幫 => 帮 */, {"幬", "帱", -1 } /* 幬 => 帱 */, {"平治之亂", "平治之乱", -1 } /* 平治之亂 => 平治之乱 */, {"年曆", "年历", -1 } /* 年曆 => 年历 */, {"幵", "开", -1 } /* 幵 => 开 */, {"并州", "并州", -1 } /* 并州 => 并州 */, {"幷", "并", -1 } /* 幷 => 并 */, {"幹", "干", -1 } /* 幹 => 干 */, {"幺", "么", -1 } /* 幺 => 么 */, {"幾", "几", -1 } /* 幾 => 几 */, {"庚丑", "庚丑", -1 } /* 庚丑 => 庚丑 */, {"庫", "库", -1 } /* 庫 => 库 */, {"庫克群島", "库克群岛", -1 } /* 庫克群島 => 库克群岛 */, {"康乾", "康乾", -1 } /* 康乾 => 康乾 */, {"康采恩", "康采恩", -1 } /* 康采恩 => 康采恩 */, {"廁", "厕", -1 } /* 廁 => 厕 */, {"廂", "厢", -1 } /* 廂 => 厢 */, {"廄", "厩", -1 } /* 廄 => 厩 */, {"廈", "厦", -1 } /* 廈 => 厦 */, {"廎", "庼", -1 } /* 廎 => 庼 */, {"廖丑", "廖丑", -1 } /* 廖丑 => 廖丑 */, {"廚", "厨", -1 } /* 廚 => 厨 */, {"廝", "厮", -1 } /* 廝 => 厮 */, {"廟", "庙", -1 } /* 廟 => 庙 */, {"廠", "厂", -1 } /* 廠 => 厂 */, {"廡", "庑", -1 } /* 廡 => 庑 */, {"廢", "废", -1 } /* 廢 => 废 */, {"廢后", "废后", -1 } /* 廢后 => 废后 */, {"廣", "广", -1 } /* 廣 => 广 */, {"廣捨", "广舍", -1 } /* 廣捨 => 广舍 */, {"廩", "廪", -1 } /* 廩 => 廪 */, {"廬", "庐", -1 } /* 廬 => 庐 */, {"廳", "厅", -1 } /* 廳 => 厅 */, {"建於", "建于", -1 } /* 建於 => 建于 */, {"建構子", "构造函数", -1 } /* 建構子 => 构造函数 */, {"弘曆", "弘历", -1 } /* 弘曆 => 弘历 */, {"弯著", "弯着", -1 } /* 弯著 => 弯着 */, {"弱於", "弱于", -1 } /* 弱於 => 弱于 */, {"弱鹼", "弱碱", -1 } /* 弱鹼 => 弱碱 */, {"弳", "弪", -1 } /* 弳 => 弪 */, {"張", "张", -1 } /* 張 => 张 */, {"張法乾", "张法乾", -1 } /* 張法乾 => 张法乾 */, {"張著", "张着", -1 } /* 張著 => 张着 */, {"強", "强", -1 } /* 強 => 强 */, {"強姦", "强奸", -1 } /* 強姦 => 强奸 */, {"強於", "强于", -1 } /* 強於 => 强于 */, {"強鹼", "强碱", -1 } /* 強鹼 => 强碱 */, {"强聒不舍", "强聒不舍", -1 } /* 强聒不舍 => 强聒不舍 */, {"彆口氣", "别口气", -1 } /* 彆口氣 => 别口气 */, {"彆強", "别强", -1 } /* 彆強 => 别强 */, {"彆扭", "别扭", -1 } /* 彆扭 => 别扭 */, {"彆拗", "别拗", -1 } /* 彆拗 => 别拗 */, {"彆氣", "别气", -1 } /* 彆氣 => 别气 */, {"彆著", "别着", -1 } /* 彆著 => 别着 */, {"彈", "弹", -1 } /* 彈 => 弹 */, {"彈子檯", "弹子台", -1 } /* 彈子檯 => 弹子台 */, {"彈葯", "弹药", -1 } /* 彈葯 => 弹药 */, {"彌", "弥", -1 } /* 彌 => 弥 */, {"彎", "弯", -1 } /* 彎 => 弯 */, {"彔", "录", -1 } /* 彔 => 录 */, {"彙", "汇", -1 } /* 彙 => 汇 */, {"彙輯", "汇辑", -1 } /* 彙輯 => 汇辑 */, {"彷彿", "仿佛", -1 } /* 彷彿 => 仿佛 */, {"往複", "往复", -1 } /* 往複 => 往复 */, {"待著", "待着", -1 } /* 待著 => 待着 */, {"後", "后", -1 } /* 後 => 后 */, {"後於", "后于", -1 } /* 後於 => 后于 */, {"徑", "径", -1 } /* 徑 => 径 */, {"得意之餘", "得意之余", -1 } /* 得意之餘 => 得意之余 */, {"得著", "得着", -1 } /* 得著 => 得着 */, {"從", "从", -1 } /* 從 => 从 */, {"徠", "徕", -1 } /* 徠 => 徕 */, {"御准", "御准", -1 } /* 御准 => 御准 */, {"復", "复", -1 } /* 復 => 复 */, {"復始", "复始", -1 } /* 復始 => 复始 */, {"復旦", "复旦", -1 } /* 復旦 => 复旦 */, {"復活", "复活", -1 } /* 復活 => 复活 */, {"復興", "复兴", -1 } /* 復興 => 复兴 */, {"復讎", "复雠", -1 } /* 復讎 => 复雠 */, {"復辟", "复辟", -1 } /* 復辟 => 复辟 */, {"循環", "循环", -1 } /* 循環 => 循环 */, {"徵", "征", -1 } /* 徵 => 征 */, {"徵(zhǐ)", "徵(zhǐ)", -1 } /* 徵(zhǐ) => 徵(zhǐ) */, {"徵羽", "徵羽", -1 } /* 徵羽 => 徵羽 */, {"徵調", "徵调", -1 } /* 徵調 => 徵调 */, {"徵音", "徵音", -1 } /* 徵音 => 徵音 */, {"德克薩斯", "得克萨斯", -1 } /* 德克薩斯 => 得克萨斯 */, {"德古斯加巴", "特古西加尔巴", -1 } /* 德古斯加巴 => 特古西加尔巴 */, {"徹", "彻", -1 } /* 徹 => 彻 */, {"心蕩神馳", "心荡神驰", -1 } /* 心蕩神馳 => 心荡神驰 */, {"心願", "心愿", -1 } /* 心願 => 心愿 */, {"忙於", "忙于", -1 } /* 忙於 => 忙于 */, {"忙著", "忙着", -1 } /* 忙著 => 忙着 */, {"忠於", "忠于", -1 } /* 忠於 => 忠于 */, {"快取記憶體", "高速缓存", -1 } /* 快取記憶體 => 高速缓存 */, {"快衝", "快冲", -1 } /* 快衝 => 快冲 */, {"快閃記憶體", "闪存", -1 } /* 快閃記憶體 => 闪存 */, {"念著", "念着", -1 } /* 念著 => 念着 */, {"怎麼", "怎么", -1 } /* 怎麼 => 怎么 */, {"怎麼著", "怎么着", -1 } /* 怎麼著 => 怎么着 */, {"急於", "急于", -1 } /* 急於 => 急于 */, {"急著", "急着", -1 } /* 急著 => 急着 */, {"急衝而下", "急冲而下", -1 } /* 急衝而下 => 急冲而下 */, {"恆", "恒", -1 } /* 恆 => 恒 */, {"恥", "耻", -1 } /* 恥 => 耻 */, {"恩准", "恩准", -1 } /* 恩准 => 恩准 */, {"恭於", "恭于", -1 } /* 恭於 => 恭于 */, {"悞", "悮", -1 } /* 悞 => 悮 */, {"悵", "怅", -1 } /* 悵 => 怅 */, {"悶", "闷", -1 } /* 悶 => 闷 */, {"情有所鍾", "情有所钟", -1 } /* 情有所鍾 => 情有所钟 */, {"情采", "情采", -1 } /* 情采 => 情采 */, {"惡", "恶", -1 } /* 惡 => 恶 */, {"惡於", "恶于", -1 } /* 惡於 => 恶于 */, {"惦著", "惦着", -1 } /* 惦著 => 惦着 */, {"惱", "恼", -1 } /* 惱 => 恼 */, {"惲", "恽", -1 } /* 惲 => 恽 */, {"想著", "想着", -1 } /* 想著 => 想着 */, {"惻", "恻", -1 } /* 惻 => 恻 */, {"意大利", "意大利", -1 } /* 意大利 => 意大利 */, {"愛", "爱", -1 } /* 愛 => 爱 */, {"愛著", "爱着", -1 } /* 愛著 => 爱着 */, {"愜", "惬", -1 } /* 愜 => 惬 */, {"感於", "感于", -1 } /* 感於 => 感于 */, {"感測", "传感", -1 } /* 感測 => 传感 */, {"愧於", "愧于", -1 } /* 愧於 => 愧于 */, {"愨", "悫", -1 } /* 愨 => 悫 */, {"愴", "怆", -1 } /* 愴 => 怆 */, {"愷", "恺", -1 } /* 愷 => 恺 */, {"愾", "忾", -1 } /* 愾 => 忾 */, {"慄", "栗", -1 } /* 慄 => 栗 */, {"態", "态", -1 } /* 態 => 态 */, {"慘", "惨", -1 } /* 慘 => 惨 */, {"慚", "惭", -1 } /* 慚 => 惭 */, {"慟", "恸", -1 } /* 慟 => 恸 */, {"慣", "惯", -1 } /* 慣 => 惯 */, {"慤", "悫", -1 } /* 慤 => 悫 */, {"慪", "怄", -1 } /* 慪 => 怄 */, {"慫", "怂", -1 } /* 慫 => 怂 */, {"慮", "虑", -1 } /* 慮 => 虑 */, {"慰藉", "慰借", -1 } /* 慰藉 => 慰借 */, {"慳", "悭", -1 } /* 慳 => 悭 */, {"慶", "庆", -1 } /* 慶 => 庆 */, {"慾望", "欲望", -1 } /* 慾望 => 欲望 */, {"憂", "忧", -1 } /* 憂 => 忧 */, {"憂鬱", "忧郁", -1 } /* 憂鬱 => 忧郁 */, {"憊", "惫", -1 } /* 憊 => 惫 */, {"憐", "怜", -1 } /* 憐 => 怜 */, {"憑", "凭", -1 } /* 憑 => 凭 */, {"憑吊", "凭吊", -1 } /* 憑吊 => 凭吊 */, {"憑藉", "凭借", -1 } /* 憑藉 => 凭借 */, {"憑藉著", "凭借着", -1 } /* 憑藉著 => 凭借着 */, {"憒", "愦", -1 } /* 憒 => 愦 */, {"憚", "惮", -1 } /* 憚 => 惮 */, {"憤", "愤", -1 } /* 憤 => 愤 */, {"憫", "悯", -1 } /* 憫 => 悯 */, {"憮", "怃", -1 } /* 憮 => 怃 */, {"憲", "宪", -1 } /* 憲 => 宪 */, {"憶", "忆", -1 } /* 憶 => 忆 */, {"懇", "恳", -1 } /* 懇 => 恳 */, {"應", "应", -1 } /* 應 => 应 */, {"應采儿", "应采儿", -1 } /* 應采儿 => 应采儿 */, {"懌", "怿", -1 } /* 懌 => 怿 */, {"懍", "懔", -1 } /* 懍 => 懔 */, {"懟", "怼", -1 } /* 懟 => 怼 */, {"懣", "懑", -1 } /* 懣 => 懑 */, {"懨", "恹", -1 } /* 懨 => 恹 */, {"懲", "惩", -1 } /* 懲 => 惩 */, {"懶", "懒", -1 } /* 懶 => 懒 */, {"懷", "怀", -1 } /* 懷 => 怀 */, {"懷著", "怀着", -1 } /* 懷著 => 怀着 */, {"懷錶", "怀表", -1 } /* 懷錶 => 怀表 */, {"懸", "悬", -1 } /* 懸 => 悬 */, {"懸吊", "悬吊", -1 } /* 懸吊 => 悬吊 */, {"懺", "忏", -1 } /* 懺 => 忏 */, {"懼", "惧", -1 } /* 懼 => 惧 */, {"懾", "慑", -1 } /* 懾 => 慑 */, {"戀", "恋", -1 } /* 戀 => 恋 */, {"戀戀不捨", "恋恋不舍", -1 } /* 戀戀不捨 => 恋恋不舍 */, {"戇", "戆", -1 } /* 戇 => 戆 */, {"戈巴契夫", "戈尔巴乔夫", -1 } /* 戈巴契夫 => 戈尔巴乔夫 */, {"戊丑", "戊丑", -1 } /* 戊丑 => 戊丑 */, {"成於", "成于", -1 } /* 成於 => 成于 */, {"戔", "戋", -1 } /* 戔 => 戋 */, {"戧", "戗", -1 } /* 戧 => 戗 */, {"戩", "戬", -1 } /* 戩 => 戬 */, {"戰", "战", -1 } /* 戰 => 战 */, {"戰鬥", "战斗", -1 } /* 戰鬥 => 战斗 */, {"戱", "戯", -1 } /* 戱 => 戯 */, {"戲", "戏", -1 } /* 戲 => 戏 */, {"戴著", "戴着", -1 } /* 戴著 => 戴着 */, {"戴錶", "戴表", -1 } /* 戴錶 => 戴表 */, {"戶", "户", -1 } /* 戶 => 户 */, {"戽斗", "戽斗", -1 } /* 戽斗 => 戽斗 */, {"手摺", "手折", -1 } /* 手摺 => 手折 */, {"手電筒", "手电筒", -1 } /* 手電筒 => 手电筒 */, {"打穀", "打谷", -1 } /* 打穀 => 打谷 */, {"打著", "打着", -1 } /* 打著 => 打着 */, {"托洛斯基", "托洛茨基", -1 } /* 托洛斯基 => 托洛茨基 */, {"扛著", "扛着", -1 } /* 扛著 => 扛着 */, {"扣著", "扣着", -1 } /* 扣著 => 扣着 */, {"扶餘", "扶余", -1 } /* 扶餘 => 扶余 */, {"批准", "批准", -1 } /* 批准 => 批准 */, {"批鬥", "批斗", -1 } /* 批鬥 => 批斗 */, {"承宣布政使司", "承宣布政使司", -1 } /* 承宣布政使司 => 承宣布政使司 */, {"抑鬱", "抑郁", -1 } /* 抑鬱 => 抑郁 */, {"抓著", "抓着", -1 } /* 抓著 => 抓着 */, {"抗禦", "抗御", -1 } /* 抗禦 => 抗御 */, {"折合", "折合", -1 } /* 折合 => 折合 */, {"披著", "披着", -1 } /* 披著 => 披着 */, {"抱朴", "抱朴", -1 } /* 抱朴 => 抱朴 */, {"抱著", "抱着", -1 } /* 抱著 => 抱着 */, {"抵禦", "抵御", -1 } /* 抵禦 => 抵御 */, {"抽公籤", "抽公签", -1 } /* 抽公籤 => 抽公签 */, {"抽籤", "抽签", -1 } /* 抽籤 => 抽签 */, {"抽著", "抽着", -1 } /* 抽著 => 抽着 */, {"拆伙", "拆伙", -1 } /* 拆伙 => 拆伙 */, {"拈鬚", "拈须", -1 } /* 拈鬚 => 拈须 */, {"拉縴", "拉纤", -1 } /* 拉縴 => 拉纤 */, {"拉著", "拉着", -1 } /* 拉著 => 拉着 */, {"拎著", "拎着", -1 } /* 拎著 => 拎着 */, {"拖吊", "拖吊", -1 } /* 拖吊 => 拖吊 */, {"拗彆", "拗别", -1 } /* 拗彆 => 拗别 */, {"拚捨", "拚舍", -1 } /* 拚捨 => 拚舍 */, {"拜託", "拜托", -1 } /* 拜託 => 拜托 */, {"括弧", "括号", -1 } /* 括弧 => 括号 */, {"括號", "括号", -1 } /* 括號 => 括号 */, {"拮据", "拮据", -1 } /* 拮据 => 拮据 */, {"拿破崙", "拿破仑", -1 } /* 拿破崙 => 拿破仑 */, {"拿著", "拿着", -1 } /* 拿著 => 拿着 */, {"挨著", "挨着", -1 } /* 挨著 => 挨着 */, {"振蕩", "振荡", -1 } /* 振蕩 => 振荡 */, {"挾", "挟", -1 } /* 挾 => 挟 */, {"捍禦", "捍御", -1 } /* 捍禦 => 捍御 */, {"捐著", "捐着", -1 } /* 捐著 => 捐着 */, {"捜", "搜", -1 } /* 捜 => 搜 */, {"捨", "舍", -1 } /* 捨 => 舍 */, {"捨不得", "舍不得", -1 } /* 捨不得 => 舍不得 */, {"捨出", "舍出", -1 } /* 捨出 => 舍出 */, {"捨去", "舍去", -1 } /* 捨去 => 舍去 */, {"捨命", "舍命", -1 } /* 捨命 => 舍命 */, {"捨墮", "舍堕", -1 } /* 捨墮 => 舍堕 */, {"捨安就危", "舍安就危", -1 } /* 捨安就危 => 舍安就危 */, {"捨實", "舍实", -1 } /* 捨實 => 舍实 */, {"捨己從人", "舍己从人", -1 } /* 捨己從人 => 舍己从人 */, {"捨己救人", "舍己救人", -1 } /* 捨己救人 => 舍己救人 */, {"捨己為人", "舍己为人", -1 } /* 捨己為人 => 舍己为人 */, {"捨己為公", "舍己为公", -1 } /* 捨己為公 => 舍己为公 */, {"捨己為國", "舍己为国", -1 } /* 捨己為國 => 舍己为国 */, {"捨得", "舍得", -1 } /* 捨得 => 舍得 */, {"捨我其誰", "舍我其谁", -1 } /* 捨我其誰 => 舍我其谁 */, {"捨本逐末", "舍本逐末", -1 } /* 捨本逐末 => 舍本逐末 */, {"捨棄", "舍弃", -1 } /* 捨棄 => 舍弃 */, {"捨死忘生", "舍死忘生", -1 } /* 捨死忘生 => 舍死忘生 */, {"捨生", "舍生", -1 } /* 捨生 => 舍生 */, {"捨短取長", "舍短取长", -1 } /* 捨短取長 => 舍短取长 */, {"捨身", "舍身", -1 } /* 捨身 => 舍身 */, {"捨車保帥", "舍车保帅", -1 } /* 捨車保帥 => 舍车保帅 */, {"捨近求遠", "舍近求远", -1 } /* 捨近求遠 => 舍近求远 */, {"捫", "扪", -1 } /* 捫 => 扪 */, {"捲", "卷", -1 } /* 捲 => 卷 */, {"掃", "扫", -1 } /* 掃 => 扫 */, {"掃描器", "扫描仪", -1 } /* 掃描器 => 扫描仪 */, {"掃蕩", "扫荡", -1 } /* 掃蕩 => 扫荡 */, {"掄", "抡", -1 } /* 掄 => 抡 */, {"掆", "㧏", -1 } /* 掆 => 㧏 */, {"掌柜", "掌柜", -1 } /* 掌柜 => 掌柜 */, {"掖著", "掖着", -1 } /* 掖著 => 掖着 */, {"掗", "挜", -1 } /* 掗 => 挜 */, {"掙", "挣", -1 } /* 掙 => 挣 */, {"掛帘", "挂帘", -1 } /* 掛帘 => 挂帘 */, {"掛著", "挂着", -1 } /* 掛著 => 挂着 */, {"採", "采", -1 } /* 採 => 采 */, {"採薇", "采薇", -1 } /* 採薇 => 采薇 */, {"採風", "采风", -1 } /* 採風 => 采风 */, {"掣籤", "掣签", -1 } /* 掣籤 => 掣签 */, {"接著", "接着", -1 } /* 接著 => 接着 */, {"揀", "拣", -1 } /* 揀 => 拣 */, {"提心吊膽", "提心吊胆", -1 } /* 提心吊膽 => 提心吊胆 */, {"插水", "假摔", -1 } /* 插水 => 假摔 */, {"揚", "扬", -1 } /* 揚 => 扬 */, {"換", "换", -1 } /* 換 => 换 */, {"換吊", "换吊", -1 } /* 換吊 => 换吊 */, {"換著", "换着", -1 } /* 換著 => 换着 */, {"握著", "握着", -1 } /* 握著 => 握着 */, {"揣著", "揣着", -1 } /* 揣著 => 揣着 */, {"揮", "挥", -1 } /* 揮 => 挥 */, {"揮著", "挥着", -1 } /* 揮著 => 挥着 */, {"損", "损", -1 } /* 損 => 损 */, {"搏鬥", "搏斗", -1 } /* 搏鬥 => 搏斗 */, {"搖", "摇", -1 } /* 搖 => 摇 */, {"搖著", "搖着", -1 } /* 搖著 => 搖着 */, {"搖蕩", "摇荡", -1 } /* 搖蕩 => 摇荡 */, {"搗", "捣", -1 } /* 搗 => 捣 */, {"搬著", "搬着", -1 } /* 搬著 => 搬着 */, {"搭伙", "搭伙", -1 } /* 搭伙 => 搭伙 */, {"搶", "抢", -1 } /* 搶 => 抢 */, {"搶佔", "抢占", -1 } /* 搶佔 => 抢占 */, {"摑", "掴", -1 } /* 摑 => 掴 */, {"摜", "掼", -1 } /* 摜 => 掼 */, {"摟", "搂", -1 } /* 摟 => 搂 */, {"摟著", "搂着", -1 } /* 摟著 => 搂着 */, {"摯", "挚", -1 } /* 摯 => 挚 */, {"摳", "抠", -1 } /* 摳 => 抠 */, {"摶", "抟", -1 } /* 摶 => 抟 */, {"摸著", "摸着", -1 } /* 摸著 => 摸着 */, {"摺", "折", -1 } /* 摺 => 折 */, {"摺奏", "折奏", -1 } /* 摺奏 => 折奏 */, {"摺子", "折子", -1 } /* 摺子 => 折子 */, {"摺尺", "折尺", -1 } /* 摺尺 => 折尺 */, {"摺扇", "折扇", -1 } /* 摺扇 => 折扇 */, {"摺梯", "折梯", -1 } /* 摺梯 => 折梯 */, {"摺椅", "折椅", -1 } /* 摺椅 => 折椅 */, {"摺疊", "折叠", -1 } /* 摺疊 => 折叠 */, {"摺疊", "折迭", -1 } /* 摺疊 => 折迭 */, {"摺痕", "折痕", -1 } /* 摺痕 => 折痕 */, {"摺篷", "折篷", -1 } /* 摺篷 => 折篷 */, {"摺紙", "折纸", -1 } /* 摺紙 => 折纸 */, {"摺裙", "折裙", -1 } /* 摺裙 => 折裙 */, {"摻", "掺", -1 } /* 摻 => 掺 */, {"撈", "捞", -1 } /* 撈 => 捞 */, {"撏", "挦", -1 } /* 撏 => 挦 */, {"撐", "撑", -1 } /* 撐 => 撑 */, {"撐著", "撑着", -1 } /* 撐著 => 撑着 */, {"撒佈", "撒布", -1 } /* 撒佈 => 撒布 */, {"撓", "挠", -1 } /* 撓 => 挠 */, {"撞球", "台球", -1 } /* 撞球 => 台球 */, {"撞球檯", "撞球台", -1 } /* 撞球檯 => 撞球台 */, {"撟", "挢", -1 } /* 撟 => 挢 */, {"撣", "掸", -1 } /* 撣 => 掸 */, {"撥", "拨", -1 } /* 撥 => 拨 */, {"撫", "抚", -1 } /* 撫 => 抚 */, {"撫慰著", "抚慰着", -1 } /* 撫慰著 => 抚慰着 */, {"撲", "扑", -1 } /* 撲 => 扑 */, {"撳", "揿", -1 } /* 撳 => 揿 */, {"撻", "挞", -1 } /* 撻 => 挞 */, {"撾", "挝", -1 } /* 撾 => 挝 */, {"撿", "捡", -1 } /* 撿 => 捡 */, {"擁", "拥", -1 } /* 擁 => 拥 */, {"擄", "掳", -1 } /* 擄 => 掳 */, {"擇", "择", -1 } /* 擇 => 择 */, {"擊", "击", -1 } /* 擊 => 击 */, {"擋", "挡", -1 } /* 擋 => 挡 */, {"擋著", "挡着", -1 } /* 擋著 => 挡着 */, {"擓", "㧟", -1 } /* 擓 => 㧟 */, {"擔", "担", -1 } /* 擔 => 担 */, {"擔著", "担着", -1 } /* 擔著 => 担着 */, {"擔負著", "担负着", -1 } /* 擔負著 => 担负着 */, {"據", "据", -1 } /* 據 => 据 */, {"據云", "据云", -1 } /* 據云 => 据云 */, {"據榦而窺井底", "据干而窥井底", -1 } /* 據榦而窺井底 => 据干而窥井底 */, {"擠", "挤", -1 } /* 擠 => 挤 */, {"擬", "拟", -1 } /* 擬 => 拟 */, {"擯", "摈", -1 } /* 擯 => 摈 */, {"擰", "拧", -1 } /* 擰 => 拧 */, {"擱", "搁", -1 } /* 擱 => 搁 */, {"擲", "掷", -1 } /* 擲 => 掷 */, {"擴", "扩", -1 } /* 擴 => 扩 */, {"擴分", "通分", -1 } /* 擴分 => 通分 */, {"擷", "撷", -1 } /* 擷 => 撷 */, {"擺", "摆", -1 } /* 擺 => 摆 */, {"擺佈", "摆布", -1 } /* 擺佈 => 摆布 */, {"擻", "擞", -1 } /* 擻 => 擞 */, {"擼", "撸", -1 } /* 擼 => 撸 */, {"擾", "扰", -1 } /* 擾 => 扰 */, {"攄", "摅", -1 } /* 攄 => 摅 */, {"攆", "撵", -1 } /* 攆 => 撵 */, {"攏", "拢", -1 } /* 攏 => 拢 */, {"攔", "拦", -1 } /* 攔 => 拦 */, {"攔著", "拦着", -1 } /* 攔著 => 拦着 */, {"攖", "撄", -1 } /* 攖 => 撄 */, {"攙", "搀", -1 } /* 攙 => 搀 */, {"攛", "撺", -1 } /* 攛 => 撺 */, {"攜", "携", -1 } /* 攜 => 携 */, {"攜帶型", "便携式", -1 } /* 攜帶型 => 便携式 */, {"攝", "摄", -1 } /* 攝 => 摄 */, {"攢", "攒", -1 } /* 攢 => 攒 */, {"攢著", "攒着", -1 } /* 攢著 => 攒着 */, {"攣", "挛", -1 } /* 攣 => 挛 */, {"攤", "摊", -1 } /* 攤 => 摊 */, {"攪", "搅", -1 } /* 攪 => 搅 */, {"攬", "揽", -1 } /* 攬 => 揽 */, {"攻佔", "攻占", -1 } /* 攻佔 => 攻占 */, {"攻克", "攻克", -1 } /* 攻克 => 攻克 */, {"放於", "放于", -1 } /* 放於 => 放于 */, {"放著", "放着", -1 } /* 放著 => 放着 */, {"放蕩", "放荡", -1 } /* 放蕩 => 放荡 */, {"敗", "败", -1 } /* 敗 => 败 */, {"敗於", "败于", -1 } /* 敗於 => 败于 */, {"敗著", "败着", -1 } /* 敗著 => 败着 */, {"敘", "叙", -1 } /* 敘 => 叙 */, {"敘說著", "叙说着", -1 } /* 敘說著 => 叙说着 */, {"教廷", "教廷", -1 } /* 教廷 => 教廷 */, {"教於", "教于", -1 } /* 教於 => 教于 */, {"敢於", "敢于", -1 } /* 敢於 => 敢于 */, {"散伙", "散伙", -1 } /* 散伙 => 散伙 */, {"散佈", "散布", -1 } /* 散佈 => 散布 */, {"散蕩", "散荡", -1 } /* 散蕩 => 散荡 */, {"敲著", "敲着", -1 } /* 敲著 => 敲着 */, {"整出", "整出", -1 } /* 整出 => 整出 */, {"整合", "集成", -1 } /* 整合 => 集成 */, {"敵", "敌", -1 } /* 敵 => 敌 */, {"數", "数", -1 } /* 數 => 数 */, {"數位", "数位", -1 } /* 數位 => 数位 */, {"數位修補", "数字修复", -1 } /* 數位修補 => 数字修复 */, {"數碼", "数码", -1 } /* 數碼 => 数码 */, {"數著", "数着", -1 } /* 數著 => 数着 */, {"斂", "敛", -1 } /* 斂 => 敛 */, {"斃", "毙", -1 } /* 斃 => 毙 */, {"文匯報", "文汇报", -1 } /* 文匯報 => 文汇报 */, {"文采", "文采", -1 } /* 文采 => 文采 */, {"斕", "斓", -1 } /* 斕 => 斓 */, {"斗六", "斗六", -1 } /* 斗六 => 斗六 */, {"斗南", "斗南", -1 } /* 斗南 => 斗南 */, {"斗大", "斗大", -1 } /* 斗大 => 斗大 */, {"斗子", "斗子", -1 } /* 斗子 => 斗子 */, {"斗室", "斗室", -1 } /* 斗室 => 斗室 */, {"斗方", "斗方", -1 } /* 斗方 => 斗方 */, {"斗笠", "斗笠", -1 } /* 斗笠 => 斗笠 */, {"斗箕", "斗箕", -1 } /* 斗箕 => 斗箕 */, {"斗篷", "斗篷", -1 } /* 斗篷 => 斗篷 */, {"斗膽", "斗胆", -1 } /* 斗膽 => 斗胆 */, {"斗轉參橫", "斗转参横", -1 } /* 斗轉參橫 => 斗转参横 */, {"斗量", "斗量", -1 } /* 斗量 => 斗量 */, {"斗門", "斗门", -1 } /* 斗門 => 斗门 */, {"斗鬨", "斗哄", -1 } /* 斗鬨 => 斗哄 */, {"料斗", "料斗", -1 } /* 料斗 => 料斗 */, {"斬", "斩", -1 } /* 斬 => 斩 */, {"斯瓦巴", "斯瓦尔巴岛", -1 } /* 斯瓦巴 => 斯瓦尔巴岛 */, {"斯瓦巴及尖棉島", "斯瓦尔巴岛和扬马延岛", -1 } /* 斯瓦巴及尖棉島 => 斯瓦尔巴岛和扬马延岛 */, {"新喻", "新余", -1 } /* 新喻 => 新余 */, {"新曆", "新历", -1 } /* 新曆 => 新历 */, {"新淦", "新干", -1 } /* 新淦 => 新干 */, {"新紮", "新扎", -1 } /* 新紮 => 新扎 */, {"新餘", "新余", -1 } /* 新餘 => 新余 */, {"斷", "断", -1 } /* 斷 => 断 */, {"斷紙余墨", "断纸余墨", -1 } /* 斷紙余墨 => 断纸余墨 */, {"方纔", "方才", -1 } /* 方纔 => 方才 */, {"施丹", "齐达内", -1 } /* 施丹 => 齐达内 */, {"施捨", "施舍", -1 } /* 施捨 => 施舍 */, {"施舍之道", "施舍之道", -1 } /* 施舍之道 => 施舍之道 */, {"旁證", "助理裁判员", -1 } /* 旁證 => 助理裁判员 */, {"旋繞著", "旋绕着", -1 } /* 旋繞著 => 旋绕着 */, {"旋迴", "旋回", -1 } /* 旋迴 => 旋回 */, {"日曆", "日历", -1 } /* 日曆 => 日历 */, {"日誌", "日志", -1 } /* 日誌 => 日志 */, {"日進斗金", "日进斗金", -1 } /* 日進斗金 => 日进斗金 */, {"昇平", "升平", -1 } /* 昇平 => 升平 */, {"昇陽", "升阳", -1 } /* 昇陽 => 升阳 */, {"明於", "明于", -1 } /* 明於 => 明于 */, {"明窗淨几", "明窗净几", -1 } /* 明窗淨几 => 明窗净几 */, {"明著", "明着", -1 } /* 明著 => 明着 */, {"易於", "易于", -1 } /* 易於 => 易于 */, {"星斗", "星斗", -1 } /* 星斗 => 星斗 */, {"星曆", "星历", -1 } /* 星曆 => 星历 */, {"星移斗換", "星移斗换", -1 } /* 星移斗換 => 星移斗换 */, {"星移斗轉", "星移斗转", -1 } /* 星移斗轉 => 星移斗转 */, {"星羅棋布", "星罗棋布", -1 } /* 星羅棋布 => 星罗棋布 */, {"星辰錶", "星辰表", -1 } /* 星辰錶 => 星辰表 */, {"時", "时", -1 } /* 時 => 时 */, {"晃蕩", "晃荡", -1 } /* 晃蕩 => 晃荡 */, {"晉", "晋", -1 } /* 晉 => 晋 */, {"晝", "昼", -1 } /* 晝 => 昼 */, {"景緻", "景致", -1 } /* 景緻 => 景致 */, {"晶元", "芯片", -1 } /* 晶元 => 芯片 */, {"晶片", "芯片", -1 } /* 晶片 => 芯片 */, {"晶片集", "芯片组", -1 } /* 晶片集 => 芯片组 */, {"暈", "晕", -1 } /* 暈 => 晕 */, {"暉", "晖", -1 } /* 暉 => 晖 */, {"暗於", "暗于", -1 } /* 暗於 => 暗于 */, {"暗著", "暗着", -1 } /* 暗著 => 暗着 */, {"暘", "旸", -1 } /* 暘 => 旸 */, {"暢", "畅", -1 } /* 暢 => 畅 */, {"暫", "暂", -1 } /* 暫 => 暂 */, {"暱稱", "昵称", -1 } /* 暱稱 => 昵称 */, {"暸", "瞭", -1 } /* 暸 => 瞭 */, {"曄", "晔", -1 } /* 曄 => 晔 */, {"曆", "历", -1 } /* 曆 => 历 */, {"曆數", "历数", -1 } /* 曆數 => 历数 */, {"曆法", "历法", -1 } /* 曆法 => 历法 */, {"曇", "昙", -1 } /* 曇 => 昙 */, {"曉", "晓", -1 } /* 曉 => 晓 */, {"曏", "向", -1 } /* 曏 => 向 */, {"曖", "暧", -1 } /* 曖 => 暧 */, {"曠", "旷", -1 } /* 曠 => 旷 */, {"曨", "昽", -1 } /* 曨 => 昽 */, {"曬", "晒", -1 } /* 曬 => 晒 */, {"更籤", "更签", -1 } /* 更籤 => 更签 */, {"書", "书", -1 } /* 書 => 书 */, {"書於", "书于", -1 } /* 書於 => 书于 */, {"書獃子", "书呆子", -1 } /* 書獃子 => 书呆子 */, {"書籤", "书签", -1 } /* 書籤 => 书签 */, {"曼島", "马恩岛", -1 } /* 曼島 => 马恩岛 */, {"最佳化", "最优化", -1 } /* 最佳化 => 最优化 */, {"會", "会", -1 } /* 會 => 会 */, {"月曆", "月历", -1 } /* 月曆 => 月历 */, {"有栖川有栖", "有栖川有栖", -1 } /* 有栖川有栖 => 有栖川有栖 */, {"有餘", "有余", -1 } /* 有餘 => 有余 */, {"望后石", "望后石", -1 } /* 望后石 => 望后石 */, {"望著", "望着", -1 } /* 望著 => 望着 */, {"朝著", "朝着", -1 } /* 朝著 => 朝着 */, {"朝鮮", "朝鲜", -1 } /* 朝鮮 => 朝鲜 */, {"朧", "胧", -1 } /* 朧 => 胧 */, {"木樑", "木梁", -1 } /* 木樑 => 木梁 */, {"札夸威", "扎卡维", -1 } /* 札夸威 => 扎卡维 */, {"朮", "术", -1 } /* 朮 => 术 */, {"朴仔樹", "朴仔树", -1 } /* 朴仔樹 => 朴仔树 */, {"朴口", "朴口", -1 } /* 朴口 => 朴口 */, {"朴子", "朴子", -1 } /* 朴子 => 朴子 */, {"朴屬", "朴属", -1 } /* 朴屬 => 朴属 */, {"朴木", "朴木", -1 } /* 朴木 => 朴木 */, {"朴樹", "朴树", -1 } /* 朴樹 => 朴树 */, {"朴正熙", "朴正熙", -1 } /* 朴正熙 => 朴正熙 */, {"朴硝", "朴硝", -1 } /* 朴硝 => 朴硝 */, {"朴資茅斯", "朴资茅斯", -1 } /* 朴資茅斯 => 朴资茅斯 */, {"李鍾郁", "李钟郁", -1 } /* 李鍾郁 => 李钟郁 */, {"東", "东", -1 } /* 東 => 东 */, {"東加拿大", "东加拿大", -1 } /* 東加拿大 => 东加拿大 */, {"東嶽", "东岳", -1 } /* 東嶽 => 东岳 */, {"東涌", "东涌", -1 } /* 東涌 => 东涌 */, {"杴", "锨", -1 } /* 杴 => 锨 */, {"板著", "板着", -1 } /* 板著 => 板着 */, {"板蕩", "板荡", -1 } /* 板蕩 => 板荡 */, {"枕著", "枕着", -1 } /* 枕著 => 枕着 */, {"枕藉", "枕借", -1 } /* 枕藉 => 枕借 */, {"林宏嶽", "林宏岳", -1 } /* 林宏嶽 => 林宏岳 */, {"林布蘭特", "伦勃朗", -1 } /* 林布蘭特 => 伦勃朗 */, {"林郁方", "林郁方", -1 } /* 林郁方 => 林郁方 */, {"柏林圍牆", "柏林墙", -1 } /* 柏林圍牆 => 柏林墙 */, {"柜上", "柜上", -1 } /* 柜上 => 柜上 */, {"柜子", "柜子", -1 } /* 柜子 => 柜子 */, {"柯林頓", "克林顿", -1 } /* 柯林頓 => 克林顿 */, {"柱樑", "柱梁", -1 } /* 柱樑 => 柱梁 */, {"柵", "栅", -1 } /* 柵 => 栅 */, {"栒邑", "旬邑", -1 } /* 栒邑 => 旬邑 */, {"栗原", "栗原", -1 } /* 栗原 => 栗原 */, {"栗子", "栗子", -1 } /* 栗子 => 栗子 */, {"校讎學", "校雠学", -1 } /* 校讎學 => 校雠学 */, {"核准", "核准", -1 } /* 核准 => 核准 */, {"根於", "根于", -1 } /* 根於 => 根于 */, {"格瑞那達", "格林纳达", -1 } /* 格瑞那達 => 格林纳达 */, {"格緻餘論", "格致余论", -1 } /* 格緻餘論 => 格致余论 */, {"格鬥", "格斗", -1 } /* 格鬥 => 格斗 */, {"桿", "杆", -1 } /* 桿 => 杆 */, {"梔", "栀", -1 } /* 梔 => 栀 */, {"梘", "枧", -1 } /* 梘 => 枧 */, {"條", "条", -1 } /* 條 => 条 */, {"梟", "枭", -1 } /* 梟 => 枭 */, {"梵蒂岡", "梵蒂冈", -1 } /* 梵蒂岡 => 梵蒂冈 */, {"棄", "弃", -1 } /* 棄 => 弃 */, {"棄捨", "弃舍", -1 } /* 棄捨 => 弃舍 */, {"棖", "枨", -1 } /* 棖 => 枨 */, {"棗", "枣", -1 } /* 棗 => 枣 */, {"棟", "栋", -1 } /* 棟 => 栋 */, {"棟樑", "栋梁", -1 } /* 棟樑 => 栋梁 */, {"棡", "㭎", -1 } /* 棡 => 㭎 */, {"棧", "栈", -1 } /* 棧 => 栈 */, {"棲", "栖", -1 } /* 棲 => 栖 */, {"棶", "梾", -1 } /* 棶 => 梾 */, {"椏", "桠", -1 } /* 椏 => 桠 */, {"楊", "杨", -1 } /* 楊 => 杨 */, {"楊么", "杨幺", -1 } /* 楊么 => 杨幺 */, {"楓", "枫", -1 } /* 楓 => 枫 */, {"楨", "桢", -1 } /* 楨 => 桢 */, {"業", "业", -1 } /* 業 => 业 */, {"業餘", "业余", -1 } /* 業餘 => 业余 */, {"極", "极", -1 } /* 極 => 极 */, {"榪", "杩", -1 } /* 榪 => 杩 */, {"榮", "荣", -1 } /* 榮 => 荣 */, {"榲", "榅", -1 } /* 榲 => 榅 */, {"榿", "桤", -1 } /* 榿 => 桤 */, {"構", "构", -1 } /* 構 => 构 */, {"槍", "枪", -1 } /* 槍 => 枪 */, {"槓", "杠", -1 } /* 槓 => 杠 */, {"槓桿", "杠杆", -1 } /* 槓桿 => 杠杆 */, {"槤", "梿", -1 } /* 槤 => 梿 */, {"槧", "椠", -1 } /* 槧 => 椠 */, {"槨", "椁", -1 } /* 槨 => 椁 */, {"槳", "桨", -1 } /* 槳 => 桨 */, {"樁", "桩", -1 } /* 樁 => 桩 */, {"樂", "乐", -1 } /* 樂 => 乐 */, {"樂於", "乐于", -1 } /* 樂於 => 乐于 */, {"樂著", "乐着", -1 } /* 樂著 => 乐着 */, {"樅", "枞", -1 } /* 樅 => 枞 */, {"樑柱", "梁柱", -1 } /* 樑柱 => 梁柱 */, {"樓", "楼", -1 } /* 樓 => 楼 */, {"標", "标", -1 } /* 標 => 标 */, {"標志著", "标志着", -1 } /* 標志著 => 标志着 */, {"標籤", "标签", -1 } /* 標籤 => 标签 */, {"標緻", "标致", -1 } /* 標緻 => 标致 */, {"標誌", "标志", -1 } /* 標誌 => 标志 */, {"標頭檔", "头文件", -1 } /* 標頭檔 => 头文件 */, {"樞", "枢", -1 } /* 樞 => 枢 */, {"模範", "模范", -1 } /* 模範 => 模范 */, {"模組", "模块", -1 } /* 模組 => 模块 */, {"樣", "样", -1 } /* 樣 => 样 */, {"樸", "朴", -1 } /* 樸 => 朴 */, {"樸實", "朴实", -1 } /* 樸實 => 朴实 */, {"樸素", "朴素", -1 } /* 樸素 => 朴素 */, {"樹", "树", -1 } /* 樹 => 树 */, {"樹樑", "树梁", -1 } /* 樹樑 => 树梁 */, {"樺", "桦", -1 } /* 樺 => 桦 */, {"橈", "桡", -1 } /* 橈 => 桡 */, {"橋", "桥", -1 } /* 橋 => 桥 */, {"橋樑", "桥梁", -1 } /* 橋樑 => 桥梁 */, {"橋鎮", "布里奇城", -1 } /* 橋鎮 => 布里奇城 */, {"機", "机", -1 } /* 機 => 机 */, {"橢", "椭", -1 } /* 橢 => 椭 */, {"橫", "横", -1 } /* 橫 => 横 */, {"橫征暴斂", "横征暴敛", -1 } /* 橫征暴斂 => 横征暴敛 */, {"橫著", "橫着", -1 } /* 橫著 => 橫着 */, {"橫衝", "横冲", -1 } /* 橫衝 => 横冲 */, {"檁", "檩", -1 } /* 檁 => 檩 */, {"檉", "柽", -1 } /* 檉 => 柽 */, {"檔", "档", -1 } /* 檔 => 档 */, {"檔案", "文件", -1 } /* 檔案 => 文件 */, {"檜", "桧", -1 } /* 檜 => 桧 */, {"檟", "槚", -1 } /* 檟 => 槚 */, {"檢", "检", -1 } /* 檢 => 检 */, {"檣", "樯", -1 } /* 檣 => 樯 */, {"檮", "梼", -1 } /* 檮 => 梼 */, {"檯", "台", -1 } /* 檯 => 台 */, {"檯布", "台布", -1 } /* 檯布 => 台布 */, {"檳", "槟", -1 } /* 檳 => 槟 */, {"檸", "柠", -1 } /* 檸 => 柠 */, {"檻", "槛", -1 } /* 檻 => 槛 */, {"櫃", "柜", -1 } /* 櫃 => 柜 */, {"櫓", "橹", -1 } /* 櫓 => 橹 */, {"櫚", "榈", -1 } /* 櫚 => 榈 */, {"櫛", "栉", -1 } /* 櫛 => 栉 */, {"櫝", "椟", -1 } /* 櫝 => 椟 */, {"櫞", "橼", -1 } /* 櫞 => 橼 */, {"櫟", "栎", -1 } /* 櫟 => 栎 */, {"櫥", "橱", -1 } /* 櫥 => 橱 */, {"櫧", "槠", -1 } /* 櫧 => 槠 */, {"櫨", "栌", -1 } /* 櫨 => 栌 */, {"櫪", "枥", -1 } /* 櫪 => 枥 */, {"櫫", "橥", -1 } /* 櫫 => 橥 */, {"櫬", "榇", -1 } /* 櫬 => 榇 */, {"櫱", "蘖", -1 } /* 櫱 => 蘖 */, {"櫳", "栊", -1 } /* 櫳 => 栊 */, {"櫸", "榉", -1 } /* 櫸 => 榉 */, {"櫻", "樱", -1 } /* 櫻 => 樱 */, {"欄", "栏", -1 } /* 欄 => 栏 */, {"欄位", "字段", -1 } /* 欄位 => 字段 */, {"權", "权", -1 } /* 權 => 权 */, {"欏", "椤", -1 } /* 欏 => 椤 */, {"欒", "栾", -1 } /* 欒 => 栾 */, {"欖", "榄", -1 } /* 欖 => 榄 */, {"欞", "棂", -1 } /* 欞 => 棂 */, {"次於", "次于", -1 } /* 次於 => 次于 */, {"欽", "钦", -1 } /* 欽 => 钦 */, {"歌后", "歌后", -1 } /* 歌后 => 歌后 */, {"歎", "叹", -1 } /* 歎 => 叹 */, {"歐", "欧", -1 } /* 歐 => 欧 */, {"歐巴馬", "奥巴马", -1 } /* 歐巴馬 => 奥巴马 */, {"歟", "欤", -1 } /* 歟 => 欤 */, {"歡", "欢", -1 } /* 歡 => 欢 */, {"止於", "止于", -1 } /* 止於 => 止于 */, {"武后", "武后", -1 } /* 武后 => 武后 */, {"歲", "岁", -1 } /* 歲 => 岁 */, {"歷", "历", -1 } /* 歷 => 历 */, {"歷史", "历史", -1 } /* 歷史 => 历史 */, {"歸", "归", -1 } /* 歸 => 归 */, {"歸於", "归于", -1 } /* 歸於 => 归于 */, {"死於", "死于", -1 } /* 死於 => 死于 */, {"歿", "殁", -1 } /* 歿 => 殁 */, {"殘", "残", -1 } /* 殘 => 残 */, {"殘餘", "残余", -1 } /* 殘餘 => 残余 */, {"殞", "殒", -1 } /* 殞 => 殒 */, {"殤", "殇", -1 } /* 殤 => 殇 */, {"殨", "㱮", -1 } /* 殨 => 㱮 */, {"殫", "殚", -1 } /* 殫 => 殚 */, {"殭屍", "僵尸", -1 } /* 殭屍 => 僵尸 */, {"殮", "殓", -1 } /* 殮 => 殓 */, {"殯", "殡", -1 } /* 殯 => 殡 */, {"殲", "歼", -1 } /* 殲 => 歼 */, {"殺", "杀", -1 } /* 殺 => 杀 */, {"殺虫藥", "杀虫药", -1 } /* 殺虫藥 => 杀虫药 */, {"殻", "壳", -1 } /* 殻 => 壳 */, {"殼", "壳", -1 } /* 殼 => 壳 */, {"毀", "毁", -1 } /* 毀 => 毁 */, {"毆", "殴", -1 } /* 毆 => 殴 */, {"母后", "母后", -1 } /* 母后 => 母后 */, {"母系", "母系", -1 } /* 母系 => 母系 */, {"毒扁豆鹼", "毒扁豆碱", -1 } /* 毒扁豆鹼 => 毒扁豆碱 */, {"毒蕈鹼", "毒蕈碱", -1 } /* 毒蕈鹼 => 毒蕈碱 */, {"毒蠅鹼", "毒蝇碱", -1 } /* 毒蠅鹼 => 毒蝇碱 */, {"比著", "比著", -1 } /* 比著 => 比著 */, {"毿", "毵", -1 } /* 毿 => 毵 */, {"氂", "牦", -1 } /* 氂 => 牦 */, {"氈", "毡", -1 } /* 氈 => 毡 */, {"氌", "氇", -1 } /* 氌 => 氇 */, {"民系", "民系", -1 } /* 民系 => 民系 */, {"氣", "气", -1 } /* 氣 => 气 */, {"氣沖牛斗", "气冲牛斗", -1 } /* 氣沖牛斗 => 气冲牛斗 */, {"氫", "氢", -1 } /* 氫 => 氢 */, {"氬", "氩", -1 } /* 氬 => 氩 */, {"氳", "氲", -1 } /* 氳 => 氲 */, {"水平儀", "水平仪", -1 } /* 水平儀 => 水平仪 */, {"水斗", "水斗", -1 } /* 水斗 => 水斗 */, {"水氣", "水汽", -1 } /* 水氣 => 水汽 */, {"水蒸氣", "水蒸汽", -1 } /* 水蒸氣 => 水蒸汽 */, {"水錶", "水表", -1 } /* 水錶 => 水表 */, {"水鹼", "水碱", -1 } /* 水鹼 => 水碱 */, {"永曆", "永历", -1 } /* 永曆 => 永历 */, {"求籤", "求签", -1 } /* 求籤 => 求签 */, {"汗鹼", "汗碱", -1 } /* 汗鹼 => 汗碱 */, {"江采蘋", "江采苹", -1 } /* 江采蘋 => 江采苹 */, {"污衊", "污蔑", -1 } /* 污衊 => 污蔑 */, {"汧陽", "千阳", -1 } /* 汧陽 => 千阳 */, {"汶萊", "文莱", -1 } /* 汶萊 => 文莱 */, {"決", "决", -1 } /* 決 => 决 */, {"沒", "没", -1 } /* 沒 => 没 */, {"沒精打采", "没精打采", -1 } /* 沒精打采 => 没精打采 */, {"沔縣", "勉县", -1 } /* 沔縣 => 勉县 */, {"沖", "冲", -1 } /* 沖 => 冲 */, {"沖繩", "冲绳", -1 } /* 沖繩 => 冲绳 */, {"沙地阿拉伯", "沙特阿拉伯", -1 } /* 沙地阿拉伯 => 沙特阿拉伯 */, {"沙朴", "沙朴", -1 } /* 沙朴 => 沙朴 */, {"沿著", "沿着", -1 } /* 沿著 => 沿着 */, {"況", "况", -1 } /* 況 => 况 */, {"波士尼亞赫塞哥維納", "波斯尼亚和黑塞哥维那", -1 } /* 波士尼亞赫塞哥維納 => 波斯尼亚和黑塞哥维那 */, {"波維特島", "布维岛", -1 } /* 波維特島 => 布维岛 */, {"泥涌", "泥涌", -1 } /* 泥涌 => 泥涌 */, {"注云", "注云", -1 } /* 注云 => 注云 */, {"注意", "注意", -1 } /* 注意 => 注意 */, {"注音", "注音", -1 } /* 注音 => 注音 */, {"泰斗", "泰斗", -1 } /* 泰斗 => 泰斗 */, {"洋鹼", "洋碱", -1 } /* 洋鹼 => 洋碱 */, {"洵陽", "旬阳", -1 } /* 洵陽 => 旬阳 */, {"洶", "汹", -1 } /* 洶 => 汹 */, {"活著", "活着", -1 } /* 活著 => 活着 */, {"派團參加", "派团参加", -1 } /* 派團參加 => 派团参加 */, {"流著", "流着", -1 } /* 流著 => 流着 */, {"流蕩", "流荡", -1 } /* 流蕩 => 流荡 */, {"流風餘俗", "流风余俗", -1 } /* 流風餘俗 => 流风余俗 */, {"流風餘澤", "流风余泽", -1 } /* 流風餘澤 => 流风余泽 */, {"浄", "净", -1 } /* 浄 => 净 */, {"浩蕩", "浩荡", -1 } /* 浩蕩 => 浩荡 */, {"浪琴錶", "浪琴表", -1 } /* 浪琴錶 => 浪琴表 */, {"浪蕩", "浪荡", -1 } /* 浪蕩 => 浪荡 */, {"浮著", "浮着", -1 } /* 浮著 => 浮着 */, {"浮蕩", "浮荡", -1 } /* 浮蕩 => 浮荡 */, {"海淀", "海淀", -1 } /* 海淀 => 海淀 */, {"浹", "浃", -1 } /* 浹 => 浃 */, {"涂著", "涂着", -1 } /* 涂著 => 涂着 */, {"涂謹申", "涂谨申", -1 } /* 涂謹申 => 涂谨申 */, {"涇", "泾", -1 } /* 涇 => 泾 */, {"液晶錶", "液晶表", -1 } /* 液晶錶 => 液晶表 */, {"涼", "凉", -1 } /* 涼 => 凉 */, {"淀殿", "淀殿", -1 } /* 淀殿 => 淀殿 */, {"淋餘土", "淋余土", -1 } /* 淋餘土 => 淋余土 */, {"淌著", "淌着", -1 } /* 淌著 => 淌着 */, {"淒", "凄", -1 } /* 淒 => 凄 */, {"淚", "泪", -1 } /* 淚 => 泪 */, {"淞", "凇", -1 } /* 淞 => 凇 */, {"淡硃", "淡朱", -1 } /* 淡硃 => 淡朱 */, {"淥", "渌", -1 } /* 淥 => 渌 */, {"淨", "净", -1 } /* 淨 => 净 */, {"淪", "沦", -1 } /* 淪 => 沦 */, {"淫蕩", "淫荡", -1 } /* 淫蕩 => 淫荡 */, {"淵", "渊", -1 } /* 淵 => 渊 */, {"淶", "涞", -1 } /* 淶 => 涞 */, {"淺", "浅", -1 } /* 淺 => 浅 */, {"渙", "涣", -1 } /* 渙 => 涣 */, {"減", "减", -1 } /* 減 => 减 */, {"渢", "沨", -1 } /* 渢 => 沨 */, {"渦", "涡", -1 } /* 渦 => 涡 */, {"測", "测", -1 } /* 測 => 测 */, {"渾", "浑", -1 } /* 渾 => 浑 */, {"湊", "凑", -1 } /* 湊 => 凑 */, {"湊合著", "凑合着", -1 } /* 湊合著 => 凑合着 */, {"湞", "浈", -1 } /* 湞 => 浈 */, {"湧現", "涌现", -1 } /* 湧現 => 涌现 */, {"湯", "汤", -1 } /* 湯 => 汤 */, {"湯加麗", "汤加丽", -1 } /* 湯加麗 => 汤加丽 */, {"湯糰", "汤团", -1 } /* 湯糰 => 汤团 */, {"溈", "沩", -1 } /* 溈 => 沩 */, {"源於", "源于", -1 } /* 源於 => 源于 */, {"溝", "沟", -1 } /* 溝 => 沟 */, {"溫", "温", -1 } /* 溫 => 温 */, {"溮", "浉", -1 } /* 溮 => 浉 */, {"溳", "涢", -1 } /* 溳 => 涢 */, {"滄", "沧", -1 } /* 滄 => 沧 */, {"滅", "灭", -1 } /* 滅 => 灭 */, {"滌", "涤", -1 } /* 滌 => 涤 */, {"滎", "荥", -1 } /* 滎 => 荥 */, {"滑鼠", "鼠标", -1 } /* 滑鼠 => 鼠标 */, {"滬", "沪", -1 } /* 滬 => 沪 */, {"滯", "滞", -1 } /* 滯 => 滞 */, {"滲", "渗", -1 } /* 滲 => 渗 */, {"滷", "卤", -1 } /* 滷 => 卤 */, {"滷鹼", "卤碱", -1 } /* 滷鹼 => 卤碱 */, {"滸", "浒", -1 } /* 滸 => 浒 */, {"滻", "浐", -1 } /* 滻 => 浐 */, {"滾", "滚", -1 } /* 滾 => 滚 */, {"滿", "满", -1 } /* 滿 => 满 */, {"滿佈", "满布", -1 } /* 滿佈 => 满布 */, {"滿著", "满着", -1 } /* 滿著 => 满着 */, {"漁", "渔", -1 } /* 漁 => 渔 */, {"漂著", "漂着", -1 } /* 漂著 => 漂着 */, {"漂蕩", "漂荡", -1 } /* 漂蕩 => 漂荡 */, {"漊", "溇", -1 } /* 漊 => 溇 */, {"漏斗", "漏斗", -1 } /* 漏斗 => 漏斗 */, {"漚", "沤", -1 } /* 漚 => 沤 */, {"漢", "汉", -1 } /* 漢 => 汉 */, {"漢奸", "汉奸", -1 } /* 漢奸 => 汉奸 */, {"漣", "涟", -1 } /* 漣 => 涟 */, {"漫著", "漫着", -1 } /* 漫著 => 漫着 */, {"漬", "渍", -1 } /* 漬 => 渍 */, {"漲", "涨", -1 } /* 漲 => 涨 */, {"漵", "溆", -1 } /* 漵 => 溆 */, {"漸", "渐", -1 } /* 漸 => 渐 */, {"漿", "浆", -1 } /* 漿 => 浆 */, {"潁", "颍", -1 } /* 潁 => 颍 */, {"潑", "泼", -1 } /* 潑 => 泼 */, {"潔", "洁", -1 } /* 潔 => 洁 */, {"潙", "沩", -1 } /* 潙 => 沩 */, {"潛", "潜", -1 } /* 潛 => 潜 */, {"潤", "润", -1 } /* 潤 => 润 */, {"潯", "浔", -1 } /* 潯 => 浔 */, {"潰", "溃", -1 } /* 潰 => 溃 */, {"潷", "滗", -1 } /* 潷 => 滗 */, {"潿", "涠", -1 } /* 潿 => 涠 */, {"澀", "涩", -1 } /* 澀 => 涩 */, {"澆", "浇", -1 } /* 澆 => 浇 */, {"澇", "涝", -1 } /* 澇 => 涝 */, {"澗", "涧", -1 } /* 澗 => 涧 */, {"澠", "渑", -1 } /* 澠 => 渑 */, {"澤", "泽", -1 } /* 澤 => 泽 */, {"澦", "滪", -1 } /* 澦 => 滪 */, {"澩", "泶", -1 } /* 澩 => 泶 */, {"澮", "浍", -1 } /* 澮 => 浍 */, {"澱", "淀", -1 } /* 澱 => 淀 */, {"澾", "㳠", -1 } /* 澾 => 㳠 */, {"激勵著", "激励着", -1 } /* 激勵著 => 激励着 */, {"激蕩", "激荡", -1 } /* 激蕩 => 激荡 */, {"濁", "浊", -1 } /* 濁 => 浊 */, {"濃", "浓", -1 } /* 濃 => 浓 */, {"濃郁", "浓郁", -1 } /* 濃郁 => 浓郁 */, {"濕", "湿", -1 } /* 濕 => 湿 */, {"濘", "泞", -1 } /* 濘 => 泞 */, {"濜", "浕", -1 } /* 濜 => 浕 */, {"濟", "济", -1 } /* 濟 => 济 */, {"濤", "涛", -1 } /* 濤 => 涛 */, {"濫", "滥", -1 } /* 濫 => 滥 */, {"濰", "潍", -1 } /* 濰 => 潍 */, {"濱", "滨", -1 } /* 濱 => 滨 */, {"濺", "溅", -1 } /* 濺 => 溅 */, {"濼", "泺", -1 } /* 濼 => 泺 */, {"濾", "滤", -1 } /* 濾 => 滤 */, {"瀅", "滢", -1 } /* 瀅 => 滢 */, {"瀆", "渎", -1 } /* 瀆 => 渎 */, {"瀉", "泻", -1 } /* 瀉 => 泻 */, {"瀋", "沈", -1 } /* 瀋 => 沈 */, {"瀋", "渖", -1 } /* 瀋 => 渖 */, {"瀋吉線", "沈吉线", -1 } /* 瀋吉線 => 沈吉线 */, {"瀋山線", "沈山线", -1 } /* 瀋山線 => 沈山线 */, {"瀋州", "沈州", -1 } /* 瀋州 => 沈州 */, {"瀋水", "沈水", -1 } /* 瀋水 => 沈水 */, {"瀋河", "沈河", -1 } /* 瀋河 => 沈河 */, {"瀋陽", "沈阳", -1 } /* 瀋陽 => 沈阳 */, {"瀏", "浏", -1 } /* 瀏 => 浏 */, {"瀕", "濒", -1 } /* 瀕 => 濒 */, {"瀘", "泸", -1 } /* 瀘 => 泸 */, {"瀝", "沥", -1 } /* 瀝 => 沥 */, {"瀟", "潇", -1 } /* 瀟 => 潇 */, {"瀠", "潆", -1 } /* 瀠 => 潆 */, {"瀦", "潴", -1 } /* 瀦 => 潴 */, {"瀧", "泷", -1 } /* 瀧 => 泷 */, {"瀨", "濑", -1 } /* 瀨 => 濑 */, {"瀰漫", "弥漫", -1 } /* 瀰漫 => 弥漫 */, {"瀰漫著", "弥漫着", -1 } /* 瀰漫著 => 弥漫着 */, {"瀲", "潋", -1 } /* 瀲 => 潋 */, {"瀾", "澜", -1 } /* 瀾 => 澜 */, {"灃", "沣", -1 } /* 灃 => 沣 */, {"灄", "滠", -1 } /* 灄 => 滠 */, {"灑", "洒", -1 } /* 灑 => 洒 */, {"灑著", "洒着", -1 } /* 灑著 => 洒着 */, {"灕", "漓", -1 } /* 灕 => 漓 */, {"灘", "滩", -1 } /* 灘 => 滩 */, {"灝", "灏", -1 } /* 灝 => 灏 */, {"灠", "漤", -1 } /* 灠 => 漤 */, {"灣", "湾", -1 } /* 灣 => 湾 */, {"灤", "滦", -1 } /* 灤 => 滦 */, {"灧", "滟", -1 } /* 灧 => 滟 */, {"火於", "火于", -1 } /* 火於 => 火于 */, {"火籤", "火签", -1 } /* 火籤 => 火签 */, {"灰於", "灰于", -1 } /* 灰於 => 灰于 */, {"災", "灾", -1 } /* 災 => 灾 */, {"炸葯", "炸药", -1 } /* 炸葯 => 炸药 */, {"炸藥", "炸药", -1 } /* 炸藥 => 炸药 */, {"為", "为", -1 } /* 為 => 为 */, {"為著", "为着", -1 } /* 為著 => 为着 */, {"烏", "乌", -1 } /* 烏 => 乌 */, {"烏蘇里江", "乌苏里江", -1 } /* 烏蘇里江 => 乌苏里江 */, {"烴", "烃", -1 } /* 烴 => 烃 */, {"無", "无", -1 } /* 無 => 无 */, {"無厘頭", "无厘头", -1 } /* 無厘頭 => 无厘头 */, {"無精打采", "无精打采", -1 } /* 無精打采 => 无精打采 */, {"無餘", "无余", -1 } /* 無餘 => 无余 */, {"煉", "炼", -1 } /* 煉 => 炼 */, {"煒", "炜", -1 } /* 煒 => 炜 */, {"煙", "烟", -1 } /* 煙 => 烟 */, {"煙斗", "烟斗", -1 } /* 煙斗 => 烟斗 */, {"煙斗絲", "烟斗丝", -1 } /* 煙斗絲 => 烟斗丝 */, {"煙鹼", "烟碱", -1 } /* 煙鹼 => 烟碱 */, {"煢", "茕", -1 } /* 煢 => 茕 */, {"煥", "焕", -1 } /* 煥 => 焕 */, {"照入籤", "照入签", -1 } /* 照入籤 => 照入签 */, {"照准", "照准", -1 } /* 照准 => 照准 */, {"照耀著", "照耀着", -1 } /* 照耀著 => 照耀着 */, {"照著", "照着", -1 } /* 照著 => 照着 */, {"煩", "烦", -1 } /* 煩 => 烦 */, {"煬", "炀", -1 } /* 煬 => 炀 */, {"熒", "荧", -1 } /* 熒 => 荧 */, {"熗", "炝", -1 } /* 熗 => 炝 */, {"熟於", "熟于", -1 } /* 熟於 => 熟于 */, {"熨斗", "熨斗", -1 } /* 熨斗 => 熨斗 */, {"熱", "热", -1 } /* 熱 => 热 */, {"熲", "颎", -1 } /* 熲 => 颎 */, {"熾", "炽", -1 } /* 熾 => 炽 */, {"燁", "烨", -1 } /* 燁 => 烨 */, {"燈", "灯", -1 } /* 燈 => 灯 */, {"燉", "炖", -1 } /* 燉 => 炖 */, {"燒", "烧", -1 } /* 燒 => 烧 */, {"燒鹼", "烧碱", -1 } /* 燒鹼 => 烧碱 */, {"燙", "烫", -1 } /* 燙 => 烫 */, {"燜", "焖", -1 } /* 燜 => 焖 */, {"營", "营", -1 } /* 營 => 营 */, {"燦", "灿", -1 } /* 燦 => 灿 */, {"燭", "烛", -1 } /* 燭 => 烛 */, {"燴", "烩", -1 } /* 燴 => 烩 */, {"燼", "烬", -1 } /* 燼 => 烬 */, {"燾", "焘", -1 } /* 燾 => 焘 */, {"爍", "烁", -1 } /* 爍 => 烁 */, {"爐", "炉", -1 } /* 爐 => 炉 */, {"爛", "烂", -1 } /* 爛 => 烂 */, {"爭", "争", -1 } /* 爭 => 争 */, {"爭鬥", "争斗", -1 } /* 爭鬥 => 争斗 */, {"爲", "为", -1 } /* 爲 => 为 */, {"父系", "父系", -1 } /* 父系 => 父系 */, {"爺", "爷", -1 } /* 爺 => 爷 */, {"爽蕩", "爽荡", -1 } /* 爽蕩 => 爽荡 */, {"爾", "尔", -1 } /* 爾 => 尔 */, {"爾冬陞", "尔冬升", -1 } /* 爾冬陞 => 尔冬升 */, {"牀", "床", -1 } /* 牀 => 床 */, {"牆", "墙", -1 } /* 牆 => 墙 */, {"牘", "牍", -1 } /* 牘 => 牍 */, {"牙籤", "牙签", -1 } /* 牙籤 => 牙签 */, {"牙籤玉軸", "牙签玉轴", -1 } /* 牙籤玉軸 => 牙签玉轴 */, {"牙籤萬軸", "牙签万轴", -1 } /* 牙籤萬軸 => 牙签万轴 */, {"牙籤錦軸", "牙签锦轴", -1 } /* 牙籤錦軸 => 牙签锦轴 */, {"牛油", "黄油", -1 } /* 牛油 => 黄油 */, {"特准", "特准", -1 } /* 特准 => 特准 */, {"牽", "牵", -1 } /* 牽 => 牵 */, {"牽著", "牵着", -1 } /* 牽著 => 牵着 */, {"犖", "荦", -1 } /* 犖 => 荦 */, {"犢", "犊", -1 } /* 犢 => 犊 */, {"犧", "牺", -1 } /* 犧 => 牺 */, {"狀", "状", -1 } /* 狀 => 状 */, {"狹", "狭", -1 } /* 狹 => 狭 */, {"狼藉", "狼借", -1 } /* 狼藉 => 狼借 */, {"狽", "狈", -1 } /* 狽 => 狈 */, {"猙", "狰", -1 } /* 猙 => 狰 */, {"猛於", "猛于", -1 } /* 猛於 => 猛于 */, {"猛衝", "猛冲", -1 } /* 猛衝 => 猛冲 */, {"猶", "犹", -1 } /* 猶 => 犹 */, {"猻", "狲", -1 } /* 猻 => 狲 */, {"獁", "犸", -1 } /* 獁 => 犸 */, {"獃", "呆", -1 } /* 獃 => 呆 */, {"獄", "狱", -1 } /* 獄 => 狱 */, {"獅", "狮", -1 } /* 獅 => 狮 */, {"獎", "奖", -1 } /* 獎 => 奖 */, {"獎盃", "奖杯", -1 } /* 獎盃 => 奖杯 */, {"獨", "独", -1 } /* 獨 => 独 */, {"獨佔鰲頭", "独占鳌头", -1 } /* 獨佔鰲頭 => 独占鳌头 */, {"獪", "狯", -1 } /* 獪 => 狯 */, {"獫", "猃", -1 } /* 獫 => 猃 */, {"獮", "狝", -1 } /* 獮 => 狝 */, {"獰", "狞", -1 } /* 獰 => 狞 */, {"獲", "获", -1 } /* 獲 => 获 */, {"獲准", "获准", -1 } /* 獲准 => 获准 */, {"獵", "猎", -1 } /* 獵 => 猎 */, {"獷", "犷", -1 } /* 獷 => 犷 */, {"獸", "兽", -1 } /* 獸 => 兽 */, {"獺", "獭", -1 } /* 獺 => 獭 */, {"獻", "献", -1 } /* 獻 => 献 */, {"獻於", "献于", -1 } /* 獻於 => 献于 */, {"獼", "猕", -1 } /* 獼 => 猕 */, {"玀", "猡", -1 } /* 玀 => 猡 */, {"率團參加", "率团参加", -1 } /* 率團參加 => 率团参加 */, {"王侯后", "王侯后", -1 } /* 王侯后 => 王侯后 */, {"王后", "王后", -1 } /* 王后 => 王后 */, {"玩著", "玩着", -1 } /* 玩著 => 玩着 */, {"現", "现", -1 } /* 現 => 现 */, {"球證", "裁判员", -1 } /* 球證 => 裁判员 */, {"琺", "珐", -1 } /* 琺 => 珐 */, {"琿", "珲", -1 } /* 琿 => 珲 */, {"瑋", "玮", -1 } /* 瑋 => 玮 */, {"瑒", "玚", -1 } /* 瑒 => 玚 */, {"瑗琿", "爱辉", -1 } /* 瑗琿 => 爱辉 */, {"瑣", "琐", -1 } /* 瑣 => 琐 */, {"瑤", "瑶", -1 } /* 瑤 => 瑶 */, {"瑤籤", "瑶签", -1 } /* 瑤籤 => 瑶签 */, {"瑩", "莹", -1 } /* 瑩 => 莹 */, {"瑪", "玛", -1 } /* 瑪 => 玛 */, {"瑲", "玱", -1 } /* 瑲 => 玱 */, {"璉", "琏", -1 } /* 璉 => 琏 */, {"璡", "琎", -1 } /* 璡 => 琎 */, {"璣", "玑", -1 } /* 璣 => 玑 */, {"璦", "瑷", -1 } /* 璦 => 瑷 */, {"璫", "珰", -1 } /* 璫 => 珰 */, {"環", "环", -1 } /* 環 => 环 */, {"璽", "玺", -1 } /* 璽 => 玺 */, {"瓊", "琼", -1 } /* 瓊 => 琼 */, {"瓏", "珑", -1 } /* 瓏 => 珑 */, {"瓔", "璎", -1 } /* 瓔 => 璎 */, {"瓚", "瓒", -1 } /* 瓚 => 瓒 */, {"甌", "瓯", -1 } /* 甌 => 瓯 */, {"甘迺迪", "肯尼迪", -1 } /* 甘迺迪 => 肯尼迪 */, {"甚麼", "什么", -1 } /* 甚麼 => 什么 */, {"甚麼", "甚么", -1 } /* 甚麼 => 甚么 */, {"生於", "生于", -1 } /* 生於 => 生于 */, {"生物鹼", "生物碱", -1 } /* 生物鹼 => 生物碱 */, {"產", "产", -1 } /* 產 => 产 */, {"産", "产", -1 } /* 産 => 产 */, {"産於", "产于", -1 } /* 産於 => 产于 */, {"用於", "用于", -1 } /* 用於 => 用于 */, {"由於", "由于", -1 } /* 由於 => 由于 */, {"由餘", "由余", -1 } /* 由餘 => 由余 */, {"甲丑", "甲丑", -1 } /* 甲丑 => 甲丑 */, {"男佣", "男佣", -1 } /* 男佣 => 男佣 */, {"男用錶", "男用表", -1 } /* 男用錶 => 男用表 */, {"留著", "留着", -1 } /* 留著 => 留着 */, {"畚斗", "畚斗", -1 } /* 畚斗 => 畚斗 */, {"畝", "亩", -1 } /* 畝 => 亩 */, {"畢", "毕", -1 } /* 畢 => 毕 */, {"畢卡索", "毕加索", -1 } /* 畢卡索 => 毕加索 */, {"畢昇", "毕昇", -1 } /* 畢昇 => 毕昇 */, {"畫", "画", -1 } /* 畫 => 画 */, {"異", "异", -1 } /* 異 => 异 */, {"異於", "异于", -1 } /* 異於 => 异于 */, {"異采", "异采", -1 } /* 異采 => 异采 */, {"當", "当", -1 } /* 當 => 当 */, {"疇", "畴", -1 } /* 疇 => 畴 */, {"疊", "叠", -1 } /* 疊 => 叠 */, {"疏於", "疏于", -1 } /* 疏於 => 疏于 */, {"疑兇", "疑凶", -1 } /* 疑兇 => 疑凶 */, {"疲睏", "疲困", -1 } /* 疲睏 => 疲困 */, {"病症", "病症", -1 } /* 病症 => 病症 */, {"症候群", "症候群", -1 } /* 症候群 => 症候群 */, {"痊癒", "痊愈", -1 } /* 痊癒 => 痊愈 */, {"痙", "痉", -1 } /* 痙 => 痉 */, {"痾", "疴", -1 } /* 痾 => 疴 */, {"瘂", "痖", -1 } /* 瘂 => 痖 */, {"瘋", "疯", -1 } /* 瘋 => 疯 */, {"瘍", "疡", -1 } /* 瘍 => 疡 */, {"瘓", "痪", -1 } /* 瘓 => 痪 */, {"瘞", "瘗", -1 } /* 瘞 => 瘗 */, {"瘡", "疮", -1 } /* 瘡 => 疮 */, {"瘦於", "瘦于", -1 } /* 瘦於 => 瘦于 */, {"瘧", "疟", -1 } /* 瘧 => 疟 */, {"瘮", "瘆", -1 } /* 瘮 => 瘆 */, {"瘲", "疭", -1 } /* 瘲 => 疭 */, {"瘺", "瘘", -1 } /* 瘺 => 瘘 */, {"瘻", "瘘", -1 } /* 瘻 => 瘘 */, {"療", "疗", -1 } /* 療 => 疗 */, {"癆", "痨", -1 } /* 癆 => 痨 */, {"癇", "痫", -1 } /* 癇 => 痫 */, {"癉", "瘅", -1 } /* 癉 => 瘅 */, {"癘", "疠", -1 } /* 癘 => 疠 */, {"癟", "瘪", -1 } /* 癟 => 瘪 */, {"癡", "痴", -1 } /* 癡 => 痴 */, {"癢", "痒", -1 } /* 癢 => 痒 */, {"癤", "疖", -1 } /* 癤 => 疖 */, {"癥", "症", -1 } /* 癥 => 症 */, {"癥候", "症候", -1 } /* 癥候 => 症候 */, {"癥狀", "症状", -1 } /* 癥狀 => 症状 */, {"癥結", "症结", -1 } /* 癥結 => 症结 */, {"癧", "疬", -1 } /* 癧 => 疬 */, {"癩", "癞", -1 } /* 癩 => 癞 */, {"癬", "癣", -1 } /* 癬 => 癣 */, {"癭", "瘿", -1 } /* 癭 => 瘿 */, {"癮", "瘾", -1 } /* 癮 => 瘾 */, {"癰", "痈", -1 } /* 癰 => 痈 */, {"癱", "瘫", -1 } /* 癱 => 瘫 */, {"癲", "癫", -1 } /* 癲 => 癫 */, {"癸丑", "癸丑", -1 } /* 癸丑 => 癸丑 */, {"發", "发", -1 } /* 發 => 发 */, {"發於", "发于", -1 } /* 發於 => 发于 */, {"發著", "发着", -1 } /* 發著 => 发着 */, {"白於", "白于", -1 } /* 白於 => 白于 */, {"百慕達", "百慕大", -1 } /* 百慕達 => 百慕大 */, {"百紮", "百扎", -1 } /* 百紮 => 百扎 */, {"百部鹼", "百部碱", -1 } /* 百部鹼 => 百部碱 */, {"百餘", "百余", -1 } /* 百餘 => 百余 */, {"皇后", "皇后", -1 } /* 皇后 => 皇后 */, {"皇曆", "皇历", -1 } /* 皇曆 => 皇历 */, {"皚", "皑", -1 } /* 皚 => 皑 */, {"皮特康島", "皮特凯恩", -1 } /* 皮特康島 => 皮特凯恩 */, {"皸", "皲", -1 } /* 皸 => 皲 */, {"皺", "皱", -1 } /* 皺 => 皱 */, {"皺彆", "皱别", -1 } /* 皺彆 => 皱别 */, {"皺摺", "皱折", -1 } /* 皺摺 => 皱折 */, {"盈餘", "盈余", -1 } /* 盈餘 => 盈余 */, {"益於", "益于", -1 } /* 益於 => 益于 */, {"盜", "盗", -1 } /* 盜 => 盗 */, {"盞", "盏", -1 } /* 盞 => 盏 */, {"盡", "尽", -1 } /* 盡 => 尽 */, {"監", "监", -1 } /* 監 => 监 */, {"盤", "盘", -1 } /* 盤 => 盘 */, {"盤迴", "盘回", -1 } /* 盤迴 => 盘回 */, {"盧", "卢", -1 } /* 盧 => 卢 */, {"盩厔", "周至", -1 } /* 盩厔 => 周至 */, {"盪", "荡", -1 } /* 盪 => 荡 */, {"目無餘子", "目无余子", -1 } /* 目無餘子 => 目无余子 */, {"盯著", "盯着", -1 } /* 盯著 => 盯着 */, {"直著", "直着", -1 } /* 直著 => 直着 */, {"直衝", "直冲", -1 } /* 直衝 => 直冲 */, {"相剋", "相克", -1 } /* 相剋 => 相克 */, {"相衝", "相冲", -1 } /* 相衝 => 相冲 */, {"看於", "看于", -1 } /* 看於 => 看于 */, {"看著", "看着", -1 } /* 看著 => 看着 */, {"真兇", "真凶", -1 } /* 真兇 => 真凶 */, {"真於", "真于", -1 } /* 真於 => 真于 */, {"眥", "眦", -1 } /* 眥 => 眦 */, {"眼帘", "眼帘", -1 } /* 眼帘 => 眼帘 */, {"眾", "众", -1 } /* 眾 => 众 */, {"睏", "困", -1 } /* 睏 => 困 */, {"睏乏", "困乏", -1 } /* 睏乏 => 困乏 */, {"睜", "睁", -1 } /* 睜 => 睁 */, {"睞", "睐", -1 } /* 睞 => 睐 */, {"睡不著", "睡不着", -1 } /* 睡不著 => 睡不着 */, {"睡著", "睡着", -1 } /* 睡著 => 睡着 */, {"睪", "睾", -1 } /* 睪 => 睾 */, {"瞘", "眍", -1 } /* 瞘 => 眍 */, {"瞜", "䁖", -1 } /* 瞜 => 䁖 */, {"瞞", "瞒", -1 } /* 瞞 => 瞒 */, {"瞧著", "瞧着", -1 } /* 瞧著 => 瞧着 */, {"瞪著", "瞪着", -1 } /* 瞪著 => 瞪着 */, {"瞶", "瞆", -1 } /* 瞶 => 瞆 */, {"瞼", "睑", -1 } /* 瞼 => 睑 */, {"矇昧無知", "蒙昧无知", -1 } /* 矇昧無知 => 蒙昧无知 */, {"矇瞍", "蒙瞍", -1 } /* 矇瞍 => 蒙瞍 */, {"矇聵", "蒙聩", -1 } /* 矇聵 => 蒙聩 */, {"矇頭轉", "蒙头转", -1 } /* 矇頭轉 => 蒙头转 */, {"矓", "眬", -1 } /* 矓 => 眬 */, {"矚", "瞩", -1 } /* 矚 => 瞩 */, {"短於", "短于", -1 } /* 短於 => 短于 */, {"矮於", "矮于", -1 } /* 矮於 => 矮于 */, {"矯", "矫", -1 } /* 矯 => 矫 */, {"石樑", "石梁", -1 } /* 石樑 => 石梁 */, {"石砫", "石柱", -1 } /* 石砫 => 石柱 */, {"石英錶", "石英表", -1 } /* 石英錶 => 石英表 */, {"矽", "硅", -1 } /* 矽 => 硅 */, {"砰噹", "砰当", -1 } /* 砰噹 => 砰当 */, {"硃", "朱", -1 } /* 硃 => 朱 */, {"硃唇皓齒", "朱唇皓齿", -1 } /* 硃唇皓齒 => 朱唇皓齿 */, {"硃批", "朱批", -1 } /* 硃批 => 朱批 */, {"硃砂", "朱砂", -1 } /* 硃砂 => 朱砂 */, {"硃筆", "朱笔", -1 } /* 硃筆 => 朱笔 */, {"硃紅色", "朱红色", -1 } /* 硃紅色 => 朱红色 */, {"硃色", "朱色", -1 } /* 硃色 => 朱色 */, {"硜", "硁", -1 } /* 硜 => 硁 */, {"硤", "硖", -1 } /* 硤 => 硖 */, {"硨", "砗", -1 } /* 硨 => 砗 */, {"硫化鹼", "硫化碱", -1 } /* 硫化鹼 => 硫化碱 */, {"硬碟", "硬盘", -1 } /* 硬碟 => 硬盘 */, {"硯", "砚", -1 } /* 硯 => 砚 */, {"碑誌", "碑志", -1 } /* 碑誌 => 碑志 */, {"碩", "硕", -1 } /* 碩 => 硕 */, {"碭", "砀", -1 } /* 碭 => 砀 */, {"碸", "砜", -1 } /* 碸 => 砜 */, {"確", "确", -1 } /* 確 => 确 */, {"碼", "码", -1 } /* 碼 => 码 */, {"磁片", "软盘", -1 } /* 磁片 => 软盘 */, {"磁碟", "磁盘", -1 } /* 磁碟 => 磁盘 */, {"磁碟", "软盘", -1 } /* 磁碟 => 软盘 */, {"磁軌", "磁道", -1 } /* 磁軌 => 磁道 */, {"磑", "硙", -1 } /* 磑 => 硙 */, {"磚", "砖", -1 } /* 磚 => 砖 */, {"磣", "碜", -1 } /* 磣 => 碜 */, {"磧", "碛", -1 } /* 磧 => 碛 */, {"磯", "矶", -1 } /* 磯 => 矶 */, {"磽", "硗", -1 } /* 磽 => 硗 */, {"礄", "硚", -1 } /* 礄 => 硚 */, {"礆", "硷", -1 } /* 礆 => 硷 */, {"礎", "础", -1 } /* 礎 => 础 */, {"礙", "碍", -1 } /* 礙 => 碍 */, {"礙於", "碍于", -1 } /* 礙於 => 碍于 */, {"礙著", "碍着", -1 } /* 礙著 => 碍着 */, {"礦", "矿", -1 } /* 礦 => 矿 */, {"礪", "砺", -1 } /* 礪 => 砺 */, {"礫", "砾", -1 } /* 礫 => 砾 */, {"礬", "矾", -1 } /* 礬 => 矾 */, {"礱", "砻", -1 } /* 礱 => 砻 */, {"示範", "示范", -1 } /* 示範 => 示范 */, {"神采", "神采", -1 } /* 神采 => 神采 */, {"神雕像", "神雕像", -1 } /* 神雕像 => 神雕像 */, {"神鵰", "神雕", -1 } /* 神鵰 => 神雕 */, {"祿", "禄", -1 } /* 祿 => 禄 */, {"禍", "祸", -1 } /* 禍 => 祸 */, {"禎", "祯", -1 } /* 禎 => 祯 */, {"禕", "祎", -1 } /* 禕 => 祎 */, {"禡", "祃", -1 } /* 禡 => 祃 */, {"禦", "御", -1 } /* 禦 => 御 */, {"禦侮", "御侮", -1 } /* 禦侮 => 御侮 */, {"禦寇", "御寇", -1 } /* 禦寇 => 御寇 */, {"禦寒", "御寒", -1 } /* 禦寒 => 御寒 */, {"禦敵", "御敌", -1 } /* 禦敵 => 御敌 */, {"禪", "禅", -1 } /* 禪 => 禅 */, {"禮", "礼", -1 } /* 禮 => 礼 */, {"禰", "祢", -1 } /* 禰 => 祢 */, {"禱", "祷", -1 } /* 禱 => 祷 */, {"禿", "秃", -1 } /* 禿 => 秃 */, {"秋褲", "秋裤", -1 } /* 秋褲 => 秋裤 */, {"秒錶", "秒表", -1 } /* 秒錶 => 秒表 */, {"稈", "秆", -1 } /* 稈 => 秆 */, {"程式庫", "程序库", -1 } /* 程式庫 => 程序库 */, {"程式碼", "程序代码", -1 } /* 程式碼 => 程序代码 */, {"稜角", "棱角", -1 } /* 稜角 => 棱角 */, {"稜錐", "棱锥", -1 } /* 稜錐 => 棱锥 */, {"稜鏡", "棱镜", -1 } /* 稜鏡 => 棱镜 */, {"稟", "禀", -1 } /* 稟 => 禀 */, {"種", "种", -1 } /* 種 => 种 */, {"稱", "称", -1 } /* 稱 => 称 */, {"稱讚", "称赞", -1 } /* 稱讚 => 称赞 */, {"稻穀", "稻谷", -1 } /* 稻穀 => 稻谷 */, {"穀", "谷", -1 } /* 穀 => 谷 */, {"穀倉", "谷仓", -1 } /* 穀倉 => 谷仓 */, {"穀場", "谷场", -1 } /* 穀場 => 谷场 */, {"穀子", "谷子", -1 } /* 穀子 => 谷子 */, {"穀梁", "穀梁", -1 } /* 穀梁 => 穀梁 */, {"穀物", "谷物", -1 } /* 穀物 => 谷物 */, {"穀皮", "谷皮", -1 } /* 穀皮 => 谷皮 */, {"穀神", "谷神", -1 } /* 穀神 => 谷神 */, {"穀粒", "谷粒", -1 } /* 穀粒 => 谷粒 */, {"穀艙", "谷舱", -1 } /* 穀艙 => 谷舱 */, {"穀苗", "谷苗", -1 } /* 穀苗 => 谷苗 */, {"穀草", "谷草", -1 } /* 穀草 => 谷草 */, {"穀賤傷農", "谷贱伤农", -1 } /* 穀賤傷農 => 谷贱伤农 */, {"穀道", "谷道", -1 } /* 穀道 => 谷道 */, {"穀雨", "谷雨", -1 } /* 穀雨 => 谷雨 */, {"穀類", "谷类", -1 } /* 穀類 => 谷类 */, {"穇", "䅟", -1 } /* 穇 => 䅟 */, {"穌", "稣", -1 } /* 穌 => 稣 */, {"積", "积", -1 } /* 積 => 积 */, {"積鬱", "积郁", -1 } /* 積鬱 => 积郁 */, {"穎", "颖", -1 } /* 穎 => 颖 */, {"穠", "秾", -1 } /* 穠 => 秾 */, {"穡", "穑", -1 } /* 穡 => 穑 */, {"穢", "秽", -1 } /* 穢 => 秽 */, {"穩", "稳", -1 } /* 穩 => 稳 */, {"穫", "获", -1 } /* 穫 => 获 */, {"穭", "稆", -1 } /* 穭 => 稆 */, {"空穴來風", "空穴来风", -1 } /* 空穴來風 => 空穴来风 */, {"空蕩", "空荡", -1 } /* 空蕩 => 空荡 */, {"空餘", "空余", -1 } /* 空餘 => 空余 */, {"穿著", "穿着", -1 } /* 穿著 => 穿着 */, {"突尼斯", "突尼斯", -1 } /* 突尼斯 => 突尼斯 */, {"窗帘", "窗帘", -1 } /* 窗帘 => 窗帘 */, {"窗明几淨", "窗明几净", -1 } /* 窗明几淨 => 窗明几净 */, {"窩", "窝", -1 } /* 窩 => 窝 */, {"窩瓦河", "伏尔加河", -1 } /* 窩瓦河 => 伏尔加河 */, {"窪", "洼", -1 } /* 窪 => 洼 */, {"窪淀", "洼淀", -1 } /* 窪淀 => 洼淀 */, {"窮", "穷", -1 } /* 窮 => 穷 */, {"窮於", "穷于", -1 } /* 窮於 => 穷于 */, {"窮追不捨", "穷追不舍", -1 } /* 窮追不捨 => 穷追不舍 */, {"窯", "窑", -1 } /* 窯 => 窑 */, {"窵", "窎", -1 } /* 窵 => 窎 */, {"窶", "窭", -1 } /* 窶 => 窭 */, {"窺", "窥", -1 } /* 窺 => 窥 */, {"竄", "窜", -1 } /* 竄 => 窜 */, {"竅", "窍", -1 } /* 竅 => 窍 */, {"竇", "窦", -1 } /* 竇 => 窦 */, {"竈", "灶", -1 } /* 竈 => 灶 */, {"竊", "窃", -1 } /* 竊 => 窃 */, {"立於", "立于", -1 } /* 立於 => 立于 */, {"立著", "立着", -1 } /* 立著 => 立着 */, {"站著", "站着", -1 } /* 站著 => 站着 */, {"章節附註", "尾注", -1 } /* 章節附註 => 尾注 */, {"端著", "端着", -1 } /* 端著 => 端着 */, {"競", "竞", -1 } /* 競 => 竞 */, {"笆斗", "笆斗", -1 } /* 笆斗 => 笆斗 */, {"笑著", "笑着", -1 } /* 笑著 => 笑着 */, {"筆", "笔", -1 } /* 筆 => 笔 */, {"筆劃", "笔划", -1 } /* 筆劃 => 笔划 */, {"筆記型電腦", "笔记本电脑", -1 } /* 筆記型電腦 => 笔记本电脑 */, {"等於", "等于", -1 } /* 等於 => 等于 */, {"等著", "等着", -1 } /* 等著 => 等着 */, {"筋斗", "筋斗", -1 } /* 筋斗 => 筋斗 */, {"筍", "笋", -1 } /* 筍 => 笋 */, {"筑前", "筑前", -1 } /* 筑前 => 筑前 */, {"筑北", "筑北", -1 } /* 筑北 => 筑北 */, {"筑州", "筑州", -1 } /* 筑州 => 筑州 */, {"筑波", "筑波", -1 } /* 筑波 => 筑波 */, {"筑紫", "筑紫", -1 } /* 筑紫 => 筑紫 */, {"筑肥", "筑肥", -1 } /* 筑肥 => 筑肥 */, {"筑西", "筑西", -1 } /* 筑西 => 筑西 */, {"筑邦", "筑邦", -1 } /* 筑邦 => 筑邦 */, {"筑陽", "筑阳", -1 } /* 筑陽 => 筑阳 */, {"筧", "笕", -1 } /* 筧 => 笕 */, {"筵几", "筵几", -1 } /* 筵几 => 筵几 */, {"箇", "个", -1 } /* 箇 => 个 */, {"箋", "笺", -1 } /* 箋 => 笺 */, {"箏", "筝", -1 } /* 箏 => 筝 */, {"箕斗", "箕斗", -1 } /* 箕斗 => 箕斗 */, {"節", "节", -1 } /* 節 => 节 */, {"節餘", "节余", -1 } /* 節餘 => 节余 */, {"範例", "范例", -1 } /* 範例 => 范例 */, {"範圍", "范围", -1 } /* 範圍 => 范围 */, {"範式", "范式", -1 } /* 範式 => 范式 */, {"範疇", "范畴", -1 } /* 範疇 => 范畴 */, {"築", "筑", -1 } /* 築 => 筑 */, {"篋", "箧", -1 } /* 篋 => 箧 */, {"篔", "筼", -1 } /* 篔 => 筼 */, {"篤", "笃", -1 } /* 篤 => 笃 */, {"篩", "筛", -1 } /* 篩 => 筛 */, {"篳", "筚", -1 } /* 篳 => 筚 */, {"簀", "箦", -1 } /* 簀 => 箦 */, {"簍", "篓", -1 } /* 簍 => 篓 */, {"簞", "箪", -1 } /* 簞 => 箪 */, {"簡", "简", -1 } /* 簡 => 简 */, {"簣", "篑", -1 } /* 簣 => 篑 */, {"簫", "箫", -1 } /* 簫 => 箫 */, {"簹", "筜", -1 } /* 簹 => 筜 */, {"簽著", "签着", -1 } /* 簽著 => 签着 */, {"簾", "帘", -1 } /* 簾 => 帘 */, {"籃", "篮", -1 } /* 籃 => 篮 */, {"籌", "筹", -1 } /* 籌 => 筹 */, {"籙", "箓", -1 } /* 籙 => 箓 */, {"籜", "箨", -1 } /* 籜 => 箨 */, {"籟", "籁", -1 } /* 籟 => 籁 */, {"籠", "笼", -1 } /* 籠 => 笼 */, {"籤押", "签押", -1 } /* 籤押 => 签押 */, {"籤詩", "签诗", -1 } /* 籤詩 => 签诗 */, {"籩", "笾", -1 } /* 籩 => 笾 */, {"籪", "簖", -1 } /* 籪 => 簖 */, {"籬", "篱", -1 } /* 籬 => 篱 */, {"籮", "箩", -1 } /* 籮 => 箩 */, {"籲", "吁", -1 } /* 籲 => 吁 */, {"籲求", "吁求", -1 } /* 籲求 => 吁求 */, {"籲請", "吁请", -1 } /* 籲請 => 吁请 */, {"粉籤子", "粉签子", -1 } /* 粉籤子 => 粉签子 */, {"粗於", "粗于", -1 } /* 粗於 => 粗于 */, {"粗榧鹼", "粗榧碱", -1 } /* 粗榧鹼 => 粗榧碱 */, {"粵", "粤", -1 } /* 粵 => 粤 */, {"精於", "精于", -1 } /* 精於 => 精于 */, {"精緻", "精致", -1 } /* 精緻 => 精致 */, {"精采", "精采", -1 } /* 精采 => 精采 */, {"精闢", "精辟", -1 } /* 精闢 => 精辟 */, {"糝", "糁", -1 } /* 糝 => 糁 */, {"糞", "粪", -1 } /* 糞 => 粪 */, {"糧", "粮", -1 } /* 糧 => 粮 */, {"糰", "团", -1 } /* 糰 => 团 */, {"糰子", "团子", -1 } /* 糰子 => 团子 */, {"糲", "粝", -1 } /* 糲 => 粝 */, {"糴", "籴", -1 } /* 糴 => 籴 */, {"糶", "粜", -1 } /* 糶 => 粜 */, {"糹", "纟", -1 } /* 糹 => 纟 */, {"糾", "纠", -1 } /* 糾 => 纠 */, {"紀", "纪", -1 } /* 紀 => 纪 */, {"紀曆", "纪历", -1 } /* 紀曆 => 纪历 */, {"紂", "纣", -1 } /* 紂 => 纣 */, {"約", "约", -1 } /* 約 => 约 */, {"紅", "红", -1 } /* 紅 => 红 */, {"紅於", "红于", -1 } /* 紅於 => 红于 */, {"紆", "纡", -1 } /* 紆 => 纡 */, {"紆迴", "纡回", -1 } /* 紆迴 => 纡回 */, {"紇", "纥", -1 } /* 紇 => 纥 */, {"紈", "纨", -1 } /* 紈 => 纨 */, {"紉", "纫", -1 } /* 紉 => 纫 */, {"紋", "纹", -1 } /* 紋 => 纹 */, {"納", "纳", -1 } /* 納 => 纳 */, {"納米比亞", "纳米比亚", -1 } /* 納米比亞 => 纳米比亚 */, {"納采", "纳采", -1 } /* 納采 => 纳采 */, {"紐", "纽", -1 } /* 紐 => 纽 */, {"紐埃", "纽埃", -1 } /* 紐埃 => 纽埃 */, {"紐威島", "纽埃", -1 } /* 紐威島 => 纽埃 */, {"紓", "纾", -1 } /* 紓 => 纾 */, {"純", "纯", -1 } /* 純 => 纯 */, {"純文字檔案", "纯文本", -1 } /* 純文字檔案 => 纯文本 */, {"純鹼", "纯碱", -1 } /* 純鹼 => 纯碱 */, {"紕", "纰", -1 } /* 紕 => 纰 */, {"紖", "纼", -1 } /* 紖 => 纼 */, {"紗", "纱", -1 } /* 紗 => 纱 */, {"紘", "纮", -1 } /* 紘 => 纮 */, {"紙", "纸", -1 } /* 紙 => 纸 */, {"級", "级", -1 } /* 級 => 级 */, {"紛", "纷", -1 } /* 紛 => 纷 */, {"紜", "纭", -1 } /* 紜 => 纭 */, {"紝", "纴", -1 } /* 紝 => 纴 */, {"紡", "纺", -1 } /* 紡 => 纺 */, {"索尼中國", "索尼中国", -1 } /* 索尼中國 => 索尼中国 */, {"紫微斗數", "紫微斗数", -1 } /* 紫微斗數 => 紫微斗数 */, {"紫檀鹼", "紫檀碱", -1 } /* 紫檀鹼 => 紫檀碱 */, {"紬", "䌷", -1 } /* 紬 => 䌷 */, {"紮", "扎", -1 } /* 紮 => 扎 */, {"紮實", "扎实", -1 } /* 紮實 => 扎实 */, {"紮寨", "扎寨", -1 } /* 紮寨 => 扎寨 */, {"細", "细", -1 } /* 細 => 细 */, {"細於", "细于", -1 } /* 細於 => 细于 */, {"細緻", "细致", -1 } /* 細緻 => 细致 */, {"紱", "绂", -1 } /* 紱 => 绂 */, {"紲", "绁", -1 } /* 紲 => 绁 */, {"紳", "绅", -1 } /* 紳 => 绅 */, {"紵", "纻", -1 } /* 紵 => 纻 */, {"紹", "绍", -1 } /* 紹 => 绍 */, {"紺", "绀", -1 } /* 紺 => 绀 */, {"紼", "绋", -1 } /* 紼 => 绋 */, {"紿", "绐", -1 } /* 紿 => 绐 */, {"絀", "绌", -1 } /* 絀 => 绌 */, {"終", "终", -1 } /* 終 => 终 */, {"終於", "终于", -1 } /* 終於 => 终于 */, {"組", "组", -1 } /* 組 => 组 */, {"絆", "绊", -1 } /* 絆 => 绊 */, {"絎", "绗", -1 } /* 絎 => 绗 */, {"結", "结", -1 } /* 結 => 结 */, {"結餘", "结余", -1 } /* 結餘 => 结余 */, {"絕", "绝", -1 } /* 絕 => 绝 */, {"絕對參照", "绝对参照", -1 } /* 絕對參照 => 绝对参照 */, {"絛", "绦", -1 } /* 絛 => 绦 */, {"絝", "绔", -1 } /* 絝 => 绔 */, {"絞", "绞", -1 } /* 絞 => 绞 */, {"絡", "络", -1 } /* 絡 => 络 */, {"絢", "绚", -1 } /* 絢 => 绚 */, {"給", "给", -1 } /* 給 => 给 */, {"絨", "绒", -1 } /* 絨 => 绒 */, {"絰", "绖", -1 } /* 絰 => 绖 */, {"統", "统", -1 } /* 統 => 统 */, {"絲", "丝", -1 } /* 絲 => 丝 */, {"絲布", "丝布", -1 } /* 絲布 => 丝布 */, {"絲板", "丝板", -1 } /* 絲板 => 丝板 */, {"絲瓜布", "丝瓜布", -1 } /* 絲瓜布 => 丝瓜布 */, {"絲絨布", "丝绒布", -1 } /* 絲絨布 => 丝绒布 */, {"絳", "绛", -1 } /* 絳 => 绛 */, {"絶", "绝", -1 } /* 絶 => 绝 */, {"絹", "绢", -1 } /* 絹 => 绢 */, {"綁", "绑", -1 } /* 綁 => 绑 */, {"綃", "绡", -1 } /* 綃 => 绡 */, {"綆", "绠", -1 } /* 綆 => 绠 */, {"綈", "绨", -1 } /* 綈 => 绨 */, {"綉", "绣", -1 } /* 綉 => 绣 */, {"綌", "绤", -1 } /* 綌 => 绤 */, {"綏", "绥", -1 } /* 綏 => 绥 */, {"經", "经", -1 } /* 經 => 经 */, {"綜", "综", -1 } /* 綜 => 综 */, {"綞", "缍", -1 } /* 綞 => 缍 */, {"綠", "绿", -1 } /* 綠 => 绿 */, {"綢", "绸", -1 } /* 綢 => 绸 */, {"綣", "绻", -1 } /* 綣 => 绻 */, {"綫", "线", -1 } /* 綫 => 线 */, {"綬", "绶", -1 } /* 綬 => 绶 */, {"維", "维", -1 } /* 維 => 维 */, {"維基共享資源", "维基共享资源", -1 } /* 維基共享資源 => 维基共享资源 */, {"綯", "绹", -1 } /* 綯 => 绹 */, {"綰", "绾", -1 } /* 綰 => 绾 */, {"綱", "纲", -1 } /* 綱 => 纲 */, {"網", "网", -1 } /* 網 => 网 */, {"網誌", "网志", -1 } /* 網誌 => 网志 */, {"網路上的芳鄰", "网上邻居", -1 } /* 網路上的芳鄰 => 网上邻居 */, {"綳", "绷", -1 } /* 綳 => 绷 */, {"綴", "缀", -1 } /* 綴 => 缀 */, {"綴於", "缀于", -1 } /* 綴於 => 缀于 */, {"綵", "䌽", -1 } /* 綵 => 䌽 */, {"綵排", "彩排", -1 } /* 綵排 => 彩排 */, {"綵演", "彩演", -1 } /* 綵演 => 彩演 */, {"綵燈", "彩灯", -1 } /* 綵燈 => 彩灯 */, {"綸", "纶", -1 } /* 綸 => 纶 */, {"綹", "绺", -1 } /* 綹 => 绺 */, {"綺", "绮", -1 } /* 綺 => 绮 */, {"綻", "绽", -1 } /* 綻 => 绽 */, {"綽", "绰", -1 } /* 綽 => 绰 */, {"綾", "绫", -1 } /* 綾 => 绫 */, {"綿", "绵", -1 } /* 綿 => 绵 */, {"緄", "绲", -1 } /* 緄 => 绲 */, {"緇", "缁", -1 } /* 緇 => 缁 */, {"緊", "紧", -1 } /* 緊 => 紧 */, {"緊追不捨", "紧追不舍", -1 } /* 緊追不捨 => 紧追不舍 */, {"緋", "绯", -1 } /* 緋 => 绯 */, {"緒", "绪", -1 } /* 緒 => 绪 */, {"緓", "绬", -1 } /* 緓 => 绬 */, {"緔", "绱", -1 } /* 緔 => 绱 */, {"緗", "缃", -1 } /* 緗 => 缃 */, {"緘", "缄", -1 } /* 緘 => 缄 */, {"緙", "缂", -1 } /* 緙 => 缂 */, {"線", "线", -1 } /* 線 => 线 */, {"緝", "缉", -1 } /* 緝 => 缉 */, {"緝兇", "缉凶", -1 } /* 緝兇 => 缉凶 */, {"緞", "缎", -1 } /* 緞 => 缎 */, {"締", "缔", -1 } /* 締 => 缔 */, {"緡", "缗", -1 } /* 緡 => 缗 */, {"緣", "缘", -1 } /* 緣 => 缘 */, {"緦", "缌", -1 } /* 緦 => 缌 */, {"編", "编", -1 } /* 編 => 编 */, {"編余", "编余", -1 } /* 編余 => 编余 */, {"編於", "编于", -1 } /* 編於 => 编于 */, {"編餘", "编余", -1 } /* 編餘 => 编余 */, {"緩", "缓", -1 } /* 緩 => 缓 */, {"緩於", "缓于", -1 } /* 緩於 => 缓于 */, {"緬", "缅", -1 } /* 緬 => 缅 */, {"緯", "纬", -1 } /* 緯 => 纬 */, {"緱", "缑", -1 } /* 緱 => 缑 */, {"緲", "缈", -1 } /* 緲 => 缈 */, {"練", "练", -1 } /* 練 => 练 */, {"緶", "缏", -1 } /* 緶 => 缏 */, {"緹", "缇", -1 } /* 緹 => 缇 */, {"緻", "致", -1 } /* 緻 => 致 */, {"緻密", "致密", -1 } /* 緻密 => 致密 */, {"緼", "缊", -1 } /* 緼 => 缊 */, {"縈", "萦", -1 } /* 縈 => 萦 */, {"縈迴", "萦回", -1 } /* 縈迴 => 萦回 */, {"縉", "缙", -1 } /* 縉 => 缙 */, {"縊", "缢", -1 } /* 縊 => 缢 */, {"縋", "缒", -1 } /* 縋 => 缒 */, {"縐", "绉", -1 } /* 縐 => 绉 */, {"縑", "缣", -1 } /* 縑 => 缣 */, {"縗", "缞", -1 } /* 縗 => 缞 */, {"縛", "缚", -1 } /* 縛 => 缚 */, {"縝", "缜", -1 } /* 縝 => 缜 */, {"縞", "缟", -1 } /* 縞 => 缟 */, {"縟", "缛", -1 } /* 縟 => 缛 */, {"縣", "县", -1 } /* 縣 => 县 */, {"縣誌", "县志", -1 } /* 縣誌 => 县志 */, {"縧", "绦", -1 } /* 縧 => 绦 */, {"縫", "缝", -1 } /* 縫 => 缝 */, {"縭", "缡", -1 } /* 縭 => 缡 */, {"縮", "缩", -1 } /* 縮 => 缩 */, {"縱", "纵", -1 } /* 縱 => 纵 */, {"縲", "缧", -1 } /* 縲 => 缧 */, {"縴夫", "纤夫", -1 } /* 縴夫 => 纤夫 */, {"縵", "缦", -1 } /* 縵 => 缦 */, {"縶", "絷", -1 } /* 縶 => 絷 */, {"縷", "缕", -1 } /* 縷 => 缕 */, {"縹", "缥", -1 } /* 縹 => 缥 */, {"總", "总", -1 } /* 總 => 总 */, {"績", "绩", -1 } /* 績 => 绩 */, {"繃", "绷", -1 } /* 繃 => 绷 */, {"繃住", "绷住", -1 } /* 繃住 => 绷住 */, {"繃臉", "绷脸", -1 } /* 繃臉 => 绷脸 */, {"繃著", "绷着", -1 } /* 繃著 => 绷着 */, {"繃開", "绷开", -1 } /* 繃開 => 绷开 */, {"繅", "缫", -1 } /* 繅 => 缫 */, {"繆", "缪", -1 } /* 繆 => 缪 */, {"繒", "缯", -1 } /* 繒 => 缯 */, {"織", "织", -1 } /* 織 => 织 */, {"繕", "缮", -1 } /* 繕 => 缮 */, {"繚", "缭", -1 } /* 繚 => 缭 */, {"繞", "绕", -1 } /* 繞 => 绕 */, {"繞樑", "绕梁", -1 } /* 繞樑 => 绕梁 */, {"繞著", "绕着", -1 } /* 繞著 => 绕着 */, {"繡", "绣", -1 } /* 繡 => 绣 */, {"繢", "缋", -1 } /* 繢 => 缋 */, {"繩", "绳", -1 } /* 繩 => 绳 */, {"繪", "绘", -1 } /* 繪 => 绘 */, {"繫", "系", -1 } /* 繫 => 系 */, {"繫到", "系到", -1 } /* 繫到 => 系到 */, {"繫囚", "系囚", -1 } /* 繫囚 => 系囚 */, {"繫數", "系数", -1 } /* 繫數 => 系数 */, {"繫系", "系系", -1 } /* 繫系 => 系系 */, {"繫緊", "系紧", -1 } /* 繫緊 => 系紧 */, {"繭", "茧", -1 } /* 繭 => 茧 */, {"繮", "缰", -1 } /* 繮 => 缰 */, {"繯", "缳", -1 } /* 繯 => 缳 */, {"繰", "缲", -1 } /* 繰 => 缲 */, {"繳", "缴", -1 } /* 繳 => 缴 */, {"繹", "绎", -1 } /* 繹 => 绎 */, {"繼", "继", -1 } /* 繼 => 继 */, {"繽", "缤", -1 } /* 繽 => 缤 */, {"繾", "缱", -1 } /* 繾 => 缱 */, {"纈", "缬", -1 } /* 纈 => 缬 */, {"纊", "纩", -1 } /* 纊 => 纩 */, {"續", "续", -1 } /* 續 => 续 */, {"纍", "累", -1 } /* 纍 => 累 */, {"纍囚", "累囚", -1 } /* 纍囚 => 累囚 */, {"纍纍", "累累", -1 } /* 纍纍 => 累累 */, {"纏", "缠", -1 } /* 纏 => 缠 */, {"纏著", "缠著", -1 } /* 纏著 => 缠著 */, {"纓", "缨", -1 } /* 纓 => 缨 */, {"纔", "才", -1 } /* 纔 => 才 */, {"纖", "纤", -1 } /* 纖 => 纤 */, {"纘", "缵", -1 } /* 纘 => 缵 */, {"纜", "缆", -1 } /* 纜 => 缆 */, {"缽", "钵", -1 } /* 缽 => 钵 */, {"罈", "坛", -1 } /* 罈 => 坛 */, {"罈子", "坛子", -1 } /* 罈子 => 坛子 */, {"罈罈罐罐", "坛坛罐罐", -1 } /* 罈罈罐罐 => 坛坛罐罐 */, {"罌", "罂", -1 } /* 罌 => 罂 */, {"罌粟鹼", "罂粟碱", -1 } /* 罌粟鹼 => 罂粟碱 */, {"置於", "置于", -1 } /* 置於 => 置于 */, {"罰", "罚", -1 } /* 罰 => 罚 */, {"罵", "骂", -1 } /* 罵 => 骂 */, {"罵著", "骂着", -1 } /* 罵著 => 骂着 */, {"罷", "罢", -1 } /* 罷 => 罢 */, {"罸", "罚", -1 } /* 罸 => 罚 */, {"羅", "罗", -1 } /* 羅 => 罗 */, {"羅德島", "罗得岛", -1 } /* 羅德島 => 罗得岛 */, {"羆", "罴", -1 } /* 羆 => 罴 */, {"羈", "羁", -1 } /* 羈 => 羁 */, {"羋", "芈", -1 } /* 羋 => 芈 */, {"羌縣", "若羌", -1 } /* 羌縣 => 若羌 */, {"美亞特", "马约特", -1 } /* 美亞特 => 马约特 */, {"美國邊疆小島", "美国本土外小岛屿", -1 } /* 美國邊疆小島 => 美国本土外小岛屿 */, {"美熹德", "默塞德", -1 } /* 美熹德 => 默塞德 */, {"羞於", "羞于", -1 } /* 羞於 => 羞于 */, {"羥", "羟", -1 } /* 羥 => 羟 */, {"義", "义", -1 } /* 義 => 义 */, {"習", "习", -1 } /* 習 => 习 */, {"習水性", "习水性", -1 } /* 習水性 => 习水性 */, {"習用", "习用", -1 } /* 習用 => 习用 */, {"翬", "翚", -1 } /* 翬 => 翚 */, {"翹", "翘", -1 } /* 翹 => 翘 */, {"老么", "老幺", -1 } /* 老么 => 老幺 */, {"老么", "老么", -1 } /* 老么 => 老么 */, {"老字號", "老字号", -1 } /* 老字號 => 老字号 */, {"老闆", "老板", -1 } /* 老闆 => 老板 */, {"耐鹼", "耐碱", -1 } /* 耐鹼 => 耐碱 */, {"耕九餘三", "耕九余三", -1 } /* 耕九餘三 => 耕九余三 */, {"耕穫", "耕获", -1 } /* 耕穫 => 耕获 */, {"耬", "耧", -1 } /* 耬 => 耧 */, {"耮", "耢", -1 } /* 耮 => 耢 */, {"聊齋誌異", "聊斋志异", -1 } /* 聊齋誌異 => 聊斋志异 */, {"聖", "圣", -1 } /* 聖 => 圣 */, {"聖馬利諾", "圣马力诺", -1 } /* 聖馬利諾 => 圣马力诺 */, {"聞", "闻", -1 } /* 聞 => 闻 */, {"聞著", "闻着", -1 } /* 聞著 => 闻着 */, {"聯", "联", -1 } /* 聯 => 联 */, {"聰", "聪", -1 } /* 聰 => 聪 */, {"聲", "声", -1 } /* 聲 => 声 */, {"聳", "耸", -1 } /* 聳 => 耸 */, {"聵", "聩", -1 } /* 聵 => 聩 */, {"聶", "聂", -1 } /* 聶 => 聂 */, {"職", "职", -1 } /* 職 => 职 */, {"聹", "聍", -1 } /* 聹 => 聍 */, {"聽", "听", -1 } /* 聽 => 听 */, {"聽著", "听着", -1 } /* 聽著 => 听着 */, {"聾", "聋", -1 } /* 聾 => 聋 */, {"肅", "肃", -1 } /* 肅 => 肃 */, {"肉鹼", "肉碱", -1 } /* 肉鹼 => 肉碱 */, {"股東", "股东", -1 } /* 股東 => 股东 */, {"肢体", "肢体", -1 } /* 肢体 => 肢体 */, {"肥筑方言", "肥筑方言", -1 } /* 肥筑方言 => 肥筑方言 */, {"背著", "背着", -1 } /* 背著 => 背着 */, {"胖於", "胖于", -1 } /* 胖於 => 胖于 */, {"胺基酸", "氨基酸", -1 } /* 胺基酸 => 氨基酸 */, {"脅", "胁", -1 } /* 脅 => 胁 */, {"脈", "脉", -1 } /* 脈 => 脉 */, {"脊樑", "脊梁", -1 } /* 脊樑 => 脊梁 */, {"脛", "胫", -1 } /* 脛 => 胫 */, {"脣", "唇", -1 } /* 脣 => 唇 */, {"脫", "脱", -1 } /* 脫 => 脱 */, {"脹", "胀", -1 } /* 脹 => 胀 */, {"腊味", "腊味", -1 } /* 腊味 => 腊味 */, {"腊筆", "腊笔", -1 } /* 腊筆 => 腊笔 */, {"腎", "肾", -1 } /* 腎 => 肾 */, {"腐餘", "腐余", -1 } /* 腐餘 => 腐余 */, {"腖", "胨", -1 } /* 腖 => 胨 */, {"腡", "脶", -1 } /* 腡 => 脶 */, {"腦", "脑", -1 } /* 腦 => 脑 */, {"腫", "肿", -1 } /* 腫 => 肿 */, {"腳", "脚", -1 } /* 腳 => 脚 */, {"腸", "肠", -1 } /* 腸 => 肠 */, {"膃", "腽", -1 } /* 膃 => 腽 */, {"膕", "腘", -1 } /* 膕 => 腘 */, {"膚", "肤", -1 } /* 膚 => 肤 */, {"膞", "䏝", -1 } /* 膞 => 䏝 */, {"膠", "胶", -1 } /* 膠 => 胶 */, {"膩", "腻", -1 } /* 膩 => 腻 */, {"膽", "胆", -1 } /* 膽 => 胆 */, {"膽鹼", "胆碱", -1 } /* 膽鹼 => 胆碱 */, {"膾", "脍", -1 } /* 膾 => 脍 */, {"膿", "脓", -1 } /* 膿 => 脓 */, {"臉", "脸", -1 } /* 臉 => 脸 */, {"臍", "脐", -1 } /* 臍 => 脐 */, {"臏", "膑", -1 } /* 臏 => 膑 */, {"臓", "赃", -1 } /* 臓 => 赃 */, {"臘", "腊", -1 } /* 臘 => 腊 */, {"臘肉", "腊肉", -1 } /* 臘肉 => 腊肉 */, {"臚", "胪", -1 } /* 臚 => 胪 */, {"臟", "脏", -1 } /* 臟 => 脏 */, {"臠", "脔", -1 } /* 臠 => 脔 */, {"臢", "臜", -1 } /* 臢 => 臜 */, {"臨", "临", -1 } /* 臨 => 临 */, {"自由城", "弗里敦", -1 } /* 自由城 => 弗里敦 */, {"自由球", "任意球", -1 } /* 自由球 => 任意球 */, {"自覺自愿", "自觉自愿", -1 } /* 自覺自愿 => 自觉自愿 */, {"臺", "台", -1 } /* 臺 => 台 */, {"舂穀", "舂谷", -1 } /* 舂穀 => 舂谷 */, {"與", "与", -1 } /* 與 => 与 */, {"興", "兴", -1 } /* 興 => 兴 */, {"興緻", "兴致", -1 } /* 興緻 => 兴致 */, {"興高采烈", "兴高采烈", -1 } /* 興高采烈 => 兴高采烈 */, {"舉", "举", -1 } /* 舉 => 举 */, {"舉手表決", "举手表决", -1 } /* 舉手表決 => 举手表决 */, {"舉著", "举着", -1 } /* 舉著 => 举着 */, {"舊", "旧", -1 } /* 舊 => 旧 */, {"舊曆", "旧历", -1 } /* 舊曆 => 旧历 */, {"舞著", "舞着", -1 } /* 舞著 => 舞着 */, {"航天大學", "航天大学", -1 } /* 航天大學 => 航天大学 */, {"航天工業部", "航天工业部", -1 } /* 航天工業部 => 航天工业部 */, {"航海曆", "航海历", -1 } /* 航海曆 => 航海历 */, {"艙", "舱", -1 } /* 艙 => 舱 */, {"艤", "舣", -1 } /* 艤 => 舣 */, {"艦", "舰", -1 } /* 艦 => 舰 */, {"艫", "舻", -1 } /* 艫 => 舻 */, {"良於", "良于", -1 } /* 良於 => 良于 */, {"艱", "艰", -1 } /* 艱 => 艰 */, {"艷后", "艳后", -1 } /* 艷后 => 艳后 */, {"芬郁", "芬郁", -1 } /* 芬郁 => 芬郁 */, {"花著", "花着", -1 } /* 花著 => 花着 */, {"花采", "花采", -1 } /* 花采 => 花采 */, {"花鬨", "花哄", -1 } /* 花鬨 => 花哄 */, {"芻", "刍", -1 } /* 芻 => 刍 */, {"苎", "苧", -1 } /* 苎 => 苧 */, {"苗栗", "苗栗", -1 } /* 苗栗 => 苗栗 */, {"苛性鹼", "苛性碱", -1 } /* 苛性鹼 => 苛性碱 */, {"若且唯若", "当且仅当", -1 } /* 若且唯若 => 当且仅当 */, {"苦鹵", "苦卤", -1 } /* 苦鹵 => 苦卤 */, {"苧", "苎", -1 } /* 苧 => 苎 */, {"茲", "兹", -1 } /* 茲 => 兹 */, {"茲於", "兹于", -1 } /* 茲於 => 兹于 */, {"茶几", "茶几", -1 } /* 茶几 => 茶几 */, {"茶鹼", "茶碱", -1 } /* 茶鹼 => 茶碱 */, {"荒著", "荒着", -1 } /* 荒著 => 荒着 */, {"荷屬安地列斯", "荷属安的列斯", -1 } /* 荷屬安地列斯 => 荷属安的列斯 */, {"莊", "庄", -1 } /* 莊 => 庄 */, {"莖", "茎", -1 } /* 莖 => 茎 */, {"莢", "荚", -1 } /* 莢 => 荚 */, {"莧", "苋", -1 } /* 莧 => 苋 */, {"莽蕩", "莽荡", -1 } /* 莽蕩 => 莽荡 */, {"菌絲體", "菌丝体", -1 } /* 菌絲體 => 菌丝体 */, {"華", "华", -1 } /* 華 => 华 */, {"菸", "烟", -1 } /* 菸 => 烟 */, {"萇", "苌", -1 } /* 萇 => 苌 */, {"萊", "莱", -1 } /* 萊 => 莱 */, {"萬", "万", -1 } /* 萬 => 万 */, {"萬曆", "万历", -1 } /* 萬曆 => 万历 */, {"萬籤插架", "万签插架", -1 } /* 萬籤插架 => 万签插架 */, {"萬餘", "万余", -1 } /* 萬餘 => 万余 */, {"萵", "莴", -1 } /* 萵 => 莴 */, {"葉", "叶", -1 } /* 葉 => 叶 */, {"葑菲之采", "葑菲之采", -1 } /* 葑菲之采 => 葑菲之采 */, {"葒", "荭", -1 } /* 葒 => 荭 */, {"著兒", "着儿", -1 } /* 著兒 => 着儿 */, {"著急", "着急", -1 } /* 著急 => 着急 */, {"著重", "着重", -1 } /* 著重 => 着重 */, {"葤", "荮", -1 } /* 葤 => 荮 */, {"葦", "苇", -1 } /* 葦 => 苇 */, {"葭縣", "佳县", -1 } /* 葭縣 => 佳县 */, {"葯", "药", -1 } /* 葯 => 药 */, {"葵涌", "葵涌", -1 } /* 葵涌 => 葵涌 */, {"葷", "荤", -1 } /* 葷 => 荤 */, {"蒓", "莼", -1 } /* 蒓 => 莼 */, {"蒔", "莳", -1 } /* 蒔 => 莳 */, {"蒙著", "蒙着", -1 } /* 蒙著 => 蒙着 */, {"蒞", "莅", -1 } /* 蒞 => 莅 */, {"蒼", "苍", -1 } /* 蒼 => 苍 */, {"蓀", "荪", -1 } /* 蓀 => 荪 */, {"蓄鬚", "蓄须", -1 } /* 蓄鬚 => 蓄须 */, {"蓋", "盖", -1 } /* 蓋 => 盖 */, {"蓋於", "盖于", -1 } /* 蓋於 => 盖于 */, {"蓋火鍋", "盖帽", -1 } /* 蓋火鍋 => 盖帽 */, {"蓮", "莲", -1 } /* 蓮 => 莲 */, {"蓯", "苁", -1 } /* 蓯 => 苁 */, {"蓴", "莼", -1 } /* 蓴 => 莼 */, {"蓽", "荜", -1 } /* 蓽 => 荜 */, {"蔔", "卜", -1 } /* 蔔 => 卜 */, {"蔘綏", "参绥", -1 } /* 蔘綏 => 参绥 */, {"蔞", "蒌", -1 } /* 蔞 => 蒌 */, {"蔣", "蒋", -1 } /* 蔣 => 蒋 */, {"蔥", "葱", -1 } /* 蔥 => 葱 */, {"蔦", "茑", -1 } /* 蔦 => 茑 */, {"蔭", "荫", -1 } /* 蔭 => 荫 */, {"蕁", "荨", -1 } /* 蕁 => 荨 */, {"蕆", "蒇", -1 } /* 蕆 => 蒇 */, {"蕎", "荞", -1 } /* 蕎 => 荞 */, {"蕒", "荬", -1 } /* 蕒 => 荬 */, {"蕓", "芸", -1 } /* 蕓 => 芸 */, {"蕕", "莸", -1 } /* 蕕 => 莸 */, {"蕘", "荛", -1 } /* 蕘 => 荛 */, {"蕢", "蒉", -1 } /* 蕢 => 蒉 */, {"蕩", "荡", -1 } /* 蕩 => 荡 */, {"蕩來蕩去", "荡来荡去", -1 } /* 蕩來蕩去 => 荡来荡去 */, {"蕩女", "荡女", -1 } /* 蕩女 => 荡女 */, {"蕩婦", "荡妇", -1 } /* 蕩婦 => 荡妇 */, {"蕩寇", "荡寇", -1 } /* 蕩寇 => 荡寇 */, {"蕩平", "荡平", -1 } /* 蕩平 => 荡平 */, {"蕩滌", "荡涤", -1 } /* 蕩滌 => 荡涤 */, {"蕩漾", "荡漾", -1 } /* 蕩漾 => 荡漾 */, {"蕩然", "荡然", -1 } /* 蕩然 => 荡然 */, {"蕩舟", "荡舟", -1 } /* 蕩舟 => 荡舟 */, {"蕩船", "荡船", -1 } /* 蕩船 => 荡船 */, {"蕩蕩", "荡荡", -1 } /* 蕩蕩 => 荡荡 */, {"蕪", "芜", -1 } /* 蕪 => 芜 */, {"蕭", "萧", -1 } /* 蕭 => 萧 */, {"蕭邦", "肖邦", -1 } /* 蕭邦 => 肖邦 */, {"蕷", "蓣", -1 } /* 蕷 => 蓣 */, {"薈", "荟", -1 } /* 薈 => 荟 */, {"薊", "蓟", -1 } /* 薊 => 蓟 */, {"薌", "芗", -1 } /* 薌 => 芗 */, {"薑", "姜", -1 } /* 薑 => 姜 */, {"薔", "蔷", -1 } /* 薔 => 蔷 */, {"薘", "荙", -1 } /* 薘 => 荙 */, {"薟", "莶", -1 } /* 薟 => 莶 */, {"薦", "荐", -1 } /* 薦 => 荐 */, {"薩", "萨", -1 } /* 薩 => 萨 */, {"薴", "苧", -1 } /* 薴 => 苧 */, {"薺", "荠", -1 } /* 薺 => 荠 */, {"藉以", "借以", -1 } /* 藉以 => 借以 */, {"藉口", "借口", -1 } /* 藉口 => 借口 */, {"藉故", "借故", -1 } /* 藉故 => 借故 */, {"藉機", "借机", -1 } /* 藉機 => 借机 */, {"藉此", "借此", -1 } /* 藉此 => 借此 */, {"藉由", "借由", -1 } /* 藉由 => 借由 */, {"藉端", "借端", -1 } /* 藉端 => 借端 */, {"藉著", "借着", -1 } /* 藉著 => 借着 */, {"藉藉", "借借", -1 } /* 藉藉 => 借借 */, {"藉詞", "借词", -1 } /* 藉詞 => 借词 */, {"藉資", "借资", -1 } /* 藉資 => 借资 */, {"藉酒澆愁", "借酒浇愁", -1 } /* 藉酒澆愁 => 借酒浇愁 */, {"藍", "蓝", -1 } /* 藍 => 蓝 */, {"藍於", "蓝于", -1 } /* 藍於 => 蓝于 */, {"藍芽", "蓝牙", -1 } /* 藍芽 => 蓝牙 */, {"藍采和", "蓝采和", -1 } /* 藍采和 => 蓝采和 */, {"藎", "荩", -1 } /* 藎 => 荩 */, {"藏於", "藏于", -1 } /* 藏於 => 藏于 */, {"藏著", "藏着", -1 } /* 藏著 => 藏着 */, {"藜蘆鹼", "藜芦碱", -1 } /* 藜蘆鹼 => 藜芦碱 */, {"藝", "艺", -1 } /* 藝 => 艺 */, {"藥", "药", -1 } /* 藥 => 药 */, {"藥籤", "药签", -1 } /* 藥籤 => 药签 */, {"藪", "薮", -1 } /* 藪 => 薮 */, {"藭", "䓖", -1 } /* 藭 => 䓖 */, {"藴", "蕴", -1 } /* 藴 => 蕴 */, {"藶", "苈", -1 } /* 藶 => 苈 */, {"藹", "蔼", -1 } /* 藹 => 蔼 */, {"藺", "蔺", -1 } /* 藺 => 蔺 */, {"蘀", "萚", -1 } /* 蘀 => 萚 */, {"蘄", "蕲", -1 } /* 蘄 => 蕲 */, {"蘆", "芦", -1 } /* 蘆 => 芦 */, {"蘇", "苏", -1 } /* 蘇 => 苏 */, {"蘊", "蕴", -1 } /* 蘊 => 蕴 */, {"蘊涵著", "蕴涵着", -1 } /* 蘊涵著 => 蕴涵着 */, {"蘊藉", "蕴借", -1 } /* 蘊藉 => 蕴借 */, {"蘋", "苹", -1 } /* 蘋 => 苹 */, {"蘚", "藓", -1 } /* 蘚 => 藓 */, {"蘞", "蔹", -1 } /* 蘞 => 蔹 */, {"蘢", "茏", -1 } /* 蘢 => 茏 */, {"蘭", "兰", -1 } /* 蘭 => 兰 */, {"蘺", "蓠", -1 } /* 蘺 => 蓠 */, {"蘿", "萝", -1 } /* 蘿 => 萝 */, {"虆", "蔂", -1 } /* 虆 => 蔂 */, {"虎鬚", "虎须", -1 } /* 虎鬚 => 虎须 */, {"虔南", "全南", -1 } /* 虔南 => 全南 */, {"處", "处", -1 } /* 處 => 处 */, {"虛", "虚", -1 } /* 虛 => 虚 */, {"虛擬碼", "伪代码", -1 } /* 虛擬碼 => 伪代码 */, {"虜", "虏", -1 } /* 虜 => 虏 */, {"號", "号", -1 } /* 號 => 号 */, {"號誌", "号志", -1 } /* 號誌 => 号志 */, {"虧", "亏", -1 } /* 虧 => 亏 */, {"虫", "虫", -1 } /* 虫 => 虫 */, {"虯", "虬", -1 } /* 虯 => 虬 */, {"蛺", "蛱", -1 } /* 蛺 => 蛱 */, {"蜂后", "蜂后", -1 } /* 蜂后 => 蜂后 */, {"蜆", "蚬", -1 } /* 蜆 => 蚬 */, {"蜑家", "蛋家", -1 } /* 蜑家 => 蛋家 */, {"蜡", "蜡", -1 } /* 蜡 => 蜡 */, {"蝕", "蚀", -1 } /* 蝕 => 蚀 */, {"蝟", "猬", -1 } /* 蝟 => 猬 */, {"蝦", "虾", -1 } /* 蝦 => 虾 */, {"蝸", "蜗", -1 } /* 蝸 => 蜗 */, {"螄", "蛳", -1 } /* 螄 => 蛳 */, {"螞", "蚂", -1 } /* 螞 => 蚂 */, {"螢", "萤", -1 } /* 螢 => 萤 */, {"螻", "蝼", -1 } /* 螻 => 蝼 */, {"螿", "螀", -1 } /* 螿 => 螀 */, {"蟄", "蛰", -1 } /* 蟄 => 蛰 */, {"蟈", "蝈", -1 } /* 蟈 => 蝈 */, {"蟎", "螨", -1 } /* 蟎 => 螨 */, {"蟣", "虮", -1 } /* 蟣 => 虮 */, {"蟬", "蝉", -1 } /* 蟬 => 蝉 */, {"蟯", "蛲", -1 } /* 蟯 => 蛲 */, {"蟲", "虫", -1 } /* 蟲 => 虫 */, {"蟶", "蛏", -1 } /* 蟶 => 蛏 */, {"蟻", "蚁", -1 } /* 蟻 => 蚁 */, {"蠅", "蝇", -1 } /* 蠅 => 蝇 */, {"蠆", "虿", -1 } /* 蠆 => 虿 */, {"蠐", "蛴", -1 } /* 蠐 => 蛴 */, {"蠑", "蝾", -1 } /* 蠑 => 蝾 */, {"蠟", "蜡", -1 } /* 蠟 => 蜡 */, {"蠣", "蛎", -1 } /* 蠣 => 蛎 */, {"蠨", "蟏", -1 } /* 蠨 => 蟏 */, {"蠱", "蛊", -1 } /* 蠱 => 蛊 */, {"蠶", "蚕", -1 } /* 蠶 => 蚕 */, {"蠻", "蛮", -1 } /* 蠻 => 蛮 */, {"血餘炭", "血余炭", -1 } /* 血餘炭 => 血余炭 */, {"衆", "众", -1 } /* 衆 => 众 */, {"衊", "蔑", -1 } /* 衊 => 蔑 */, {"行事曆", "行事历", -1 } /* 行事曆 => 行事历 */, {"行兇", "行凶", -1 } /* 行兇 => 行凶 */, {"術", "术", -1 } /* 術 => 术 */, {"衕多鹼", "同多碱", -1 } /* 衕多鹼 => 同多碱 */, {"衚", "胡", -1 } /* 衚 => 胡 */, {"衚衕", "胡同", -1 } /* 衚衕 => 胡同 */, {"衛", "卫", -1 } /* 衛 => 卫 */, {"衝", "冲", -1 } /* 衝 => 冲 */, {"衝下", "冲下", -1 } /* 衝下 => 冲下 */, {"衝來", "冲来", -1 } /* 衝來 => 冲来 */, {"衝到", "冲到", -1 } /* 衝到 => 冲到 */, {"衝剋", "冲克", -1 } /* 衝剋 => 冲克 */, {"衝垮", "冲垮", -1 } /* 衝垮 => 冲垮 */, {"衝堂", "冲堂", -1 } /* 衝堂 => 冲堂 */, {"衝壓", "冲压", -1 } /* 衝壓 => 冲压 */, {"衝天", "冲天", -1 } /* 衝天 => 冲天 */, {"衝掉", "冲掉", -1 } /* 衝掉 => 冲掉 */, {"衝散", "冲散", -1 } /* 衝散 => 冲散 */, {"衝決", "冲决", -1 } /* 衝決 => 冲决 */, {"衝程", "冲程", -1 } /* 衝程 => 冲程 */, {"衝線", "冲线", -1 } /* 衝線 => 冲线 */, {"衝衝", "冲冲", -1 } /* 衝衝 => 冲冲 */, {"衝起", "冲起", -1 } /* 衝起 => 冲起 */, {"衝車", "冲车", -1 } /* 衝車 => 冲车 */, {"衝過", "冲过", -1 } /* 衝過 => 冲过 */, {"衝量", "冲量", -1 } /* 衝量 => 冲量 */, {"衞", "卫", -1 } /* 衞 => 卫 */, {"衣阿华", "艾奥瓦", -1 } /* 衣阿华 => 艾奥瓦 */, {"衹", "只", -1 } /* 衹 => 只 */, {"袞", "衮", -1 } /* 袞 => 衮 */, {"裊", "袅", -1 } /* 裊 => 袅 */, {"裏", "里", -1 } /* 裏 => 里 */, {"補", "补", -1 } /* 補 => 补 */, {"裝", "装", -1 } /* 裝 => 装 */, {"裝著", "装着", -1 } /* 裝著 => 装着 */, {"裡", "里", -1 } /* 裡 => 里 */, {"製", "制", -1 } /* 製 => 制 */, {"複", "复", -1 } /* 複 => 复 */, {"複仞年如", "复仞年如", -1 } /* 複仞年如 => 复仞年如 */, {"複以百萬", "复以百万", -1 } /* 複以百萬 => 复以百万 */, {"複位", "复位", -1 } /* 複位 => 复位 */, {"複元音", "复元音", -1 } /* 複元音 => 复元音 */, {"複分數", "复分数", -1 } /* 複分數 => 复分数 */, {"複列", "复列", -1 } /* 複列 => 复列 */, {"複原", "复原", -1 } /* 複原 => 复原 */, {"複名", "复名", -1 } /* 複名 => 复名 */, {"複員", "复员", -1 } /* 複員 => 复员 */, {"複壁", "复壁", -1 } /* 複壁 => 复壁 */, {"複壯", "复壮", -1 } /* 複壯 => 复壮 */, {"複字鍵", "复字键", -1 } /* 複字鍵 => 复字键 */, {"複審", "复审", -1 } /* 複審 => 复审 */, {"複復", "复复", -1 } /* 複復 => 复复 */, {"複查", "复查", -1 } /* 複查 => 复查 */, {"複檢", "复检", -1 } /* 複檢 => 复检 */, {"複次", "复次", -1 } /* 複次 => 复次 */, {"複比", "复比", -1 } /* 複比 => 复比 */, {"複決", "复决", -1 } /* 複決 => 复决 */, {"複流", "复流", -1 } /* 複流 => 复流 */, {"複測", "复测", -1 } /* 複測 => 复测 */, {"複畝珍", "复亩珍", -1 } /* 複畝珍 => 复亩珍 */, {"複目", "复目", -1 } /* 複目 => 复目 */, {"複眼", "复眼", -1 } /* 複眼 => 复眼 */, {"複種", "复种", -1 } /* 複種 => 复种 */, {"複線", "复线", -1 } /* 複線 => 复线 */, {"複習", "复习", -1 } /* 複習 => 复习 */, {"複興社", "复兴社", -1 } /* 複興社 => 复兴社 */, {"複舊", "复旧", -1 } /* 複舊 => 复旧 */, {"複色", "复色", -1 } /* 複色 => 复色 */, {"複診", "复诊", -1 } /* 複診 => 复诊 */, {"複詞", "复词", -1 } /* 複詞 => 复词 */, {"複課", "复课", -1 } /* 複課 => 复课 */, {"複變函數", "复变函数", -1 } /* 複變函數 => 复变函数 */, {"複賽", "复赛", -1 } /* 複賽 => 复赛 */, {"複輔音", "复辅音", -1 } /* 複輔音 => 复辅音 */, {"複述", "复述", -1 } /* 複述 => 复述 */, {"複錢", "复钱", -1 } /* 複錢 => 复钱 */, {"複音", "复音", -1 } /* 複音 => 复音 */, {"複韻", "复韵", -1 } /* 複韻 => 复韵 */, {"褌", "裈", -1 } /* 褌 => 裈 */, {"褘", "袆", -1 } /* 褘 => 袆 */, {"褲", "裤", -1 } /* 褲 => 裤 */, {"褳", "裢", -1 } /* 褳 => 裢 */, {"褸", "褛", -1 } /* 褸 => 褛 */, {"褻", "亵", -1 } /* 褻 => 亵 */, {"襇", "裥", -1 } /* 襇 => 裥 */, {"襏", "袯", -1 } /* 襏 => 袯 */, {"襖", "袄", -1 } /* 襖 => 袄 */, {"襝", "裣", -1 } /* 襝 => 裣 */, {"襠", "裆", -1 } /* 襠 => 裆 */, {"襤", "褴", -1 } /* 襤 => 褴 */, {"襪", "袜", -1 } /* 襪 => 袜 */, {"襯", "衬", -1 } /* 襯 => 衬 */, {"襲", "袭", -1 } /* 襲 => 袭 */, {"西嶽", "西岳", -1 } /* 西嶽 => 西岳 */, {"西曆", "公历", -1 } /* 西曆 => 公历 */, {"西曆", "西历", -1 } /* 西曆 => 西历 */, {"西維吉尼亞", "西弗吉尼亚", -1 } /* 西維吉尼亞 => 西弗吉尼亚 */, {"要麼", "要么", -1 } /* 要麼 => 要么 */, {"覊", "羁", -1 } /* 覊 => 羁 */, {"見", "见", -1 } /* 見 => 见 */, {"覎", "觃", -1 } /* 覎 => 觃 */, {"規", "规", -1 } /* 規 => 规 */, {"規範", "规范", -1 } /* 規範 => 规范 */, {"覓", "觅", -1 } /* 覓 => 觅 */, {"覓著", "覓着", -1 } /* 覓著 => 覓着 */, {"視", "视", -1 } /* 視 => 视 */, {"覘", "觇", -1 } /* 覘 => 觇 */, {"覡", "觋", -1 } /* 覡 => 觋 */, {"覥", "觍", -1 } /* 覥 => 觍 */, {"覦", "觎", -1 } /* 覦 => 觎 */, {"親", "亲", -1 } /* 親 => 亲 */, {"覬", "觊", -1 } /* 覬 => 觊 */, {"覯", "觏", -1 } /* 覯 => 觏 */, {"覲", "觐", -1 } /* 覲 => 觐 */, {"覷", "觑", -1 } /* 覷 => 觑 */, {"覺", "觉", -1 } /* 覺 => 觉 */, {"覽", "览", -1 } /* 覽 => 览 */, {"覿", "觌", -1 } /* 覿 => 觌 */, {"觀", "观", -1 } /* 觀 => 观 */, {"解析度", "分辨率", -1 } /* 解析度 => 分辨率 */, {"解構子", "析构函数", -1 } /* 解構子 => 析构函数 */, {"觴", "觞", -1 } /* 觴 => 觞 */, {"觶", "觯", -1 } /* 觶 => 觯 */, {"觸", "触", -1 } /* 觸 => 触 */, {"訁", "讠", -1 } /* 訁 => 讠 */, {"訂", "订", -1 } /* 訂 => 订 */, {"訃", "讣", -1 } /* 訃 => 讣 */, {"計", "计", -1 } /* 計 => 计 */, {"訊", "讯", -1 } /* 訊 => 讯 */, {"訌", "讧", -1 } /* 訌 => 讧 */, {"討", "讨", -1 } /* 討 => 讨 */, {"訐", "讦", -1 } /* 訐 => 讦 */, {"訒", "讱", -1 } /* 訒 => 讱 */, {"訓", "训", -1 } /* 訓 => 训 */, {"訕", "讪", -1 } /* 訕 => 讪 */, {"訖", "讫", -1 } /* 訖 => 讫 */, {"託", "讬", -1 } /* 託 => 讬 */, {"記", "记", -1 } /* 記 => 记 */, {"記於", "记于", -1 } /* 記於 => 记于 */, {"記著", "记着", -1 } /* 記著 => 记着 */, {"訛", "讹", -1 } /* 訛 => 讹 */, {"訝", "讶", -1 } /* 訝 => 讶 */, {"訟", "讼", -1 } /* 訟 => 讼 */, {"訢", "䜣", -1 } /* 訢 => 䜣 */, {"訣", "诀", -1 } /* 訣 => 诀 */, {"訥", "讷", -1 } /* 訥 => 讷 */, {"訩", "讻", -1 } /* 訩 => 讻 */, {"訪", "访", -1 } /* 訪 => 访 */, {"設", "设", -1 } /* 設 => 设 */, {"許", "许", -1 } /* 許 => 许 */, {"訴", "诉", -1 } /* 訴 => 诉 */, {"訶", "诃", -1 } /* 訶 => 诃 */, {"診", "诊", -1 } /* 診 => 诊 */, {"註", "注", -1 } /* 註 => 注 */, {"詁", "诂", -1 } /* 詁 => 诂 */, {"詆", "诋", -1 } /* 詆 => 诋 */, {"詎", "讵", -1 } /* 詎 => 讵 */, {"詐", "诈", -1 } /* 詐 => 诈 */, {"詒", "诒", -1 } /* 詒 => 诒 */, {"詔", "诏", -1 } /* 詔 => 诏 */, {"評", "评", -1 } /* 評 => 评 */, {"詖", "诐", -1 } /* 詖 => 诐 */, {"詗", "诇", -1 } /* 詗 => 诇 */, {"詘", "诎", -1 } /* 詘 => 诎 */, {"詛", "诅", -1 } /* 詛 => 诅 */, {"詞", "词", -1 } /* 詞 => 词 */, {"詞采", "词采", -1 } /* 詞采 => 词采 */, {"詠", "咏", -1 } /* 詠 => 咏 */, {"詡", "诩", -1 } /* 詡 => 诩 */, {"詢", "询", -1 } /* 詢 => 询 */, {"詣", "诣", -1 } /* 詣 => 诣 */, {"試", "试", -1 } /* 試 => 试 */, {"試著", "试着", -1 } /* 試著 => 试着 */, {"詩", "诗", -1 } /* 詩 => 诗 */, {"詫", "诧", -1 } /* 詫 => 诧 */, {"詬", "诟", -1 } /* 詬 => 诟 */, {"詭", "诡", -1 } /* 詭 => 诡 */, {"詮", "诠", -1 } /* 詮 => 诠 */, {"詰", "诘", -1 } /* 詰 => 诘 */, {"話", "话", -1 } /* 話 => 话 */, {"該", "该", -1 } /* 該 => 该 */, {"詳", "详", -1 } /* 詳 => 详 */, {"詵", "诜", -1 } /* 詵 => 诜 */, {"詼", "诙", -1 } /* 詼 => 诙 */, {"詿", "诖", -1 } /* 詿 => 诖 */, {"誄", "诔", -1 } /* 誄 => 诔 */, {"誅", "诛", -1 } /* 誅 => 诛 */, {"誆", "诓", -1 } /* 誆 => 诓 */, {"誇", "夸", -1 } /* 誇 => 夸 */, {"誌", "志", -1 } /* 誌 => 志 */, {"誌哀", "志哀", -1 } /* 誌哀 => 志哀 */, {"誌喜", "志喜", -1 } /* 誌喜 => 志喜 */, {"誌慶", "志庆", -1 } /* 誌慶 => 志庆 */, {"誌異", "志异", -1 } /* 誌異 => 志异 */, {"認", "认", -1 } /* 認 => 认 */, {"誑", "诳", -1 } /* 誑 => 诳 */, {"誒", "诶", -1 } /* 誒 => 诶 */, {"誕", "诞", -1 } /* 誕 => 诞 */, {"誘", "诱", -1 } /* 誘 => 诱 */, {"誚", "诮", -1 } /* 誚 => 诮 */, {"語", "语", -1 } /* 語 => 语 */, {"語云", "语云", -1 } /* 語云 => 语云 */, {"誠", "诚", -1 } /* 誠 => 诚 */, {"誡", "诫", -1 } /* 誡 => 诫 */, {"誣", "诬", -1 } /* 誣 => 诬 */, {"誣衊", "诬蔑", -1 } /* 誣衊 => 诬蔑 */, {"誤", "误", -1 } /* 誤 => 误 */, {"誥", "诰", -1 } /* 誥 => 诰 */, {"誦", "诵", -1 } /* 誦 => 诵 */, {"誨", "诲", -1 } /* 誨 => 诲 */, {"說", "说", -1 } /* 說 => 说 */, {"說著", "说着", -1 } /* 說著 => 说着 */, {"説", "说", -1 } /* 説 => 说 */, {"誰", "谁", -1 } /* 誰 => 谁 */, {"課", "课", -1 } /* 課 => 课 */, {"課餘", "课余", -1 } /* 課餘 => 课余 */, {"誶", "谇", -1 } /* 誶 => 谇 */, {"誹", "诽", -1 } /* 誹 => 诽 */, {"誼", "谊", -1 } /* 誼 => 谊 */, {"誾", "訚", -1 } /* 誾 => 訚 */, {"調", "调", -1 } /* 調 => 调 */, {"諂", "谄", -1 } /* 諂 => 谄 */, {"諄", "谆", -1 } /* 諄 => 谆 */, {"談", "谈", -1 } /* 談 => 谈 */, {"諉", "诿", -1 } /* 諉 => 诿 */, {"請", "请", -1 } /* 請 => 请 */, {"請君入甕", "请君入瓮", -1 } /* 請君入甕 => 请君入瓮 */, {"諍", "诤", -1 } /* 諍 => 诤 */, {"諏", "诹", -1 } /* 諏 => 诹 */, {"諑", "诼", -1 } /* 諑 => 诼 */, {"諒", "谅", -1 } /* 諒 => 谅 */, {"論", "论", -1 } /* 論 => 论 */, {"諗", "谂", -1 } /* 諗 => 谂 */, {"諛", "谀", -1 } /* 諛 => 谀 */, {"諜", "谍", -1 } /* 諜 => 谍 */, {"諝", "谞", -1 } /* 諝 => 谞 */, {"諞", "谝", -1 } /* 諞 => 谝 */, {"諢", "诨", -1 } /* 諢 => 诨 */, {"諤", "谔", -1 } /* 諤 => 谔 */, {"諦", "谛", -1 } /* 諦 => 谛 */, {"諧", "谐", -1 } /* 諧 => 谐 */, {"諫", "谏", -1 } /* 諫 => 谏 */, {"諭", "谕", -1 } /* 諭 => 谕 */, {"諮", "谘", -1 } /* 諮 => 谘 */, {"諮詢", "咨询", -1 } /* 諮詢 => 咨询 */, {"諱", "讳", -1 } /* 諱 => 讳 */, {"諳", "谙", -1 } /* 諳 => 谙 */, {"諶", "谌", -1 } /* 諶 => 谌 */, {"諷", "讽", -1 } /* 諷 => 讽 */, {"諸", "诸", -1 } /* 諸 => 诸 */, {"諺", "谚", -1 } /* 諺 => 谚 */, {"諼", "谖", -1 } /* 諼 => 谖 */, {"諾", "诺", -1 } /* 諾 => 诺 */, {"謀", "谋", -1 } /* 謀 => 谋 */, {"謁", "谒", -1 } /* 謁 => 谒 */, {"謂", "谓", -1 } /* 謂 => 谓 */, {"謄", "誊", -1 } /* 謄 => 誊 */, {"謅", "诌", -1 } /* 謅 => 诌 */, {"謊", "谎", -1 } /* 謊 => 谎 */, {"謎", "谜", -1 } /* 謎 => 谜 */, {"謐", "谧", -1 } /* 謐 => 谧 */, {"謔", "谑", -1 } /* 謔 => 谑 */, {"謖", "谡", -1 } /* 謖 => 谡 */, {"謗", "谤", -1 } /* 謗 => 谤 */, {"謙", "谦", -1 } /* 謙 => 谦 */, {"謙於", "谦于", -1 } /* 謙於 => 谦于 */, {"謚", "谥", -1 } /* 謚 => 谥 */, {"講", "讲", -1 } /* 講 => 讲 */, {"謝", "谢", -1 } /* 謝 => 谢 */, {"謝絕參觀", "谢绝参观", -1 } /* 謝絕參觀 => 谢绝参观 */, {"謠", "谣", -1 } /* 謠 => 谣 */, {"謡", "谣", -1 } /* 謡 => 谣 */, {"謨", "谟", -1 } /* 謨 => 谟 */, {"謫", "谪", -1 } /* 謫 => 谪 */, {"謬", "谬", -1 } /* 謬 => 谬 */, {"謭", "谫", -1 } /* 謭 => 谫 */, {"謳", "讴", -1 } /* 謳 => 讴 */, {"謹", "谨", -1 } /* 謹 => 谨 */, {"謾", "谩", -1 } /* 謾 => 谩 */, {"譁", "哗", -1 } /* 譁 => 哗 */, {"證", "证", -1 } /* 證 => 证 */, {"譎", "谲", -1 } /* 譎 => 谲 */, {"譏", "讥", -1 } /* 譏 => 讥 */, {"譖", "谮", -1 } /* 譖 => 谮 */, {"識", "识", -1 } /* 識 => 识 */, {"譙", "谯", -1 } /* 譙 => 谯 */, {"譚", "谭", -1 } /* 譚 => 谭 */, {"譜", "谱", -1 } /* 譜 => 谱 */, {"譫", "谵", -1 } /* 譫 => 谵 */, {"譯", "译", -1 } /* 譯 => 译 */, {"議", "议", -1 } /* 議 => 议 */, {"譴", "谴", -1 } /* 譴 => 谴 */, {"護", "护", -1 } /* 護 => 护 */, {"譸", "诪", -1 } /* 譸 => 诪 */, {"譽", "誉", -1 } /* 譽 => 誉 */, {"譾", "谫", -1 } /* 譾 => 谫 */, {"讀", "读", -1 } /* 讀 => 读 */, {"讀於", "读于", -1 } /* 讀於 => 读于 */, {"讀書三余", "读书三余", -1 } /* 讀書三余 => 读书三余 */, {"讀書三餘", "读书三余", -1 } /* 讀書三餘 => 读书三余 */, {"讀著", "读着", -1 } /* 讀著 => 读着 */, {"讅", "谉", -1 } /* 讅 => 谉 */, {"變", "变", -1 } /* 變 => 变 */, {"變數", "变量", -1 } /* 變數 => 变量 */, {"讋", "詟", -1 } /* 讋 => 詟 */, {"讌", "䜩", -1 } /* 讌 => 䜩 */, {"讎", "雠", -1 } /* 讎 => 雠 */, {"讎隙", "雠隙", -1 } /* 讎隙 => 雠隙 */, {"讒", "谗", -1 } /* 讒 => 谗 */, {"讓", "让", -1 } /* 讓 => 让 */, {"讕", "谰", -1 } /* 讕 => 谰 */, {"讖", "谶", -1 } /* 讖 => 谶 */, {"讚揚", "赞扬", -1 } /* 讚揚 => 赞扬 */, {"讚歌", "赞歌", -1 } /* 讚歌 => 赞歌 */, {"讚美", "赞美", -1 } /* 讚美 => 赞美 */, {"讚賞", "赞赏", -1 } /* 讚賞 => 赞赏 */, {"讚頌", "赞颂", -1 } /* 讚頌 => 赞颂 */, {"讜", "谠", -1 } /* 讜 => 谠 */, {"讞", "谳", -1 } /* 讞 => 谳 */, {"豈", "岂", -1 } /* 豈 => 岂 */, {"豎", "竖", -1 } /* 豎 => 竖 */, {"豎著", "竖着", -1 } /* 豎著 => 竖着 */, {"豐", "丰", -1 } /* 豐 => 丰 */, {"豐富多采", "丰富多采", -1 } /* 豐富多采 => 丰富多采 */, {"豐濱", "丰滨", -1 } /* 豐濱 => 丰滨 */, {"豐濱鄉", "丰滨乡", -1 } /* 豐濱鄉 => 丰滨乡 */, {"豢養著", "豢養着", -1 } /* 豢養著 => 豢養着 */, {"豬", "猪", -1 } /* 豬 => 猪 */, {"豶", "豮", -1 } /* 豶 => 豮 */, {"貓", "猫", -1 } /* 貓 => 猫 */, {"貝", "贝", -1 } /* 貝 => 贝 */, {"貝母屬鹼", "贝母属碱", -1 } /* 貝母屬鹼 => 贝母属碱 */, {"貝理雅", "布莱尔", -1 } /* 貝理雅 => 布莱尔 */, {"貞", "贞", -1 } /* 貞 => 贞 */, {"貟", "贠", -1 } /* 貟 => 贠 */, {"負", "负", -1 } /* 負 => 负 */, {"負債纍纍", "负债累累", -1 } /* 負債纍纍 => 负债累累 */, {"負著", "负着", -1 } /* 負著 => 负着 */, {"財", "财", -1 } /* 財 => 财 */, {"貢", "贡", -1 } /* 貢 => 贡 */, {"貧", "贫", -1 } /* 貧 => 贫 */, {"貧於", "贫于", -1 } /* 貧於 => 贫于 */, {"貨", "货", -1 } /* 貨 => 货 */, {"販", "贩", -1 } /* 販 => 贩 */, {"貪", "贪", -1 } /* 貪 => 贪 */, {"貪進法", "贪心法", -1 } /* 貪進法 => 贪心法 */, {"貫", "贯", -1 } /* 貫 => 贯 */, {"責", "责", -1 } /* 責 => 责 */, {"貯", "贮", -1 } /* 貯 => 贮 */, {"貰", "贳", -1 } /* 貰 => 贳 */, {"貲", "赀", -1 } /* 貲 => 赀 */, {"貳", "贰", -1 } /* 貳 => 贰 */, {"貴", "贵", -1 } /* 貴 => 贵 */, {"貶", "贬", -1 } /* 貶 => 贬 */, {"買", "买", -1 } /* 買 => 买 */, {"買兇", "买凶", -1 } /* 買兇 => 买凶 */, {"貸", "贷", -1 } /* 貸 => 贷 */, {"貺", "贶", -1 } /* 貺 => 贶 */, {"費", "费", -1 } /* 費 => 费 */, {"費伯納西", "斐波纳契", -1 } /* 費伯納西 => 斐波纳契 */, {"貼", "贴", -1 } /* 貼 => 贴 */, {"貼著", "贴着", -1 } /* 貼著 => 贴着 */, {"貽", "贻", -1 } /* 貽 => 贻 */, {"貿", "贸", -1 } /* 貿 => 贸 */, {"賀", "贺", -1 } /* 賀 => 贺 */, {"賁", "贲", -1 } /* 賁 => 贲 */, {"賂", "赂", -1 } /* 賂 => 赂 */, {"賃", "赁", -1 } /* 賃 => 赁 */, {"賄", "贿", -1 } /* 賄 => 贿 */, {"賅", "赅", -1 } /* 賅 => 赅 */, {"資", "资", -1 } /* 資 => 资 */, {"資料庫", "数据库", -1 } /* 資料庫 => 数据库 */, {"資料結構", "数据结构", -1 } /* 資料結構 => 数据结构 */, {"資源回收筒", "回收站", -1 } /* 資源回收筒 => 回收站 */, {"賈", "贾", -1 } /* 賈 => 贾 */, {"賈后", "贾后", -1 } /* 賈后 => 贾后 */, {"賊", "贼", -1 } /* 賊 => 贼 */, {"賑", "赈", -1 } /* 賑 => 赈 */, {"賒", "赊", -1 } /* 賒 => 赊 */, {"賓", "宾", -1 } /* 賓 => 宾 */, {"賓拉登", "本拉登", -1 } /* 賓拉登 => 本拉登 */, {"賕", "赇", -1 } /* 賕 => 赇 */, {"賙", "赒", -1 } /* 賙 => 赒 */, {"賚", "赉", -1 } /* 賚 => 赉 */, {"賜", "赐", -1 } /* 賜 => 赐 */, {"賞", "赏", -1 } /* 賞 => 赏 */, {"賠", "赔", -1 } /* 賠 => 赔 */, {"賡", "赓", -1 } /* 賡 => 赓 */, {"賢", "贤", -1 } /* 賢 => 贤 */, {"賢后", "贤后", -1 } /* 賢后 => 贤后 */, {"賣", "卖", -1 } /* 賣 => 卖 */, {"賤", "贱", -1 } /* 賤 => 贱 */, {"賦", "赋", -1 } /* 賦 => 赋 */, {"賦於", "赋于", -1 } /* 賦於 => 赋于 */, {"賧", "赕", -1 } /* 賧 => 赕 */, {"質", "质", -1 } /* 質 => 质 */, {"質朴", "质朴", -1 } /* 質朴 => 质朴 */, {"賫", "赍", -1 } /* 賫 => 赍 */, {"賬", "账", -1 } /* 賬 => 账 */, {"賭", "赌", -1 } /* 賭 => 赌 */, {"賭檯", "赌台", -1 } /* 賭檯 => 赌台 */, {"賴", "赖", -1 } /* 賴 => 赖 */, {"賴著", "赖着", -1 } /* 賴著 => 赖着 */, {"賵", "赗", -1 } /* 賵 => 赗 */, {"賺", "赚", -1 } /* 賺 => 赚 */, {"賻", "赙", -1 } /* 賻 => 赙 */, {"購", "购", -1 } /* 購 => 购 */, {"購於", "购于", -1 } /* 購於 => 购于 */, {"賽", "赛", -1 } /* 賽 => 赛 */, {"賾", "赜", -1 } /* 賾 => 赜 */, {"贄", "贽", -1 } /* 贄 => 贽 */, {"贅", "赘", -1 } /* 贅 => 赘 */, {"贇", "赟", -1 } /* 贇 => 赟 */, {"贈", "赠", -1 } /* 贈 => 赠 */, {"贈於", "赠于", -1 } /* 贈於 => 赠于 */, {"贊", "赞", -1 } /* 贊 => 赞 */, {"贋", "赝", -1 } /* 贋 => 赝 */, {"贍", "赡", -1 } /* 贍 => 赡 */, {"贏", "赢", -1 } /* 贏 => 赢 */, {"贏餘", "赢余", -1 } /* 贏餘 => 赢余 */, {"贐", "赆", -1 } /* 贐 => 赆 */, {"贓", "赃", -1 } /* 贓 => 赃 */, {"贔", "赑", -1 } /* 贔 => 赑 */, {"贖", "赎", -1 } /* 贖 => 赎 */, {"贗", "赝", -1 } /* 贗 => 赝 */, {"贛", "赣", -1 } /* 贛 => 赣 */, {"贜", "赃", -1 } /* 贜 => 赃 */, {"赫拉", "赫拉", -1 } /* 赫拉 => 赫拉 */, {"赬", "赪", -1 } /* 赬 => 赪 */, {"走著", "走着", -1 } /* 走著 => 走着 */, {"起吊", "起吊", -1 } /* 起吊 => 起吊 */, {"起於", "起于", -1 } /* 起於 => 起于 */, {"起複", "起复", -1 } /* 起複 => 起复 */, {"起鬨", "起哄", -1 } /* 起鬨 => 起哄 */, {"趁著", "趁着", -1 } /* 趁著 => 趁着 */, {"超於", "超于", -1 } /* 超於 => 超于 */, {"越嶲", "越西", -1 } /* 越嶲 => 越西 */, {"趕", "赶", -1 } /* 趕 => 赶 */, {"趕著", "赶着", -1 } /* 趕著 => 赶着 */, {"趙", "赵", -1 } /* 趙 => 赵 */, {"趙福餘", "赵福余", -1 } /* 趙福餘 => 赵福余 */, {"趨", "趋", -1 } /* 趨 => 趋 */, {"趲", "趱", -1 } /* 趲 => 趱 */, {"趴著", "趴着", -1 } /* 趴著 => 趴着 */, {"跌蕩", "跌荡", -1 } /* 跌蕩 => 跌荡 */, {"跑著", "跑着", -1 } /* 跑著 => 跑着 */, {"跟斗", "跟斗", -1 } /* 跟斗 => 跟斗 */, {"跡", "迹", -1 } /* 跡 => 迹 */, {"跨著", "跨着", -1 } /* 跨著 => 跨着 */, {"路籤", "路签", -1 } /* 路籤 => 路签 */, {"跳樑小醜", "跳梁小丑", -1 } /* 跳樑小醜 => 跳梁小丑 */, {"跳樑猖獗之小醜", "跳梁猖獗之小丑", -1 } /* 跳樑猖獗之小醜 => 跳梁猖獗之小丑 */, {"跳著", "跳着", -1 } /* 跳著 => 跳着 */, {"跳蕩", "跳荡", -1 } /* 跳蕩 => 跳荡 */, {"跳錶", "跳表", -1 } /* 跳錶 => 跳表 */, {"踏著", "踏着", -1 } /* 踏著 => 踏着 */, {"踐", "践", -1 } /* 踐 => 践 */, {"踩著", "踩着", -1 } /* 踩著 => 踩着 */, {"踮著", "踮着", -1 } /* 踮著 => 踮着 */, {"踴", "踊", -1 } /* 踴 => 踊 */, {"蹌", "跄", -1 } /* 蹌 => 跄 */, {"蹕", "跸", -1 } /* 蹕 => 跸 */, {"蹣", "蹒", -1 } /* 蹣 => 蹒 */, {"蹤", "踪", -1 } /* 蹤 => 踪 */, {"蹲著", "蹲着", -1 } /* 蹲著 => 蹲着 */, {"蹺", "跷", -1 } /* 蹺 => 跷 */, {"躂", "跶", -1 } /* 躂 => 跶 */, {"躉", "趸", -1 } /* 躉 => 趸 */, {"躊", "踌", -1 } /* 躊 => 踌 */, {"躋", "跻", -1 } /* 躋 => 跻 */, {"躍", "跃", -1 } /* 躍 => 跃 */, {"躑", "踯", -1 } /* 躑 => 踯 */, {"躒", "跞", -1 } /* 躒 => 跞 */, {"躓", "踬", -1 } /* 躓 => 踬 */, {"躕", "蹰", -1 } /* 躕 => 蹰 */, {"躚", "跹", -1 } /* 躚 => 跹 */, {"躡", "蹑", -1 } /* 躡 => 蹑 */, {"躥", "蹿", -1 } /* 躥 => 蹿 */, {"躦", "躜", -1 } /* 躦 => 躜 */, {"躪", "躏", -1 } /* 躪 => 躏 */, {"躺著", "躺着", -1 } /* 躺著 => 躺着 */, {"軀", "躯", -1 } /* 軀 => 躯 */, {"車", "车", -1 } /* 車 => 车 */, {"軋", "轧", -1 } /* 軋 => 轧 */, {"軌", "轨", -1 } /* 軌 => 轨 */, {"軍", "军", -1 } /* 軍 => 军 */, {"軑", "轪", -1 } /* 軑 => 轪 */, {"軒", "轩", -1 } /* 軒 => 轩 */, {"軔", "轫", -1 } /* 軔 => 轫 */, {"軛", "轭", -1 } /* 軛 => 轭 */, {"軟", "软", -1 } /* 軟 => 软 */, {"軟碟機", "软驱", -1 } /* 軟碟機 => 软驱 */, {"軤", "轷", -1 } /* 軤 => 轷 */, {"軫", "轸", -1 } /* 軫 => 轸 */, {"軲", "轱", -1 } /* 軲 => 轱 */, {"軸", "轴", -1 } /* 軸 => 轴 */, {"軹", "轵", -1 } /* 軹 => 轵 */, {"軺", "轺", -1 } /* 軺 => 轺 */, {"軻", "轲", -1 } /* 軻 => 轲 */, {"軼", "轶", -1 } /* 軼 => 轶 */, {"軾", "轼", -1 } /* 軾 => 轼 */, {"較", "较", -1 } /* 較 => 较 */, {"輅", "辂", -1 } /* 輅 => 辂 */, {"輇", "辁", -1 } /* 輇 => 辁 */, {"輈", "辀", -1 } /* 輈 => 辀 */, {"載", "载", -1 } /* 載 => 载 */, {"載著", "载着", -1 } /* 載著 => 载着 */, {"輊", "轾", -1 } /* 輊 => 轾 */, {"輒", "辄", -1 } /* 輒 => 辄 */, {"輓", "挽", -1 } /* 輓 => 挽 */, {"輓曲", "挽曲", -1 } /* 輓曲 => 挽曲 */, {"輓歌", "挽歌", -1 } /* 輓歌 => 挽歌 */, {"輓聯", "挽联", -1 } /* 輓聯 => 挽联 */, {"輓詞", "挽词", -1 } /* 輓詞 => 挽词 */, {"輔", "辅", -1 } /* 輔 => 辅 */, {"輕", "轻", -1 } /* 輕 => 轻 */, {"輕於", "轻于", -1 } /* 輕於 => 轻于 */, {"輛", "辆", -1 } /* 輛 => 辆 */, {"輜", "辎", -1 } /* 輜 => 辎 */, {"輝", "辉", -1 } /* 輝 => 辉 */, {"輞", "辋", -1 } /* 輞 => 辋 */, {"輟", "辍", -1 } /* 輟 => 辍 */, {"輥", "辊", -1 } /* 輥 => 辊 */, {"輦", "辇", -1 } /* 輦 => 辇 */, {"輩", "辈", -1 } /* 輩 => 辈 */, {"輪", "轮", -1 } /* 輪 => 轮 */, {"輪姦", "轮奸", -1 } /* 輪姦 => 轮奸 */, {"輪迴", "轮回", -1 } /* 輪迴 => 轮回 */, {"輬", "辌", -1 } /* 輬 => 辌 */, {"輯", "辑", -1 } /* 輯 => 辑 */, {"輳", "辏", -1 } /* 輳 => 辏 */, {"輸", "输", -1 } /* 輸 => 输 */, {"輻", "辐", -1 } /* 輻 => 辐 */, {"輾", "辗", -1 } /* 輾 => 辗 */, {"輿", "舆", -1 } /* 輿 => 舆 */, {"轀", "辒", -1 } /* 轀 => 辒 */, {"轂", "毂", -1 } /* 轂 => 毂 */, {"轄", "辖", -1 } /* 轄 => 辖 */, {"轅", "辕", -1 } /* 轅 => 辕 */, {"轆", "辘", -1 } /* 轆 => 辘 */, {"轉", "转", -1 } /* 轉 => 转 */, {"轍", "辙", -1 } /* 轍 => 辙 */, {"轎", "轿", -1 } /* 轎 => 轿 */, {"轔", "辚", -1 } /* 轔 => 辚 */, {"轟", "轰", -1 } /* 轟 => 轰 */, {"轡", "辔", -1 } /* 轡 => 辔 */, {"轢", "轹", -1 } /* 轢 => 轹 */, {"轤", "轳", -1 } /* 轤 => 轳 */, {"辛丑", "辛丑", -1 } /* 辛丑 => 辛丑 */, {"辟味", "辟味", -1 } /* 辟味 => 辟味 */, {"辟臭", "辟臭", -1 } /* 辟臭 => 辟臭 */, {"辟邪", "辟邪", -1 } /* 辟邪 => 辟邪 */, {"辦", "办", -1 } /* 辦 => 办 */, {"辦伙", "办伙", -1 } /* 辦伙 => 办伙 */, {"辦公檯", "办公台", -1 } /* 辦公檯 => 办公台 */, {"辭", "辞", -1 } /* 辭 => 辞 */, {"辭采", "辞采", -1 } /* 辭采 => 辞采 */, {"辮", "辫", -1 } /* 辮 => 辫 */, {"辯", "辩", -1 } /* 辯 => 辩 */, {"農", "农", -1 } /* 農 => 农 */, {"農曆", "农历", -1 } /* 農曆 => 农历 */, {"迂迴", "迂回", -1 } /* 迂迴 => 迂回 */, {"迎著", "迎着", -1 } /* 迎著 => 迎着 */, {"近於", "近于", -1 } /* 近於 => 近于 */, {"返鹼", "返碱", -1 } /* 返鹼 => 返碱 */, {"连尼嘉", "莱因克尔", -1 } /* 连尼嘉 => 莱因克尔 */, {"迥然迴異", "迥然回异", -1 } /* 迥然迴異 => 迥然回异 */, {"迴", "回", -1 } /* 迴 => 回 */, {"迴光返照", "回光返照", -1 } /* 迴光返照 => 回光返照 */, {"迴向", "回向", -1 } /* 迴向 => 回向 */, {"迴圈", "循环", -1 } /* 迴圈 => 循环 */, {"迴圈", "回圈", -1 } /* 迴圈 => 回圈 */, {"迴廊", "回廊", -1 } /* 迴廊 => 回廊 */, {"迴形夾", "回形夹", -1 } /* 迴形夾 => 回形夹 */, {"迴文", "回文", -1 } /* 迴文 => 回文 */, {"迴旋", "回旋", -1 } /* 迴旋 => 回旋 */, {"迴流", "回流", -1 } /* 迴流 => 回流 */, {"迴環", "回环", -1 } /* 迴環 => 回环 */, {"迴紋針", "回纹针", -1 } /* 迴紋針 => 回纹针 */, {"迴繞", "回绕", -1 } /* 迴繞 => 回绕 */, {"迴腸", "回肠", -1 } /* 迴腸 => 回肠 */, {"迴蕩", "回荡", -1 } /* 迴蕩 => 回荡 */, {"迴誦", "回诵", -1 } /* 迴誦 => 回诵 */, {"迴路", "回路", -1 } /* 迴路 => 回路 */, {"迴轉", "回转", -1 } /* 迴轉 => 回转 */, {"迴遞性", "回递性", -1 } /* 迴遞性 => 回递性 */, {"迴避", "回避", -1 } /* 迴避 => 回避 */, {"迴響", "回响", -1 } /* 迴響 => 回响 */, {"迴風", "回风", -1 } /* 迴風 => 回风 */, {"迴首", "回首", -1 } /* 迴首 => 回首 */, {"追兇", "追凶", -1 } /* 追兇 => 追凶 */, {"追著", "追着", -1 } /* 追著 => 追着 */, {"退伙", "退伙", -1 } /* 退伙 => 退伙 */, {"送於", "送于", -1 } /* 送於 => 送于 */, {"逆著", "逆着", -1 } /* 逆著 => 逆着 */, {"透射", "透射", -1 } /* 透射 => 透射 */, {"逕", "迳", -1 } /* 逕 => 迳 */, {"這", "这", -1 } /* 這 => 这 */, {"這麼", "这么", -1 } /* 這麼 => 这么 */, {"這麼著", "这么着", -1 } /* 這麼著 => 这么着 */, {"通姦", "通奸", -1 } /* 通姦 => 通奸 */, {"造於", "造于", -1 } /* 造於 => 造于 */, {"連", "连", -1 } /* 連 => 连 */, {"連字號", "连字号", -1 } /* 連字號 => 连字号 */, {"連結", "链接", -1 } /* 連結 => 链接 */, {"週", "周", -1 } /* 週 => 周 */, {"進", "进", -1 } /* 進 => 进 */, {"進著", "进着", -1 } /* 進著 => 进着 */, {"遂於", "遂于", -1 } /* 遂於 => 遂于 */, {"遇著", "遇着", -1 } /* 遇著 => 遇着 */, {"遊", "游", -1 } /* 遊 => 游 */, {"運", "运", -1 } /* 運 => 运 */, {"遍佈", "遍布", -1 } /* 遍佈 => 遍布 */, {"過", "过", -1 } /* 過 => 过 */, {"過著", "过着", -1 } /* 過著 => 过着 */, {"達", "达", -1 } /* 達 => 达 */, {"達文西", "达芬奇", -1 } /* 達文西 => 达芬奇 */, {"違", "违", -1 } /* 違 => 违 */, {"遙", "遥", -1 } /* 遙 => 遥 */, {"遜", "逊", -1 } /* 遜 => 逊 */, {"遞", "递", -1 } /* 遞 => 递 */, {"遞迴", "递回", -1 } /* 遞迴 => 递回 */, {"遠", "远", -1 } /* 遠 => 远 */, {"適", "适", -1 } /* 適 => 适 */, {"適纔", "适才", -1 } /* 適纔 => 适才 */, {"遲", "迟", -1 } /* 遲 => 迟 */, {"遷", "迁", -1 } /* 遷 => 迁 */, {"選", "选", -1 } /* 選 => 选 */, {"遺", "遗", -1 } /* 遺 => 遗 */, {"遺芳餘烈", "遗芳余烈", -1 } /* 遺芳餘烈 => 遗芳余烈 */, {"遺葑菲采", "遗葑菲采", -1 } /* 遺葑菲采 => 遗葑菲采 */, {"遼", "辽", -1 } /* 遼 => 辽 */, {"邁", "迈", -1 } /* 邁 => 迈 */, {"還", "还", -1 } /* 還 => 还 */, {"還於", "还于", -1 } /* 還於 => 还于 */, {"還衝", "还冲", -1 } /* 還衝 => 还冲 */, {"邇", "迩", -1 } /* 邇 => 迩 */, {"邊", "边", -1 } /* 邊 => 边 */, {"邊角餘料", "边角余料", -1 } /* 邊角餘料 => 边角余料 */, {"邏", "逻", -1 } /* 邏 => 逻 */, {"邐", "逦", -1 } /* 邐 => 逦 */, {"邠縣", "彬县", -1 } /* 邠縣 => 彬县 */, {"那麼", "那么", -1 } /* 那麼 => 那么 */, {"那麼著", "那么着", -1 } /* 那麼著 => 那么着 */, {"邪辟", "邪辟", -1 } /* 邪辟 => 邪辟 */, {"邵廷采", "邵廷采", -1 } /* 邵廷采 => 邵廷采 */, {"郁烈", "郁烈", -1 } /* 郁烈 => 郁烈 */, {"郁穆", "郁穆", -1 } /* 郁穆 => 郁穆 */, {"郁閉", "郁闭", -1 } /* 郁閉 => 郁闭 */, {"郁馥", "郁馥", -1 } /* 郁馥 => 郁馥 */, {"郃陽", "合阳", -1 } /* 郃陽 => 合阳 */, {"郟", "郏", -1 } /* 郟 => 郏 */, {"郭采潔", "郭采洁", -1 } /* 郭采潔 => 郭采洁 */, {"郵", "邮", -1 } /* 郵 => 邮 */, {"郿縣", "眉县", -1 } /* 郿縣 => 眉县 */, {"鄆", "郓", -1 } /* 鄆 => 郓 */, {"鄉", "乡", -1 } /* 鄉 => 乡 */, {"鄉愿", "乡愿", -1 } /* 鄉愿 => 乡愿 */, {"鄉里", "乡里", -1 } /* 鄉里 => 乡里 */, {"鄒", "邹", -1 } /* 鄒 => 邹 */, {"鄔", "邬", -1 } /* 鄔 => 邬 */, {"鄖", "郧", -1 } /* 鄖 => 郧 */, {"鄙於", "鄙于", -1 } /* 鄙於 => 鄙于 */, {"鄜縣", "富县", -1 } /* 鄜縣 => 富县 */, {"鄠縣", "户县", -1 } /* 鄠縣 => 户县 */, {"鄧", "邓", -1 } /* 鄧 => 邓 */, {"鄭", "郑", -1 } /* 鄭 => 郑 */, {"鄭凱云", "郑凯云", -1 } /* 鄭凱云 => 郑凯云 */, {"鄰", "邻", -1 } /* 鄰 => 邻 */, {"鄲", "郸", -1 } /* 鄲 => 郸 */, {"鄴", "邺", -1 } /* 鄴 => 邺 */, {"鄶", "郐", -1 } /* 鄶 => 郐 */, {"鄺", "邝", -1 } /* 鄺 => 邝 */, {"酆都", "丰都", -1 } /* 酆都 => 丰都 */, {"酇", "酂", -1 } /* 酇 => 酂 */, {"酈", "郦", -1 } /* 酈 => 郦 */, {"配合著", "配合着", -1 } /* 配合著 => 配合着 */, {"酒杯", "酒杯", -1 } /* 酒杯 => 酒杯 */, {"酒麴", "酒曲", -1 } /* 酒麴 => 酒曲 */, {"醋罈", "醋坛", -1 } /* 醋罈 => 醋坛 */, {"醖", "酝", -1 } /* 醖 => 酝 */, {"醜", "丑", -1 } /* 醜 => 丑 */, {"醞", "酝", -1 } /* 醞 => 酝 */, {"醞藉", "酝借", -1 } /* 醞藉 => 酝借 */, {"醞釀著", "酝酿着", -1 } /* 醞釀著 => 酝酿着 */, {"醫", "医", -1 } /* 醫 => 医 */, {"醯胺", "酰胺", -1 } /* 醯胺 => 酰胺 */, {"醱", "酦", -1 } /* 醱 => 酦 */, {"醴泉", "礼泉", -1 } /* 醴泉 => 礼泉 */, {"釀", "酿", -1 } /* 釀 => 酿 */, {"釁", "衅", -1 } /* 釁 => 衅 */, {"釃", "酾", -1 } /* 釃 => 酾 */, {"釅", "酽", -1 } /* 釅 => 酽 */, {"采及葑菲", "采及葑菲", -1 } /* 采及葑菲 => 采及葑菲 */, {"采地", "采地", -1 } /* 采地 => 采地 */, {"采女", "采女", -1 } /* 采女 => 采女 */, {"采於", "采于", -1 } /* 采於 => 采于 */, {"采烈", "采烈", -1 } /* 采烈 => 采烈 */, {"采石之役", "采石之役", -1 } /* 采石之役 => 采石之役 */, {"采石之戰", "采石之战", -1 } /* 采石之戰 => 采石之战 */, {"采石磯", "采石矶", -1 } /* 采石磯 => 采石矶 */, {"采章", "采章", -1 } /* 采章 => 采章 */, {"采聲", "采声", -1 } /* 采聲 => 采声 */, {"采色", "采色", -1 } /* 采色 => 采色 */, {"采菲", "采菲", -1 } /* 采菲 => 采菲 */, {"采葑", "采葑", -1 } /* 采葑 => 采葑 */, {"采邑", "采邑", -1 } /* 采邑 => 采邑 */, {"采采", "采采", -1 } /* 采采 => 采采 */, {"采頤", "采颐", -1 } /* 采頤 => 采颐 */, {"釋", "释", -1 } /* 釋 => 释 */, {"重摺", "重折", -1 } /* 重摺 => 重折 */, {"重於", "重于", -1 } /* 重於 => 重于 */, {"重複", "重复", -1 } /* 重複 => 重复 */, {"釐", "厘", -1 } /* 釐 => 厘 */, {"金夏沙", "金沙萨", -1 } /* 金夏沙 => 金沙萨 */, {"金斗", "金斗", -1 } /* 金斗 => 金斗 */, {"金錶", "金表", -1 } /* 金錶 => 金表 */, {"釒", "钅", -1 } /* 釒 => 钅 */, {"釓", "钆", -1 } /* 釓 => 钆 */, {"釔", "钇", -1 } /* 釔 => 钇 */, {"釕", "钌", -1 } /* 釕 => 钌 */, {"釗", "钊", -1 } /* 釗 => 钊 */, {"釘", "钉", -1 } /* 釘 => 钉 */, {"釙", "钋", -1 } /* 釙 => 钋 */, {"針", "针", -1 } /* 針 => 针 */, {"釣", "钓", -1 } /* 釣 => 钓 */, {"釤", "钐", -1 } /* 釤 => 钐 */, {"釧", "钏", -1 } /* 釧 => 钏 */, {"釩", "钒", -1 } /* 釩 => 钒 */, {"釵", "钗", -1 } /* 釵 => 钗 */, {"釷", "钍", -1 } /* 釷 => 钍 */, {"釹", "钕", -1 } /* 釹 => 钕 */, {"釺", "钎", -1 } /* 釺 => 钎 */, {"釾", "䥺", -1 } /* 釾 => 䥺 */, {"鈀", "钯", -1 } /* 鈀 => 钯 */, {"鈁", "钫", -1 } /* 鈁 => 钫 */, {"鈃", "钘", -1 } /* 鈃 => 钘 */, {"鈄", "钭", -1 } /* 鈄 => 钭 */, {"鈈", "钚", -1 } /* 鈈 => 钚 */, {"鈉", "钠", -1 } /* 鈉 => 钠 */, {"鈍", "钝", -1 } /* 鈍 => 钝 */, {"鈎", "钩", -1 } /* 鈎 => 钩 */, {"鈐", "钤", -1 } /* 鈐 => 钤 */, {"鈑", "钣", -1 } /* 鈑 => 钣 */, {"鈒", "钑", -1 } /* 鈒 => 钑 */, {"鈔", "钞", -1 } /* 鈔 => 钞 */, {"鈕", "钮", -1 } /* 鈕 => 钮 */, {"鈞", "钧", -1 } /* 鈞 => 钧 */, {"鈣", "钙", -1 } /* 鈣 => 钙 */, {"鈥", "钬", -1 } /* 鈥 => 钬 */, {"鈦", "钛", -1 } /* 鈦 => 钛 */, {"鈧", "钪", -1 } /* 鈧 => 钪 */, {"鈮", "铌", -1 } /* 鈮 => 铌 */, {"鈰", "铈", -1 } /* 鈰 => 铈 */, {"鈳", "钶", -1 } /* 鈳 => 钶 */, {"鈴", "铃", -1 } /* 鈴 => 铃 */, {"鈷", "钴", -1 } /* 鈷 => 钴 */, {"鈸", "钹", -1 } /* 鈸 => 钹 */, {"鈹", "铍", -1 } /* 鈹 => 铍 */, {"鈺", "钰", -1 } /* 鈺 => 钰 */, {"鈽", "钸", -1 } /* 鈽 => 钸 */, {"鈾", "铀", -1 } /* 鈾 => 铀 */, {"鈿", "钿", -1 } /* 鈿 => 钿 */, {"鉀", "钾", -1 } /* 鉀 => 钾 */, {"鉅", "钜", -1 } /* 鉅 => 钜 */, {"鉈", "铊", -1 } /* 鉈 => 铊 */, {"鉉", "铉", -1 } /* 鉉 => 铉 */, {"鉋", "铇", -1 } /* 鉋 => 铇 */, {"鉍", "铋", -1 } /* 鉍 => 铋 */, {"鉑", "铂", -1 } /* 鉑 => 铂 */, {"鉕", "钷", -1 } /* 鉕 => 钷 */, {"鉗", "钳", -1 } /* 鉗 => 钳 */, {"鉚", "铆", -1 } /* 鉚 => 铆 */, {"鉛", "铅", -1 } /* 鉛 => 铅 */, {"鉞", "钺", -1 } /* 鉞 => 钺 */, {"鉢", "钵", -1 } /* 鉢 => 钵 */, {"鉤", "钩", -1 } /* 鉤 => 钩 */, {"鉦", "钲", -1 } /* 鉦 => 钲 */, {"鉬", "钼", -1 } /* 鉬 => 钼 */, {"鉭", "钽", -1 } /* 鉭 => 钽 */, {"鉶", "铏", -1 } /* 鉶 => 铏 */, {"鉸", "铰", -1 } /* 鉸 => 铰 */, {"鉺", "铒", -1 } /* 鉺 => 铒 */, {"鉻", "铬", -1 } /* 鉻 => 铬 */, {"鉿", "铪", -1 } /* 鉿 => 铪 */, {"銀", "银", -1 } /* 銀 => 银 */, {"銀硃", "银朱", -1 } /* 銀硃 => 银朱 */, {"銃", "铳", -1 } /* 銃 => 铳 */, {"銅", "铜", -1 } /* 銅 => 铜 */, {"銍", "铚", -1 } /* 銍 => 铚 */, {"銑", "铣", -1 } /* 銑 => 铣 */, {"銓", "铨", -1 } /* 銓 => 铨 */, {"銖", "铢", -1 } /* 銖 => 铢 */, {"銘", "铭", -1 } /* 銘 => 铭 */, {"銚", "铫", -1 } /* 銚 => 铫 */, {"銛", "铦", -1 } /* 銛 => 铦 */, {"銜", "衔", -1 } /* 銜 => 衔 */, {"銠", "铑", -1 } /* 銠 => 铑 */, {"銣", "铷", -1 } /* 銣 => 铷 */, {"銥", "铱", -1 } /* 銥 => 铱 */, {"銦", "铟", -1 } /* 銦 => 铟 */, {"銨", "铵", -1 } /* 銨 => 铵 */, {"銩", "铥", -1 } /* 銩 => 铥 */, {"銪", "铕", -1 } /* 銪 => 铕 */, {"銫", "铯", -1 } /* 銫 => 铯 */, {"銬", "铐", -1 } /* 銬 => 铐 */, {"銱", "铞", -1 } /* 銱 => 铞 */, {"銳", "锐", -1 } /* 銳 => 锐 */, {"銷", "销", -1 } /* 銷 => 销 */, {"銹", "锈", -1 } /* 銹 => 锈 */, {"銻", "锑", -1 } /* 銻 => 锑 */, {"銼", "锉", -1 } /* 銼 => 锉 */, {"鋁", "铝", -1 } /* 鋁 => 铝 */, {"鋃", "锒", -1 } /* 鋃 => 锒 */, {"鋅", "锌", -1 } /* 鋅 => 锌 */, {"鋇", "钡", -1 } /* 鋇 => 钡 */, {"鋌", "铤", -1 } /* 鋌 => 铤 */, {"鋏", "铗", -1 } /* 鋏 => 铗 */, {"鋒", "锋", -1 } /* 鋒 => 锋 */, {"鋙", "铻", -1 } /* 鋙 => 铻 */, {"鋝", "锊", -1 } /* 鋝 => 锊 */, {"鋟", "锓", -1 } /* 鋟 => 锓 */, {"鋣", "铘", -1 } /* 鋣 => 铘 */, {"鋤", "锄", -1 } /* 鋤 => 锄 */, {"鋥", "锃", -1 } /* 鋥 => 锃 */, {"鋦", "锔", -1 } /* 鋦 => 锔 */, {"鋨", "锇", -1 } /* 鋨 => 锇 */, {"鋩", "铓", -1 } /* 鋩 => 铓 */, {"鋪", "铺", -1 } /* 鋪 => 铺 */, {"鋭", "锐", -1 } /* 鋭 => 锐 */, {"鋮", "铖", -1 } /* 鋮 => 铖 */, {"鋯", "锆", -1 } /* 鋯 => 锆 */, {"鋰", "锂", -1 } /* 鋰 => 锂 */, {"鋱", "铽", -1 } /* 鋱 => 铽 */, {"鋶", "锍", -1 } /* 鋶 => 锍 */, {"鋸", "锯", -1 } /* 鋸 => 锯 */, {"鋼", "钢", -1 } /* 鋼 => 钢 */, {"鋼樑", "钢梁", -1 } /* 鋼樑 => 钢梁 */, {"錁", "锞", -1 } /* 錁 => 锞 */, {"錄", "录", -1 } /* 錄 => 录 */, {"錄著", "录着", -1 } /* 錄著 => 录着 */, {"錆", "锖", -1 } /* 錆 => 锖 */, {"錇", "锫", -1 } /* 錇 => 锫 */, {"錈", "锩", -1 } /* 錈 => 锩 */, {"錏", "铔", -1 } /* 錏 => 铔 */, {"錐", "锥", -1 } /* 錐 => 锥 */, {"錒", "锕", -1 } /* 錒 => 锕 */, {"錕", "锟", -1 } /* 錕 => 锟 */, {"錘", "锤", -1 } /* 錘 => 锤 */, {"錙", "锱", -1 } /* 錙 => 锱 */, {"錚", "铮", -1 } /* 錚 => 铮 */, {"錛", "锛", -1 } /* 錛 => 锛 */, {"錟", "锬", -1 } /* 錟 => 锬 */, {"錠", "锭", -1 } /* 錠 => 锭 */, {"錡", "锜", -1 } /* 錡 => 锜 */, {"錢", "钱", -1 } /* 錢 => 钱 */, {"錢鍾書", "钱钟书", -1 } /* 錢鍾書 => 钱钟书 */, {"錦", "锦", -1 } /* 錦 => 锦 */, {"錨", "锚", -1 } /* 錨 => 锚 */, {"錩", "锠", -1 } /* 錩 => 锠 */, {"錫", "锡", -1 } /* 錫 => 锡 */, {"錮", "锢", -1 } /* 錮 => 锢 */, {"錯", "错", -1 } /* 錯 => 错 */, {"録", "录", -1 } /* 録 => 录 */, {"錳", "锰", -1 } /* 錳 => 锰 */, {"錶", "表", -1 } /* 錶 => 表 */, {"錶小檗鹼", "表小檗碱", -1 } /* 錶小檗鹼 => 表小檗碱 */, {"錶帶", "表带", -1 } /* 錶帶 => 表带 */, {"錶店", "表店", -1 } /* 錶店 => 表店 */, {"錶盤", "表盘", -1 } /* 錶盤 => 表盘 */, {"錶蒙子", "表蒙子", -1 } /* 錶蒙子 => 表蒙子 */, {"錶針", "表针", -1 } /* 錶針 => 表针 */, {"錶鏈", "表链", -1 } /* 錶鏈 => 表链 */, {"錸", "铼", -1 } /* 錸 => 铼 */, {"鍀", "锝", -1 } /* 鍀 => 锝 */, {"鍁", "锨", -1 } /* 鍁 => 锨 */, {"鍃", "锪", -1 } /* 鍃 => 锪 */, {"鍆", "钔", -1 } /* 鍆 => 钔 */, {"鍇", "锴", -1 } /* 鍇 => 锴 */, {"鍈", "锳", -1 } /* 鍈 => 锳 */, {"鍋", "锅", -1 } /* 鍋 => 锅 */, {"鍍", "镀", -1 } /* 鍍 => 镀 */, {"鍔", "锷", -1 } /* 鍔 => 锷 */, {"鍘", "铡", -1 } /* 鍘 => 铡 */, {"鍛", "锻", -1 } /* 鍛 => 锻 */, {"鍛鍾", "锻锺", -1 } /* 鍛鍾 => 锻锺 */, {"鍠", "锽", -1 } /* 鍠 => 锽 */, {"鍤", "锸", -1 } /* 鍤 => 锸 */, {"鍥", "锲", -1 } /* 鍥 => 锲 */, {"鍥而不捨", "锲而不舍", -1 } /* 鍥而不捨 => 锲而不舍 */, {"鍩", "锘", -1 } /* 鍩 => 锘 */, {"鍬", "锹", -1 } /* 鍬 => 锹 */, {"鍰", "锾", -1 } /* 鍰 => 锾 */, {"鍵", "键", -1 } /* 鍵 => 键 */, {"鍶", "锶", -1 } /* 鍶 => 锶 */, {"鍺", "锗", -1 } /* 鍺 => 锗 */, {"鍾", "锺", -1 } /* 鍾 => 锺 */, {"鍾欣桐", "钟欣桐", -1 } /* 鍾欣桐 => 钟欣桐 */, {"鍾無艷", "钟无艳", -1 } /* 鍾無艷 => 钟无艳 */, {"鍾鍛", "锺锻", -1 } /* 鍾鍛 => 锺锻 */, {"鎂", "镁", -1 } /* 鎂 => 镁 */, {"鎄", "锿", -1 } /* 鎄 => 锿 */, {"鎇", "镅", -1 } /* 鎇 => 镅 */, {"鎊", "镑", -1 } /* 鎊 => 镑 */, {"鎌倉", "镰仓", -1 } /* 鎌倉 => 镰仓 */, {"鎔", "镕", -1 } /* 鎔 => 镕 */, {"鎖", "锁", -1 } /* 鎖 => 锁 */, {"鎘", "镉", -1 } /* 鎘 => 镉 */, {"鎚", "锤", -1 } /* 鎚 => 锤 */, {"鎛", "镈", -1 } /* 鎛 => 镈 */, {"鎡", "镃", -1 } /* 鎡 => 镃 */, {"鎢", "钨", -1 } /* 鎢 => 钨 */, {"鎣", "蓥", -1 } /* 鎣 => 蓥 */, {"鎦", "镏", -1 } /* 鎦 => 镏 */, {"鎧", "铠", -1 } /* 鎧 => 铠 */, {"鎩", "铩", -1 } /* 鎩 => 铩 */, {"鎪", "锼", -1 } /* 鎪 => 锼 */, {"鎬", "镐", -1 } /* 鎬 => 镐 */, {"鎮", "镇", -1 } /* 鎮 => 镇 */, {"鎰", "镒", -1 } /* 鎰 => 镒 */, {"鎳", "镍", -1 } /* 鎳 => 镍 */, {"鎵", "镓", -1 } /* 鎵 => 镓 */, {"鎸", "镌", -1 } /* 鎸 => 镌 */, {"鎿", "镎", -1 } /* 鎿 => 镎 */, {"鏃", "镞", -1 } /* 鏃 => 镞 */, {"鏇", "旋", -1 } /* 鏇 => 旋 */, {"鏇", "镟", -1 } /* 鏇 => 镟 */, {"鏈", "链", -1 } /* 鏈 => 链 */, {"鏌", "镆", -1 } /* 鏌 => 镆 */, {"鏍", "镙", -1 } /* 鏍 => 镙 */, {"鏐", "镠", -1 } /* 鏐 => 镠 */, {"鏑", "镝", -1 } /* 鏑 => 镝 */, {"鏗", "铿", -1 } /* 鏗 => 铿 */, {"鏘", "锵", -1 } /* 鏘 => 锵 */, {"鏜", "镗", -1 } /* 鏜 => 镗 */, {"鏝", "镘", -1 } /* 鏝 => 镘 */, {"鏞", "镛", -1 } /* 鏞 => 镛 */, {"鏟", "铲", -1 } /* 鏟 => 铲 */, {"鏡", "镜", -1 } /* 鏡 => 镜 */, {"鏢", "镖", -1 } /* 鏢 => 镖 */, {"鏤", "镂", -1 } /* 鏤 => 镂 */, {"鏨", "錾", -1 } /* 鏨 => 錾 */, {"鏰", "镚", -1 } /* 鏰 => 镚 */, {"鏵", "铧", -1 } /* 鏵 => 铧 */, {"鏷", "镤", -1 } /* 鏷 => 镤 */, {"鏹", "镪", -1 } /* 鏹 => 镪 */, {"鏺", "䥽", -1 } /* 鏺 => 䥽 */, {"鏽", "锈", -1 } /* 鏽 => 锈 */, {"鏽病", "锈病", -1 } /* 鏽病 => 锈病 */, {"鏽菌", "锈菌", -1 } /* 鏽菌 => 锈菌 */, {"鏽蝕", "锈蚀", -1 } /* 鏽蝕 => 锈蚀 */, {"鐃", "铙", -1 } /* 鐃 => 铙 */, {"鐋", "铴", -1 } /* 鐋 => 铴 */, {"鐐", "镣", -1 } /* 鐐 => 镣 */, {"鐒", "铹", -1 } /* 鐒 => 铹 */, {"鐓", "镦", -1 } /* 鐓 => 镦 */, {"鐔", "镡", -1 } /* 鐔 => 镡 */, {"鐘", "钟", -1 } /* 鐘 => 钟 */, {"鐙", "镫", -1 } /* 鐙 => 镫 */, {"鐝", "镢", -1 } /* 鐝 => 镢 */, {"鐠", "镨", -1 } /* 鐠 => 镨 */, {"鐥", "䦅", -1 } /* 鐥 => 䦅 */, {"鐦", "锎", -1 } /* 鐦 => 锎 */, {"鐧", "锏", -1 } /* 鐧 => 锏 */, {"鐨", "镄", -1 } /* 鐨 => 镄 */, {"鐫", "镌", -1 } /* 鐫 => 镌 */, {"鐮", "镰", -1 } /* 鐮 => 镰 */, {"鐯", "䦃", -1 } /* 鐯 => 䦃 */, {"鐲", "镯", -1 } /* 鐲 => 镯 */, {"鐳", "镭", -1 } /* 鐳 => 镭 */, {"鐵", "铁", -1 } /* 鐵 => 铁 */, {"鐵鏽", "铁锈", -1 } /* 鐵鏽 => 铁锈 */, {"鐵驪", "铁力", -1 } /* 鐵驪 => 铁力 */, {"鐶", "镮", -1 } /* 鐶 => 镮 */, {"鐸", "铎", -1 } /* 鐸 => 铎 */, {"鐺", "铛", -1 } /* 鐺 => 铛 */, {"鐿", "镱", -1 } /* 鐿 => 镱 */, {"鑄", "铸", -1 } /* 鑄 => 铸 */, {"鑊", "镬", -1 } /* 鑊 => 镬 */, {"鑌", "镔", -1 } /* 鑌 => 镔 */, {"鑑", "鉴", -1 } /* 鑑 => 鉴 */, {"鑒", "鉴", -1 } /* 鑒 => 鉴 */, {"鑒於", "鉴于", -1 } /* 鑒於 => 鉴于 */, {"鑔", "镲", -1 } /* 鑔 => 镲 */, {"鑕", "锧", -1 } /* 鑕 => 锧 */, {"鑞", "镴", -1 } /* 鑞 => 镴 */, {"鑠", "铄", -1 } /* 鑠 => 铄 */, {"鑣", "镳", -1 } /* 鑣 => 镳 */, {"鑥", "镥", -1 } /* 鑥 => 镥 */, {"鑭", "镧", -1 } /* 鑭 => 镧 */, {"鑰", "钥", -1 } /* 鑰 => 钥 */, {"鑱", "镵", -1 } /* 鑱 => 镵 */, {"鑲", "镶", -1 } /* 鑲 => 镶 */, {"鑷", "镊", -1 } /* 鑷 => 镊 */, {"鑹", "镩", -1 } /* 鑹 => 镩 */, {"鑼", "锣", -1 } /* 鑼 => 锣 */, {"鑽", "钻", -1 } /* 鑽 => 钻 */, {"鑾", "銮", -1 } /* 鑾 => 銮 */, {"鑿", "凿", -1 } /* 鑿 => 凿 */, {"钁", "䦆", -1 } /* 钁 => 䦆 */, {"钁", "镢", -1 } /* 钁 => 镢 */, {"钂", "镋", -1 } /* 钂 => 镋 */, {"長", "长", -1 } /* 長 => 长 */, {"長於", "长于", -1 } /* 長於 => 长于 */, {"長春新鹼", "长春新碱", -1 } /* 長春新鹼 => 长春新碱 */, {"長春花鹼", "长春花碱", -1 } /* 長春花鹼 => 长春花碱 */, {"長春鹼", "长春碱", -1 } /* 長春鹼 => 长春碱 */, {"長著", "长着", -1 } /* 長著 => 长着 */, {"長鬚鯨", "长须鲸", -1 } /* 長鬚鯨 => 长须鲸 */, {"門", "门", -1 } /* 門 => 门 */, {"門帘", "门帘", -1 } /* 門帘 => 门帘 */, {"門斗", "门斗", -1 } /* 門斗 => 门斗 */, {"閂", "闩", -1 } /* 閂 => 闩 */, {"閃", "闪", -1 } /* 閃 => 闪 */, {"閃著", "闪着", -1 } /* 閃著 => 闪着 */, {"閆", "闫", -1 } /* 閆 => 闫 */, {"閈", "闬", -1 } /* 閈 => 闬 */, {"閉", "闭", -1 } /* 閉 => 闭 */, {"閉著", "闭着", -1 } /* 閉著 => 闭着 */, {"開", "开", -1 } /* 開 => 开 */, {"開伙", "开伙", -1 } /* 開伙 => 开伙 */, {"開天闢地", "开天辟地", -1 } /* 開天闢地 => 开天辟地 */, {"開著", "开着", -1 } /* 開著 => 开着 */, {"開誠佈公", "开诚布公", -1 } /* 開誠佈公 => 开诚布公 */, {"開闢", "开辟", -1 } /* 開闢 => 开辟 */, {"開鬨", "开哄", -1 } /* 開鬨 => 开哄 */, {"閌", "闶", -1 } /* 閌 => 闶 */, {"閎", "闳", -1 } /* 閎 => 闳 */, {"閏", "闰", -1 } /* 閏 => 闰 */, {"閑", "闲", -1 } /* 閑 => 闲 */, {"間", "间", -1 } /* 間 => 间 */, {"閔", "闵", -1 } /* 閔 => 闵 */, {"閔采爾", "闵采尔", -1 } /* 閔采爾 => 闵采尔 */, {"閘", "闸", -1 } /* 閘 => 闸 */, {"閙", "闹", -1 } /* 閙 => 闹 */, {"閡", "阂", -1 } /* 閡 => 阂 */, {"閣", "阁", -1 } /* 閣 => 阁 */, {"閤", "合", -1 } /* 閤 => 合 */, {"閥", "阀", -1 } /* 閥 => 阀 */, {"閧", "哄", -1 } /* 閧 => 哄 */, {"閨", "闺", -1 } /* 閨 => 闺 */, {"閩", "闽", -1 } /* 閩 => 闽 */, {"閫", "阃", -1 } /* 閫 => 阃 */, {"閬", "阆", -1 } /* 閬 => 阆 */, {"閭", "闾", -1 } /* 閭 => 闾 */, {"閱", "阅", -1 } /* 閱 => 阅 */, {"閲", "阅", -1 } /* 閲 => 阅 */, {"閶", "阊", -1 } /* 閶 => 阊 */, {"閹", "阉", -1 } /* 閹 => 阉 */, {"閻", "阎", -1 } /* 閻 => 阎 */, {"閼", "阏", -1 } /* 閼 => 阏 */, {"閽", "阍", -1 } /* 閽 => 阍 */, {"閾", "阈", -1 } /* 閾 => 阈 */, {"閿", "阌", -1 } /* 閿 => 阌 */, {"闃", "阒", -1 } /* 闃 => 阒 */, {"闆", "板", -1 } /* 闆 => 板 */, {"闈", "闱", -1 } /* 闈 => 闱 */, {"闊", "阔", -1 } /* 闊 => 阔 */, {"闋", "阕", -1 } /* 闋 => 阕 */, {"闌", "阑", -1 } /* 闌 => 阑 */, {"闍", "阇", -1 } /* 闍 => 阇 */, {"闐", "阗", -1 } /* 闐 => 阗 */, {"闒", "阘", -1 } /* 闒 => 阘 */, {"闓", "闿", -1 } /* 闓 => 闿 */, {"闔", "阖", -1 } /* 闔 => 阖 */, {"闕", "阙", -1 } /* 闕 => 阙 */, {"闖", "闯", -1 } /* 闖 => 闯 */, {"關", "关", -1 } /* 關 => 关 */, {"關係", "关系", -1 } /* 關係 => 关系 */, {"關係著", "关系着", -1 } /* 關係著 => 关系着 */, {"關於", "关于", -1 } /* 關於 => 关于 */, {"關注", "关注", -1 } /* 關注 => 关注 */, {"關著", "关着", -1 } /* 關著 => 关着 */, {"闞", "阚", -1 } /* 闞 => 阚 */, {"闠", "阓", -1 } /* 闠 => 阓 */, {"闡", "阐", -1 } /* 闡 => 阐 */, {"闢", "辟", -1 } /* 闢 => 辟 */, {"闢地", "辟地", -1 } /* 闢地 => 辟地 */, {"闤", "阛", -1 } /* 闤 => 阛 */, {"闥", "闼", -1 } /* 闥 => 闼 */, {"防寫", "写保护", -1 } /* 防寫 => 写保护 */, {"防禦", "防御", -1 } /* 防禦 => 防御 */, {"防範", "防范", -1 } /* 防範 => 防范 */, {"防鏽", "防锈", -1 } /* 防鏽 => 防锈 */, {"阿什克隆", "阿什克隆", -1 } /* 阿什克隆 => 阿什克隆 */, {"阿必尚", "阿比让", -1 } /* 阿必尚 => 阿比让 */, {"阿斗", "阿斗", -1 } /* 阿斗 => 阿斗 */, {"附於", "附于", -1 } /* 附於 => 附于 */, {"陘", "陉", -1 } /* 陘 => 陉 */, {"陝", "陕", -1 } /* 陝 => 陕 */, {"陣", "阵", -1 } /* 陣 => 阵 */, {"除舊佈新", "除旧布新", -1 } /* 除舊佈新 => 除旧布新 */, {"陪著", "陪着", -1 } /* 陪著 => 陪着 */, {"陰", "阴", -1 } /* 陰 => 阴 */, {"陰曆", "阴历", -1 } /* 陰曆 => 阴历 */, {"陰郁", "阴郁", -1 } /* 陰郁 => 阴郁 */, {"陳", "陈", -1 } /* 陳 => 陈 */, {"陸", "陆", -1 } /* 陸 => 陆 */, {"陽", "阳", -1 } /* 陽 => 阳 */, {"陽曆", "阳历", -1 } /* 陽曆 => 阳历 */, {"隉", "陧", -1 } /* 隉 => 陧 */, {"隊", "队", -1 } /* 隊 => 队 */, {"階", "阶", -1 } /* 階 => 阶 */, {"隔著", "隔着", -1 } /* 隔著 => 隔着 */, {"隕", "陨", -1 } /* 隕 => 陨 */, {"際", "际", -1 } /* 際 => 际 */, {"隨", "随", -1 } /* 隨 => 随 */, {"隨著", "随着", -1 } /* 隨著 => 随着 */, {"險", "险", -1 } /* 險 => 险 */, {"險著", "险着", -1 } /* 險著 => 险着 */, {"隱", "隐", -1 } /* 隱 => 隐 */, {"隴", "陇", -1 } /* 隴 => 陇 */, {"隷", "隶", -1 } /* 隷 => 隶 */, {"隻", "只", -1 } /* 隻 => 只 */, {"雅爾達", "雅尔塔", -1 } /* 雅爾達 => 雅尔塔 */, {"雅緻", "雅致", -1 } /* 雅緻 => 雅致 */, {"集於", "集于", -1 } /* 集於 => 集于 */, {"雋", "隽", -1 } /* 雋 => 隽 */, {"雒南", "洛南", -1 } /* 雒南 => 洛南 */, {"雖", "虽", -1 } /* 雖 => 虽 */, {"雙", "双", -1 } /* 雙 => 双 */, {"雙摺", "双折", -1 } /* 雙摺 => 双折 */, {"雛", "雏", -1 } /* 雛 => 雏 */, {"雜", "杂", -1 } /* 雜 => 杂 */, {"雜訊", "噪声", -1 } /* 雜訊 => 噪声 */, {"雜誌", "杂志", -1 } /* 雜誌 => 杂志 */, {"雞", "鸡", -1 } /* 雞 => 鸡 */, {"雞姦", "鸡奸", -1 } /* 雞姦 => 鸡奸 */, {"雞絲", "鸡丝", -1 } /* 雞絲 => 鸡丝 */, {"離", "离", -1 } /* 離 => 离 */, {"難", "难", -1 } /* 難 => 难 */, {"難捨", "难舍", -1 } /* 難捨 => 难舍 */, {"難於", "难于", -1 } /* 難於 => 难于 */, {"雩都", "于都", -1 } /* 雩都 => 于都 */, {"雪糕", "雪糕", -1 } /* 雪糕 => 雪糕 */, {"雲", "云", -1 } /* 雲 => 云 */, {"雲笈七籤", "云笈七签", -1 } /* 雲笈七籤 => 云笈七签 */, {"零餘子", "零余子", -1 } /* 零餘子 => 零余子 */, {"雷根", "里根", -1 } /* 雷根 => 里根 */, {"電", "电", -1 } /* 電 => 电 */, {"電子錶", "电子表", -1 } /* 電子錶 => 电子表 */, {"電影集團", "电影集团", -1 } /* 電影集團 => 电影集团 */, {"電腦軟體", "电脑软件", -1 } /* 電腦軟體 => 电脑软件 */, {"電衝", "电冲", -1 } /* 電衝 => 电冲 */, {"電錶", "电表", -1 } /* 電錶 => 电表 */, {"震蕩", "震荡", -1 } /* 震蕩 => 震荡 */, {"霢", "霡", -1 } /* 霢 => 霡 */, {"霧", "雾", -1 } /* 霧 => 雾 */, {"霸佔", "霸占", -1 } /* 霸佔 => 霸占 */, {"霽", "霁", -1 } /* 霽 => 霁 */, {"靂", "雳", -1 } /* 靂 => 雳 */, {"靄", "霭", -1 } /* 靄 => 霭 */, {"靆", "叇", -1 } /* 靆 => 叇 */, {"靈", "灵", -1 } /* 靈 => 灵 */, {"靉", "叆", -1 } /* 靉 => 叆 */, {"青於", "青于", -1 } /* 青於 => 青于 */, {"青朴", "青朴", -1 } /* 青朴 => 青朴 */, {"靚", "靓", -1 } /* 靚 => 靓 */, {"靜", "静", -1 } /* 靜 => 静 */, {"靜於", "静于", -1 } /* 靜於 => 静于 */, {"非同步", "异步", -1 } /* 非同步 => 异步 */, {"靨", "靥", -1 } /* 靨 => 靥 */, {"鞀", "鼗", -1 } /* 鞀 => 鼗 */, {"鞏", "巩", -1 } /* 鞏 => 巩 */, {"鞝", "绱", -1 } /* 鞝 => 绱 */, {"鞦", "秋", -1 } /* 鞦 => 秋 */, {"鞦韆", "秋千", -1 } /* 鞦韆 => 秋千 */, {"鞽", "鞒", -1 } /* 鞽 => 鞒 */, {"韁", "缰", -1 } /* 韁 => 缰 */, {"韃", "鞑", -1 } /* 韃 => 鞑 */, {"韆", "千", -1 } /* 韆 => 千 */, {"韉", "鞯", -1 } /* 韉 => 鞯 */, {"韋", "韦", -1 } /* 韋 => 韦 */, {"韌", "韧", -1 } /* 韌 => 韧 */, {"韌體", "固件", -1 } /* 韌體 => 固件 */, {"韍", "韨", -1 } /* 韍 => 韨 */, {"韓", "韩", -1 } /* 韓 => 韩 */, {"韓戰", "朝鲜战争", -1 } /* 韓戰 => 朝鲜战争 */, {"韙", "韪", -1 } /* 韙 => 韪 */, {"韜", "韬", -1 } /* 韜 => 韬 */, {"韞", "韫", -1 } /* 韞 => 韫 */, {"音效卡", "声卡", -1 } /* 音效卡 => 声卡 */, {"韶山衝", "韶山冲", -1 } /* 韶山衝 => 韶山冲 */, {"韻", "韵", -1 } /* 韻 => 韵 */, {"響", "响", -1 } /* 響 => 响 */, {"響於", "响于", -1 } /* 響於 => 响于 */, {"頁", "页", -1 } /* 頁 => 页 */, {"頂", "顶", -1 } /* 頂 => 顶 */, {"頃", "顷", -1 } /* 頃 => 顷 */, {"項", "项", -1 } /* 項 => 项 */, {"順", "顺", -1 } /* 順 => 顺 */, {"順著", "顺着", -1 } /* 順著 => 顺着 */, {"頇", "顸", -1 } /* 頇 => 顸 */, {"須", "须", -1 } /* 須 => 须 */, {"頊", "顼", -1 } /* 頊 => 顼 */, {"頌", "颂", -1 } /* 頌 => 颂 */, {"頎", "颀", -1 } /* 頎 => 颀 */, {"頏", "颃", -1 } /* 頏 => 颃 */, {"預", "预", -1 } /* 預 => 预 */, {"預設", "默认", -1 } /* 預設 => 默认 */, {"頑", "顽", -1 } /* 頑 => 顽 */, {"頒", "颁", -1 } /* 頒 => 颁 */, {"頒佈", "颁布", -1 } /* 頒佈 => 颁布 */, {"頓", "顿", -1 } /* 頓 => 顿 */, {"頗", "颇", -1 } /* 頗 => 颇 */, {"領", "领", -1 } /* 領 => 领 */, {"頜", "颌", -1 } /* 頜 => 颌 */, {"頡", "颉", -1 } /* 頡 => 颉 */, {"頤", "颐", -1 } /* 頤 => 颐 */, {"頦", "颏", -1 } /* 頦 => 颏 */, {"頭", "头", -1 } /* 頭 => 头 */, {"頭槌", "头球", -1 } /* 頭槌 => 头球 */, {"頮", "颒", -1 } /* 頮 => 颒 */, {"頰", "颊", -1 } /* 頰 => 颊 */, {"頰鬚", "颊须", -1 } /* 頰鬚 => 颊须 */, {"頲", "颋", -1 } /* 頲 => 颋 */, {"頴", "颕", -1 } /* 頴 => 颕 */, {"頷", "颔", -1 } /* 頷 => 颔 */, {"頸", "颈", -1 } /* 頸 => 颈 */, {"頹", "颓", -1 } /* 頹 => 颓 */, {"頻", "频", -1 } /* 頻 => 频 */, {"頽", "颓", -1 } /* 頽 => 颓 */, {"顆", "颗", -1 } /* 顆 => 颗 */, {"題", "题", -1 } /* 題 => 题 */, {"題签", "題籤", -1 } /* 題签 => 題籤 */, {"額", "额", -1 } /* 額 => 额 */, {"顎", "颚", -1 } /* 顎 => 颚 */, {"顏", "颜", -1 } /* 顏 => 颜 */, {"顒", "颙", -1 } /* 顒 => 颙 */, {"顓", "颛", -1 } /* 顓 => 颛 */, {"顔", "颜", -1 } /* 顔 => 颜 */, {"願", "愿", -1 } /* 願 => 愿 */, {"顙", "颡", -1 } /* 顙 => 颡 */, {"顛", "颠", -1 } /* 顛 => 颠 */, {"類", "类", -1 } /* 類 => 类 */, {"顢", "颟", -1 } /* 顢 => 颟 */, {"顥", "颢", -1 } /* 顥 => 颢 */, {"顧", "顾", -1 } /* 顧 => 顾 */, {"顫", "颤", -1 } /* 顫 => 颤 */, {"顬", "颥", -1 } /* 顬 => 颥 */, {"顯", "显", -1 } /* 顯 => 显 */, {"顰", "颦", -1 } /* 顰 => 颦 */, {"顱", "颅", -1 } /* 顱 => 颅 */, {"顳", "颞", -1 } /* 顳 => 颞 */, {"顴", "颧", -1 } /* 顴 => 颧 */, {"颌须", "頜鬚", -1 } /* 颌须 => 頜鬚 */, {"風", "风", -1 } /* 風 => 风 */, {"風土誌", "风土志", -1 } /* 風土誌 => 风土志 */, {"風斗", "风斗", -1 } /* 風斗 => 风斗 */, {"風物誌", "风物志", -1 } /* 風物誌 => 风物志 */, {"風範", "风范", -1 } /* 風範 => 风范 */, {"颭", "飐", -1 } /* 颭 => 飐 */, {"颮", "飑", -1 } /* 颮 => 飑 */, {"颯", "飒", -1 } /* 颯 => 飒 */, {"颱", "台", -1 } /* 颱 => 台 */, {"颳", "刮", -1 } /* 颳 => 刮 */, {"颶", "飓", -1 } /* 颶 => 飓 */, {"颸", "飔", -1 } /* 颸 => 飔 */, {"颺", "飏", -1 } /* 颺 => 飏 */, {"颻", "飖", -1 } /* 颻 => 飖 */, {"颼", "飕", -1 } /* 颼 => 飕 */, {"飀", "飗", -1 } /* 飀 => 飗 */, {"飄", "飘", -1 } /* 飄 => 飘 */, {"飄著", "飘着", -1 } /* 飄著 => 飘着 */, {"飄蕩", "飘荡", -1 } /* 飄蕩 => 飘荡 */, {"飆", "飙", -1 } /* 飆 => 飙 */, {"飈", "飚", -1 } /* 飈 => 飚 */, {"飛", "飞", -1 } /* 飛 => 飞 */, {"食慾", "食欲", -1 } /* 食慾 => 食欲 */, {"飠", "饣", -1 } /* 飠 => 饣 */, {"飢", "饥", -1 } /* 飢 => 饥 */, {"飣", "饤", -1 } /* 飣 => 饤 */, {"飥", "饦", -1 } /* 飥 => 饦 */, {"飩", "饨", -1 } /* 飩 => 饨 */, {"飪", "饪", -1 } /* 飪 => 饪 */, {"飫", "饫", -1 } /* 飫 => 饫 */, {"飭", "饬", -1 } /* 飭 => 饬 */, {"飯", "饭", -1 } /* 飯 => 饭 */, {"飯糰", "饭团", -1 } /* 飯糰 => 饭团 */, {"飯飽生餘事", "饭饱生余事", -1 } /* 飯飽生餘事 => 饭饱生余事 */, {"飲", "饮", -1 } /* 飲 => 饮 */, {"飴", "饴", -1 } /* 飴 => 饴 */, {"飼", "饲", -1 } /* 飼 => 饲 */, {"飽", "饱", -1 } /* 飽 => 饱 */, {"飾", "饰", -1 } /* 飾 => 饰 */, {"飿", "饳", -1 } /* 飿 => 饳 */, {"餃", "饺", -1 } /* 餃 => 饺 */, {"餄", "饸", -1 } /* 餄 => 饸 */, {"餅", "饼", -1 } /* 餅 => 饼 */, {"餉", "饷", -1 } /* 餉 => 饷 */, {"養", "养", -1 } /* 養 => 养 */, {"餌", "饵", -1 } /* 餌 => 饵 */, {"餎", "饹", -1 } /* 餎 => 饹 */, {"餏", "饻", -1 } /* 餏 => 饻 */, {"餑", "饽", -1 } /* 餑 => 饽 */, {"餒", "馁", -1 } /* 餒 => 馁 */, {"餓", "饿", -1 } /* 餓 => 饿 */, {"餕", "馂", -1 } /* 餕 => 馂 */, {"餖", "饾", -1 } /* 餖 => 饾 */, {"餘", "余", -1 } /* 餘 => 余 */, {"餘下", "余下", -1 } /* 餘下 => 余下 */, {"餘人", "余人", -1 } /* 餘人 => 余人 */, {"餘元", "余元", -1 } /* 餘元 => 余元 */, {"餘光中", "余光中", -1 } /* 餘光中 => 余光中 */, {"餘光分人", "余光分人", -1 } /* 餘光分人 => 余光分人 */, {"餘函數", "余函数", -1 } /* 餘函數 => 余函数 */, {"餘切", "余切", -1 } /* 餘切 => 余切 */, {"餘利", "余利", -1 } /* 餘利 => 余利 */, {"餘割", "余割", -1 } /* 餘割 => 余割 */, {"餘力", "余力", -1 } /* 餘力 => 余力 */, {"餘勇", "余勇", -1 } /* 餘勇 => 余勇 */, {"餘味", "余味", -1 } /* 餘味 => 余味 */, {"餘地", "余地", -1 } /* 餘地 => 余地 */, {"餘外", "余外", -1 } /* 餘外 => 余外 */, {"餘天", "余天", -1 } /* 餘天 => 余天 */, {"餘姚", "余姚", -1 } /* 餘姚 => 余姚 */, {"餘威", "余威", -1 } /* 餘威 => 余威 */, {"餘存", "余存", -1 } /* 餘存 => 余存 */, {"餘孽", "余孽", -1 } /* 餘孽 => 余孽 */, {"餘安安", "余安安", -1 } /* 餘安安 => 余安安 */, {"餘家", "余家", -1 } /* 餘家 => 余家 */, {"餘年", "余年", -1 } /* 餘年 => 余年 */, {"餘弦", "余弦", -1 } /* 餘弦 => 余弦 */, {"餘怒未消", "余怒未消", -1 } /* 餘怒未消 => 余怒未消 */, {"餘悸", "余悸", -1 } /* 餘悸 => 余悸 */, {"餘慶", "余庆", -1 } /* 餘慶 => 余庆 */, {"餘數", "余数", -1 } /* 餘數 => 余数 */, {"餘暇", "余暇", -1 } /* 餘暇 => 余暇 */, {"餘暉", "余晖", -1 } /* 餘暉 => 余晖 */, {"餘杭", "余杭", -1 } /* 餘杭 => 余杭 */, {"餘桃", "余桃", -1 } /* 餘桃 => 余桃 */, {"餘款", "余款", -1 } /* 餘款 => 余款 */, {"餘步", "余步", -1 } /* 餘步 => 余步 */, {"餘毒", "余毒", -1 } /* 餘毒 => 余毒 */, {"餘氯", "余氯", -1 } /* 餘氯 => 余氯 */, {"餘江", "余江", -1 } /* 餘江 => 余江 */, {"餘波", "余波", -1 } /* 餘波 => 余波 */, {"餘溫", "余温", -1 } /* 餘溫 => 余温 */, {"餘瀝", "余沥", -1 } /* 餘瀝 => 余沥 */, {"餘熱", "余热", -1 } /* 餘熱 => 余热 */, {"餘燼", "余烬", -1 } /* 餘燼 => 余烬 */, {"餘犯", "余犯", -1 } /* 餘犯 => 余犯 */, {"餘生", "余生", -1 } /* 餘生 => 余生 */, {"餘糧", "余粮", -1 } /* 餘糧 => 余粮 */, {"餘緯度", "余纬度", -1 } /* 餘緯度 => 余纬度 */, {"餘缺", "余缺", -1 } /* 餘缺 => 余缺 */, {"餘興", "余兴", -1 } /* 餘興 => 余兴 */, {"餘蓄", "余蓄", -1 } /* 餘蓄 => 余蓄 */, {"餘裕", "余裕", -1 } /* 餘裕 => 余裕 */, {"餘角", "余角", -1 } /* 餘角 => 余角 */, {"餘言", "余言", -1 } /* 餘言 => 余言 */, {"餘輝", "余辉", -1 } /* 餘輝 => 余辉 */, {"餘部", "余部", -1 } /* 餘部 => 余部 */, {"餘量", "余量", -1 } /* 餘量 => 余量 */, {"餘錢", "余钱", -1 } /* 餘錢 => 余钱 */, {"餘閑", "余闲", -1 } /* 餘閑 => 余闲 */, {"餘電", "余电", -1 } /* 餘電 => 余电 */, {"餘震", "余震", -1 } /* 餘震 => 余震 */, {"餘露成綺", "余露成绮", -1 } /* 餘露成綺 => 余露成绮 */, {"餘音", "余音", -1 } /* 餘音 => 余音 */, {"餘韻", "余韵", -1 } /* 餘韻 => 余韵 */, {"餘額", "余额", -1 } /* 餘額 => 余额 */, {"餘風", "余风", -1 } /* 餘風 => 余风 */, {"餘食贅行", "余食赘行", -1 } /* 餘食贅行 => 余食赘行 */, {"餘香滿口", "余香满口", -1 } /* 餘香滿口 => 余香满口 */, {"餘黨", "余党", -1 } /* 餘黨 => 余党 */, {"餚", "肴", -1 } /* 餚 => 肴 */, {"餛", "馄", -1 } /* 餛 => 馄 */, {"餜", "馃", -1 } /* 餜 => 馃 */, {"餞", "饯", -1 } /* 餞 => 饯 */, {"餡", "馅", -1 } /* 餡 => 馅 */, {"館", "馆", -1 } /* 館 => 馆 */, {"餱", "糇", -1 } /* 餱 => 糇 */, {"餳", "饧", -1 } /* 餳 => 饧 */, {"餵著", "喂着", -1 } /* 餵著 => 喂着 */, {"餶", "馉", -1 } /* 餶 => 馉 */, {"餷", "馇", -1 } /* 餷 => 馇 */, {"餺", "馎", -1 } /* 餺 => 馎 */, {"餼", "饩", -1 } /* 餼 => 饩 */, {"餾", "馏", -1 } /* 餾 => 馏 */, {"餿", "馊", -1 } /* 餿 => 馊 */, {"饁", "馌", -1 } /* 饁 => 馌 */, {"饃", "馍", -1 } /* 饃 => 馍 */, {"饅", "馒", -1 } /* 饅 => 馒 */, {"饈", "馐", -1 } /* 饈 => 馐 */, {"饉", "馑", -1 } /* 饉 => 馑 */, {"饊", "馓", -1 } /* 饊 => 馓 */, {"饋", "馈", -1 } /* 饋 => 馈 */, {"饌", "馔", -1 } /* 饌 => 馔 */, {"饑", "饥", -1 } /* 饑 => 饥 */, {"饑不擇食", "饥不择食", -1 } /* 饑不擇食 => 饥不择食 */, {"饑寒", "饥寒", -1 } /* 饑寒 => 饥寒 */, {"饑渴", "饥渴", -1 } /* 饑渴 => 饥渴 */, {"饑溺", "饥溺", -1 } /* 饑溺 => 饥溺 */, {"饑飽", "饥饱", -1 } /* 饑飽 => 饥饱 */, {"饑餓", "饥饿", -1 } /* 饑餓 => 饥饿 */, {"饒", "饶", -1 } /* 饒 => 饶 */, {"饗", "飨", -1 } /* 饗 => 飨 */, {"饜", "餍", -1 } /* 饜 => 餍 */, {"饞", "馋", -1 } /* 饞 => 馋 */, {"饟", "馕", -1 } /* 饟 => 馕 */, {"馀", "余", -1 } /* 馀 => 余 */, {"首碼", "前缀", -1 } /* 首碼 => 前缀 */, {"香山庄", "香山庄", -1 } /* 香山庄 => 香山庄 */, {"香郁", "香郁", -1 } /* 香郁 => 香郁 */, {"馥郁", "馥郁", -1 } /* 馥郁 => 馥郁 */, {"馬", "马", -1 } /* 馬 => 马 */, {"馬爾他", "马耳他", -1 } /* 馬爾他 => 马耳他 */, {"馬錶", "马表", -1 } /* 馬錶 => 马表 */, {"馬霍卡", "马略卡", -1 } /* 馬霍卡 => 马略卡 */, {"馭", "驭", -1 } /* 馭 => 驭 */, {"馮", "冯", -1 } /* 馮 => 冯 */, {"馱", "驮", -1 } /* 馱 => 驮 */, {"馳", "驰", -1 } /* 馳 => 驰 */, {"馴", "驯", -1 } /* 馴 => 驯 */, {"馹", "驲", -1 } /* 馹 => 驲 */, {"駁", "驳", -1 } /* 駁 => 驳 */, {"駐", "驻", -1 } /* 駐 => 驻 */, {"駑", "驽", -1 } /* 駑 => 驽 */, {"駒", "驹", -1 } /* 駒 => 驹 */, {"駔", "驵", -1 } /* 駔 => 驵 */, {"駕", "驾", -1 } /* 駕 => 驾 */, {"駘", "骀", -1 } /* 駘 => 骀 */, {"駘蕩", "骀荡", -1 } /* 駘蕩 => 骀荡 */, {"駙", "驸", -1 } /* 駙 => 驸 */, {"駛", "驶", -1 } /* 駛 => 驶 */, {"駝", "驼", -1 } /* 駝 => 驼 */, {"駟", "驷", -1 } /* 駟 => 驷 */, {"駡", "骂", -1 } /* 駡 => 骂 */, {"駢", "骈", -1 } /* 駢 => 骈 */, {"駭", "骇", -1 } /* 駭 => 骇 */, {"駰", "骃", -1 } /* 駰 => 骃 */, {"駱", "骆", -1 } /* 駱 => 骆 */, {"駸", "骎", -1 } /* 駸 => 骎 */, {"駿", "骏", -1 } /* 駿 => 骏 */, {"騁", "骋", -1 } /* 騁 => 骋 */, {"騂", "骍", -1 } /* 騂 => 骍 */, {"騅", "骓", -1 } /* 騅 => 骓 */, {"騌", "骔", -1 } /* 騌 => 骔 */, {"騍", "骒", -1 } /* 騍 => 骒 */, {"騎", "骑", -1 } /* 騎 => 骑 */, {"騎著", "骑着", -1 } /* 騎著 => 骑着 */, {"騏", "骐", -1 } /* 騏 => 骐 */, {"騖", "骛", -1 } /* 騖 => 骛 */, {"騙", "骗", -1 } /* 騙 => 骗 */, {"騤", "骙", -1 } /* 騤 => 骙 */, {"騫", "骞", -1 } /* 騫 => 骞 */, {"騭", "骘", -1 } /* 騭 => 骘 */, {"騮", "骝", -1 } /* 騮 => 骝 */, {"騰", "腾", -1 } /* 騰 => 腾 */, {"騰衝", "腾冲", -1 } /* 騰衝 => 腾冲 */, {"騶", "驺", -1 } /* 騶 => 驺 */, {"騷", "骚", -1 } /* 騷 => 骚 */, {"騸", "骟", -1 } /* 騸 => 骟 */, {"騾", "骡", -1 } /* 騾 => 骡 */, {"驀", "蓦", -1 } /* 驀 => 蓦 */, {"驁", "骜", -1 } /* 驁 => 骜 */, {"驂", "骖", -1 } /* 驂 => 骖 */, {"驃", "骠", -1 } /* 驃 => 骠 */, {"驄", "骢", -1 } /* 驄 => 骢 */, {"驅", "驱", -1 } /* 驅 => 驱 */, {"驅動程式", "驱动程序", -1 } /* 驅動程式 => 驱动程序 */, {"驊", "骅", -1 } /* 驊 => 骅 */, {"驌", "骕", -1 } /* 驌 => 骕 */, {"驍", "骁", -1 } /* 驍 => 骁 */, {"驏", "骣", -1 } /* 驏 => 骣 */, {"驕", "骄", -1 } /* 驕 => 骄 */, {"驗", "验", -1 } /* 驗 => 验 */, {"驚", "惊", -1 } /* 驚 => 惊 */, {"驛", "驿", -1 } /* 驛 => 驿 */, {"驟", "骤", -1 } /* 驟 => 骤 */, {"驢", "驴", -1 } /* 驢 => 驴 */, {"驤", "骧", -1 } /* 驤 => 骧 */, {"驥", "骥", -1 } /* 驥 => 骥 */, {"驦", "骦", -1 } /* 驦 => 骦 */, {"驪", "骊", -1 } /* 驪 => 骊 */, {"驫", "骉", -1 } /* 驫 => 骉 */, {"骨灰罈", "骨灰坛", -1 } /* 骨灰罈 => 骨灰坛 */, {"骯", "肮", -1 } /* 骯 => 肮 */, {"髏", "髅", -1 } /* 髏 => 髅 */, {"髒", "脏", -1 } /* 髒 => 脏 */, {"髒兮兮", "脏兮兮", -1 } /* 髒兮兮 => 脏兮兮 */, {"髒字", "脏字", -1 } /* 髒字 => 脏字 */, {"髒得", "脏得", -1 } /* 髒得 => 脏得 */, {"髒心", "脏心", -1 } /* 髒心 => 脏心 */, {"髒東西", "脏东西", -1 } /* 髒東西 => 脏东西 */, {"髒水", "脏水", -1 } /* 髒水 => 脏水 */, {"髒的", "脏的", -1 } /* 髒的 => 脏的 */, {"髒詞", "脏词", -1 } /* 髒詞 => 脏词 */, {"體", "体", -1 } /* 體 => 体 */, {"髕", "髌", -1 } /* 髕 => 髌 */, {"髖", "髋", -1 } /* 髖 => 髋 */, {"高於", "高于", -1 } /* 高於 => 高于 */, {"髭鬚", "髭须", -1 } /* 髭鬚 => 髭须 */, {"髮", "发", -1 } /* 髮 => 发 */, {"鬆", "松", -1 } /* 鬆 => 松 */, {"鬍", "胡", -1 } /* 鬍 => 胡 */, {"鬍梢", "胡梢", -1 } /* 鬍梢 => 胡梢 */, {"鬍渣", "胡渣", -1 } /* 鬍渣 => 胡渣 */, {"鬍髭", "胡髭", -1 } /* 鬍髭 => 胡髭 */, {"鬚", "须", -1 } /* 鬚 => 须 */, {"鬚毛", "须毛", -1 } /* 鬚毛 => 须毛 */, {"鬚鬚", "须须", -1 } /* 鬚鬚 => 须须 */, {"鬚鯊", "须鲨", -1 } /* 鬚鯊 => 须鲨 */, {"鬚鯨", "须鲸", -1 } /* 鬚鯨 => 须鲸 */, {"鬢", "鬓", -1 } /* 鬢 => 鬓 */, {"鬥", "斗", -1 } /* 鬥 => 斗 */, {"鬥士", "斗士", -1 } /* 鬥士 => 斗士 */, {"鬥爭", "斗争", -1 } /* 鬥爭 => 斗争 */, {"鬥著", "斗着", -1 } /* 鬥著 => 斗着 */, {"鬥雞", "斗鸡", -1 } /* 鬥雞 => 斗鸡 */, {"鬧", "闹", -1 } /* 鬧 => 闹 */, {"鬧於", "闹于", -1 } /* 鬧於 => 闹于 */, {"鬧著", "闹着", -1 } /* 鬧著 => 闹着 */, {"鬨動", "哄动", -1 } /* 鬨動 => 哄动 */, {"鬩", "阋", -1 } /* 鬩 => 阋 */, {"鬰林", "玉林", -1 } /* 鬰林 => 玉林 */, {"鬱", "郁", -1 } /* 鬱 => 郁 */, {"鬱悶", "郁闷", -1 } /* 鬱悶 => 郁闷 */, {"鬱結", "郁结", -1 } /* 鬱結 => 郁结 */, {"鬱金香", "郁金香", -1 } /* 鬱金香 => 郁金香 */, {"鬱鬱", "郁郁", -1 } /* 鬱鬱 => 郁郁 */, {"鬼谷", "鬼谷", -1 } /* 鬼谷 => 鬼谷 */, {"魎", "魉", -1 } /* 魎 => 魉 */, {"魘", "魇", -1 } /* 魘 => 魇 */, {"魚", "鱼", -1 } /* 魚 => 鱼 */, {"魛", "鱽", -1 } /* 魛 => 鱽 */, {"魢", "鱾", -1 } /* 魢 => 鱾 */, {"魨", "鲀", -1 } /* 魨 => 鲀 */, {"魯", "鲁", -1 } /* 魯 => 鲁 */, {"魴", "鲂", -1 } /* 魴 => 鲂 */, {"魷", "鱿", -1 } /* 魷 => 鱿 */, {"魺", "鲄", -1 } /* 魺 => 鲄 */, {"鮁", "鲅", -1 } /* 鮁 => 鲅 */, {"鮃", "鲆", -1 } /* 鮃 => 鲆 */, {"鮊", "鲌", -1 } /* 鮊 => 鲌 */, {"鮋", "鲉", -1 } /* 鮋 => 鲉 */, {"鮍", "鲏", -1 } /* 鮍 => 鲏 */, {"鮎", "鲇", -1 } /* 鮎 => 鲇 */, {"鮐", "鲐", -1 } /* 鮐 => 鲐 */, {"鮑", "鲍", -1 } /* 鮑 => 鲍 */, {"鮒", "鲋", -1 } /* 鮒 => 鲋 */, {"鮓", "鲊", -1 } /* 鮓 => 鲊 */, {"鮚", "鲒", -1 } /* 鮚 => 鲒 */, {"鮜", "鲘", -1 } /* 鮜 => 鲘 */, {"鮝", "鲞", -1 } /* 鮝 => 鲞 */, {"鮞", "鲕", -1 } /* 鮞 => 鲕 */, {"鮣", "䲟", -1 } /* 鮣 => 䲟 */, {"鮦", "鲖", -1 } /* 鮦 => 鲖 */, {"鮪", "鲔", -1 } /* 鮪 => 鲔 */, {"鮫", "鲛", -1 } /* 鮫 => 鲛 */, {"鮭", "鲑", -1 } /* 鮭 => 鲑 */, {"鮮", "鲜", -1 } /* 鮮 => 鲜 */, {"鮳", "鲓", -1 } /* 鮳 => 鲓 */, {"鮶", "鲪", -1 } /* 鮶 => 鲪 */, {"鮺", "鲝", -1 } /* 鮺 => 鲝 */, {"鯀", "鲧", -1 } /* 鯀 => 鲧 */, {"鯁", "鲠", -1 } /* 鯁 => 鲠 */, {"鯇", "鲩", -1 } /* 鯇 => 鲩 */, {"鯉", "鲤", -1 } /* 鯉 => 鲤 */, {"鯊", "鲨", -1 } /* 鯊 => 鲨 */, {"鯒", "鲬", -1 } /* 鯒 => 鲬 */, {"鯔", "鲻", -1 } /* 鯔 => 鲻 */, {"鯕", "鲯", -1 } /* 鯕 => 鲯 */, {"鯖", "鲭", -1 } /* 鯖 => 鲭 */, {"鯗", "鲞", -1 } /* 鯗 => 鲞 */, {"鯛", "鲷", -1 } /* 鯛 => 鲷 */, {"鯝", "鲴", -1 } /* 鯝 => 鲴 */, {"鯡", "鲱", -1 } /* 鯡 => 鲱 */, {"鯢", "鲵", -1 } /* 鯢 => 鲵 */, {"鯤", "鲲", -1 } /* 鯤 => 鲲 */, {"鯧", "鲳", -1 } /* 鯧 => 鲳 */, {"鯨", "鲸", -1 } /* 鯨 => 鲸 */, {"鯨鬚", "鲸须", -1 } /* 鯨鬚 => 鲸须 */, {"鯪", "鲮", -1 } /* 鯪 => 鲮 */, {"鯫", "鲰", -1 } /* 鯫 => 鲰 */, {"鯴", "鲺", -1 } /* 鯴 => 鲺 */, {"鯷", "鳀", -1 } /* 鯷 => 鳀 */, {"鯽", "鲫", -1 } /* 鯽 => 鲫 */, {"鯿", "鳊", -1 } /* 鯿 => 鳊 */, {"鰁", "鳈", -1 } /* 鰁 => 鳈 */, {"鰂", "鲗", -1 } /* 鰂 => 鲗 */, {"鰃", "鳂", -1 } /* 鰃 => 鳂 */, {"鰈", "鲽", -1 } /* 鰈 => 鲽 */, {"鰉", "鳇", -1 } /* 鰉 => 鳇 */, {"鰌", "䲡", -1 } /* 鰌 => 䲡 */, {"鰍", "鳅", -1 } /* 鰍 => 鳅 */, {"鰏", "鲾", -1 } /* 鰏 => 鲾 */, {"鰐", "鳄", -1 } /* 鰐 => 鳄 */, {"鰒", "鳆", -1 } /* 鰒 => 鳆 */, {"鰓", "鳃", -1 } /* 鰓 => 鳃 */, {"鰛", "鳁", -1 } /* 鰛 => 鳁 */, {"鰜", "鳒", -1 } /* 鰜 => 鳒 */, {"鰟", "鳑", -1 } /* 鰟 => 鳑 */, {"鰠", "鳋", -1 } /* 鰠 => 鳋 */, {"鰣", "鲥", -1 } /* 鰣 => 鲥 */, {"鰥", "鳏", -1 } /* 鰥 => 鳏 */, {"鰧", "䲢", -1 } /* 鰧 => 䲢 */, {"鰨", "鳎", -1 } /* 鰨 => 鳎 */, {"鰩", "鳐", -1 } /* 鰩 => 鳐 */, {"鰭", "鳍", -1 } /* 鰭 => 鳍 */, {"鰱", "鲢", -1 } /* 鰱 => 鲢 */, {"鰲", "鳌", -1 } /* 鰲 => 鳌 */, {"鰳", "鳓", -1 } /* 鰳 => 鳓 */, {"鰵", "鳘", -1 } /* 鰵 => 鳘 */, {"鰷", "鲦", -1 } /* 鰷 => 鲦 */, {"鰹", "鲣", -1 } /* 鰹 => 鲣 */, {"鰺", "鲹", -1 } /* 鰺 => 鲹 */, {"鰻", "鳗", -1 } /* 鰻 => 鳗 */, {"鰼", "鳛", -1 } /* 鰼 => 鳛 */, {"鰼水", "习水", -1 } /* 鰼水 => 习水 */, {"鰾", "鳔", -1 } /* 鰾 => 鳔 */, {"鱂", "鳉", -1 } /* 鱂 => 鳉 */, {"鱅", "鳙", -1 } /* 鱅 => 鳙 */, {"鱈", "鳕", -1 } /* 鱈 => 鳕 */, {"鱉", "鳖", -1 } /* 鱉 => 鳖 */, {"鱒", "鳟", -1 } /* 鱒 => 鳟 */, {"鱔", "鳝", -1 } /* 鱔 => 鳝 */, {"鱖", "鳜", -1 } /* 鱖 => 鳜 */, {"鱗", "鳞", -1 } /* 鱗 => 鳞 */, {"鱘", "鲟", -1 } /* 鱘 => 鲟 */, {"鱝", "鲼", -1 } /* 鱝 => 鲼 */, {"鱟", "鲎", -1 } /* 鱟 => 鲎 */, {"鱠", "鲙", -1 } /* 鱠 => 鲙 */, {"鱣", "鳣", -1 } /* 鱣 => 鳣 */, {"鱤", "鳡", -1 } /* 鱤 => 鳡 */, {"鱧", "鳢", -1 } /* 鱧 => 鳢 */, {"鱨", "鲿", -1 } /* 鱨 => 鲿 */, {"鱭", "鲚", -1 } /* 鱭 => 鲚 */, {"鱯", "鳠", -1 } /* 鱯 => 鳠 */, {"鱷", "鳄", -1 } /* 鱷 => 鳄 */, {"鱸", "鲈", -1 } /* 鱸 => 鲈 */, {"鱺", "鲡", -1 } /* 鱺 => 鲡 */, {"鳥", "鸟", -1 } /* 鳥 => 鸟 */, {"鳧", "凫", -1 } /* 鳧 => 凫 */, {"鳩", "鸠", -1 } /* 鳩 => 鸠 */, {"鳲", "鸤", -1 } /* 鳲 => 鸤 */, {"鳳", "凤", -1 } /* 鳳 => 凤 */, {"鳴", "鸣", -1 } /* 鳴 => 鸣 */, {"鳶", "鸢", -1 } /* 鳶 => 鸢 */, {"鳾", "䴓", -1 } /* 鳾 => 䴓 */, {"鴆", "鸩", -1 } /* 鴆 => 鸩 */, {"鴇", "鸨", -1 } /* 鴇 => 鸨 */, {"鴉", "鸦", -1 } /* 鴉 => 鸦 */, {"鴒", "鸰", -1 } /* 鴒 => 鸰 */, {"鴕", "鸵", -1 } /* 鴕 => 鸵 */, {"鴛", "鸳", -1 } /* 鴛 => 鸳 */, {"鴝", "鸲", -1 } /* 鴝 => 鸲 */, {"鴞", "鸮", -1 } /* 鴞 => 鸮 */, {"鴟", "鸱", -1 } /* 鴟 => 鸱 */, {"鴣", "鸪", -1 } /* 鴣 => 鸪 */, {"鴦", "鸯", -1 } /* 鴦 => 鸯 */, {"鴨", "鸭", -1 } /* 鴨 => 鸭 */, {"鴯", "鸸", -1 } /* 鴯 => 鸸 */, {"鴰", "鸹", -1 } /* 鴰 => 鸹 */, {"鴴", "鸻", -1 } /* 鴴 => 鸻 */, {"鴷", "䴕", -1 } /* 鴷 => 䴕 */, {"鴻", "鸿", -1 } /* 鴻 => 鸿 */, {"鴿", "鸽", -1 } /* 鴿 => 鸽 */, {"鵁", "䴔", -1 } /* 鵁 => 䴔 */, {"鵂", "鸺", -1 } /* 鵂 => 鸺 */, {"鵃", "鸼", -1 } /* 鵃 => 鸼 */, {"鵐", "鹀", -1 } /* 鵐 => 鹀 */, {"鵑", "鹃", -1 } /* 鵑 => 鹃 */, {"鵒", "鹆", -1 } /* 鵒 => 鹆 */, {"鵓", "鹁", -1 } /* 鵓 => 鹁 */, {"鵜", "鹈", -1 } /* 鵜 => 鹈 */, {"鵝", "鹅", -1 } /* 鵝 => 鹅 */, {"鵠", "鹄", -1 } /* 鵠 => 鹄 */, {"鵡", "鹉", -1 } /* 鵡 => 鹉 */, {"鵪", "鹌", -1 } /* 鵪 => 鹌 */, {"鵬", "鹏", -1 } /* 鵬 => 鹏 */, {"鵮", "鹐", -1 } /* 鵮 => 鹐 */, {"鵯", "鹎", -1 } /* 鵯 => 鹎 */, {"鵲", "鹊", -1 } /* 鵲 => 鹊 */, {"鵷", "鹓", -1 } /* 鵷 => 鹓 */, {"鵾", "鹍", -1 } /* 鵾 => 鹍 */, {"鶄", "䴖", -1 } /* 鶄 => 䴖 */, {"鶇", "鸫", -1 } /* 鶇 => 鸫 */, {"鶉", "鹑", -1 } /* 鶉 => 鹑 */, {"鶊", "鹒", -1 } /* 鶊 => 鹒 */, {"鶓", "鹋", -1 } /* 鶓 => 鹋 */, {"鶖", "鹙", -1 } /* 鶖 => 鹙 */, {"鶘", "鹕", -1 } /* 鶘 => 鹕 */, {"鶚", "鹗", -1 } /* 鶚 => 鹗 */, {"鶡", "鹖", -1 } /* 鶡 => 鹖 */, {"鶥", "鹛", -1 } /* 鶥 => 鹛 */, {"鶩", "鹜", -1 } /* 鶩 => 鹜 */, {"鶪", "䴗", -1 } /* 鶪 => 䴗 */, {"鶬", "鸧", -1 } /* 鶬 => 鸧 */, {"鶯", "莺", -1 } /* 鶯 => 莺 */, {"鶲", "鹟", -1 } /* 鶲 => 鹟 */, {"鶴", "鹤", -1 } /* 鶴 => 鹤 */, {"鶹", "鹠", -1 } /* 鶹 => 鹠 */, {"鶺", "鹡", -1 } /* 鶺 => 鹡 */, {"鶻", "鹘", -1 } /* 鶻 => 鹘 */, {"鶼", "鹣", -1 } /* 鶼 => 鹣 */, {"鶿", "鹚", -1 } /* 鶿 => 鹚 */, {"鷀", "鹚", -1 } /* 鷀 => 鹚 */, {"鷁", "鹢", -1 } /* 鷁 => 鹢 */, {"鷂", "鹞", -1 } /* 鷂 => 鹞 */, {"鷄", "鸡", -1 } /* 鷄 => 鸡 */, {"鷉", "䴘", -1 } /* 鷉 => 䴘 */, {"鷊", "鹝", -1 } /* 鷊 => 鹝 */, {"鷓", "鹧", -1 } /* 鷓 => 鹧 */, {"鷖", "鹥", -1 } /* 鷖 => 鹥 */, {"鷗", "鸥", -1 } /* 鷗 => 鸥 */, {"鷙", "鸷", -1 } /* 鷙 => 鸷 */, {"鷚", "鹨", -1 } /* 鷚 => 鹨 */, {"鷥", "鸶", -1 } /* 鷥 => 鸶 */, {"鷦", "鹪", -1 } /* 鷦 => 鹪 */, {"鷫", "鹔", -1 } /* 鷫 => 鹔 */, {"鷯", "鹩", -1 } /* 鷯 => 鹩 */, {"鷲", "鹫", -1 } /* 鷲 => 鹫 */, {"鷳", "鹇", -1 } /* 鷳 => 鹇 */, {"鷸", "鹬", -1 } /* 鷸 => 鹬 */, {"鷹", "鹰", -1 } /* 鷹 => 鹰 */, {"鷺", "鹭", -1 } /* 鷺 => 鹭 */, {"鷽", "鸴", -1 } /* 鷽 => 鸴 */, {"鸇", "鹯", -1 } /* 鸇 => 鹯 */, {"鸊", "䴙", -1 } /* 鸊 => 䴙 */, {"鸌", "鹱", -1 } /* 鸌 => 鹱 */, {"鸏", "鹲", -1 } /* 鸏 => 鹲 */, {"鸕", "鸬", -1 } /* 鸕 => 鸬 */, {"鸘", "鹴", -1 } /* 鸘 => 鹴 */, {"鸚", "鹦", -1 } /* 鸚 => 鹦 */, {"鸛", "鹳", -1 } /* 鸛 => 鹳 */, {"鸝", "鹂", -1 } /* 鸝 => 鹂 */, {"鹵", "卤", -1 } /* 鹵 => 卤 */, {"鹵化", "卤化", -1 } /* 鹵化 => 卤化 */, {"鹵族", "卤族", -1 } /* 鹵族 => 卤族 */, {"鹵水", "卤水", -1 } /* 鹵水 => 卤水 */, {"鹵汁", "卤汁", -1 } /* 鹵汁 => 卤汁 */, {"鹵簿", "卤簿", -1 } /* 鹵簿 => 卤簿 */, {"鹵鈍", "卤钝", -1 } /* 鹵鈍 => 卤钝 */, {"鹹", "咸", -1 } /* 鹹 => 咸 */, {"鹹味", "咸味", -1 } /* 鹹味 => 咸味 */, {"鹹土", "咸土", -1 } /* 鹹土 => 咸土 */, {"鹹度", "咸度", -1 } /* 鹹度 => 咸度 */, {"鹹得", "咸得", -1 } /* 鹹得 => 咸得 */, {"鹹水", "咸水", -1 } /* 鹹水 => 咸水 */, {"鹹海", "咸海", -1 } /* 鹹海 => 咸海 */, {"鹹淡", "咸淡", -1 } /* 鹹淡 => 咸淡 */, {"鹹湖", "咸湖", -1 } /* 鹹湖 => 咸湖 */, {"鹹湯", "咸汤", -1 } /* 鹹湯 => 咸汤 */, {"鹹的", "咸的", -1 } /* 鹹的 => 咸的 */, {"鹹肉", "咸肉", -1 } /* 鹹肉 => 咸肉 */, {"鹹菜", "咸菜", -1 } /* 鹹菜 => 咸菜 */, {"鹹蛋", "咸蛋", -1 } /* 鹹蛋 => 咸蛋 */, {"鹹豬肉", "咸猪肉", -1 } /* 鹹豬肉 => 咸猪肉 */, {"鹹類", "咸类", -1 } /* 鹹類 => 咸类 */, {"鹹魚", "咸鱼", -1 } /* 鹹魚 => 咸鱼 */, {"鹹鴨蛋", "咸鸭蛋", -1 } /* 鹹鴨蛋 => 咸鸭蛋 */, {"鹹鹵", "咸卤", -1 } /* 鹹鹵 => 咸卤 */, {"鹹鹹", "咸咸", -1 } /* 鹹鹹 => 咸咸 */, {"鹺", "鹾", -1 } /* 鹺 => 鹾 */, {"鹼", "碱", -1 } /* 鹼 => 碱 */, {"鹼", "硷", -1 } /* 鹼 => 硷 */, {"鹼中毒", "碱中毒", -1 } /* 鹼中毒 => 碱中毒 */, {"鹼儲備", "碱储备", -1 } /* 鹼儲備 => 碱储备 */, {"鹼化", "碱化", -1 } /* 鹼化 => 碱化 */, {"鹼土金屬", "碱土金属", -1 } /* 鹼土金屬 => 碱土金属 */, {"鹼地", "碱地", -1 } /* 鹼地 => 碱地 */, {"鹼基", "碱基", -1 } /* 鹼基 => 碱基 */, {"鹼度", "碱度", -1 } /* 鹼度 => 碱度 */, {"鹼性", "碱性", -1 } /* 鹼性 => 碱性 */, {"鹼水", "碱水", -1 } /* 鹼水 => 碱水 */, {"鹼熔", "碱熔", -1 } /* 鹼熔 => 碱熔 */, {"鹼裂解", "碱裂解", -1 } /* 鹼裂解 => 碱裂解 */, {"鹼變性法", "碱变性法", -1 } /* 鹼變性法 => 碱变性法 */, {"鹼金屬", "碱金属", -1 } /* 鹼金屬 => 碱金属 */, {"鹽", "盐", -1 } /* 鹽 => 盐 */, {"鹽鹵", "盐卤", -1 } /* 鹽鹵 => 盐卤 */, {"鹽鹼", "盐碱", -1 } /* 鹽鹼 => 盐碱 */, {"麗", "丽", -1 } /* 麗 => 丽 */, {"麥", "麦", -1 } /* 麥 => 麦 */, {"麩", "麸", -1 } /* 麩 => 麸 */, {"麯", "曲", -1 } /* 麯 => 曲 */, {"麵", "面", -1 } /* 麵 => 面 */, {"麻黃鹼", "麻黄碱", -1 } /* 麻黃鹼 => 麻黄碱 */, {"麼", "么", -1 } /* 麼 => 么 */, {"麽", "么", -1 } /* 麽 => 么 */, {"黃", "黄", -1 } /* 黃 => 黄 */, {"黃於", "黄于", -1 } /* 黃於 => 黄于 */, {"黃曆", "黄历", -1 } /* 黃曆 => 黄历 */, {"黌", "黉", -1 } /* 黌 => 黉 */, {"黛安娜", "戴安娜", -1 } /* 黛安娜 => 戴安娜 */, {"點", "点", -1 } /* 點 => 点 */, {"點著", "点着", -1 } /* 點著 => 点着 */, {"點陣圖", "位图", -1 } /* 點陣圖 => 位图 */, {"黨", "党", -1 } /* 黨 => 党 */, {"黲", "黪", -1 } /* 黲 => 黪 */, {"黴", "霉", -1 } /* 黴 => 霉 */, {"黶", "黡", -1 } /* 黶 => 黡 */, {"黷", "黩", -1 } /* 黷 => 黩 */, {"黽", "黾", -1 } /* 黽 => 黾 */, {"黿", "鼋", -1 } /* 黿 => 鼋 */, {"鼉", "鼍", -1 } /* 鼉 => 鼍 */, {"鼕", "冬", -1 } /* 鼕 => 冬 */, {"鼴", "鼹", -1 } /* 鼴 => 鼹 */, {"齊", "齐", -1 } /* 齊 => 齐 */, {"齊克隆", "齐克隆", -1 } /* 齊克隆 => 齐克隆 */, {"齊王捨牛", "齐王舍牛", -1 } /* 齊王捨牛 => 齐王舍牛 */, {"齋", "斋", -1 } /* 齋 => 斋 */, {"齎", "赍", -1 } /* 齎 => 赍 */, {"齏", "齑", -1 } /* 齏 => 齑 */, {"齒", "齿", -1 } /* 齒 => 齿 */, {"齔", "龀", -1 } /* 齔 => 龀 */, {"齕", "龁", -1 } /* 齕 => 龁 */, {"齗", "龂", -1 } /* 齗 => 龂 */, {"齙", "龅", -1 } /* 齙 => 龅 */, {"齜", "龇", -1 } /* 齜 => 龇 */, {"齟", "龃", -1 } /* 齟 => 龃 */, {"齠", "龆", -1 } /* 齠 => 龆 */, {"齡", "龄", -1 } /* 齡 => 龄 */, {"齣", "出", -1 } /* 齣 => 出 */, {"齦", "龈", -1 } /* 齦 => 龈 */, {"齧", "啮", -1 } /* 齧 => 啮 */, {"齪", "龊", -1 } /* 齪 => 龊 */, {"齬", "龉", -1 } /* 齬 => 龉 */, {"齲", "龋", -1 } /* 齲 => 龋 */, {"齶", "腭", -1 } /* 齶 => 腭 */, {"齷", "龌", -1 } /* 齷 => 龌 */, {"龍", "龙", -1 } /* 龍 => 龙 */, {"龎", "厐", -1 } /* 龎 => 厐 */, {"龐", "庞", -1 } /* 龐 => 庞 */, {"龑", "䶮", -1 } /* 龑 => 䶮 */, {"龔", "龚", -1 } /* 龔 => 龚 */, {"龕", "龛", -1 } /* 龕 => 龛 */, {"龜", "龟", -1 } /* 龜 => 龟 */ }; int map_uni_t2s_size = 4666; factor_zh_map map_zh_cond[] = { {30, -1, -1, -1}, {36, -1, -1, -1}, {-1, -1, -1, 53}, {-1, 34, -1, -1}, {44, 38, -1, -1}, {-1, -1, 17, -1}, {-1, 49, -1, -1}, {52, -1, -1, -1}, {44, -1, -1, -1}, {-1, -1, -1, 50}, {-1, -1, 21, 26}, {48, -1, -1, -1}, {4, -1, -1, -1}, {-1, 6, -1, -1}, {-1, -1, -1, 47}, {15, -1, -1, -1}, {-1, -1, -1, 47}, {15, -1, -1, -1}, {-1, -1, -1, 47}, {-1, -1, -1, 47}, {52, -1, -1, -1}, {44, -1, -1, -1}, {44, -1, -1, -1}, {52, -1, -1, -1}, {52, -1, -1, -1}, {46, -1, -1, 40}, {45, -1, -1, -1}, {37, -1, -1, -1}, {-1, -1, 42, -1}, {-1, -1, 12, -1}, {45, -1, -1, -1}, {22, -1, -1, -1}, {52, -1, -1, -1}, {25, -1, -1, -1}, {-1, 0, -1, -1}, {44, -1, -1, -1}, {52, -1, -1, -1}, {7, 8, -1, -1}, {-1, -1, 14, -1}, {-1, 1, -1, -1}, {52, -1, -1, -1}, {52, -1, -1, -1}, {51, -1, -1, -1}, {13, -1, -1, -1}, {52, -1, -1, -1}, {-1, -1, 9, 27}, {-1, 0, -1, -1}, {54, -1, -1, -1}, {24, -1, -1, -1}, {45, 39, -1, -1}, {35, -1, -1, -1}, {52, -1, -1, -1}, {16, -1, -1, 31}, {-1, 28, -1, -1}, {5, -1, -1, -1}, {18, 10, -1, -1}, {45, -1, -1, -1}, {54, -1, -1, -1}, {52, -1, -1, -1}, {52, -1, -1, -1}, {44, -1, -1, -1}, {3, -1, -1, -1}, {30, -1, -1, -1}, {-1, 23, -1, -1}, {54, -1, -1, -1}, {33, -1, -1, -1}, {32, -1, -1, -1}, {41, -1, -1, -1}, {43, -1, -1, -1}, {-1, -1, 29, -1}, {20, 19, -1, -1}, {11, -1, -1, -1}, {2, -1, -1, -1} }; int map_zh_cond_size = 73; cconv-0.6.2/configure0000775000076400007640000251641311333705452011510 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for cconv 0.6.2. # # Report bugs to . # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then set -o posix fi DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # Work around bugs in pre-3.0 UWIN ksh. $as_unset ENV MAIL MAILPATH PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)$' \| \ . : '\(.\)' 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } /^X\/\(\/\/\)$/{ s//\1/; q; } /^X\/\(\/\).*/{ s//\1/; q; } s/.*/./; q'` # PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" || { # Find who we are. Look in the path if we contain no path at all # relative or not. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 { (exit 1); exit 1; }; } fi case $CONFIG_SHELL in '') as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for as_base in sh bash ksh sh5; do case $as_dir in /*) if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } CONFIG_SHELL=$as_dir/$as_base export CONFIG_SHELL exec "$CONFIG_SHELL" "$0" ${1+"$@"} fi;; esac done done ;; esac # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line before each line; the second 'sed' does the real # work. The second script uses 'N' to pair each line-number line # with the numbered line, and appends trailing '-' during # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) sed '=' <$as_myself | sed ' N s,$,-, : loop s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop s,-$,, s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && chmod +x $as_me.lineno || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensible to this). . ./$as_me.lineno # Exit status is that of the last command. exit } case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in *c*,-n*) ECHO_N= ECHO_C=' ' ECHO_T=' ' ;; *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then # We could just check for DJGPP; but this test a) works b) is more generic # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). if test -f conf$$.exe; then # Don't use ln at all; we don't have any links as_ln_s='cp -p' else as_ln_s='ln -s' fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" # IFS # We need space, tab and new line, in precisely that order. as_nl=' ' IFS=" $as_nl" # CDPATH. $as_unset CDPATH # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','` ;; esac echo=${ECHO-echo} if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "$0" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL $0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL $0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "$0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" fi tagnames=${tagnames+${tagnames},}CXX tagnames=${tagnames+${tagnames},}F77 # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` exec 6>&1 # # Initializations. # ac_default_prefix=/usr/local ac_config_libobj_dir=. cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # Maximum number of lines to put in a shell here document. # This variable seems obsolete. It should probably be removed, and # only ac_max_sed_lines should be used. : ${ac_max_here_lines=38} # Identity of this package. PACKAGE_NAME='cconv' PACKAGE_TARNAME='cconv' PACKAGE_VERSION='0.6.2' PACKAGE_STRING='cconv 0.6.2' PACKAGE_BUGREPORT='xiaoyjy@gmail.com' ac_unique_file="cconv.c" # Factoring default headers for most tests. ac_includes_default="\ #include #if HAVE_SYS_TYPES_H # include #endif #if HAVE_SYS_STAT_H # include #endif #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_STRING_H # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif # include #endif #if HAVE_STRINGS_H # include #endif #if HAVE_INTTYPES_H # include #else # if HAVE_STDINT_H # include # endif #endif #if HAVE_UNISTD_H # include #endif" ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os SED EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL OS_TYPE ICONV_INCLUDES ICONV_LIBS LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. ac_init_help= ac_init_version=false # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datadir='${prefix}/share' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' infodir='${prefix}/info' mandir='${prefix}/man' ac_prev= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval "$ac_prev=\$ac_option" ac_prev= continue fi ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_option in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ | --da=*) datadir=$ac_optarg ;; -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/-/_/g'` eval "enable_$ac_feature=no" ;; -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/-/_/g'` case $ac_option in *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; *) ac_optarg=yes ;; esac eval "enable_$ac_feature='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst \ | --locals | --local | --loca | --loc | --lo) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* \ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package| sed 's/-/_/g'` case $ac_option in *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; *) ac_optarg=yes ;; esac eval "with_$ac_package='$ac_optarg'" ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/-/_/g'` eval "with_$ac_package=no" ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` eval "$ac_envvar='$ac_optarg'" export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute paths. for ac_var in exec_prefix prefix do eval ac_val=$`echo $ac_var` case $ac_val in [\\/$]* | ?:[\\/]* | NONE | '' ) ;; *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; };; esac done # Be sure to have absolute paths. for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ localstatedir libdir includedir oldincludedir infodir mandir do eval ac_val=$`echo $ac_var` case $ac_val in [\\/$]* | ?:[\\/]* ) ;; *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; };; esac done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then its parent. ac_confdir=`(dirname "$0") 2>/dev/null || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$0" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` srcdir=$ac_confdir if test ! -r $srcdir/$ac_unique_file; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r $srcdir/$ac_unique_file; then if test "$ac_srcdir_defaulted" = yes; then { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 { (exit 1); exit 1; }; } else { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi fi (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 { (exit 1); exit 1; }; } srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` ac_env_build_alias_set=${build_alias+set} ac_env_build_alias_value=$build_alias ac_cv_env_build_alias_set=${build_alias+set} ac_cv_env_build_alias_value=$build_alias ac_env_host_alias_set=${host_alias+set} ac_env_host_alias_value=$host_alias ac_cv_env_host_alias_set=${host_alias+set} ac_cv_env_host_alias_value=$host_alias ac_env_target_alias_set=${target_alias+set} ac_env_target_alias_value=$target_alias ac_cv_env_target_alias_set=${target_alias+set} ac_cv_env_target_alias_value=$target_alias ac_env_CXX_set=${CXX+set} ac_env_CXX_value=$CXX ac_cv_env_CXX_set=${CXX+set} ac_cv_env_CXX_value=$CXX ac_env_CXXFLAGS_set=${CXXFLAGS+set} ac_env_CXXFLAGS_value=$CXXFLAGS ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} ac_cv_env_CXXFLAGS_value=$CXXFLAGS ac_env_LDFLAGS_set=${LDFLAGS+set} ac_env_LDFLAGS_value=$LDFLAGS ac_cv_env_LDFLAGS_set=${LDFLAGS+set} ac_cv_env_LDFLAGS_value=$LDFLAGS ac_env_CPPFLAGS_set=${CPPFLAGS+set} ac_env_CPPFLAGS_value=$CPPFLAGS ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} ac_cv_env_CPPFLAGS_value=$CPPFLAGS ac_env_CC_set=${CC+set} ac_env_CC_value=$CC ac_cv_env_CC_set=${CC+set} ac_cv_env_CC_value=$CC ac_env_CFLAGS_set=${CFLAGS+set} ac_env_CFLAGS_value=$CFLAGS ac_cv_env_CFLAGS_set=${CFLAGS+set} ac_cv_env_CFLAGS_value=$CFLAGS ac_env_CPP_set=${CPP+set} ac_env_CPP_value=$CPP ac_cv_env_CPP_set=${CPP+set} ac_cv_env_CPP_value=$CPP ac_env_CXXCPP_set=${CXXCPP+set} ac_env_CXXCPP_value=$CXXCPP ac_cv_env_CXXCPP_set=${CXXCPP+set} ac_cv_env_CXXCPP_value=$CXXCPP ac_env_F77_set=${F77+set} ac_env_F77_value=$F77 ac_cv_env_F77_set=${F77+set} ac_cv_env_F77_value=$F77 ac_env_FFLAGS_set=${FFLAGS+set} ac_env_FFLAGS_value=$FFLAGS ac_cv_env_FFLAGS_set=${FFLAGS+set} ac_cv_env_FFLAGS_value=$FFLAGS # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures cconv 0.6.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] _ACEOF cat <<_ACEOF Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --infodir=DIR info documentation [PREFIX/info] --mandir=DIR man documentation [PREFIX/man] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of cconv 0.6.2:";; esac cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-pic try to use only PIC/non-PIC objects [default=use both] --with-tags[=TAGS] include additional configurations [automatic] Some influential environment variables: CXX C++ compiler command CXXFLAGS C++ compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CC C compiler command CFLAGS C compiler flags CPP C preprocessor CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. ac_popdir=`pwd` for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d $ac_dir || continue ac_builddir=. if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A "../" for each directory in $ac_dir_suffix. ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` else ac_dir_suffix= ac_top_builddir= fi case $srcdir in .) # No --srcdir option. We are building in place. ac_srcdir=. if test -z "$ac_top_builddir"; then ac_top_srcdir=. else ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` fi ;; [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ;; *) # Relative path. ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_builddir$srcdir ;; esac # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac cd $ac_dir # Check for guested configure; otherwise get Cygnus style configure. if test -f $ac_srcdir/configure.gnu; then echo $SHELL $ac_srcdir/configure.gnu --help=recursive elif test -f $ac_srcdir/configure; then echo $SHELL $ac_srcdir/configure --help=recursive elif test -f $ac_srcdir/configure.ac || test -f $ac_srcdir/configure.in; then echo $ac_configure --help else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi cd $ac_popdir done fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF cconv configure 0.6.2 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit 0 fi exec 5>config.log cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by cconv $as_me 0.6.2, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ _ACEOF { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` hostinfo = `(hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. echo "PATH: $as_dir" done } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_sep= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2) ac_configure_args1="$ac_configure_args1 '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" # Get rid of the leading space. ac_sep=" " ;; esac done done $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Be sure not to use single quotes in there, as some shells, # such as our DU 5.0 friend, will then `close' the trap. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo cat <<\_ASBOX ## ---------------- ## ## Cache variables. ## ## ---------------- ## _ASBOX echo # The following way of writing the cache mishandles newlines in values, { (set) 2>&1 | case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in *ac_space=\ *) sed -n \ "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" ;; *) sed -n \ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; esac; } echo cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX echo for ac_var in $ac_subst_vars do eval ac_val=$`echo $ac_var` echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ## ------------- ## ## Output files. ## ## ------------- ## _ASBOX echo for ac_var in $ac_subst_files do eval ac_val=$`echo $ac_var` echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo fi if test -s confdefs.h; then cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX echo sed "/^$/d" confdefs.h | sort echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" echo "$as_me: exit $exit_status" } >&5 rm -f core *.core && rm -rf conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -rf conftest* confdefs.h # AIX cpp loses on an empty file, so make sure it contains at least a newline. echo >confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. if test -z "$CONFIG_SITE"; then if test "x$prefix" != xNONE; then CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" else CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; *) . ./$cache_file;; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in `(set) 2>&1 | sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val="\$ac_cv_env_${ac_var}_value" eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version="1.9" ac_aux_dir= for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do if test -f $ac_dir/install-sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f $ac_dir/install.sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f $ac_dir/shtool; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} { (exit 1); exit 1; }; } fi ac_config_guess="$SHELL $ac_aux_dir/config.guess" ac_config_sub="$SHELL $ac_aux_dir/config.sub" ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in ./ | .// | /cC/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. We don't cache a # path for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the path is relative. INSTALL=$ac_install_sh fi fi echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6 # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 test "$program_prefix" != NONE && program_transform_name="s,^,$program_prefix,;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s,\$,$program_suffix,;$program_transform_name" # Double any \ or $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then # We used to keeping the `.' as first argument, in order to # allow $(mkdir_p) to be used without argument. As in # $(mkdir_p) $(somedir) # where $(somedir) is conditionally defined. However this is wrong # for two reasons: # 1. if the package is installed by a user who cannot write `.' # make install will fail, # 2. the above comment should most certainly read # $(mkdir_p) $(DESTDIR)$(somedir) # so it does not work when $(somedir) is undefined and # $(DESTDIR) is not. # To support the latter case, we have to write # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), # so the `.' trick is pointless. mkdir_p='mkdir -p --' else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. for d in ./-p ./--version; do test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. if test -f "$ac_aux_dir/mkinstalldirs"; then mkdir_p='$(mkinstalldirs)' else mkdir_p='$(install_sh) -d' fi fi for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$AWK" && break done echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF all: @echo 'ac_maketemp="$(MAKE)"' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` if test -n "$ac_maketemp"; then eval ac_cv_prog_make_${ac_make}_set=yes else eval ac_cv_prog_make_${ac_make}_set=no fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # test to see if srcdir already configured if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=cconv VERSION=0.6.2 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} install_sh=${install_sh-"$am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers config.h" case m4 in [\\/]* | ?:[\\/]* ) ac_macro_dir=m4 ;; *) ac_macro_dir=$srcdir/m4 ;; esac if test -d "$ac_macro_dir"; then : else { { echo "$as_me:$LINENO: error: cannot find macro directory \`m4'" >&5 echo "$as_me: error: cannot find macro directory \`m4'" >&2;} { (exit 1); exit 1; }; } fi # Checks for programs. ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CXX" && break done test -n "$ac_ct_CXX" || ac_ct_CXX="g++" CXX=$ac_ct_CXX fi # Provide some information about the compiler. echo "$as_me:$LINENO:" \ "checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. echo "$as_me:$LINENO: checking for C++ compiler default output file name" >&5 echo $ECHO_N "checking for C++ compiler default output file name... $ECHO_C" >&6 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Find the output, starting from the most likely. This scheme is # not robust to junk in `.', hence go to wildcards (a.*) only as a last # resort. # Be careful to initialize this variable, since it used to be cached. # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. ac_cv_exeext= # b.out is created by i960 compilers. for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; conftest.$ac_ext ) # This is the source file. ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` # FIXME: I believe we export ac_cv_exeext for Libtool, # but it would be cool to find out if it's true. Does anybody # maintain Libtool? --akim. export ac_cv_exeext break;; * ) break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C++ compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C++ compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6 # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. echo "$as_me:$LINENO: checking whether the C++ compiler works" >&5 echo $ECHO_N "checking whether the C++ compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` export ac_cv_exeext break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="-g" echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_cxx_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi for ac_declaration in \ '' \ 'extern "C" void std::exit (int) throw (); using std::exit;' \ 'extern "C" void std::exit (int); using std::exit;' \ 'extern "C" void exit (int) throw ();' \ 'extern "C" void exit (int);' \ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done rm -f conftest* if test -n "$ac_declaration"; then echo '#ifdef __cplusplus' >>confdefs.h echo $ac_declaration >>confdefs.h echo '#endif' >>confdefs.h fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6 am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_am_result" >&6 rm -f confinc confmf # Check whether --enable-dependency-tracking or --disable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then enableval="$enable_dependency_tracking" fi; if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CXX" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi CC=$ac_ct_CC else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi CC=$ac_ct_CC else CC="$ac_cv_prog_CC" fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CC" && break done CC=$ac_ct_CC fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS CFLAGS="-g" echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_cc_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std1 is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std1. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF # Don't try gcc -ansi; that turns off useful extensions and # breaks some systems' header files. # AIX -qlanglvl=ansi # Ultrix and OSF/1 -std1 # HP-UX 10.20 and later -Ae # HP-UX older versions -Aa -D_HPUX_SOURCE # SVR4 -Xc -D__EXTENSIONS__ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext done rm -f conftest.$ac_ext conftest.$ac_objext CC=$ac_save_CC fi case "x$ac_cv_prog_cc_stdc" in x|xno) echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac # Some people use a C++ compiler to compile C. Since we use `exit', # in C++ we need to declare it. In case someone uses the same compiler # for both compiling C and C++ we need to have the C++ compiler decide # the declaration of exit, since it's the most demanding environment. cat >conftest.$ac_ext <<_ACEOF #ifndef __cplusplus choke me #endif _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ '' \ 'extern "C" void std::exit (int) throw (); using std::exit;' \ 'extern "C" void std::exit (int); using std::exit;' \ 'extern "C" void exit (int) throw ();' \ 'extern "C" void exit (int);' \ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done rm -f conftest* if test -n "$ac_declaration"; then echo '#ifdef __cplusplus' >>confdefs.h echo $ac_declaration >>confdefs.h echo '#endif' >>confdefs.h fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi # Checks for libraries. # Check whether --enable-shared or --disable-shared was given. if test "${enable_shared+set}" = set; then enableval="$enable_shared" p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi; # Check whether --enable-static or --disable-static was given. if test "${enable_static+set}" = set; then enableval="$enable_static" p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi; # Check whether --enable-fast-install or --disable-fast-install was given. if test "${enable_fast_install+set}" = set; then enableval="$enable_fast_install" p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi; # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6 if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_build_alias=$build_alias test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6 build=$ac_cv_build build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$as_me:$LINENO: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6 if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_host_alias=$host_alias test -z "$ac_cv_host_alias" && ac_cv_host_alias=$ac_cv_build_alias ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6 host=$ac_cv_host host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6 if test "${lt_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done fi SED=$lt_cv_path_SED echo "$as_me:$LINENO: result: $SED" >&5 echo "${ECHO_T}$SED" >&6 echo "$as_me:$LINENO: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 if test "${ac_cv_prog_egrep+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi fi echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 EGREP=$ac_cv_prog_egrep # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6 if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6 reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6 if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 echo "${ECHO_T}$lt_cv_path_NM" >&6 NM="$lt_cv_path_NM" echo "$as_me:$LINENO: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi echo "$as_me:$LINENO: checking how to recognise dependent libraries" >&5 echo $ECHO_N "checking how to recognise dependent libraries... $ECHO_C" >&6 if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix4* | aix5*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump'. lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | kfreebsd*-gnu | dragonfly*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix3*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac fi echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6 file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval="$enable_libtool_lock" fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line 4157 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6 if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then lt_cv_cc_needs_belf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 lt_cv_cc_needs_belf=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6 if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) LD="${LD-ld} -64" ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_Header=no" fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------- ## ## Report this to xiaoyjy@gmail.com ## ## -------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6 if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi echo "$as_me:$LINENO: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$F77"; then ac_cv_prog_F77="$F77" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_F77="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi F77=$ac_cv_prog_F77 if test -n "$F77"; then echo "$as_me:$LINENO: result: $F77" >&5 echo "${ECHO_T}$F77" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$F77" && break done fi if test -z "$F77"; then ac_ct_F77=$F77 for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_F77"; then ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_F77="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_F77=$ac_cv_prog_ac_ct_F77 if test -n "$ac_ct_F77"; then echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 echo "${ECHO_T}$ac_ct_F77" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_F77" && break done F77=$ac_ct_F77 fi # Provide some information about the compiler. echo "$as_me:5292:" \ "checking for Fortran 77 compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -f a.out # If we don't use `.F' as extension, the preprocessor is not run on the # input file. (Note that this only needs to work for GNU compilers.) ac_save_ext=$ac_ext ac_ext=F echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6 if test "${ac_cv_f77_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF program main #ifndef __GNUC__ choke me #endif end _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_f77_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6 ac_ext=$ac_save_ext ac_test_FFLAGS=${FFLAGS+set} ac_save_FFLAGS=$FFLAGS FFLAGS= echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_f77_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else FFLAGS=-g cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_f77_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_f77_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 echo "${ECHO_T}$ac_cv_prog_f77_g" >&6 if test "$ac_test_FFLAGS" = set; then FFLAGS=$ac_save_FFLAGS elif test $ac_cv_prog_f77_g = yes; then if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-g -O2" else FFLAGS="-g" fi else if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-O2" else FFLAGS= fi fi G77=`test $ac_compiler_gnu = yes && echo yes` ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6 if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6 else echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6 fi # Check for command to grab the raw symbol name followed by C symbol from nm. echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6 if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32*) symcode='[ABCDGISTW]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux*) if test "$host_cpu" = ia64; then symcode='[ABCDGIRSTW]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Now try to grab the symbols. nlist=conftest.nm if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then echo "$as_me:$LINENO: result: failed" >&5 echo "${ECHO_T}failed" >&6 else echo "$as_me:$LINENO: result: ok" >&5 echo "${ECHO_T}ok" >&6 fi echo "$as_me:$LINENO: checking for objdir" >&5 echo $ECHO_N "checking for objdir... $ECHO_C" >&6 if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 echo "${ECHO_T}$lt_cv_objdir" >&6 objdir=$lt_cv_objdir case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="${ac_tool_prefix}ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then echo "$as_me:$LINENO: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_AR" && ac_cv_prog_ac_ct_AR="false" fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi AR=$ac_ct_AR else AR="$ac_cv_prog_AR" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then echo "$as_me:$LINENO: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi RANLIB=$ac_ct_RANLIB else RANLIB="$ac_cv_prog_RANLIB" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then echo "$as_me:$LINENO: checking for file" >&5 echo $ECHO_N "checking for file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else MAGIC_CMD=: fi fi fi ;; esac enable_dlopen=no enable_win32_dll=no # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval="$enable_libtool_lock" fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Check whether --with-pic or --without-pic was given. if test "${with_pic+set}" = set; then withval="$with_pic" pic_mode="$withval" else pic_mode=default fi; test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag=' -fno-builtin' echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:6355: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:6359: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; *) lt_prog_compiler_pic='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic='-qnocommon' lt_prog_compiler_wl='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 echo "${ECHO_T}$lt_prog_compiler_pic" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:6623: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:6627: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6 if test x"$lt_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works=yes fi else lt_prog_compiler_static_works=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works" >&6 if test x"$lt_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:6727: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:6731: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag= enable_shared_with_static_runtimes=no archive_cmds= archive_expsym_cmds= old_archive_From_new_cmds= old_archive_from_expsyms_cmds= export_dynamic_flag_spec= whole_archive_flag_spec= thread_safe_flag_spec= hardcode_libdir_flag_spec= hardcode_libdir_flag_spec_ld= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no hardcode_shlibpath_var=unsupported link_all_deplibs=unknown hardcode_automatic=no module_cmds= module_expsym_cmds= always_export_symbols=no export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; interix3*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_libdir_separator=':' link_all_deplibs=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct=yes else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported whole_archive_flag_spec='' link_all_deplibs=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs=no ;; esac fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; freebsd1*) ld_shlibs=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld='+b $libdir' hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld='-rpath $libdir' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: link_all_deplibs=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; openbsd*) hardcode_direct=yes hardcode_shlibpath_var=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs" >&5 echo "${ECHO_T}$ld_shlibs" >&6 test "$ld_shlibs" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc=no else archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 echo "${ECHO_T}$archive_cmds_need_lc" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '#line 8196 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ test -n "$runpath_var" || \ test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action" >&5 echo "${ECHO_T}$hardcode_action" >&6 if test "$hardcode_action" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi ;; *) echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 ;; esac fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) echo "$as_me:$LINENO: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define shl_load to an innocuous variant, in case declares shl_load. For example, HP-UX 11i declares gettimeofday. */ #define shl_load innocuous_shl_load /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shl_load /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" { #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char shl_load (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_shl_load) || defined (__stub___shl_load) choke me #else char (*f) () = shl_load; #endif #ifdef __cplusplus } #endif int main () { return f != shl_load; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char shl_load (); int main () { shl_load (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else echo "$as_me:$LINENO: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define dlopen to an innocuous variant, in case declares dlopen. For example, HP-UX 11i declares gettimeofday. */ #define dlopen innocuous_dlopen /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef dlopen /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" { #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_dlopen) || defined (__stub___dlopen) choke me #else char (*f) () = dlopen; #endif #ifdef __cplusplus } #endif int main () { return f != dlopen; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_svld_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dld_link (); int main () { dld_link (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_dld_link=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi # Report which library types will actually be built echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler \ CC \ LD \ lt_prog_compiler_wl \ lt_prog_compiler_pic \ lt_prog_compiler_static \ lt_prog_compiler_no_builtin_flag \ export_dynamic_flag_spec \ thread_safe_flag_spec \ whole_archive_flag_spec \ enable_shared_with_static_runtimes \ old_archive_cmds \ old_archive_from_new_cmds \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ archive_cmds \ archive_expsym_cmds \ postinstall_cmds \ postuninstall_cmds \ old_archive_from_expsyms_cmds \ allow_undefined_flag \ no_undefined_flag \ export_symbols_cmds \ hardcode_libdir_flag_spec \ hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ hardcode_automatic \ module_cmds \ module_expsym_cmds \ lt_cv_prog_compiler_c_o \ exclude_expsyms \ include_expsyms; do case $var in old_archive_cmds | \ old_archive_from_new_cmds | \ archive_cmds | \ archive_expsym_cmds | \ module_cmds | \ module_expsym_cmds | \ old_archive_from_expsyms_cmds | \ export_symbols_cmds | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" { echo "$as_me:$LINENO: creating $ofile" >&5 echo "$as_me: creating $ofile" >&6;} cat <<__EOF__ >> "$cfgfile" #! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler # Is the compiler the GNU C compiler? with_gcc=$GCC gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # ### END LIBTOOL CONFIG __EOF__ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" # Check whether --with-tags or --without-tags was given. if test "${with_tags+set}" = set; then withval="$with_tags" tagnames="$withval" fi; if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} else { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in "") ;; *) { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 echo "$as_me: error: invalid tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} { (exit 1); exit 1; }; } fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC compiler_CXX=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_CXX=yes else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_CXX='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_CXX='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported whole_archive_flag_spec_CXX='' link_all_deplibs_CXX=yes if test "$GXX" = yes ; then lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else archive_cmds_CXX='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_CXX=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd[12]*) # C++ shared libraries reported to be fairly broken before switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_CXX='+b $libdir' ;; *) export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix3*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: ;; linux*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC*) # Portland Group C++ compiler archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='${wl}-E' whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. We must also pass each convience library through # to the system linker between allextract/defaultextract. # The C++ compiler will combine linker options so we # cannot just pass the convience library names through # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='${wl}-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. no_undefined_flag_CXX='${wl}-z,text' allow_undefined_flag_CXX='${wl}-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no # The `*' in the case matches for architectures that use `case' in # $output_verbose_cmd can trigger glob expansion during the loop # eval without this substitution. output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` for p in `eval $output_verbose_link_cmd`; do case $p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" \ || test $p = "-R"; then prev=$p continue else prev= fi if test "$pre_test_object_deps_done" = no; then case $p in -L* | -R*) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi ;; *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $rm -f confest.$objext # PORTME: override above test on systems where it is broken case $host_os in interix3*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; solaris*) case $cc_basename in CC*) # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. postdeps_CXX='-lCstd -lCrun' ;; esac ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_CXX='-qnocommon' lt_prog_compiler_wl_CXX='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; icpc* | ecpc*) # Intel C++ lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC*) # Portland Group C++ compiler. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:11536: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:11540: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_CXX=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_CXX" >&6 if test x"$lt_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_CXX=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_CXX=yes fi else lt_prog_compiler_static_works_CXX=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_CXX" >&6 if test x"$lt_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_CXX=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:11640: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:11644: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw*) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([^ ]*\) [^ ]*/\1 DATA/;/^I /d;/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_CXX=no else archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '#line 12176 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || \ test -n "$runpath_var_CXX" || \ test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 echo "${ECHO_T}$hardcode_action_CXX" >&6 if test "$hardcode_action_CXX" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_CXX \ CC_CXX \ LD_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_static_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ export_dynamic_flag_spec_CXX \ thread_safe_flag_spec_CXX \ whole_archive_flag_spec_CXX \ enable_shared_with_static_runtimes_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ postinstall_cmds_CXX \ postuninstall_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ export_symbols_cmds_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ hardcode_automatic_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ lt_cv_prog_compiler_c_o_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX; do case $var in old_archive_cmds_CXX | \ old_archive_from_new_cmds_CXX | \ archive_cmds_CXX | \ archive_expsym_cmds_CXX | \ module_cmds_CXX | \ module_expsym_cmds_CXX | \ old_archive_from_expsyms_cmds_CXX | \ export_symbols_cmds_CXX | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU C compiler? with_gcc=$GCC_CXX gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_CXX # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_CXX # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_CXX old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_CXX # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_CXX # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_CXX" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu archive_cmds_need_lc_F77=no allow_undefined_flag_F77= always_export_symbols_F77=no archive_expsym_cmds_F77= export_dynamic_flag_spec_F77= hardcode_direct_F77=no hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_minus_L_F77=no hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= link_all_deplibs_F77=unknown old_archive_cmds_F77=$old_archive_cmds no_undefined_flag_F77= whole_archive_flag_spec_F77= enable_shared_with_static_runtimes_F77=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o objext_F77=$objext # Code to be used in simple compile tests lt_simple_compile_test_code=" subroutine t\n return\n end\n" # Code to be used in simple link tests lt_simple_link_test_code=" program t\n end\n" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC compiler_F77=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 GCC_F77="$G77" LD_F77="$LD" lt_prog_compiler_wl_F77= lt_prog_compiler_pic_F77= lt_prog_compiler_static_F77= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_static_F77='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_F77='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_F77=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_F77=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_F77='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' else lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_F77='-qnocommon' lt_prog_compiler_wl_F77='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_F77='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_F77='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_F77='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_F77='-non_shared' ;; newsos6) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fpic' lt_prog_compiler_static_F77='-Bstatic' ;; ccc*) lt_prog_compiler_wl_F77='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_F77='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; solaris*) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_F77='-Qoption ld ';; *) lt_prog_compiler_wl_F77='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_F77='-Qoption ld ' lt_prog_compiler_pic_F77='-PIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_F77='-Kconform_pic' lt_prog_compiler_static_F77='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; unicos*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_can_build_shared_F77=no ;; uts4*) lt_prog_compiler_pic_F77='-pic' lt_prog_compiler_static_F77='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_F77=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_F77"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_F77=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_F77" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:13234: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:13238: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_F77=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_F77" >&6 if test x"$lt_prog_compiler_pic_works_F77" = xyes; then case $lt_prog_compiler_pic_F77 in "" | " "*) ;; *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; esac else lt_prog_compiler_pic_F77= lt_prog_compiler_can_build_shared_F77=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_F77= ;; *) lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_F77=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_F77=yes fi else lt_prog_compiler_static_works_F77=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_F77" >&6 if test x"$lt_prog_compiler_static_works_F77" = xyes; then : else lt_prog_compiler_static_F77= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_F77=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:13338: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:13342: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_F77=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag_F77= enable_shared_with_static_runtimes_F77=no archive_cmds_F77= archive_expsym_cmds_F77= old_archive_From_new_cmds_F77= old_archive_from_expsyms_cmds_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= thread_safe_flag_spec_F77= hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_direct_F77=no hardcode_minus_L_F77=no hardcode_shlibpath_var_F77=unsupported link_all_deplibs_F77=unknown hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= always_export_symbols_F77=no export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_F77= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_F77="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_F77=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_F77='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_F77= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_F77=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_F77=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_F77=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_F77=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_F77='-L$libdir' allow_undefined_flag_F77=unsupported always_export_symbols_F77=no enable_shared_with_static_runtimes_F77=yes export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_F77=no fi ;; interix3*) hardcode_direct_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds_F77='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs_F77=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_F77=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_F77=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac ;; sunos4*) archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac if test "$ld_shlibs_F77" = no; then runpath_var= hardcode_libdir_flag_spec_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_F77=unsupported always_export_symbols_F77=yes archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_F77=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_F77=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_F77='' hardcode_direct_F77=yes hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_F77=yes else # We have old collect2 hardcode_direct_F77=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_F77=yes hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_libdir_separator_F77= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_F77=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_F77='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_F77="-z nodefs" archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_F77=' ${wl}-bernotok' allow_undefined_flag_F77=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_F77='$convenience' archive_cmds_need_lc_F77=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # see comment about different semantics on the GNU ld section ld_shlibs_F77=no ;; bsdi[45]*) export_dynamic_flag_spec_F77=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_F77=' ' allow_undefined_flag_F77=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_F77='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_F77='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_F77='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_F77=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_F77='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_F77='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_F77=no hardcode_direct_F77=no hardcode_automatic_F77=yes hardcode_shlibpath_var_F77=unsupported whole_archive_flag_spec_F77='' link_all_deplibs_F77=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_F77='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_F77=no ;; esac fi ;; dgux*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; freebsd1*) ld_shlibs_F77=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_F77='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_F77='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes export_dynamic_flag_spec_F77='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_F77='+b $libdir' hardcode_direct_F77=no hardcode_shlibpath_var_F77=no ;; *) hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: link_all_deplibs_F77=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; newsos6) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_shlibpath_var_F77=no ;; openbsd*) hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-R$libdir' ;; *) archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes allow_undefined_flag_F77=unsupported archive_cmds_F77='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_F77='-rpath $libdir' fi hardcode_libdir_separator_F77=: ;; solaris*) no_undefined_flag_F77=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_shlibpath_var_F77=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec_F77='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs_F77=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; sysv4) case $host_vendor in sni) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_F77='$CC -r -o $output$reload_objs' hardcode_direct_F77=no ;; motorola) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_F77=no ;; sysv4.3*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no export_dynamic_flag_spec_F77='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_F77=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag_F77='${wl}-z,text' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_F77='${wl}-z,text' allow_undefined_flag_F77='${wl}-z,nodefs' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes export_dynamic_flag_spec_F77='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; *) ld_shlibs_F77=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 echo "${ECHO_T}$ld_shlibs_F77" >&6 test "$ld_shlibs_F77" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_F77" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_F77=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_F77 in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_F77 pic_flag=$lt_prog_compiler_pic_F77 compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_F77 allow_undefined_flag_F77= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_F77=no else archive_cmds_need_lc_F77=yes fi allow_undefined_flag_F77=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '#line 14787 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_F77= if test -n "$hardcode_libdir_flag_spec_F77" || \ test -n "$runpath_var_F77" || \ test "X$hardcode_automatic_F77" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_F77" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, F77)" != no && test "$hardcode_minus_L_F77" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_F77=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_F77=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_F77=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 echo "${ECHO_T}$hardcode_action_F77" >&6 if test "$hardcode_action_F77" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_F77 \ CC_F77 \ LD_F77 \ lt_prog_compiler_wl_F77 \ lt_prog_compiler_pic_F77 \ lt_prog_compiler_static_F77 \ lt_prog_compiler_no_builtin_flag_F77 \ export_dynamic_flag_spec_F77 \ thread_safe_flag_spec_F77 \ whole_archive_flag_spec_F77 \ enable_shared_with_static_runtimes_F77 \ old_archive_cmds_F77 \ old_archive_from_new_cmds_F77 \ predep_objects_F77 \ postdep_objects_F77 \ predeps_F77 \ postdeps_F77 \ compiler_lib_search_path_F77 \ archive_cmds_F77 \ archive_expsym_cmds_F77 \ postinstall_cmds_F77 \ postuninstall_cmds_F77 \ old_archive_from_expsyms_cmds_F77 \ allow_undefined_flag_F77 \ no_undefined_flag_F77 \ export_symbols_cmds_F77 \ hardcode_libdir_flag_spec_F77 \ hardcode_libdir_flag_spec_ld_F77 \ hardcode_libdir_separator_F77 \ hardcode_automatic_F77 \ module_cmds_F77 \ module_expsym_cmds_F77 \ lt_cv_prog_compiler_c_o_F77 \ exclude_expsyms_F77 \ include_expsyms_F77; do case $var in old_archive_cmds_F77 | \ old_archive_from_new_cmds_F77 | \ archive_cmds_F77 | \ archive_expsym_cmds_F77 | \ module_cmds_F77 | \ module_expsym_cmds_F77 | \ old_archive_from_expsyms_cmds_F77 | \ export_symbols_cmds_F77 | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_F77 # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_F77 # Is the compiler the GNU C compiler? with_gcc=$GCC_F77 gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_F77 # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_F77 # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_F77 pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_F77 # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_F77 # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_F77 old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_F77 archive_expsym_cmds=$lt_archive_expsym_cmds_F77 postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_F77 module_expsym_cmds=$lt_module_expsym_cmds_F77 # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_F77 # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_F77 # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_F77 # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_F77 # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_F77 # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_F77 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_F77 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_F77 # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_F77 # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_F77" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_F77 # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_F77 # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_F77 # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_F77 # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o objext_GCJ=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}\n" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC compiler_GCJ=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # GCJ did not exist at the time GCC didn't implicitly link libc in. archive_cmds_need_lc_GCJ=no old_archive_cmds_GCJ=$old_archive_cmds lt_prog_compiler_no_builtin_flag_GCJ= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:15565: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:15569: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl_GCJ= lt_prog_compiler_pic_GCJ= lt_prog_compiler_static_GCJ= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_static_GCJ='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_GCJ='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_GCJ='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_GCJ=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_GCJ=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_GCJ='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' else lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_GCJ='-qnocommon' lt_prog_compiler_wl_GCJ='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_GCJ='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_GCJ='-non_shared' ;; newsos6) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-fpic' lt_prog_compiler_static_GCJ='-Bstatic' ;; ccc*) lt_prog_compiler_wl_GCJ='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_GCJ='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; solaris*) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_GCJ='-Qoption ld ';; *) lt_prog_compiler_wl_GCJ='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_GCJ='-Qoption ld ' lt_prog_compiler_pic_GCJ='-PIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_GCJ='-Kconform_pic' lt_prog_compiler_static_GCJ='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; unicos*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_can_build_shared_GCJ=no ;; uts4*) lt_prog_compiler_pic_GCJ='-pic' lt_prog_compiler_static_GCJ='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_GCJ=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_GCJ"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_GCJ=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_GCJ" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:15833: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:15837: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_GCJ=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_GCJ" >&6 if test x"$lt_prog_compiler_pic_works_GCJ" = xyes; then case $lt_prog_compiler_pic_GCJ in "" | " "*) ;; *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;; esac else lt_prog_compiler_pic_GCJ= lt_prog_compiler_can_build_shared_GCJ=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_GCJ= ;; *) lt_prog_compiler_pic_GCJ="$lt_prog_compiler_pic_GCJ" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_GCJ=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_GCJ=yes fi else lt_prog_compiler_static_works_GCJ=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_GCJ" >&6 if test x"$lt_prog_compiler_static_works_GCJ" = xyes; then : else lt_prog_compiler_static_GCJ= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_GCJ=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:15937: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:15941: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_GCJ=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag_GCJ= enable_shared_with_static_runtimes_GCJ=no archive_cmds_GCJ= archive_expsym_cmds_GCJ= old_archive_From_new_cmds_GCJ= old_archive_from_expsyms_cmds_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= thread_safe_flag_spec_GCJ= hardcode_libdir_flag_spec_GCJ= hardcode_libdir_flag_spec_ld_GCJ= hardcode_libdir_separator_GCJ= hardcode_direct_GCJ=no hardcode_minus_L_GCJ=no hardcode_shlibpath_var_GCJ=unsupported link_all_deplibs_GCJ=unknown hardcode_automatic_GCJ=no module_cmds_GCJ= module_expsym_cmds_GCJ= always_export_symbols_GCJ=no export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_GCJ= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_GCJ="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_GCJ=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_GCJ= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_GCJ=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_GCJ=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_GCJ=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_GCJ='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_GCJ=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, GCJ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_GCJ='-L$libdir' allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=no enable_shared_with_static_runtimes_GCJ=yes export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_GCJ=no fi ;; interix3*) hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_GCJ='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds_GCJ='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs_GCJ=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_GCJ=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_GCJ=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac ;; sunos4*) archive_cmds_GCJ='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac if test "$ld_shlibs_GCJ" = no; then runpath_var= hardcode_libdir_flag_spec_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=yes archive_expsym_cmds_GCJ='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_GCJ=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_GCJ=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_GCJ='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_GCJ='' hardcode_direct_GCJ=yes hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_GCJ=yes else # We have old collect2 hardcode_direct_GCJ=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_GCJ=yes hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_libdir_separator_GCJ= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_GCJ=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_GCJ='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_GCJ='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_GCJ="-z nodefs" archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_GCJ=' ${wl}-bernotok' allow_undefined_flag_GCJ=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_GCJ='$convenience' archive_cmds_need_lc_GCJ=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # see comment about different semantics on the GNU ld section ld_shlibs_GCJ=no ;; bsdi[45]*) export_dynamic_flag_spec_GCJ=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_GCJ=' ' allow_undefined_flag_GCJ=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_GCJ='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_GCJ='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_GCJ=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_GCJ='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_GCJ='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_GCJ=no hardcode_direct_GCJ=no hardcode_automatic_GCJ=yes hardcode_shlibpath_var_GCJ=unsupported whole_archive_flag_spec_GCJ='' link_all_deplibs_GCJ=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_GCJ='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_GCJ=no ;; esac fi ;; dgux*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; freebsd1*) ld_shlibs_GCJ=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_GCJ='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_GCJ='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_GCJ='+b $libdir' hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no ;; *) hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: link_all_deplibs_GCJ=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_GCJ='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; newsos6) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_shlibpath_var_GCJ=no ;; openbsd*) hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' ;; *) archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes allow_undefined_flag_GCJ=unsupported archive_cmds_GCJ='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_GCJ='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_GCJ='-rpath $libdir' fi hardcode_libdir_separator_GCJ=: ;; solaris*) no_undefined_flag_GCJ=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_shlibpath_var_GCJ=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec_GCJ='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs_GCJ=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_GCJ='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; sysv4) case $host_vendor in sni) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_GCJ='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_GCJ='$CC -r -o $output$reload_objs' hardcode_direct_GCJ=no ;; motorola) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_GCJ=no ;; sysv4.3*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no export_dynamic_flag_spec_GCJ='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_GCJ=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag_GCJ='${wl}-z,text' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_GCJ='${wl}-z,text' allow_undefined_flag_GCJ='${wl}-z,nodefs' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; *) ld_shlibs_GCJ=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 echo "${ECHO_T}$ld_shlibs_GCJ" >&6 test "$ld_shlibs_GCJ" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_GCJ" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_GCJ=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_GCJ in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_GCJ pic_flag=$lt_prog_compiler_pic_GCJ compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ allow_undefined_flag_GCJ= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_GCJ=no else archive_cmds_need_lc_GCJ=yes fi allow_undefined_flag_GCJ=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '#line 17406 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_GCJ= if test -n "$hardcode_libdir_flag_spec_GCJ" || \ test -n "$runpath_var_GCJ" || \ test "X$hardcode_automatic_GCJ" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_GCJ" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, GCJ)" != no && test "$hardcode_minus_L_GCJ" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_GCJ=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_GCJ=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_GCJ=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 echo "${ECHO_T}$hardcode_action_GCJ" >&6 if test "$hardcode_action_GCJ" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_GCJ \ CC_GCJ \ LD_GCJ \ lt_prog_compiler_wl_GCJ \ lt_prog_compiler_pic_GCJ \ lt_prog_compiler_static_GCJ \ lt_prog_compiler_no_builtin_flag_GCJ \ export_dynamic_flag_spec_GCJ \ thread_safe_flag_spec_GCJ \ whole_archive_flag_spec_GCJ \ enable_shared_with_static_runtimes_GCJ \ old_archive_cmds_GCJ \ old_archive_from_new_cmds_GCJ \ predep_objects_GCJ \ postdep_objects_GCJ \ predeps_GCJ \ postdeps_GCJ \ compiler_lib_search_path_GCJ \ archive_cmds_GCJ \ archive_expsym_cmds_GCJ \ postinstall_cmds_GCJ \ postuninstall_cmds_GCJ \ old_archive_from_expsyms_cmds_GCJ \ allow_undefined_flag_GCJ \ no_undefined_flag_GCJ \ export_symbols_cmds_GCJ \ hardcode_libdir_flag_spec_GCJ \ hardcode_libdir_flag_spec_ld_GCJ \ hardcode_libdir_separator_GCJ \ hardcode_automatic_GCJ \ module_cmds_GCJ \ module_expsym_cmds_GCJ \ lt_cv_prog_compiler_c_o_GCJ \ exclude_expsyms_GCJ \ include_expsyms_GCJ; do case $var in old_archive_cmds_GCJ | \ old_archive_from_new_cmds_GCJ | \ archive_cmds_GCJ | \ archive_expsym_cmds_GCJ | \ module_cmds_GCJ | \ module_expsym_cmds_GCJ | \ old_archive_from_expsyms_cmds_GCJ | \ export_symbols_cmds_GCJ | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_GCJ # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_GCJ # Is the compiler the GNU C compiler? with_gcc=$GCC_GCJ gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_GCJ # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_GCJ # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_GCJ pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_GCJ # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_GCJ old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_GCJ archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_GCJ module_expsym_cmds=$lt_module_expsym_cmds_GCJ # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_GCJ # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_GCJ # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_GCJ # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_GCJ # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_GCJ # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_GCJ # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_GCJ # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_GCJ # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_GCJ # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_GCJ # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_GCJ # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_GCJ" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_GCJ # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_GCJ # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_GCJ # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_GCJ # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" else tagname="" fi ;; RC) # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o objext_RC=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC compiler_RC=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` lt_cv_prog_compiler_c_o_RC=yes # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_RC \ CC_RC \ LD_RC \ lt_prog_compiler_wl_RC \ lt_prog_compiler_pic_RC \ lt_prog_compiler_static_RC \ lt_prog_compiler_no_builtin_flag_RC \ export_dynamic_flag_spec_RC \ thread_safe_flag_spec_RC \ whole_archive_flag_spec_RC \ enable_shared_with_static_runtimes_RC \ old_archive_cmds_RC \ old_archive_from_new_cmds_RC \ predep_objects_RC \ postdep_objects_RC \ predeps_RC \ postdeps_RC \ compiler_lib_search_path_RC \ archive_cmds_RC \ archive_expsym_cmds_RC \ postinstall_cmds_RC \ postuninstall_cmds_RC \ old_archive_from_expsyms_cmds_RC \ allow_undefined_flag_RC \ no_undefined_flag_RC \ export_symbols_cmds_RC \ hardcode_libdir_flag_spec_RC \ hardcode_libdir_flag_spec_ld_RC \ hardcode_libdir_separator_RC \ hardcode_automatic_RC \ module_cmds_RC \ module_expsym_cmds_RC \ lt_cv_prog_compiler_c_o_RC \ exclude_expsyms_RC \ include_expsyms_RC; do case $var in old_archive_cmds_RC | \ old_archive_from_new_cmds_RC | \ archive_cmds_RC | \ archive_expsym_cmds_RC | \ module_cmds_RC | \ module_expsym_cmds_RC | \ old_archive_from_expsyms_cmds_RC | \ export_symbols_cmds_RC | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_RC # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_RC # Is the compiler the GNU C compiler? with_gcc=$GCC_RC gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_RC # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_RC # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_RC pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_RC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_RC old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_RC archive_expsym_cmds=$lt_archive_expsym_cmds_RC postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_RC module_expsym_cmds=$lt_module_expsym_cmds_RC # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_predep_objects_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_postdep_objects_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_RC # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_RC # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_RC # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_RC # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_RC # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_RC # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_RC # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_RC # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_RC # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_RC # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_RC # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_RC" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_RC # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_RC # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_RC # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_RC # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" ;; *) { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 echo "$as_me: error: Unsupported tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 echo "$as_me: error: unable to update list of available tagged configurations." >&2;} { (exit 1); exit 1; }; } fi fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' # Prevent multiple expansion # Checks for header files. echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi for ac_header in stdlib.h string.h unistd.h wchar.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------- ## ## Report this to xiaoyjy@gmail.com ## ## -------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done # Checks for typedefs, structures, and compiler characteristics. echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 if test "${ac_cv_c_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { /* FIXME: Include the comments suggested by Paul. */ #ifndef __cplusplus /* Ultrix mips cc rejects this. */ typedef int charset[2]; const charset x; /* SunOS 4.1.1 cc rejects this. */ char const *const *ccp; char **p; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; ccp = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++ccp; p = (char**) ccp; ccp = (char const *const *) p; { /* SCO 3.2v4 cc rejects this. */ char *t; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; }; struct s *b; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; } #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_const=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_c_const=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6 if test $ac_cv_c_const = no; then cat >>confdefs.h <<\_ACEOF #define const _ACEOF fi echo "$as_me:$LINENO: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { if ((size_t *) 0) return 0; if (sizeof (size_t)) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_size_t=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned _ACEOF fi # echo $host_os; may use host_os here. OS_TYPE="-D"`uname -s` for i in /usr/local/iconv /usr/local /usr; do (test -f $i/lib/libiconv.so ||\ test -f $i/lib/libiconv.a) && ICONV_DIR=$i && break done if test -z "$ICONV_DIR"; then ICONV_LIBS="" ICONV_INCLUDES="" else ICONV_LIBS="-L$ICONV_DIR/lib -liconv" ICONV_INCLUDES="-I$ICONV_DIR/include" fi # Checks for library functions. for ac_header in stdlib.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------- ## ## Report this to xiaoyjy@gmail.com ## ## -------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done echo "$as_me:$LINENO: checking for GNU libc compatible malloc" >&5 echo $ECHO_N "checking for GNU libc compatible malloc... $ECHO_C" >&6 if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_func_malloc_0_nonnull=no else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #if STDC_HEADERS || HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { exit (malloc (0) ? 0 : 1); ; return 0; } _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_malloc_0_nonnull=yes else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_func_malloc_0_nonnull=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_func_malloc_0_nonnull" >&5 echo "${ECHO_T}$ac_cv_func_malloc_0_nonnull" >&6 if test $ac_cv_func_malloc_0_nonnull = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_MALLOC 1 _ACEOF else cat >>confdefs.h <<\_ACEOF #define HAVE_MALLOC 0 _ACEOF case $LIBOBJS in "malloc.$ac_objext" | \ *" malloc.$ac_objext" | \ "malloc.$ac_objext "* | \ *" malloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; esac cat >>confdefs.h <<\_ACEOF #define malloc rpl_malloc _ACEOF fi echo "$as_me:$LINENO: checking for working memcmp" >&5 echo $ECHO_N "checking for working memcmp... $ECHO_C" >&6 if test "${ac_cv_func_memcmp_working+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_func_memcmp_working=no else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { /* Some versions of memcmp are not 8-bit clean. */ char c0 = 0x40, c1 = 0x80, c2 = 0x81; if (memcmp(&c0, &c2, 1) >= 0 || memcmp(&c1, &c2, 1) >= 0) exit (1); /* The Next x86 OpenStep bug shows up only when comparing 16 bytes or more and with at least one buffer not starting on a 4-byte boundary. William Lewis provided this test program. */ { char foo[21]; char bar[21]; int i; for (i = 0; i < 4; i++) { char *a = foo + i; char *b = bar + i; strcpy (a, "--------01111111"); strcpy (b, "--------10000000"); if (memcmp (a, b, 16) >= 0) exit (1); } exit (0); } ; return 0; } _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_memcmp_working=yes else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_func_memcmp_working=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_func_memcmp_working" >&5 echo "${ECHO_T}$ac_cv_func_memcmp_working" >&6 test $ac_cv_func_memcmp_working = no && case $LIBOBJS in "memcmp.$ac_objext" | \ *" memcmp.$ac_objext" | \ "memcmp.$ac_objext "* | \ *" memcmp.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS memcmp.$ac_objext" ;; esac for ac_func in memset strncasecmp memcpy do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" { #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, don't put newlines in cache variables' values. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. { (set) 2>&1 | case `(ac_space=' '; set | grep ac_space) 2>&1` in *ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote # substitution turns \\\\ into \\, and sed turns \\ into \). sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n \ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; esac; } | sed ' t clear : clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ : end' >>confcache if diff $cache_file confcache >/dev/null 2>&1; then :; else if test -w $cache_file; then test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" cat confcache >$cache_file else echo "not updating unwritable cache $cache_file" fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # VPATH may cause trouble with some makes, so we remove $(srcdir), # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=/{ s/:*\$(srcdir):*/:/; s/:*\${srcdir}:*/:/; s/:*@srcdir@:*/:/; s/^\([^=]*=[ ]*\):*/\1/; s/:*$//; s/^[^=]*=[ ]*$//; }' fi DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_i=`echo "$ac_i" | sed 's/\$U\././;s/\.o$//;s/\.obj$//'` # 2. Add them. ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then set -o posix fi DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # Work around bugs in pre-3.0 UWIN ksh. $as_unset ENV MAIL MAILPATH PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)$' \| \ . : '\(.\)' 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } /^X\/\(\/\/\)$/{ s//\1/; q; } /^X\/\(\/\).*/{ s//\1/; q; } s/.*/./; q'` # PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" || { # Find who we are. Look in the path if we contain no path at all # relative or not. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} { (exit 1); exit 1; }; } fi case $CONFIG_SHELL in '') as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for as_base in sh bash ksh sh5; do case $as_dir in /*) if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } CONFIG_SHELL=$as_dir/$as_base export CONFIG_SHELL exec "$CONFIG_SHELL" "$0" ${1+"$@"} fi;; esac done done ;; esac # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line before each line; the second 'sed' does the real # work. The second script uses 'N' to pair each line-number line # with the numbered line, and appends trailing '-' during # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) sed '=' <$as_myself | sed ' N s,$,-, : loop s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop s,-$,, s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && chmod +x $as_me.lineno || { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensible to this). . ./$as_me.lineno # Exit status is that of the last command. exit } case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in *c*,-n*) ECHO_N= ECHO_C=' ' ECHO_T=' ' ;; *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then # We could just check for DJGPP; but this test a) works b) is more generic # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). if test -f conf$$.exe; then # Don't use ln at all; we don't have any links as_ln_s='cp -p' else as_ln_s='ln -s' fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" # IFS # We need space, tab and new line, in precisely that order. as_nl=' ' IFS=" $as_nl" # CDPATH. $as_unset CDPATH exec 6>&1 # Open the log real soon, to keep \$[0] and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. Logging --version etc. is OK. exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX } >&5 cat >&5 <<_CSEOF This file was extended by cconv $as_me 0.6.2, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ _CSEOF echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 echo >&5 _ACEOF # Files that config.status was made for. if test -n "$ac_config_files"; then echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS fi if test -n "$ac_config_headers"; then echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS fi if test -n "$ac_config_links"; then echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS fi if test -n "$ac_config_commands"; then echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS fi cat >>$CONFIG_STATUS <<\_ACEOF ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ cconv config.status 0.6.2 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2003 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." srcdir=$srcdir INSTALL="$INSTALL" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. ac_need_defaults=: while test $# != 0 do case $1 in --*=*) ac_option=`expr "x$1" : 'x\([^=]*\)='` ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` ac_shift=: ;; -*) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; *) # This is not an option, so the user has probably given explicit # arguments. ac_option=$1 ac_need_defaults=false;; esac case $ac_option in # Handling of the options. _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --vers* | -V ) echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header { { echo "$as_me:$LINENO: error: ambiguous option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2;} { (exit 1); exit 1; }; };; --help | --hel | -h ) echo "$ac_cs_usage"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2;} { (exit 1); exit 1; }; } ;; *) ac_config_targets="$ac_config_targets $1" ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF if \$ac_cs_recheck; then echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS section. # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF for ac_config_target in $ac_config_targets do case "$ac_config_target" in # Handling of arguments. "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason to put it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Create a temporary directory, and hook for its removal unless debugging. $debug || { trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./confstat$$-$RANDOM (umask 077 && mkdir $tmp) } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "\$CONFIG_FILES"; then # Protect against being on the right side of a sed subst in config.status. sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF s,@SHELL@,$SHELL,;t t s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t s,@exec_prefix@,$exec_prefix,;t t s,@prefix@,$prefix,;t t s,@program_transform_name@,$program_transform_name,;t t s,@bindir@,$bindir,;t t s,@sbindir@,$sbindir,;t t s,@libexecdir@,$libexecdir,;t t s,@datadir@,$datadir,;t t s,@sysconfdir@,$sysconfdir,;t t s,@sharedstatedir@,$sharedstatedir,;t t s,@localstatedir@,$localstatedir,;t t s,@libdir@,$libdir,;t t s,@includedir@,$includedir,;t t s,@oldincludedir@,$oldincludedir,;t t s,@infodir@,$infodir,;t t s,@mandir@,$mandir,;t t s,@build_alias@,$build_alias,;t t s,@host_alias@,$host_alias,;t t s,@target_alias@,$target_alias,;t t s,@DEFS@,$DEFS,;t t s,@ECHO_C@,$ECHO_C,;t t s,@ECHO_N@,$ECHO_N,;t t s,@ECHO_T@,$ECHO_T,;t t s,@LIBS@,$LIBS,;t t s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t s,@INSTALL_DATA@,$INSTALL_DATA,;t t s,@CYGPATH_W@,$CYGPATH_W,;t t s,@PACKAGE@,$PACKAGE,;t t s,@VERSION@,$VERSION,;t t s,@ACLOCAL@,$ACLOCAL,;t t s,@AUTOCONF@,$AUTOCONF,;t t s,@AUTOMAKE@,$AUTOMAKE,;t t s,@AUTOHEADER@,$AUTOHEADER,;t t s,@MAKEINFO@,$MAKEINFO,;t t s,@install_sh@,$install_sh,;t t s,@STRIP@,$STRIP,;t t s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t s,@mkdir_p@,$mkdir_p,;t t s,@AWK@,$AWK,;t t s,@SET_MAKE@,$SET_MAKE,;t t s,@am__leading_dot@,$am__leading_dot,;t t s,@AMTAR@,$AMTAR,;t t s,@am__tar@,$am__tar,;t t s,@am__untar@,$am__untar,;t t s,@CXX@,$CXX,;t t s,@CXXFLAGS@,$CXXFLAGS,;t t s,@LDFLAGS@,$LDFLAGS,;t t s,@CPPFLAGS@,$CPPFLAGS,;t t s,@ac_ct_CXX@,$ac_ct_CXX,;t t s,@EXEEXT@,$EXEEXT,;t t s,@OBJEXT@,$OBJEXT,;t t s,@DEPDIR@,$DEPDIR,;t t s,@am__include@,$am__include,;t t s,@am__quote@,$am__quote,;t t s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t s,@CXXDEPMODE@,$CXXDEPMODE,;t t s,@am__fastdepCXX_TRUE@,$am__fastdepCXX_TRUE,;t t s,@am__fastdepCXX_FALSE@,$am__fastdepCXX_FALSE,;t t s,@CC@,$CC,;t t s,@CFLAGS@,$CFLAGS,;t t s,@ac_ct_CC@,$ac_ct_CC,;t t s,@CCDEPMODE@,$CCDEPMODE,;t t s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t s,@build@,$build,;t t s,@build_cpu@,$build_cpu,;t t s,@build_vendor@,$build_vendor,;t t s,@build_os@,$build_os,;t t s,@host@,$host,;t t s,@host_cpu@,$host_cpu,;t t s,@host_vendor@,$host_vendor,;t t s,@host_os@,$host_os,;t t s,@SED@,$SED,;t t s,@EGREP@,$EGREP,;t t s,@LN_S@,$LN_S,;t t s,@ECHO@,$ECHO,;t t s,@AR@,$AR,;t t s,@ac_ct_AR@,$ac_ct_AR,;t t s,@RANLIB@,$RANLIB,;t t s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t s,@CPP@,$CPP,;t t s,@CXXCPP@,$CXXCPP,;t t s,@F77@,$F77,;t t s,@FFLAGS@,$FFLAGS,;t t s,@ac_ct_F77@,$ac_ct_F77,;t t s,@LIBTOOL@,$LIBTOOL,;t t s,@OS_TYPE@,$OS_TYPE,;t t s,@ICONV_INCLUDES@,$ICONV_INCLUDES,;t t s,@ICONV_LIBS@,$ICONV_LIBS,;t t s,@LIBOBJS@,$LIBOBJS,;t t s,@LTLIBOBJS@,$LTLIBOBJS,;t t CEOF _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # Split the substitutions into bite-sized pieces for seds with # small command number limits, like on Digital OSF/1 and HP-UX. ac_max_sed_lines=48 ac_sed_frag=1 # Number of current file. ac_beg=1 # First line for current file. ac_end=$ac_max_sed_lines # Line after last line for current file. ac_more_lines=: ac_sed_cmds= while $ac_more_lines; do if test $ac_beg -gt 1; then sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag else sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag fi if test ! -s $tmp/subs.frag; then ac_more_lines=false else # The purpose of the label and of the branching condition is to # speed up the sed processing (if there are no `@' at all, there # is no need to browse any of the substitutions). # These are the two extra sed commands mentioned above. (echo ':t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed if test -z "$ac_sed_cmds"; then ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" else ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" fi ac_sed_frag=`expr $ac_sed_frag + 1` ac_beg=$ac_end ac_end=`expr $ac_end + $ac_max_sed_lines` fi done if test -z "$ac_sed_cmds"; then ac_sed_cmds=cat fi fi # test -n "$CONFIG_FILES" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case $ac_file in - | *:- | *:-:* ) # input from stdin cat >$tmp/stdin ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; * ) ac_file_in=$ac_file.in ;; esac # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. ac_dir=`(dirname "$ac_file") 2>/dev/null || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p "$ac_dir" else as_dir="$ac_dir" as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A "../" for each directory in $ac_dir_suffix. ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` else ac_dir_suffix= ac_top_builddir= fi case $srcdir in .) # No --srcdir option. We are building in place. ac_srcdir=. if test -z "$ac_top_builddir"; then ac_top_srcdir=. else ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` fi ;; [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ;; *) # Relative path. ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_builddir$srcdir ;; esac # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_builddir$INSTALL ;; esac if test x"$ac_file" != x-; then { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ if test x"$ac_file" = x-; then configure_input= else configure_input="$ac_file. " fi configure_input=$configure_input"Generated from `echo $ac_file_in | sed 's,.*/,,'` by configure." # First look for the input files in the build tree, otherwise in the # src tree. ac_file_inputs=`IFS=: for f in $ac_file_in; do case $f in -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo "$f";; *) # Relative if test -f "$f"; then # Build tree echo "$f" elif test -f "$srcdir/$f"; then # Source tree echo "$srcdir/$f" else # /dev/null tree { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; esac done` || { (exit 1); exit 1; } _ACEOF cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s,@configure_input@,$configure_input,;t t s,@srcdir@,$ac_srcdir,;t t s,@abs_srcdir@,$ac_abs_srcdir,;t t s,@top_srcdir@,$ac_top_srcdir,;t t s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t s,@builddir@,$ac_builddir,;t t s,@abs_builddir@,$ac_abs_builddir,;t t s,@top_builddir@,$ac_top_builddir,;t t s,@abs_top_builddir@,$ac_abs_top_builddir,;t t s,@INSTALL@,$ac_INSTALL,;t t " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out rm -f $tmp/stdin if test x"$ac_file" != x-; then mv $tmp/out $ac_file else cat $tmp/out rm -f $tmp/out fi done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # # CONFIG_HEADER section. # # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where # NAME is the cpp macro being defined and VALUE is the value it is being given. # # ac_d sets the value in "#define NAME VALUE" lines. ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' ac_dB='[ ].*$,\1#\2' ac_dC=' ' ac_dD=',;t' # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' ac_uB='$,\1#\2define\3' ac_uC=' ' ac_uD=',;t' for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case $ac_file in - | *:- | *:-:* ) # input from stdin cat >$tmp/stdin ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; * ) ac_file_in=$ac_file.in ;; esac test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the # src tree. ac_file_inputs=`IFS=: for f in $ac_file_in; do case $f in -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } # Do quote $f, to prevent DOS paths from being IFS'd. echo "$f";; *) # Relative if test -f "$f"; then # Build tree echo "$f" elif test -f "$srcdir/$f"; then # Source tree echo "$srcdir/$f" else # /dev/null tree { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; esac done` || { (exit 1); exit 1; } # Remove the trailing spaces. sed 's/[ ]*$//' $ac_file_inputs >$tmp/in _ACEOF # Transform confdefs.h into two sed scripts, `conftest.defines' and # `conftest.undefs', that substitutes the proper values into # config.h.in to produce config.h. The first handles `#define' # templates, and the second `#undef' templates. # And first: Protect against being on the right side of a sed subst in # config.status. Protect against being in an unquoted here document # in config.status. rm -f conftest.defines conftest.undefs # Using a here document instead of a string reduces the quoting nightmare. # Putting comments in sed scripts is not portable. # # `end' is used to avoid that the second main sed command (meant for # 0-ary CPP macros) applies to n-ary macro definitions. # See the Autoconf documentation for `clear'. cat >confdef2sed.sed <<\_ACEOF s/[\\&,]/\\&/g s,[\\$`],\\&,g t clear : clear s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp t end s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp : end _ACEOF # If some macros were called several times there might be several times # the same #defines, which is useless. Nevertheless, we may not want to # sort them, since we want the *last* AC-DEFINE to be honored. uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs rm -f confdef2sed.sed # This sed command replaces #undef with comments. This is necessary, for # example, in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. cat >>conftest.undefs <<\_ACEOF s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, _ACEOF # Break up conftest.defines because some shells have a limit on the size # of here documents, and old seds have small limits too (100 cmds). echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS echo ' :' >>$CONFIG_STATUS rm -f conftest.tail while grep . conftest.defines >/dev/null do # Write a limited-size here document to $tmp/defines.sed. echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS # Speed up: don't consider the non `#define' lines. echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS # Work around the forget-to-reset-the-flag bug. echo 't clr' >>$CONFIG_STATUS echo ': clr' >>$CONFIG_STATUS sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF sed -f $tmp/defines.sed $tmp/in >$tmp/out rm -f $tmp/in mv $tmp/out $tmp/in ' >>$CONFIG_STATUS sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail rm -f conftest.defines mv conftest.tail conftest.defines done rm -f conftest.defines echo ' fi # grep' >>$CONFIG_STATUS echo >>$CONFIG_STATUS # Break up conftest.undefs because some shells have a limit on the size # of here documents, and old seds have small limits too (100 cmds). echo ' # Handle all the #undef templates' >>$CONFIG_STATUS rm -f conftest.tail while grep . conftest.undefs >/dev/null do # Write a limited-size here document to $tmp/undefs.sed. echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS # Speed up: don't consider the non `#undef' echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS # Work around the forget-to-reset-the-flag bug. echo 't clr' >>$CONFIG_STATUS echo ': clr' >>$CONFIG_STATUS sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS echo 'CEOF sed -f $tmp/undefs.sed $tmp/in >$tmp/out rm -f $tmp/in mv $tmp/out $tmp/in ' >>$CONFIG_STATUS sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail rm -f conftest.undefs mv conftest.tail conftest.undefs done rm -f conftest.undefs cat >>$CONFIG_STATUS <<\_ACEOF # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ if test x"$ac_file" = x-; then echo "/* Generated by configure. */" >$tmp/config.h else echo "/* $ac_file. Generated by configure. */" >$tmp/config.h fi cat $tmp/in >>$tmp/config.h rm -f $tmp/in if test x"$ac_file" != x-; then if diff $ac_file $tmp/config.h >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`(dirname "$ac_file") 2>/dev/null || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p "$ac_dir" else as_dir="$ac_dir" as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; }; } rm -f $ac_file mv $tmp/config.h $ac_file fi else cat $tmp/config.h rm -f $tmp/config.h fi # Compute $ac_file's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $ac_file | $ac_file:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null || $as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X$ac_file : 'X\(//\)[^/]' \| \ X$ac_file : 'X\(//\)$' \| \ X$ac_file : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X$ac_file | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'`/stamp-h$_am_stamp_count done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # # CONFIG_COMMANDS section. # for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue ac_dest=`echo "$ac_file" | sed 's,:.*,,'` ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_dir=`(dirname "$ac_dest") 2>/dev/null || $as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_dest" : 'X\(//\)[^/]' \| \ X"$ac_dest" : 'X\(//\)$' \| \ X"$ac_dest" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$ac_dest" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p "$ac_dir" else as_dir="$ac_dir" as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A "../" for each directory in $ac_dir_suffix. ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` else ac_dir_suffix= ac_top_builddir= fi case $srcdir in .) # No --srcdir option. We are building in place. ac_srcdir=. if test -z "$ac_top_builddir"; then ac_top_srcdir=. else ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` fi ;; [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ;; *) # Relative path. ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_builddir$srcdir ;; esac # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac { echo "$as_me:$LINENO: executing $ac_dest commands" >&5 echo "$as_me: executing $ac_dest commands" >&6;} case $ac_dest in depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # So let's grep whole file. if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`(dirname "$mf") 2>/dev/null || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`(dirname "$file") 2>/dev/null || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p $dirpart/$fdir else as_dir=$dirpart/$fdir as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5 echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || { (exit 1); exit 1; } fi cconv-0.6.2/README0000664000076400007640000000224611333703306010445 00000000000000=== Introduction === A iconv based simplified-traditional chinese conversion tool iconv is a open source international text conversion tool, if you do not know iconv, go to http://www.gnu.org/software/libiconv/#introduction to learn more. As usual for GNU packages: $ ./configure --prefix=/usr $ make $ make install === Details === Base usage: Usage: iconv [OPTION...] [FILE] Convert encoding of given files from one encoding to another. Input/Output format specification: -f, --from-code=NAME encoding of original text -t, --to-code=NAME encoding for output Information: -l, --list list all known coded character sets Output control: -o, --output=FILE output file -?, --help Give this help list --usage Give a short usage message -V, --version Print program version Example: $ echo "美发现号航天飞机, 上头发奖金;头发应该剪了,后天,皇后" | cconv -f utf-8 -t utf8-tw 美發現號航天飛機, 上頭發獎金;頭髮應該剪了,後天,皇后 Copyright: All the source files and header files are under LGPL. The cconv program is under GPL. cconv-0.6.2/AUTHORS0000664000076400007640000000002411320000165010612 00000000000000xiaoyjy@hotmail.com cconv-0.6.2/Makefile.in0000664000076400007640000005426311333742277011652 00000000000000# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = . am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = cconv$(EXEEXT) DIST_COMMON = README $(am__configure_deps) $(include_HEADERS) \ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS COPYING \ ChangeLog INSTALL NEWS THANKS compile config.guess config.sub \ install-sh ltmain.sh missing subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno configure.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(includedir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) libcconv_la_LIBADD = am_libcconv_la_OBJECTS = libcconv_la-cconv.lo libcconv_la-unicode.lo libcconv_la_OBJECTS = $(am_libcconv_la_OBJECTS) binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_cconv_OBJECTS = cconv-cconv.$(OBJEXT) cconv-main.$(OBJEXT) \ cconv-unicode.$(OBJEXT) cconv_OBJECTS = $(am_cconv_OBJECTS) cconv_LDADD = $(LDADD) DEFAULT_INCLUDES = -I. -I$(srcdir) -I. depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libcconv_la_SOURCES) $(cconv_SOURCES) DIST_SOURCES = $(libcconv_la_SOURCES) $(cconv_SOURCES) includeHEADERS_INSTALL = $(INSTALL_HEADER) HEADERS = $(include_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d $(distdir) \ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr $(distdir); }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ ICONV_INCLUDES = @ICONV_INCLUDES@ ICONV_LIBS = @ICONV_LIBS@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ OS_TYPE = @OS_TYPE@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ AUTOMAKE_OPTIONS = no-dependencies EXTRA_DIST = cconv_table.h cconv_table.cc THANKS test_s2t test_t2s m4/*.m4 AC_CFLAGS = -Wall @ICONV_INCLUDES@ @OS_TYPE@ ACLOCAL_AMFLAGS = -I m4 cconv_SOURCES = cconv.c main.c unicode.c cconv_CFLAGS = ${AC_CFLAGS} cconv_LDFLAGS = @ICONV_LIBS@ lib_LTLIBRARIES = libcconv.la libcconv_la_SOURCES = cconv.c unicode.c libcconv_la_CFLAGS = -Wall @ICONV_INCLUDES@ @OS_TYPE@ include_HEADERS = cconv.h unicode.h all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ cd $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libcconv.la: $(libcconv_la_OBJECTS) $(libcconv_la_DEPENDENCIES) $(LINK) -rpath $(libdir) $(libcconv_la_LDFLAGS) $(libcconv_la_OBJECTS) $(libcconv_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done cconv$(EXEEXT): $(cconv_OBJECTS) $(cconv_DEPENDENCIES) @rm -f cconv$(EXEEXT) $(LINK) $(cconv_LDFLAGS) $(cconv_OBJECTS) $(cconv_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c .c.o: $(COMPILE) -c $< .c.obj: $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: $(LTCOMPILE) -c -o $@ $< libcconv_la-cconv.lo: cconv.c $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcconv_la_CFLAGS) $(CFLAGS) -c -o libcconv_la-cconv.lo `test -f 'cconv.c' || echo '$(srcdir)/'`cconv.c libcconv_la-unicode.lo: unicode.c $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcconv_la_CFLAGS) $(CFLAGS) -c -o libcconv_la-unicode.lo `test -f 'unicode.c' || echo '$(srcdir)/'`unicode.c cconv-cconv.o: cconv.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cconv_CFLAGS) $(CFLAGS) -c -o cconv-cconv.o `test -f 'cconv.c' || echo '$(srcdir)/'`cconv.c cconv-cconv.obj: cconv.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cconv_CFLAGS) $(CFLAGS) -c -o cconv-cconv.obj `if test -f 'cconv.c'; then $(CYGPATH_W) 'cconv.c'; else $(CYGPATH_W) '$(srcdir)/cconv.c'; fi` cconv-main.o: main.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cconv_CFLAGS) $(CFLAGS) -c -o cconv-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c cconv-main.obj: main.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cconv_CFLAGS) $(CFLAGS) -c -o cconv-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` cconv-unicode.o: unicode.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cconv_CFLAGS) $(CFLAGS) -c -o cconv-unicode.o `test -f 'unicode.c' || echo '$(srcdir)/'`unicode.c cconv-unicode.obj: unicode.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cconv_CFLAGS) $(CFLAGS) -c -o cconv-unicode.obj `if test -f 'unicode.c'; then $(CYGPATH_W) 'unicode.c'; else $(CYGPATH_W) '$(srcdir)/unicode.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: install-includeHEADERS: $(include_HEADERS) @$(NORMAL_INSTALL) test -z "$(includedir)" || $(mkdir_p) "$(DESTDIR)$(includedir)" @list='$(include_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \ $(includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \ done uninstall-includeHEADERS: @$(NORMAL_UNINSTALL) @list='$(include_HEADERS)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \ rm -f "$(DESTDIR)$(includedir)/$$f"; \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) mkdir $(distdir) $(mkdir_p) $(distdir)/m4 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) config.h install-binPROGRAMS: install-libLTLIBRARIES installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(includedir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool mostlyclean-am distclean: distclean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-libtool distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-includeHEADERS install-exec-am: install-binPROGRAMS install-libLTLIBRARIES install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-includeHEADERS \ uninstall-info-am uninstall-libLTLIBRARIES .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool ctags dist dist-all dist-bzip2 dist-gzip \ dist-shar dist-tarZ dist-zip distcheck distclean \ distclean-compile distclean-generic distclean-hdr \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-data \ install-data-am install-exec install-exec-am \ install-includeHEADERS install-info install-info-am \ install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-includeHEADERS uninstall-info-am \ uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: cconv-0.6.2/COPYING0000664000076400007640000004311011320000165010600 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. cconv-0.6.2/aclocal.m40000664000076400007640000077671511333705446011457 00000000000000# generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # serial 48 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) # ----------------------------------------------------------- # If this macro is not defined by Autoconf, define it here. m4_ifdef([AC_PROVIDE_IFELSE], [], [m4_define([AC_PROVIDE_IFELSE], [m4_ifdef([AC_PROVIDE_$1], [$2], [$3])])]) # AC_PROG_LIBTOOL # --------------- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. AC_PROVIDE_IFELSE([AC_PROG_CXX], [AC_LIBTOOL_CXX], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ])]) dnl And a similar setup for Fortran 77 support AC_PROVIDE_IFELSE([AC_PROG_F77], [AC_LIBTOOL_F77], [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ])]) dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [ifdef([AC_PROG_GCJ], [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([A][M_PROG_GCJ], [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([LT_AC_PROG_GCJ], [define([LT_AC_PROG_GCJ], defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) ])])# AC_PROG_LIBTOOL # _AC_PROG_LIBTOOL # ---------------- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl # Prevent multiple expansion define([AC_PROG_LIBTOOL], []) ])# _AC_PROG_LIBTOOL # AC_LIBTOOL_SETUP # ---------------- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl AC_REQUIRE([AC_ENABLE_SHARED])dnl AC_REQUIRE([AC_ENABLE_STATIC])dnl AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_LD])dnl AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl AC_REQUIRE([AC_PROG_NM])dnl AC_REQUIRE([AC_PROG_LN_S])dnl AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! AC_REQUIRE([AC_OBJEXT])dnl AC_REQUIRE([AC_EXEEXT])dnl dnl AC_LIBTOOL_SYS_MAX_CMD_LEN AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE AC_LIBTOOL_OBJDIR AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_PROG_ECHO_BACKSLASH case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] # Same as above, but do not quote variable references. [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" AC_CHECK_TOOL(AR, ar, false) AC_CHECK_TOOL(RANLIB, ranlib, :) AC_CHECK_TOOL(STRIP, strip, :) old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then AC_PATH_MAGIC fi ;; esac AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes AC_ARG_WITH([pic], [AC_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= AC_LIBTOOL_LANG_C_CONFIG _LT_AC_TAGCONFIG ])# AC_LIBTOOL_SETUP # _LT_AC_SYS_COMPILER # ------------------- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_AC_SYS_COMPILER # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ]) # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. AC_DEFUN([_LT_COMPILER_BOILERPLATE], [ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. AC_DEFUN([_LT_LINKER_BOILERPLATE], [ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_LINKER_BOILERPLATE # _LT_AC_SYS_LIBPATH_AIX # ---------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi],[]) if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ])# _LT_AC_SYS_LIBPATH_AIX # _LT_AC_SHELL_INIT(ARG) # ---------------------- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], [AC_DIVERT_PUSH(NOTICE)]) $1 AC_DIVERT_POP ])# _LT_AC_SHELL_INIT # _LT_AC_PROG_ECHO_BACKSLASH # -------------------------- # Add some code to the start of the generated configure script which # will find an echo command which doesn't interpret backslashes. AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ;; esac echo=${ECHO-echo} if test "X[$]1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X[$]1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi if test "X[$]1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL [$]0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL [$]0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "[$]0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi AC_SUBST(ECHO) ])])# _LT_AC_PROG_ECHO_BACKSLASH # _LT_AC_LOCK # ----------- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) LD="${LD-ld} -64" ;; esac ;; esac fi rm -rf conftest* ;; AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], [*-*-cygwin* | *-*-mingw* | *-*-pw32*) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; ]) esac need_locks="$enable_libtool_lock" ])# _LT_AC_LOCK # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) AC_CACHE_CHECK([$1], [$2], [$2=no ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $rm conftest* ]) if test x"[$]$2" = xyes; then ifelse([$5], , :, [$5]) else ifelse([$6], , :, [$6]) fi ])# AC_LIBTOOL_COMPILER_OPTION # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ------------------------------------------------------------ # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then ifelse([$4], , :, [$4]) else ifelse([$5], , :, [$5]) fi ])# AC_LIBTOOL_LINKER_OPTION # AC_LIBTOOL_SYS_MAX_CMD_LEN # -------------------------- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi ])# AC_LIBTOOL_SYS_MAX_CMD_LEN # _LT_AC_CHECK_DLFCN # ------------------ AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl ])# _LT_AC_CHECK_DLFCN # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # --------------------------------------------------------------------- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); }] EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_AC_TRY_DLOPEN_SELF # AC_LIBTOOL_DLOPEN_SELF # ---------------------- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi ])# AC_LIBTOOL_DLOPEN_SELF # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) # --------------------------------- # Check to see if options -c and -o are simultaneously supported by compiler AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* ]) ])# AC_LIBTOOL_PROG_CC_C_O # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) # ----------------------------------------- # Check to see if we can do hard links to lock some files if needed AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl hard_links="nottested" if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS # AC_LIBTOOL_OBJDIR # ----------------- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir ])# AC_LIBTOOL_OBJDIR # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) # ---------------------------------------------- # Check hardcoding attributes. AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_AC_TAGVAR(hardcode_action, $1)= if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existant directories. if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_AC_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_AC_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_AC_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH # AC_LIBTOOL_SYS_LIB_STRIP # ------------------------ AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi ])# AC_LIBTOOL_SYS_LIB_STRIP # AC_LIBTOOL_SYS_DYNAMIC_LINKER # ----------------------------- # PORTME Fill in your ld.so characteristics AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_MSG_CHECKING([dynamic linker characteristics]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[123]]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # find out which ABI we are using libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *64-bit*) libsuff=64 sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ;; esac fi rm -rf conftest* ;; esac # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER # _LT_AC_TAGCONFIG # ---------------- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_ARG_WITH([tags], [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], [include additional configurations @<:@automatic@:>@])], [tagnames="$withval"]) if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then AC_MSG_WARN([output file `$ofile' does not exist]) fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) else AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in "") ;; *) AC_MSG_ERROR([invalid tag name: $tagname]) ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then AC_MSG_ERROR([tag name \"$tagname\" already exists]) fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_LIBTOOL_LANG_CXX_CONFIG else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then AC_LIBTOOL_LANG_F77_CONFIG else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then AC_LIBTOOL_LANG_GCJ_CONFIG else tagname="" fi ;; RC) AC_LIBTOOL_LANG_RC_CONFIG ;; *) AC_MSG_ERROR([Unsupported tag name: $tagname]) ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" AC_MSG_ERROR([unable to update list of available tagged configurations.]) fi fi ])# _LT_AC_TAGCONFIG # AC_LIBTOOL_DLOPEN # ----------------- # enable checks for dlopen support AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_DLOPEN # AC_LIBTOOL_WIN32_DLL # -------------------- # declare package support for building win32 DLLs AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_WIN32_DLL # AC_ENABLE_SHARED([DEFAULT]) # --------------------------- # implement the --enable-shared flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([shared], [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ])# AC_ENABLE_SHARED # AC_DISABLE_SHARED # ----------------- # set the default shared flag to --disable-shared AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_SHARED(no) ])# AC_DISABLE_SHARED # AC_ENABLE_STATIC([DEFAULT]) # --------------------------- # implement the --enable-static flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([static], [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]AC_ENABLE_STATIC_DEFAULT) ])# AC_ENABLE_STATIC # AC_DISABLE_STATIC # ----------------- # set the default static flag to --disable-static AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_STATIC(no) ])# AC_DISABLE_STATIC # AC_ENABLE_FAST_INSTALL([DEFAULT]) # --------------------------------- # implement the --enable-fast-install flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([fast-install], [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ])# AC_ENABLE_FAST_INSTALL # AC_DISABLE_FAST_INSTALL # ----------------------- # set the default to --disable-fast-install AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_FAST_INSTALL(no) ])# AC_DISABLE_FAST_INSTALL # AC_LIBTOOL_PICMODE([MODE]) # -------------------------- # implement the --with-pic flag # MODE is either `yes' or `no'. If omitted, it defaults to `both'. AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl pic_mode=ifelse($#,1,$1,default) ])# AC_LIBTOOL_PICMODE # AC_PROG_EGREP # ------------- # This is predefined starting with Autoconf 2.54, so this conditional # definition can be removed once we require Autoconf 2.54 or later. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi]) EGREP=$ac_cv_prog_egrep AC_SUBST([EGREP]) ])]) # AC_PATH_TOOL_PREFIX # ------------------- # find a file program which can recognise shared library AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="ifelse([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi ])# AC_PATH_TOOL_PREFIX # AC_PATH_MAGIC # ------------- # find a file program which can recognise a shared library AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# AC_PATH_MAGIC # AC_PROG_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], [AC_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no]) AC_REQUIRE([LT_AC_PROG_SED])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix3*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown ])# AC_DEPLIBS_CHECK_METHOD # AC_PROG_NM # ---------- # find the pathname to a BSD-compatible name lister AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi]) NM="$lt_cv_path_NM" ])# AC_PROG_NM # AC_CHECK_LIBM # ------------- # check for math library AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac ])# AC_CHECK_LIBM # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl convenience library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-convenience to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # it is assumed to be `libltdl'. LIBLTDL will be prefixed with # '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' # (note the single quotes!). If your package is not flat and you're not # using automake, define top_builddir and top_srcdir appropriately in # the Makefiles. AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl case $enable_ltdl_convenience in no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; "") enable_ltdl_convenience=yes ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; esac LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_CONVENIENCE # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl installable library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-install to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # and an installed libltdl is not found, it is assumed to be `libltdl'. # LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with # '${top_srcdir}/' (note the single quotes!). If your package is not # flat and you're not using automake, define top_builddir and top_srcdir # appropriately in the Makefiles. # In the future, this macro may have to be called after AC_PROG_LIBTOOL. AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_CHECK_LIB(ltdl, lt_dlinit, [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], [if test x"$enable_ltdl_install" = xno; then AC_MSG_WARN([libltdl not installed, but installation disabled]) else enable_ltdl_install=yes fi ]) if test x"$enable_ltdl_install" = x"yes"; then ac_configure_args="$ac_configure_args --enable-ltdl-install" LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) else ac_configure_args="$ac_configure_args --enable-ltdl-install=no" LIBLTDL="-lltdl" LTDLINCL= fi # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_INSTALLABLE # AC_LIBTOOL_CXX # -------------- # enable support for C++ libraries AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) ])# AC_LIBTOOL_CXX # _LT_AC_LANG_CXX # --------------- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ])# _LT_AC_LANG_CXX # _LT_AC_PROG_CXXCPP # ------------------ AC_DEFUN([_LT_AC_PROG_CXXCPP], [ AC_REQUIRE([AC_PROG_CXX]) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP fi ])# _LT_AC_PROG_CXXCPP # AC_LIBTOOL_F77 # -------------- # enable support for Fortran 77 libraries AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) ])# AC_LIBTOOL_F77 # _LT_AC_LANG_F77 # --------------- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ])# _LT_AC_LANG_F77 # AC_LIBTOOL_GCJ # -------------- # enable support for GCJ libraries AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) ])# AC_LIBTOOL_GCJ # _LT_AC_LANG_GCJ # --------------- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ])# _LT_AC_LANG_GCJ # AC_LIBTOOL_RC # ------------- # enable support for Windows resource files AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ])# AC_LIBTOOL_RC # AC_LIBTOOL_LANG_C_CONFIG # ------------------------ # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_C_CONFIG # AC_LIBTOOL_LANG_CXX_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Dependencies to place before and after the object being linked: _LT_AC_TAGVAR(predep_objects, $1)= _LT_AC_TAGVAR(postdep_objects, $1)= _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration AC_PROG_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_AC_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes ; then lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before switch to ELF _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_AC_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; hpux9*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' ;; *) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix3*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; linux*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC*) # Portland Group C++ compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. We must also pass each convience library through # to the system linker between allextract/defaultextract. # The C++ compiler will combine linker options so we # cannot just pass the convience library names through # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_AC_TAGVAR(GCC, $1)="$GXX" _LT_AC_TAGVAR(LD, $1)="$LD" AC_LIBTOOL_POSTDEP_PREDEP($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ])# AC_LIBTOOL_LANG_CXX_CONFIG # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) # ------------------------------------ # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <> "$cfgfile" ifelse([$1], [], [#! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG], [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) # Is the compiler the GNU C compiler? with_gcc=$_LT_AC_TAGVAR(GCC, $1) gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\` gcc_ver=\`gcc -dumpversion\` # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_[]_LT_AC_TAGVAR(LD, $1) # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) # Commands used to build and install a shared archive. archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=\`echo $lt_[]_LT_AC_TAGVAR(predep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=\`echo $lt_[]_LT_AC_TAGVAR(postdep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=\`echo $lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) # Flag that forces no undefined symbols. no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) # Compile-time system search path for libraries sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\` # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" # Set to yes if exported symbols are required. always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) # The commands to list exported symbols. export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) # Symbols that must always be exported. include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ifelse([$1],[], [# ### END LIBTOOL CONFIG], [# ### END LIBTOOL TAG CONFIG: $tagname]) __EOF__ ifelse([$1],[], [ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ]) else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ])# AC_LIBTOOL_CONFIG # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # --------------------------------- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_PROG_NM]) AC_REQUIRE([AC_OBJEXT]) # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32*) symcode='[[ABCDGISTW]]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux*) if test "$host_cpu" = ia64; then symcode='[[ABCDGIRSTW]]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[[]] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) # --------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= AC_MSG_CHECKING([for $compiler option to produce PIC]) ifelse([$1],[CXX],[ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; icpc* | ecpc*) # Intel C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC*) # Portland Group C++ compiler. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; vxworks*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; newsos6) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" ;; esac # # Check to make sure the static flag actually works. # wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) ]) # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) # ------------------------------------ # See if the linker supports building shared libraries. AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)= _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_AC_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. _LT_CC_BASENAME([$compiler]) case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac _LT_AC_TAGVAR(ld_shlibs, $1)=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; interix3*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=yes _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # see comment about different semantics on the GNU ld section _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; bsdi[[45]]*) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi ;; os2*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' if test "$GCC" = yes; then wlarc='${wl}' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; *) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_AC_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_AC_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_AC_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_MSG_CHECKING([whether -lc should be explicitly linked in]) $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) _LT_AC_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no else _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ;; esac fi ;; esac ])# AC_LIBTOOL_PROG_LD_SHLIBS # _LT_AC_FILE_LTDLL_C # ------------------- # Be careful that the start marker always follows a newline. AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ # /* ltdll.c starts here */ # #define WIN32_LEAN_AND_MEAN # #include # #undef WIN32_LEAN_AND_MEAN # #include # # #ifndef __CYGWIN__ # # ifdef __CYGWIN32__ # # define __CYGWIN__ __CYGWIN32__ # # endif # #endif # # #ifdef __cplusplus # extern "C" { # #endif # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); # #ifdef __cplusplus # } # #endif # # #ifdef __CYGWIN__ # #include # DECLARE_CYGWIN_DLL( DllMain ); # #endif # HINSTANCE __hDllInstance_base; # # BOOL APIENTRY # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) # { # __hDllInstance_base = hInst; # return TRUE; # } # /* ltdll.c ends here */ ])# _LT_AC_FILE_LTDLL_C # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) # --------------------------------- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) # old names AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) # This is just to silence aclocal about the macro not being used ifelse([AC_DISABLE_FAST_INSTALL]) AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS) ]) AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) ]) # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # # LT_AC_PROG_SED # -------------- # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ]) # Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION so it can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.9.6])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 7 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE]) AC_SUBST([$1_FALSE]) if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH]) ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # So let's grep whole file. if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.58])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl # test to see if srcdir already configured if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ]) ]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $1 | $1:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl install_sh=${install_sh-"$am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. # # Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories # created by `make install' are always world readable, even if the # installer happens to have an overly restrictive umask (e.g. 077). # This was a mistake. There are at least two reasons why we must not # use `-m 0755': # - it causes special bits like SGID to be ignored, # - it may be too restrictive (some setups expect 775 directories). # # Do not use -m 0755 and let people choose whatever they expect by # setting umask. # # We cannot accept any implementation of `mkdir' that recognizes `-p'. # Some implementations (such as Solaris 8's) are not thread-safe: if a # parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' # concurrently, both version can detect that a/ is missing, but only # one can create it and the other will error out. Consequently we # restrict ourselves to GNU make (using the --version option ensures # this.) AC_DEFUN([AM_PROG_MKDIR_P], [if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then # We used to keeping the `.' as first argument, in order to # allow $(mkdir_p) to be used without argument. As in # $(mkdir_p) $(somedir) # where $(somedir) is conditionally defined. However this is wrong # for two reasons: # 1. if the package is installed by a user who cannot write `.' # make install will fail, # 2. the above comment should most certainly read # $(mkdir_p) $(DESTDIR)$(somedir) # so it does not work when $(somedir) is undefined and # $(DESTDIR) is not. # To support the latter case, we have to write # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), # so the `.' trick is pointless. mkdir_p='mkdir -p --' else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. for d in ./-p ./--version; do test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. if test -f "$ac_aux_dir/mkinstalldirs"; then mkdir_p='$(mkinstalldirs)' else mkdir_p='$(install_sh) -d' fi fi AC_SUBST([mkdir_p])]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR cconv-0.6.2/main.c0000664000076400007640000001447211340501343010654 00000000000000/* * Copyright (C) 2008, 2009 * Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * \author Yang Jianyu */ #include #include #include #include #include #include #include "cconv.h" #define CCONV_BUFFER_SIZE 4096 #define CCONV_STRLEN_SIZE 256 #ifdef HAVE_CONFIG_H #include "config.h" #else #define PACKAGE_VERSION "0.0.1" #define PACKAGE_BUGREPORT "xiaoyjy@gmail.com" #endif /* {{{ void usage( char *s_program ) */ /** * Output usage. * * @param s_program Program command line. */ static void usage(char *s_program) { char *p = (char *)rindex(s_program, '/'); printf("\n"); printf("Chinese-Convert Tool. Version %s (inside libcconv version %s).\n", PACKAGE_VERSION, PACKAGE_VERSION); printf("Copyright (c) 2008-2009, China. %s \n", PACKAGE_BUGREPORT); printf("\n" ); printf("Usage: %s [OPTION...] [FILE]\n", (p ? p+1 : s_program)); printf("\n" ); printf("Convert encoding of given files from one encoding to another.\n"); printf("\n" ); printf(" Input/Output format specification:\n"); printf(" -f [NAME] encoding of original text! at this you can use GBK, BIG5 or UTF8\n"); printf(" -t [NAME] encoding for output! at this you can use GBK, BIG5, UTF8-CN, UTF8-HK or UTF-TW\n"); printf("\n" ); printf(" Information:\n" ); printf(" -l list coded character sets can used \n"); printf("\n"); printf(" Output control:\n"); printf(" -o [FILE] output file\n"); printf("\n"); printf(" -?, -h, -v Show this help page.\n"); printf("Report bugs to <%s>\n", PACKAGE_BUGREPORT); } /* }}} */ /* {{{ void code_list( void ) */ /** * Output encodings are supported. * */ void code_list( void ) { printf("\n"); printf("The following encodings are supported:\n"); printf("\n"); printf("Chinese:\n"); printf(" GB2312, GBK, GB-HANS, GB-HANT, GB18030, BIG5, UTF8, UTF8-CN, UTF8-TW, UTF8-HK\n"); printf("Other:\n"); printf(" All encoding supported by iconv.\n"); printf("\n"); } /* }}} */ const char* filter_code(const char* code) { if(strcasecmp("UTF8", code) == 0) return CCONV_CODE_UTF; if( strcasecmp("GB2312", code) == 0 || strcasecmp("GBK", code) == 0) return CCONV_CODE_GBL; if( strcasecmp("UTF8-CN" , code) == 0 || strcasecmp("UTF-8-CN", code) == 0) return CCONV_CODE_UHS; if( strcasecmp("UTF8-TW" , code) == 0 || strcasecmp("UTF-8-TW", code) == 0 || strcasecmp("UTF8-HK" , code) == 0 || strcasecmp("UTF-8-HK", code) == 0) return CCONV_CODE_UHT; if( strcasecmp("BIG5-2003" , code) == 0 || strcasecmp("BIG-5" , code) == 0 || strcasecmp("CN-BIG5" , code) == 0 || strcasecmp("BIG5HKSCS", code) == 0 || strcasecmp("BIG-FIVE" , code) == 0 || strcasecmp("BIGFIVE" , code) == 0) return CCONV_CODE_BIG; return code; } /** * Main function. */ int main(int argc, char *argv[]) { FILE *fp_in = NULL, *fp_out = NULL; char *inbuf, *outbuf, *ps_inbuf, *ps_outbuf; cconv_t conv; const char *tocode = NULL, *fromcode = NULL; size_t ret = 0; size_t inlen, outlen, i_left, inbuf_size, outbuf_size; int ch = 0; inbuf = (char*)malloc(CCONV_BUFFER_SIZE); outbuf = (char*)malloc(CCONV_BUFFER_SIZE*2); ps_inbuf = inbuf; ps_outbuf = outbuf; while ((ch = getopt(argc, argv, "f:t:i:o:l?hv")) != -1) { switch (ch) { case 'f': fromcode = optarg; break; case 't': tocode = optarg; break; case 'i': if((fp_in = fopen(optarg, "r")) == NULL) { printf("%s: '%s' %s\n", argv[0], optarg, strerror(errno)); return 0; } break; case 'o': if((fp_out = fopen(optarg, "w")) == NULL) { printf("%s: '%s' %s\n", argv[0], optarg, strerror(errno)); return 0; } break; case 'l': code_list(); return 0; default: usage(argv[0]); return 0; } // switch } // while if(tocode == NULL || fromcode == NULL) { usage(argv[0]); return (0); } // if tocode = filter_code(tocode ); fromcode = filter_code(fromcode); if(fp_in == NULL && argc > 1 && access(argv[argc - 1], R_OK) == 0) { if((fp_in = fopen(argv[argc - 1], "r")) == NULL) { printf("%s: '%s' %s\n", argv[0], optarg, strerror(errno)); return 0; } } if((conv = cconv_open(tocode, fromcode)) == (cconv_t)(-1)) { printf("Not support character code set.\n"); return 0; } // if #if O_BINARY SET_BINARY(fileno(infile)); #endif if(fp_in == NULL) fp_in = stdin ; if(fp_out == NULL) fp_out = stdout; fflush(fp_out); inbuf_size = CCONV_BUFFER_SIZE; outbuf_size = CCONV_BUFFER_SIZE * 2; outlen = outbuf_size; i_left = CCONV_BUFFER_SIZE; /// read user list, main cycle. while(!feof(fp_in) && fgets(ps_inbuf, i_left, fp_in)) { inlen = strlen(ps_inbuf); if(ps_inbuf[inlen - 1] != '\n') { inbuf = (char*)realloc(inbuf , inbuf_size + CCONV_BUFFER_SIZE); outbuf = (char*)realloc(outbuf, outbuf_size+ CCONV_BUFFER_SIZE * 2); inbuf_size += CCONV_BUFFER_SIZE; outbuf_size+= CCONV_BUFFER_SIZE * 2; outlen = outbuf_size; ps_inbuf = inbuf + strlen(inbuf); ps_outbuf = outbuf; i_left = inbuf_size - strlen(inbuf); continue; } ps_inbuf[inlen] = '\0'; ps_inbuf = inbuf; inlen = strlen(inbuf); #ifdef FreeBSD ret = cconv(conv, (const char**)&ps_inbuf, &inlen, &ps_outbuf, &outlen); #else ret = cconv(conv, &ps_inbuf, &inlen, &ps_outbuf, &outlen); #endif if((int)ret < 0) { fprintf(stderr, "%s: [Error] %s", argv[0], strerror(errno)); break; } outlen = outbuf_size; outbuf[ret] = '\0'; ps_inbuf = inbuf; ps_outbuf = outbuf; *ps_inbuf = '\0'; i_left = inbuf_size; fprintf(fp_out, "%s", outbuf); } if(*inbuf != '\0' && ret > 0) { ps_inbuf = inbuf; ps_outbuf = outbuf; #ifdef FreeBSD ret = cconv(conv, (const char**)&ps_inbuf, &inlen, &ps_outbuf, &outlen); #else ret = cconv(conv, &ps_inbuf, &inlen, &ps_outbuf, &outlen); #endif if((int)ret < 0) { fprintf(stderr, "%s: [Error] %s\n", argv[0], strerror(errno)); return 0; } fprintf(fp_out, "%s", outbuf); } fflush(fp_out); free(inbuf ); free(outbuf); cconv_close(conv); if(fp_out != stdout) fclose(fp_out); if(fp_in != stdin ) fclose(fp_in ); return 0; } cconv-0.6.2/unicode.c0000664000076400007640000000645311320025252011354 00000000000000/* * Copyright (C) 2008, 2009 * Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * \author Yang Jianyu */ #include "unicode.h" int utf8_char_width(const unsigned char* w) { if(w[0] < 0x80) return 1; if(w[0] < 0xe0) return 2; if(w[0] < 0xf0) return 3; if(w[0] < 0xf8) return 4; if(w[0] < 0xfc) return 5; if(w[0] < 0xfe) return 6; return -1; } int utf8_char_encode(const unsigned char* w, int* c) { /* 00000000-01111111 00-7F 0-127 US-ASCII (single byte) */ if(w[0] < 0x80) { *c = (int)w[0]; return 1; } /* 10000000-10111111 80-BF 128-191 Second, third, or fourth byte of a multi-byte sequence */ /* 11000000-11000001 C0-C1 192-193 Overlong encoding: start of a 2-byte sequence, but code point <= 127*/ /* 11000010-11011111 C2-DF 194-223 Start of 2-byte sequence */ if(w[0] < 0xe0 && w[0] > 0xc1) { *c = (int)(((w[0] - 0xc0) << 6) + w[1] - 0x80); return 2; } /* 11100000-11101111 E0-EF 224-239 Start of 3-byte sequence */ if(w[0] < 0xf0 && w[0] > 0xdf) { *c = (int)(((w[0] - 0xe0) << 12) + ((w[1] - 0x80) << 6) + w[2] - 0x80); return 3; } /* 11110000-11110100 F0-F4 240-244 Start of 4-byte sequence */ if(w[0] < 0xf8 && w[0] > 0xef) { *c = (int)( ((w[0] - 0xf0) << 18) + ((w[1] - 0x80) << 12) + ((w[2] - 0x80) << 6 ) + w[3] - 0x80); return 4; } /* 11110101-11110111 F5-F7 245-247 Restricted by RFC 3629: * start of 4-byte sequence for codepoint above 10FFFF */ /* 11111000-11111011 F8-FB 248-251 Restricted by RFC 3629: start of 5-byte sequence */ if(w[0] < 0xfc && w[0] > 0xf7) { *c = (int)( ((w[0] - 0xf8) << 24) + ((w[1] - 0x80) << 18) + ((w[2] - 0x80) << 12) + ((w[3] - 0x80) << 6 ) + w[4] - 0x80); return 5; } /* 11111100-11111101 FC-FD 252-253 Restricted by RFC 3629: start of 6-byte sequence */ if(w[0] < 0xfe && w[0] > 0xfb) { *c = (int)( ((w[0] - 0xfc) << 30) + ((w[1] - 0x80) << 24) + ((w[2] - 0x80) << 18) + ((w[3] - 0x80) << 12) + ((w[4] - 0x80) << 6 ) + w[5] - 0x80); return 6; } *c = 0; return -1; } int utf8_char_decode(int unicode, unsigned char* utf) { int count = -1; if(unicode < 0x80) /*0100,0000*/ count = 1; else if (unicode < 0x800) /*0100,0000,0000*/ count = 2; else if (unicode < 0x10000) /*0001,0000,0000,0000,000,*/ count = 3; else if (unicode < 0x200000) /*0010,0000,0000,0000,0000,0000*/ count = 4; else if (unicode < 0x4000000) /*0100,0000,0000,0000,0000,0000,0000*/ count = 5; else if (unicode <= 0x7fffffff)/*0110,1111,1111,1111,1111,1111,1111,1111*/ count = 6; else return count; switch (count) { /* note: code falls through cases! */ case 6: utf[5] = 0x80 | (unicode & 0x3f); unicode = unicode >> 6; unicode |= 0x4000000; case 5: utf[4] = 0x80 | (unicode & 0x3f); unicode = unicode >> 6; unicode |= 0x200000; case 4: utf[3] = 0x80 | (unicode & 0x3f); unicode = unicode >> 6; unicode |= 0x10000; case 3: utf[2] = 0x80 | (unicode & 0x3f); unicode = unicode >> 6; unicode |= 0x800; case 2: utf[1] = 0x80 | (unicode & 0x3f); unicode = unicode >> 6; unicode |= 0xc0; case 1: utf[0] = (char)unicode; } return count; } cconv-0.6.2/config.sub0000755000076400007640000007577711320004150011554 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. timestamp='2005-07-08' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | ms1 \ | msp430 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m32c) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | ms1-* \ | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; m32c-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; c90) basic_machine=c90-cray os=-unicos ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16c) basic_machine=cr16c-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: cconv-0.6.2/configure.ac0000664000076400007640000000217711333705442012061 00000000000000# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.13) AC_INIT(cconv, 0.6.2, xiaoyjy@gmail.com) AM_INIT_AUTOMAKE(cconv, 0.6.2) AC_CONFIG_SRCDIR([cconv.c]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) # Checks for programs. AC_PROG_CXX AC_PROG_CC # Checks for libraries. AC_PROG_LIBTOOL # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([stdlib.h string.h unistd.h wchar.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T # echo $host_os; may use host_os here. OS_TYPE="-D"`uname -s` AC_SUBST(OS_TYPE) for i in /usr/local/iconv /usr/local /usr; do (test -f $i/lib/libiconv.so ||\ test -f $i/lib/libiconv.a) && ICONV_DIR=$i && break done if test -z "$ICONV_DIR"; then ICONV_LIBS="" ICONV_INCLUDES="" else ICONV_LIBS="-L$ICONV_DIR/lib -liconv" ICONV_INCLUDES="-I$ICONV_DIR/include" fi AC_SUBST(ICONV_INCLUDES) AC_SUBST(ICONV_LIBS) # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_MEMCMP AC_CHECK_FUNCS([memset strncasecmp memcpy]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT cconv-0.6.2/Makefile.am0000664000076400007640000000072211333742264011624 00000000000000AUTOMAKE_OPTIONS = no-dependencies EXTRA_DIST = cconv_table.h cconv_table.cc THANKS test_s2t test_t2s m4/*.m4 AC_CFLAGS = -Wall @ICONV_INCLUDES@ @OS_TYPE@ ACLOCAL_AMFLAGS = -I m4 bin_PROGRAMS = cconv cconv_SOURCES = cconv.c main.c unicode.c cconv_CFLAGS = ${AC_CFLAGS} cconv_LDFLAGS = @ICONV_LIBS@ lib_LTLIBRARIES = libcconv.la libcconv_la_SOURCES = cconv.c unicode.c libcconv_la_CFLAGS = -Wall @ICONV_INCLUDES@ @OS_TYPE@ include_HEADERS = cconv.h unicode.h cconv-0.6.2/compile0000755000076400007640000000717311320004150011130 00000000000000#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. scriptversion=2005-05-14.22 # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand `-c -o'. Remove `-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file `INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; esac ofile= cfile= eat= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as `compile cc -o foo foo.c'. # So we strip `-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no `-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # `.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'` # Create the lock directory. # Note: use `[/.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: cconv-0.6.2/THANKS0000664000076400007640000000003511320000165010457 00000000000000Vern Sun cconv-0.6.2/ChangeLog0000664000076400007640000000152411333704516011341 00000000000000 -- 0.6.2 Add GB-Hans GB-Hant encoding which were used to represent GB charset in Simplified and Traditional. Use gb18030 handing all GB code. Support convert gbk to gb-hant or gb-hans. -- 0.6.1 Update cconv_table.cc to latest. Add some Tongwen Tang word mapping. Fix the bug that something cconv output are not end with '\0' -- 0.6.0 Update cconv_table.cc to latest. Fix the bug that Jane transfer into fan does not work. -- 0.6.0_beta Rewrite the cross-handling part, and change the judge algorithm. Increase four kinds of prefix & suffix based conditions conversion mode: 1、convert the prefix match before only 2、convert the suffix match before only 3、prefix match is not to convert. 4、suffix match is not to convert. -- 0.5.2 Add AC_CONFIG_MACRO_DIR([m4]) to fix complie error on CentOS 4.X -- 0.5.1 -- 0.5.- cconv-0.6.2/missing0000755000076400007640000002540611320004150011150 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2005-06-08.21 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case "$1" in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case "$1" in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case "$1" in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case "$f" in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` fi if [ -f "$file" ]; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case "$firstarg" in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case "$firstarg" in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: cconv-0.6.2/cconv.h0000664000076400007640000000370311333740377011056 00000000000000/* * Copyright (C) 2008, 2009 * Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * \author Yang Jianyu */ #ifndef _CCONV_H_ #define _CCONV_H_ #include #define CCONV_CODE_UTF "UTF-8" // GBL means LARGEST of GB encoding. #define CCONV_CODE_GBL "GB18030" #define CCONV_CODE_BIG "BIG5" #define CCONV_CODE_UCN "UTF8-CN" #define CCONV_CODE_UTW "UTF8-TW" #define CCONV_CODE_UHK "UTF8-HK" #define CCONV_CODE_UHS "UTF8-HANS" #define CCONV_CODE_UHT "UTF8-HANT" #define CCONV_CODE_GHS "GB-HANS" #define CCONV_CODE_GHT "GB-HANT" typedef enum cconv_type { CCONV_ERROR = -1, CCONV_NULL = 0 , CCONV_GBL_TO_BIG = 1, CCONV_GBL_TO_UHS, CCONV_GBL_TO_UHT, CCONV_GBL_TO_GHS, CCONV_GBL_TO_GHT, CCONV_BIG_TO_GBL, CCONV_BIG_TO_UHS, CCONV_UTF_TO_UHT, CCONV_UTF_TO_UHS, CCONV_UTF_TO_GBL, CCONV_UTF_TO_BIG, } cconv_type; typedef void* cconv_t; /* {{{ cconv_t cconv_open(const char* tocode, const char* fromcode) */ /** * Open a cconv handle. * * @param tocode Convert to-code. * @param fromcode Convert from-code. * @retval t_handle Cconv handle,(-1: error). */ extern cconv_t cconv_open(const char* tocode, const char* fromcode); /** * Convert character code. * * @param t_handle cconv handle. * @param inbuf Input buffer. * @param inbytesleft Input buffer left. * @retval t_handle cconv handle,(-1: error). */ extern size_t cconv(cconv_t cd, #ifdef FreeBSD const char** inbuf, #else char** inbuf, #endif size_t* inbytesleft, char** outbuf, size_t* outbytesleft); /* {{{ int cconv_close( cconv_t cd ) */ /** * Close a cconv handle. * * @param cd cconv handle. * @return 0: succ, -1: fail. */ extern int cconv_close(cconv_t cd); #endif