Develop and Download Open Source Software

Browse CVS Repository

Diff of /freewnn/FreeWnn/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.48 by aonoto, Fri Dec 31 14:40:51 2010 UTC revision 1.49 by aonoto, Sun Apr 17 16:29:50 2011 UTC
# Line 1035  Optional Packages: Line 1035  Optional Packages:
1035    --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]    --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
1036    --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)    --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
1037    --with-libwnn             use installed Wnn library [default=no]    --with-libwnn             use installed Wnn library [default=no]
1038    --with-wnn-includes=DIR   WNN include files are in DIR    --with-wnn-includes=DIR   Installed Wnn include files are in DIR
1039    --with-wnn-libraries=DIR  Search for WNN libraries in DIR [default=/usr/local/lib]    --with-wnn-libraries=DIR  Search for Wnn libraries in DIR [default=/usr/local/lib]
1040    --with-libcwnn            use installed cWnn library [default=no]    --with-libcwnn            use installed cWnn library [default=no]
1041    --with-cwnn-includes=DIR  CWNN include files are in DIR    --with-cwnn-includes=DIR  Installed cWnn include files are in DIR
1042    --with-cwnn-libraries=DIR Search for CWNN libraries in DIR [default=/usr/local/lib]    --with-cwnn-libraries=DIR Search for cWnn libraries in DIR [default=/usr/local/lib]
1043    --with-libkwnn            use installed kWnn library [default=no]    --with-libkwnn            use installed kWnn library [default=no]
1044    --with-kwnn-includes=DIR  KWNN include files are in DIR    --with-kwnn-includes=DIR  Installed kWnn include files are in DIR
1045    --with-kwnn-libraries=DIR Search for KWNN libraries in DIR [default=/usr/local/lib]    --with-kwnn-libraries=DIR Search for kWnn libraries in DIR [default=/usr/local/lib]
1046    --with-gnu-ld           assume the C compiler uses GNU ld [default=no]    --with-gnu-ld           assume the C compiler uses GNU ld [default=no]
1047    --with-pic              try to use only PIC/non-PIC objects [default=use    --with-pic              try to use only PIC/non-PIC objects [default=use
1048                            both]                            both]
# Line 1708  fi; Line 1708  fi;
1708    
1709    
1710    
   
1711  # Check whether --with-libwnn or --without-libwnn was given.  # Check whether --with-libwnn or --without-libwnn was given.
1712  if test "${with_libwnn+set}" = set; then  if test "${with_libwnn+set}" = set; then
1713    withval="$with_libwnn"    withval="$with_libwnn"
1714      with_libwnn="${withval}"      with_libwnn="${withval}"
1715    else
1716      with_libwnn=no
1717    fi;
1718    
1719  # Check whether --with-wnn-includes or --without-wnn-includes was given.  # Check whether --with-wnn-includes or --without-wnn-includes was given.
1720  if test "${with_wnn_includes+set}" = set; then  if test "${with_wnn_includes+set}" = set; then
# Line 1729  if test "${with_wnn_libraries+set}" = se Line 1731  if test "${with_wnn_libraries+set}" = se
1731  else  else
1732    wnnlibdir='/usr/local/lib'    wnnlibdir='/usr/local/lib'
1733  fi;  fi;
         if test "X${with_libwnn}" = X-lwnn; then  
                 WNNJLIB="-L${wnnlibdir} -lwnn"  
         elif test X"`echo ${with_libwnn} | grep '^/.*'`" != X ; then  
                 WNNJLIB="${with_libwnn}"  
         else  
                 WNNJLIB="${wnnlibdir}/libwnn.a"  
         fi  
         DEPWNNJLIB=""  
         HINSI_DATA="\$(JWNNWNNDIR)/hinsi.data"  
1734    
1735    if test X${with_libwnn} != Xno; then
1736            case X${with_libwnn} in
1737            Xyes | X-lwnn)
1738                    WNNJLIB="-L${wnnlibdir} -lwnn" ;;
1739            X/*)
1740                    WNNJLIB="${wnnlibdir}/libwnn.a" ;;
1741            *)
1742                    # Honor specified value --with-libwnn
1743                    # (maybe wrong in most cases)
1744                    WNNJLIB="${with_libwnn}" ;;
1745            esac
1746            DEPWNNJLIB=""
1747                    HINSI_DATA="\$(JWNNWNNDIR)/hinsi.data"
1748            EXTWNNJINC=${wnnincludedir}
1749  else  else
1750          WNNJLIB="\$(top_builddir)/Wnn/jlib/libwnn.la"          WNNJLIB="\$(top_builddir)/Wnn/jlib/libwnn.la"
1751          DEPWNNJLIB="\$(WNNJLIB)"          DEPWNNJLIB="\$(WNNJLIB)"
1752          HINSI_DATA="\$(top_builddir)/Wnn/jd/hinsi.data"          HINSI_DATA="\$(top_builddir)/Wnn/jd/hinsi.data"
1753            EXTWNNJINC=""
1754    fi
1755    
 fi;  
1756    
1757    
1758    
# Line 1753  fi; Line 1761  fi;
1761  # Check whether --with-libcwnn or --without-libcwnn was given.  # Check whether --with-libcwnn or --without-libcwnn was given.
1762  if test "${with_libcwnn+set}" = set; then  if test "${with_libcwnn+set}" = set; then
1763    withval="$with_libcwnn"    withval="$with_libcwnn"
1764        with_libcwnn="${withval}"
1765    else
1766      with_libcwnn=no
1767    fi;
1768    
1769  # Check whether --with-cwnn-includes or --without-cwnn-includes was given.  # Check whether --with-cwnn-includes or --without-cwnn-includes was given.
1770  if test "${with_cwnn_includes+set}" = set; then  if test "${with_cwnn_includes+set}" = set; then
# Line 1770  if test "${with_cwnn_libraries+set}" = s Line 1781  if test "${with_cwnn_libraries+set}" = s
1781  else  else
1782    cwnnlibdir='/usr/local/lib'    cwnnlibdir='/usr/local/lib'
1783  fi;  fi;
         if test "X${with_libcwnn}" = X-lcwnn; then  
                 CWNNJLIB="-L${cwnnlibdir} -lcwnn"  
         elif test X"`echo ${with_libcwnn} | grep '^/.*'`" != X ; then  
                 CWNNJLIB="${with_libcwnn}"  
         else  
                 CWNNJLIB="${cwnnlibdir}/libcwnn.a"  
         fi  
         DEPCWNNJLIB=""  
         CHINSI_DATA="\$(CWNNWNNDIR)/cixing.data"  
         THINSI_DATA="\$(TWNNTDSRC)/cixing.data"  
1784    
1785    if test X${with_libcwnn} != Xno; then
1786            case X${with_libcwnn} in
1787            Xyes | X-lcwnn)
1788                    CWNNJLIB="-L${cwnnlibdir} -lcwnn" ;;
1789            X/*)
1790                    CWNNJLIB="${cwnnlibdir}/libcwnn.a" ;;
1791            *)
1792                    # Honor specified value --with-libcwnn
1793                    # (maybe wrong in most cases)
1794                    CWNNJLIB="${with_libcwnn}" ;;
1795            esac
1796            DEPCWNNJLIB=""
1797                    CHINSI_DATA="\$(CWNNWNNDIR)/cixing.data"
1798            THINSI_DATA="\$(TWNNWNNDIR)/cixing.data"
1799            EXTCWNNJINC=${cwnnincludedir}
1800  else  else
1801          CWNNJLIB="\$(top_builddir)/cWnn/jlib/libcwnn.la"          CWNNJLIB="\$(top_builddir)/cWnn/jlib/libcwnn.la"
1802          DEPCWNNJLIB="\$(CWNNJLIB)"          DEPCWNNJLIB="\$(CWNNJLIB)"
1803          CHINSI_DATA="\$(CWNNCDSRC)/cixing.data"          CHINSI_DATA="\$(CWNNCDSRC)/cixing.data"
1804          THINSI_DATA="\$(TWNNTDSRC)/cixing.data"          THINSI_DATA="\$(TWNNTDSRC)/cixing.data"
1805            EXTCWNNJINC=""
1806    fi
1807    
 fi;  
1808    
1809    
1810    
# Line 1797  fi; Line 1814  fi;
1814  # Check whether --with-libkwnn or --without-libkwnn was given.  # Check whether --with-libkwnn or --without-libkwnn was given.
1815  if test "${with_libkwnn+set}" = set; then  if test "${with_libkwnn+set}" = set; then
1816    withval="$with_libkwnn"    withval="$with_libkwnn"
1817        with_libkwnn="${withval}"
1818    else
1819      with_libkwnn=no
1820    fi;
1821    
1822  # Check whether --with-kwnn-includes or --without-kwnn-includes was given.  # Check whether --with-kwnn-includes or --without-kwnn-includes was given.
1823  if test "${with_kwnn_includes+set}" = set; then  if test "${with_kwnn_includes+set}" = set; then
# Line 1814  if test "${with_kwnn_libraries+set}" = s Line 1834  if test "${with_kwnn_libraries+set}" = s
1834  else  else
1835    kwnnlibdir='/usr/local/lib'    kwnnlibdir='/usr/local/lib'
1836  fi;  fi;
         if test "X${with_libkwnn}" = X-lkwnn; then  
                 KWNNJLIB="-L${kwnnlibdir} -lkwnn"  
         elif test X"`echo ${with_libkwnn} | grep '^/.*'`" != X ; then  
                 KWNNJLIB="${with_libkwnn}"  
         else  
                 KWNNJLIB="${kwnnlibdir}/libkwnn.a"  
         fi  
         DEPKWNNJLIB=""  
         KHINSI_DATA="\$(KWNNWNNDIR)/hinsi.data"  
1837    
1838    if test X${with_libkwnn} != Xno; then
1839            case X${with_libkwnn} in
1840            Xyes | X-lkwnn)
1841                    KWNNJLIB="-L${kwnnlibdir} -lkwnn" ;;
1842            X/*)
1843                    KWNNJLIB="${kwnnlibdir}/libkwnn.a" ;;
1844            *)
1845                    # Honor specified value --with-libkwnn
1846                    # (maybe wrong in most cases)
1847                    KWNNJLIB="${with_libkwnn}" ;;
1848            esac
1849            DEPKWNNJLIB=""
1850                    KHINSI_DATA="\$(KWNNWNNDIR)/hinsi.data"
1851            EXTKWNNJINC=${kwnnincludedir}
1852  else  else
1853          KWNNJLIB="\$(top_builddir)/kWnn/jlib/libkwnn.la"          KWNNJLIB="\$(top_builddir)/kWnn/jlib/libkwnn.la"
1854          DEPKWNNJLIB="\$(KWNNJLIB)"          DEPKWNNJLIB="\$(KWNNJLIB)"
1855          KHINSI_DATA="\$(KWNNKDSRC)/hinsi.data"          KHINSI_DATA="\$(KWNNKDSRC)/hinsi.data"
1856            EXTKWNNJINC=""
1857    fi
1858    
 fi;  
1859    
1860    
1861    
# Line 3666  ia64-*-hpux*) Line 3692  ia64-*-hpux*)
3692    ;;    ;;
3693  *-*-irix6*)  *-*-irix6*)
3694    # Find out which ABI we are using.    # Find out which ABI we are using.
3695    echo '#line 3669 "configure"' > conftest.$ac_ext    echo '#line 3695 "configure"' > conftest.$ac_ext
3696    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3697    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
3698    ac_status=$?    ac_status=$?
# Line 4782  fi Line 4808  fi
4808    
4809    
4810  # Provide some information about the compiler.  # Provide some information about the compiler.
4811  echo "$as_me:4785:" \  echo "$as_me:4811:" \
4812       "checking for Fortran 77 compiler version" >&5       "checking for Fortran 77 compiler version" >&5
4813  ac_compiler=`set X $ac_compile; echo $2`  ac_compiler=`set X $ac_compile; echo $2`
4814  { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5  { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
# Line 6098  else Line 6124  else
6124     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
6125     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
6126     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
6127     (eval echo "\"\$as_me:6101: $lt_compile\"" >&5)     (eval echo "\"\$as_me:6127: $lt_compile\"" >&5)
6128     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
6129     ac_status=$?     ac_status=$?
6130     cat conftest.err >&5     cat conftest.err >&5
6131     echo "$as_me:6105: \$? = $ac_status" >&5     echo "$as_me:6131: \$? = $ac_status" >&5
6132     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
6133       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
6134       # So say no if there are warnings other than the usual output.       # So say no if there are warnings other than the usual output.
# Line 6388  else Line 6414  else
6414     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
6415     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
6416     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
6417     (eval echo "\"\$as_me:6391: $lt_compile\"" >&5)     (eval echo "\"\$as_me:6417: $lt_compile\"" >&5)
6418     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
6419     ac_status=$?     ac_status=$?
6420     cat conftest.err >&5     cat conftest.err >&5
6421     echo "$as_me:6395: \$? = $ac_status" >&5     echo "$as_me:6421: \$? = $ac_status" >&5
6422     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
6423       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
6424       # So say no if there are warnings other than the usual output.       # So say no if there are warnings other than the usual output.
# Line 6492  else Line 6518  else
6518     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
6519     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
6520     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
6521     (eval echo "\"\$as_me:6495: $lt_compile\"" >&5)     (eval echo "\"\$as_me:6521: $lt_compile\"" >&5)
6522     (eval "$lt_compile" 2>out/conftest.err)     (eval "$lt_compile" 2>out/conftest.err)
6523     ac_status=$?     ac_status=$?
6524     cat out/conftest.err >&5     cat out/conftest.err >&5
6525     echo "$as_me:6499: \$? = $ac_status" >&5     echo "$as_me:6525: \$? = $ac_status" >&5
6526     if (exit $ac_status) && test -s out/conftest2.$ac_objext     if (exit $ac_status) && test -s out/conftest2.$ac_objext
6527     then     then
6528       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
# Line 8778  else Line 8804  else
8804    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
8805    lt_status=$lt_dlunknown    lt_status=$lt_dlunknown
8806    cat > conftest.$ac_ext <<EOF    cat > conftest.$ac_ext <<EOF
8807  #line 8781 "configure"  #line 8807 "configure"
8808  #include "confdefs.h"  #include "confdefs.h"
8809    
8810  #if HAVE_DLFCN_H  #if HAVE_DLFCN_H
# Line 8878  else Line 8904  else
8904    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
8905    lt_status=$lt_dlunknown    lt_status=$lt_dlunknown
8906    cat > conftest.$ac_ext <<EOF    cat > conftest.$ac_ext <<EOF
8907  #line 8881 "configure"  #line 8907 "configure"
8908  #include "confdefs.h"  #include "confdefs.h"
8909    
8910  #if HAVE_DLFCN_H  #if HAVE_DLFCN_H
# Line 11265  else Line 11291  else
11291     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
11292     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
11293     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
11294     (eval echo "\"\$as_me:11268: $lt_compile\"" >&5)     (eval echo "\"\$as_me:11294: $lt_compile\"" >&5)
11295     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
11296     ac_status=$?     ac_status=$?
11297     cat conftest.err >&5     cat conftest.err >&5
11298     echo "$as_me:11272: \$? = $ac_status" >&5     echo "$as_me:11298: \$? = $ac_status" >&5
11299     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
11300       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
11301       # So say no if there are warnings other than the usual output.       # So say no if there are warnings other than the usual output.
# Line 11369  else Line 11395  else
11395     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
11396     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
11397     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
11398     (eval echo "\"\$as_me:11372: $lt_compile\"" >&5)     (eval echo "\"\$as_me:11398: $lt_compile\"" >&5)
11399     (eval "$lt_compile" 2>out/conftest.err)     (eval "$lt_compile" 2>out/conftest.err)
11400     ac_status=$?     ac_status=$?
11401     cat out/conftest.err >&5     cat out/conftest.err >&5
11402     echo "$as_me:11376: \$? = $ac_status" >&5     echo "$as_me:11402: \$? = $ac_status" >&5
11403     if (exit $ac_status) && test -s out/conftest2.$ac_objext     if (exit $ac_status) && test -s out/conftest2.$ac_objext
11404     then     then
11405       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
# Line 12952  else Line 12978  else
12978     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
12979     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
12980     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
12981     (eval echo "\"\$as_me:12955: $lt_compile\"" >&5)     (eval echo "\"\$as_me:12981: $lt_compile\"" >&5)
12982     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
12983     ac_status=$?     ac_status=$?
12984     cat conftest.err >&5     cat conftest.err >&5
12985     echo "$as_me:12959: \$? = $ac_status" >&5     echo "$as_me:12985: \$? = $ac_status" >&5
12986     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
12987       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
12988       # So say no if there are warnings other than the usual output.       # So say no if there are warnings other than the usual output.
# Line 13056  else Line 13082  else
13082     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
13083     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13084     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
13085     (eval echo "\"\$as_me:13059: $lt_compile\"" >&5)     (eval echo "\"\$as_me:13085: $lt_compile\"" >&5)
13086     (eval "$lt_compile" 2>out/conftest.err)     (eval "$lt_compile" 2>out/conftest.err)
13087     ac_status=$?     ac_status=$?
13088     cat out/conftest.err >&5     cat out/conftest.err >&5
13089     echo "$as_me:13063: \$? = $ac_status" >&5     echo "$as_me:13089: \$? = $ac_status" >&5
13090     if (exit $ac_status) && test -s out/conftest2.$ac_objext     if (exit $ac_status) && test -s out/conftest2.$ac_objext
13091     then     then
13092       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
# Line 15244  else Line 15270  else
15270     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
15271     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
15272     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
15273     (eval echo "\"\$as_me:15247: $lt_compile\"" >&5)     (eval echo "\"\$as_me:15273: $lt_compile\"" >&5)
15274     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
15275     ac_status=$?     ac_status=$?
15276     cat conftest.err >&5     cat conftest.err >&5
15277     echo "$as_me:15251: \$? = $ac_status" >&5     echo "$as_me:15277: \$? = $ac_status" >&5
15278     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
15279       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
15280       # So say no if there are warnings other than the usual output.       # So say no if there are warnings other than the usual output.
# Line 15534  else Line 15560  else
15560     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
15561     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
15562     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
15563     (eval echo "\"\$as_me:15537: $lt_compile\"" >&5)     (eval echo "\"\$as_me:15563: $lt_compile\"" >&5)
15564     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
15565     ac_status=$?     ac_status=$?
15566     cat conftest.err >&5     cat conftest.err >&5
15567     echo "$as_me:15541: \$? = $ac_status" >&5     echo "$as_me:15567: \$? = $ac_status" >&5
15568     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
15569       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
15570       # So say no if there are warnings other than the usual output.       # So say no if there are warnings other than the usual output.
# Line 15638  else Line 15664  else
15664     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
15665     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
15666     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
15667     (eval echo "\"\$as_me:15641: $lt_compile\"" >&5)     (eval echo "\"\$as_me:15667: $lt_compile\"" >&5)
15668     (eval "$lt_compile" 2>out/conftest.err)     (eval "$lt_compile" 2>out/conftest.err)
15669     ac_status=$?     ac_status=$?
15670     cat out/conftest.err >&5     cat out/conftest.err >&5
15671     echo "$as_me:15645: \$? = $ac_status" >&5     echo "$as_me:15671: \$? = $ac_status" >&5
15672     if (exit $ac_status) && test -s out/conftest2.$ac_objext     if (exit $ac_status) && test -s out/conftest2.$ac_objext
15673     then     then
15674       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
# Line 21265  s,@cWnn@,$cWnn,;t t Line 21291  s,@cWnn@,$cWnn,;t t
21291  s,@kWnn@,$kWnn,;t t  s,@kWnn@,$kWnn,;t t
21292  s,@WNNJLIB@,$WNNJLIB,;t t  s,@WNNJLIB@,$WNNJLIB,;t t
21293  s,@DEPWNNJLIB@,$DEPWNNJLIB,;t t  s,@DEPWNNJLIB@,$DEPWNNJLIB,;t t
21294    s,@EXTWNNJINC@,$EXTWNNJINC,;t t
21295  s,@HINSI_DATA@,$HINSI_DATA,;t t  s,@HINSI_DATA@,$HINSI_DATA,;t t
21296  s,@CWNNJLIB@,$CWNNJLIB,;t t  s,@CWNNJLIB@,$CWNNJLIB,;t t
21297  s,@DEPCWNNJLIB@,$DEPCWNNJLIB,;t t  s,@DEPCWNNJLIB@,$DEPCWNNJLIB,;t t
21298    s,@EXTCWNNJINC@,$EXTCWNNJINC,;t t
21299  s,@CHINSI_DATA@,$CHINSI_DATA,;t t  s,@CHINSI_DATA@,$CHINSI_DATA,;t t
21300  s,@THINSI_DATA@,$THINSI_DATA,;t t  s,@THINSI_DATA@,$THINSI_DATA,;t t
21301  s,@KWNNJLIB@,$KWNNJLIB,;t t  s,@KWNNJLIB@,$KWNNJLIB,;t t
21302  s,@DEPKWNNJLIB@,$DEPKWNNJLIB,;t t  s,@DEPKWNNJLIB@,$DEPKWNNJLIB,;t t
21303    s,@EXTKWNNJINC@,$EXTKWNNJINC,;t t
21304  s,@KHINSI_DATA@,$KHINSI_DATA,;t t  s,@KHINSI_DATA@,$KHINSI_DATA,;t t
21305  s,@ipv6@,$ipv6,;t t  s,@ipv6@,$ipv6,;t t
21306  s,@unsafe_path@,$unsafe_path,;t t  s,@unsafe_path@,$unsafe_path,;t t

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26