免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1559 | 回复: 8
打印 上一主题 下一主题

文件的内容变成中文 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-07-25 19:46 |只看该作者 |倒序浏览
小弟移植软件到solaris平台,
我们写的runconfig脚本和用户交互,将一些用户选项生成一个config.env文件;
然后source ./config.env
接下来运行./configure,gmake。
这个过程在linux上完全正常,但在solaris平台中,config.env中的一些字符串变成了中文,导致以后的configure错误。本来生成的是:
MultiThreaded="yes"
在solaris平台上变成:
MultiThreaded="是"

请问是什么原因导致?又该怎么解决?(我们原来使用的方法是手工编辑config.env,建议这个方法的同志就算了:))

论坛徽章:
0
2 [报告]
发表于 2004-07-26 20:40 |只看该作者

文件的内容变成中文

这个论坛帖子这么多,。。。被淹了,顶一下

论坛徽章:
0
3 [报告]
发表于 2004-07-26 21:13 |只看该作者

文件的内容变成中文

我倒,系统还有负责翻译的功能

论坛徽章:
0
4 [报告]
发表于 2004-07-27 00:02 |只看该作者

文件的内容变成中文

在 solaris 上, 语言环境设为 C

论坛徽章:
0
5 [报告]
发表于 2004-07-27 23:47 |只看该作者

文件的内容变成中文

[quote]原帖由 "lightspeed"]在 solaris 上, 语言环境设为 C[/quote 发表:

你是指csh?这个市没有问题的,在脚本中作了判断了。
平常做移植大多先在linux上做好,在移植到solaris上,不会碰到太大问题。这个搞不定了。
另外,文件中的小写“c”也变成了大写的“C”了,不知何故。
脚本如下,有耐心的请看:


  1. #!/bin/sh

  2. # **********************************************************************
  3. #  Copyright (c) 2003
  4. #  StarMiddleware.net         
  5. #  www.StarMiddleware.net
  6. #                        
  7. #  All Rights Reserved   
  8. #                           
  9. # **********************************************************************


  10. #
  11. # Remove echo incompatibilities
  12. #
  13. if test "`echo -e xxx`" = "xxx"
  14. then
  15.     echo="echo -e"
  16. else
  17.     echo=echo
  18. fi

  19. #
  20. # Unset everything that starts with "config_" and "env_"
  21. #
  22. for i in `set | grep "^config_[a-z_]*=" | sed -e 's/=.*$//'`;
  23. do
  24.     unset $i
  25. done
  26. for i in `set | grep "^env_[A-Z_]*=" | sed -e 's/=.*$//'`;
  27. do
  28.     unset $i
  29. done

  30. #
  31. # Read default configuration
  32. #
  33. if test ! -f "./config/defaults"
  34. then
  35.     $echo "$0: error: can't load \`./config/defaults'"
  36.     exit
  37. fi

  38. . ./config/defaults

  39. #
  40. # Read current configuration
  41. #
  42. if test -f "./config/current"
  43. then
  44.     . ./config/current
  45. fi

  46. #
  47. # Define available configurations
  48. #
  49. cpp_sun=1
  50. cpp_gcc=2
  51. cpp_sgi=3
  52. cpp_hp_1100=4
  53. cpp_aix=5
  54. cpp_dec=6
  55. cpp_hp_1020=7

  56. cpp_last=$cpp_dec

  57. #
  58. # Check the input arguments:
  59. #
  60. #       --A                    Automatic.  Use the defauts without prompting,
  61. #                              except where otherwise instructed with
  62. #                              command line aguments.
  63. #       --with-berkeley-yes    Use berekely.
  64. #       --with-berkeley-no     Do not use berkeley.
  65. #       --with-debug-yes       With debugging.
  66. #       --with-debug-no        Without debugging.
  67. #       --install-path <PATH>;  Set the install path.
  68. #       --jtc-path <PATH>;      JThreads installation path.
  69. #       --with-optimized-yes   With optimization.
  70. #       --with-optimized-no    Without optimization.
  71. #       --with-oracle-yes      With Oracle support.
  72. #       --with-oracle-no       Without Oracle support.
  73. #       --use-platform-1       SGI C++ 7.2 or 7.3 on SGI Irix 6.5
  74. #       --use-platform-2       Forte C++ 6 C++ 5.2 Solaris 2.6, 7 and 8
  75. #       --use-platform-3       HP A.01.23 on B.10.20
  76. #       --use-platform-4       HP A.03.27 on B.11.00
  77. #       --use-platform-5       Compaq C++ V6.2-024 on Compaq Tru64 V5.1
  78. #       --use-platform-6       AIX C Set ++ xlC 3.6.6," on AIX 4.3.x
  79. #       --use-platform-7       GCC 2.95.3 on Linux, SUN Solaris
  80. #       --with-shared-yes      With shared libraries.
  81. #       --with-shared-no       Without shared libraries.
  82. #       --with-shell-b         With a bourne shell.
  83. #       --with-shell-c         With a C style shell.
  84. #

  85. Automate="false"
  86. config_berkeleydb=no

  87. for arg in ${1+"$@"} ; do
  88.     if test -n "$arg" -a "$arg" = "--A"
  89.     then
  90.         #
  91.         # These must be blank for the configure scripts to properly work
  92.         # with automatic configuration (unless otherwise set).
  93.         #
  94.         config_ob_path=
  95.         config_jtc_path=
  96.         Automate="true"
  97.     elif test -n "$arg" -a "$arg" = "--with-berkeley-yes"
  98.     then
  99.         config_berkeleydb="yes"
  100.     elif test -n "$arg" -a "$arg" = "--with-berkeley-no"
  101.     then
  102.         config_berkeleydb="no"
  103.     elif test -n "$arg" -a "$arg" = "--with-debug-yes"
  104.     then
  105.         config_debug="yes"
  106.     elif test -n "$arg" -a "$arg" = "--with-debug-no"
  107.     then
  108.         config_debug="no"
  109.     elif test -n "$arg" -a "$arg" = "--install-path"
  110.     then
  111.         config_install_path="$2"
  112.     elif test -n "$arg" -a "$arg" = "--jtc-path"
  113.     then
  114.         config_jtc_path="$2"
  115.     elif test -n "$arg" -a "$arg" = "--with-optimized-yes"
  116.     then
  117.         config_optimized="yes"
  118.     elif test -n "$arg" -a "$arg" = "--with-optimized-no"
  119.     then
  120.         config_optimized="no"
  121.     elif test -n "$arg" -a "$arg" = "--with-oracle-yes"
  122.     then
  123.         config_oracle="yes"
  124.     elif test -n "$arg" -a "$arg" = "--with-oracle-no"
  125.     then
  126.         config_oracle="no"
  127.     elif test -n "$arg" -a "$arg" = "--use-platform-1"
  128.     then
  129.         config_platform="1"
  130.     elif test -n "$arg" -a "$arg" = "--use-platform-2"
  131.     then
  132.         config_platform="2"
  133.     elif test -n "$arg" -a "$arg" = "--use-platform-3"
  134.     then
  135.         config_platform="3"
  136.     elif test -n "$arg" -a "$arg" = "--use-platform-4"
  137.     then
  138.         config_platform="4"
  139.     elif test -n "$arg" -a "$arg" = "--use-platform-5"
  140.     then
  141.         config_platform="5"
  142.     elif test -n "$arg" -a "$arg" = "--use-platform-6"
  143.     then
  144.         config_platform="6"
  145.     elif test -n "$arg" -a "$arg" = "--use-platform-7"
  146.     then
  147.         config_platform="7"
  148.     elif test -n "$arg" -a "$arg" = "--with-shared-yes"
  149.     then
  150.         config_shared="yes"
  151.     elif test -n "$arg" -a "$arg" = "--with-shared-no"
  152.     then
  153.         config_shared="no"
  154.     elif test -n "$arg" -a "$arg" = "--with-shell-b"
  155.     then
  156.         config_shell="b"
  157.     elif test -n "$arg" -a "$arg" = "--with-shell-c"
  158.     then
  159.         config_shell="c"
  160.     fi
  161.     shift
  162. done

  163. #
  164. # Check if an ORBacus program is being configured
  165. #
  166. if test \( -d ob -o -d naming -o -d property -o -d time -o -d event \
  167.            -o -d bidir -o -d udp -o -d ots -o -d notify -o -d logging \
  168.            -o -d balancer \)
  169. then
  170.     orbacus="yes"
  171. else
  172.     orbacus="no"
  173. fi

  174. #*******************************************************************
  175. #
  176. # This block is executed if there is no automate flag set
  177. #
  178. #*******************************************************************

  179. if test -n "$Automate" -a "$Automate" != "true"
  180. then

  181. #
  182. # Print welcome message
  183. #
  184. $echo
  185. $echo "************************"
  186. $echo "* ORBacus Configurator *"
  187. $echo "************************"

  188. #
  189. # Ask for shell type
  190. #
  191. $echo
  192. input="x"
  193. while test -n "$input" -a "$input" != "b" -a "$input" != "c"
  194. do
  195.     $echo "Enter 'c' if you use a C shell, or 'b' for a bourne shell:"
  196.     $echo "[$config_shell] \c"
  197.     read input
  198. done
  199. if test -n "$input"
  200. then
  201.     config_shell="$input"
  202. fi

  203. #
  204. # Ask for platform and C++ compiler
  205. #
  206. $echo
  207. $echo "Please select from the following compiler/platform combinations:"
  208. $echo
  209. $echo "(1) SUN Forte 6 update 2 C++ 5.3         SUN Solaris 2.6, 7 and 8"
  210. $echo "(2) GCC 2.95.3                           SUN Solaris, Linux"
  211. $echo "(3) SGI C++ 7.2 or 7.3                   SGI Irix 6.5"
  212. $echo "(4) HP aC++ A.03.27                      HP-UX B.11.00"
  213. $echo "(5) AIX VisualAge C++ 5.0                AIX Version 4.3.x"
  214. $echo "(6) Compaq C++ 6.2-024                   Compaq Tru64 V5.1"

  215. $echo
  216. input=0
  217. while test -n "$input" -a \( "0$input" -gt $cpp_last -o "0$input" -lt 1 \)
  218. do
  219.     $echo "Please choose your compiler/platform combination:"
  220.     $echo "[$config_platform] \c"
  221.     read input
  222. done
  223. if test -n "$input"
  224. then
  225.     config_platform="$input"
  226. fi

  227. #
  228. # Ask for shared libraries
  229. #
  230. $echo
  231. if test $config_platform = $cpp_dec
  232. then
  233.     config_shared="yes"
  234.     $echo "Do you want to create shared libraries?"
  235.     $echo "(Compaq C++ only supports shared libraries.)"
  236.     $echo "[$config_shared] \c"
  237.     $echo
  238. else
  239.     input="x"
  240.     while test -n "$input" -a "$input" != "yes" -a "$input" != "no"
  241.     do
  242.         $echo "Do you want to create shared libraries?"
  243.         $echo "[$config_shared] \c"
  244.         read input
  245.     done
  246.     if test -n "$input"
  247.     then
  248.         config_shared="$input"
  249.     fi
  250. fi

  251. #
  252. # Ask for optimized code
  253. #
  254. $echo
  255. input="x"
  256. while test -n "$input" -a "$input" != "yes" -a "$input" != "no"
  257. do
  258.     $echo "Do you want optimized code to be generated?"
  259.     $echo "[$config_optimized] \c"
  260.     read input
  261. done
  262. if test -n "$input"
  263. then
  264.     config_optimized="$input"
  265. fi

  266. #
  267. # Ask for debug code
  268. #
  269. $echo
  270. input="x"
  271. while test -n "$input" -a "$input" != "yes" -a "$input" != "no"
  272. do
  273.     $echo "Add debug information to the generated code?"
  274.     $echo "[$config_debug] \c"
  275.     read input
  276. done
  277. if test -n "$input"
  278. then
  279.     config_debug="$input"
  280. fi

  281. #
  282. # Ask some ORBacus specific questions
  283. #
  284. if test "$orbacus" = "yes"
  285. then
  286.     if test ! -d ob
  287.     then
  288.         while true
  289.         do
  290.             $echo
  291.             $echo "Please enter the ORBacus installation path:"
  292.             $echo "[$config_ob_path] \c"
  293.             input=
  294.             read input
  295.             if test -n "$input"
  296.             then
  297.                 config_ob_path="$input"
  298.             fi
  299.             if test ! -d "$config_ob_path"
  300.             then
  301.                 $echo "Directory $config_ob_path does not exist!"
  302.             else
  303.                 break
  304.             fi
  305.         done
  306.     else
  307.         config_ob_path=
  308.     fi

  309.     if test ! -d jtc
  310.     then
  311.         while true
  312.         do
  313.             $echo
  314.             $echo "Please enter the JThreads/C++ installation path:"
  315.             $echo "[$config_jtc_path] \c"
  316.             input=
  317.             read input
  318.             if test -n "$input"
  319.             then
  320.                 config_jtc_path="$input"
  321.             fi
  322.             if test ! -d "$config_jtc_path"
  323.             then
  324.                 $echo "Directory $config_jtc_path does not exist!"
  325.             else
  326.                 break
  327.             fi
  328.         done
  329.     else
  330.         config_jtc_path=
  331.     fi
  332. else
  333.     config_ob_path=
  334.     config_jtc_path=
  335. fi

  336. #
  337. # Ask some JThreads/C++ specific questions
  338. #
  339. if test $config_platform -eq $cpp_hp_1100
  340. then
  341.     input="x"
  342.     while test -n "$input" -a "$input" != "posix" -a "$input" != "dce"
  343.     do
  344.         $echo
  345.         if test -d jtc
  346.         then
  347.             $echo "Compile JThreads/C++ with support for POSIX or DCE?"
  348.         else
  349.             $echo "Did you compile JThreads/C++ with support for POSIX or DCE?"
  350.         fi
  351.         $echo "[$config_jtc_thread_model] \c"
  352.         read input
  353.     done
  354.     if test -n "$input"
  355.     then
  356.         config_jtc_thread_model="$input"
  357.     fi
  358. else
  359.     config_jtc_thread_model="posix"
  360. fi

  361. #
  362. # Only ask OTS specific questions if the "ots" subdirectory exists
  363. #
  364. if test -d ots
  365. then
  366.     #
  367.     # Oracle questions
  368.     #
  369.     while true
  370.     do
  371.         $echo
  372.         $echo "Compile ORBacus OTS with support for Oracle?"
  373.         $echo "(Enter the Oracle installation path, e.g. /opt/oracle/product/8.1.6,"
  374.         $echo " or type \`no' to disable Oracle support.)"
  375.         $echo "[$config_oracle] \c"
  376.         input=
  377.         read input
  378.         if test -n "$input"
  379.         then
  380.             config_oracle="$input"
  381.         fi
  382.         if test "$config_oracle" = "no"
  383.         then
  384.             break
  385.         fi
  386.         if test ! -d $config_oracle
  387.         then
  388.             $echo "Directory $config_oracle does not exist!"
  389.         else
  390.             break
  391.         fi
  392.     done
  393. else
  394.     config_oracle="no"
  395. fi

  396. #
  397. # Ask some BerkeleyDB specific questions
  398. #
  399. if test \( -d notify -o -d logging \)
  400. then
  401.     config_berkeleydb="yes" # BerkeleyDB is required for Notify and T-Log
  402. else
  403.     config_berkeleydb="no"
  404. #
  405. # If / when we support BerkeleyDB with OTS we will need the below
  406. #
  407. #    if test -d ots
  408. #    then
  409. #       while true
  410. #       do
  411. #            $echo
  412. #            $echo "Compile ORBacus OTS with support for BerkeleyDB?"
  413. #            $echo "(Enter the BerkeleyDB 3.x installation path, or type"
  414. #            $echo " \`no' to disable BerkeleyDB support.)"
  415. #            $echo "[$config_berkeleydb] \c"
  416. #            input=
  417. #            read input
  418. #            if test -n "$input"
  419. #            then
  420. #                config_berkeleydb="$input"
  421. #            fi
  422. #            if test "$config_berkeleydb" = "no"
  423. #            then
  424. #                break
  425. #            fi
  426. #            if test ! -d $config_berkeleydb
  427. #            then
  428. #                $echo "Directory $config_berkeleydb does not exist!"
  429. #            else
  430. #                break
  431. #            fi
  432. #       done
  433. #    else
  434. #            config_berkeleydb="no"
  435. #    fi
  436. fi

  437. if test "$config_berkeleydb" = "yes"
  438. then
  439. while true
  440. do
  441.     $echo
  442.     $echo "Please enter the BerkeleyDB installation path "
  443.     $echo "(required by ORBacus T-log and ORBacus Notify): "
  444.     $echo "[$config_berkeleydb_path] \c"
  445.     input=
  446.     read input
  447.     if test -n "$input"
  448.     then
  449.         config_berkeleydb_path="$input"
  450.     fi
  451.     if test ! -d "$config_berkeleydb_path"
  452.     then
  453.         $echo "Directory $config_berkeleydb_path does not exist!"
  454.     else
  455.         break
  456.     fi
  457. done
  458. else
  459.     config_berkeleydb_path=
  460. fi

  461. #
  462. # Ask some ORBacus T-Log specific questions
  463. #
  464. if test -d logging
  465. then
  466.     #
  467.     # By default build the event logging service.
  468.     #
  469.     config_event="yes"
  470.     config_event_path=

  471.     #
  472.     # Compile the notify logging service?
  473.     #
  474.     if test -d notify
  475.     then
  476.         config_notify="yes"
  477.         config_notify_path=
  478.     else
  479.         $echo
  480.         input="x"
  481.         while test -n "$input" -a "$input" != "yes" -a "$input" != "no"
  482.         do
  483.             $echo "Compile ORBacus T-Log Notify Logging Service?"
  484.             $echo "[$config_notify] \c"
  485.             read input
  486.         done
  487.         if test -n "$input"
  488.         then
  489.             config_notify="$input"
  490.         fi

  491.         if test "$config_notify" = "yes"
  492.         then
  493.             while true
  494.             do
  495.                 $echo
  496.                 $echo "Please enter the ORBacus Notify installation path:"
  497.                 $echo "[$config_notify_path] \c"
  498.                 input=
  499.                 read input
  500.                 if test -n "$input"
  501.                 then
  502.                     config_notify_path="$input"
  503.                 fi
  504.                 if test ! -d "$config_notify_path"
  505.                 then
  506.                     $echo "Directory $config_notify_path does not exist!"
  507.                 else
  508.                     break
  509.                 fi
  510.             done
  511.         else
  512.             config_notify_path=
  513.         fi
  514.     fi
  515. else
  516.     config_event="no"
  517.     config_event_path=
  518.     config_notify="no"
  519.     config_notify_path=
  520. fi

  521. #
  522. # Ask for extra preprocessor flags
  523. #
  524. $echo
  525. $echo "Please enter any extra preprocessor flags, like \`-I/some/directory':"
  526. $echo "[$config_extra_cpp_flags] \c"
  527. input=
  528. read input
  529. if test -n "$input"
  530. then
  531.     config_extra_cpp_flags="$input"
  532. fi

  533. #
  534. # Ask for extra compiler flags
  535. #
  536. $echo
  537. $echo "Please enter any extra compiler flags, like \`-pipe':"
  538. $echo "[$config_extra_cxx_flags] \c"
  539. input=
  540. read input
  541. if test -n "$input"
  542. then
  543.     config_extra_cxx_flags="$input"
  544. fi

  545. #
  546. # Ask for extra linker flags
  547. #
  548. $echo
  549. $echo "Please enter any extra linker flags, like \`-L/some/directory':"
  550. $echo "[$config_extra_ld_flags] \c"
  551. input=
  552. read input
  553. if test -n "$input"
  554. then
  555.     config_extra_ld_flags="$input"
  556. fi

  557. #
  558. # Ask for extra archiver flags
  559. #
  560. $echo
  561. $echo "Please enter any extra archiver flags, like \`-xarch=v9':"
  562. $echo "[$config_extra_ar_flags] \c"
  563. input=
  564. read input
  565. if test -n "$input"
  566. then
  567.     config_extra_ar_flags="$input"
  568. fi

  569. #
  570. # Ask for the installation path
  571. #
  572. while true
  573. do
  574.     $echo
  575.     $echo "Where do you want to install everything?"
  576.     $echo "[$config_install_path] \c"
  577.     input=
  578.     read input
  579.     if test -n "$input"
  580.     then
  581.         config_install_path="$input"
  582.     fi
  583.     if test ! -d "$config_install_path"
  584.     then
  585.         input="x"
  586.         while test -n "$input" -a "$input" != "yes" -a "$input" != "no"
  587.         do
  588.             $echo "Directory $config_install_path does not exist. Create it?"
  589.             $echo "[no] \c"
  590.             read input
  591.         done

  592.         if test "$input" = "yes"
  593.         then
  594.             mkdir -p $config_install_path
  595.             if test $? -eq 0
  596.             then
  597.                 break
  598.             fi
  599.         fi
  600.     else
  601.         break
  602.     fi
  603. done

  604. fi

  605. #*******************************************************************
  606. #
  607. # End of block that is executed when the automate flag is not set.
  608. #
  609. #*******************************************************************

  610. #
  611. # Write current configuration data
  612. #
  613. set | sed -e s/\$\'/\'/ \
  614.     | grep "^config_[a-z_]*=[^ ]" \
  615.     | sed "s/='/=/
  616.            s/=/=\"/
  617.            s/'$//
  618.            s/$/\"/" >;./config/current

  619. #
  620. # Set environment variables
  621. #
  622. env_RUNCONFIG=yes
  623. env_AR=
  624. env_ARFLAGS=
  625. env_LIBVERFLAG=
  626. env_CC=
  627. env_CFLAGS=
  628. env_CPP=
  629. env_CPPFLAGS=
  630. env_CXX=
  631. env_CXXFLAGS=
  632. env_LDFLAGS=
  633. env_LDOPTS=
  634. #env_LD_LIBRARY_PATH=
  635. env_LIBEXT=
  636. env_LIBPATH=
  637. env_RANLIB=
  638. env_TMPL_REPOS_DIR=
  639. #env_SHLIB_PATH=
  640. xincludes=
  641. xlibraries=

  642. lib_dirs=
  643. for i in jtc ob naming property time event bidir udp ots ots/test util \
  644.          notify logging balancer watson obe naminge property evente
  645. do
  646.     if test -d $i
  647.     then
  648.         lib_dirs="`pwd`/$i/lib:$lib_dirs"
  649.     fi
  650. done

  651. #
  652. # JThreads/C++ configuration options.
  653. #
  654. with_jtc=
  655. if test -n "$config_jtc_path"
  656. then
  657.     if test "$config_jtc_path" != "$config_install_path"
  658.     then
  659.         if test -n "$Automate" -a "$Automate" != "true"
  660.         then
  661.             with_jtc=" --with-jtc=\"$config_jtc_path\""
  662.         else
  663.             with_jtc=" --with-jtc=$config_jtc_path"
  664.         fi
  665.     fi
  666.     lib_dirs="$config_jtc_path/lib:$lib_dirs"
  667. fi

  668. with_jtc_dce=
  669. if test "$config_jtc_thread_model" = "dce"
  670. then
  671.     with_jtc_dce=" --with-jtc-dce"
  672. fi

  673. #
  674. # ORBacus configuration options.
  675. #
  676. with_ob=
  677. if test -n "$config_ob_path"
  678. then
  679.     if test "$config_ob_path" != "$config_install_path"
  680.     then
  681.         with_ob=" --with-ob=\"$config_ob_path\""
  682.     fi
  683.     lib_dirs="$config_ob_path/lib:$lib_dirs"
  684. fi

  685. #
  686. # Oracle configuration options.
  687. #
  688. with_oracle=
  689. if test "$config_oracle" != "no"
  690. then
  691.     if test "$config_oracle" = "yes"
  692.     then
  693.         with_oracle=" --with-oracle"
  694.     else
  695.         with_oracle=" --with-oracle=\"$config_oracle\""
  696.     fi
  697. fi

  698. #
  699. # BerkeleyDB configuration options.
  700. #
  701. with_berkeleydb=
  702. if test "$config_berkeleydb" != "no"
  703. then
  704.     if test -n "$config_berkeleydb_path"
  705.     then
  706.         with_berkeleydb=" --with-berkeleydb=\"$config_berkeleydb_path\""
  707.     fi
  708. fi

  709. #
  710. # ORBacus T-Log configuration options.
  711. #
  712. with_obevent=
  713. if test "$config_event" = "yes"
  714. then
  715.     if test -n "$config_event_path"
  716.     then
  717.         if test "$config_event_path" != "$config_ob_path" \
  718.              -a "$config_event_path" != "$config_install_path"
  719.         then
  720.             with_obevent=" --with-obevent=\"$config_event_path\""
  721.         fi
  722.         lib_dirs="$config_event_path/lib:$lib_dirs"
  723.     fi
  724. fi

  725. with_obnotify=
  726. if test "$config_notify" = "yes"
  727. then
  728.     if test -n "$config_notify_path"
  729.     then
  730.         if test "$config_notity_path" != "$config_ob_path" \
  731.              -a "$config_notify_path" != "$config_install_path"
  732.         then
  733.             with_obnotify=" --with-obnotify=\"$config_notify_path\""
  734.         fi
  735.         lib_dirs="$config_notify_path/lib:$lib_dirs"
  736.     else
  737.         with_obnotify=" --with-obnotify"
  738.     fi
  739. fi

  740. #
  741. # --prefix configuration option.
  742. #
  743. prefix=
  744. if test -n "$config_install_path" -a "$config_install_path" != "/usr/local"
  745. then
  746.     if test -n "$Automate" -a "$Automate" != "true"
  747.     then
  748.         prefix=" --prefix=\"$config_install_path\""
  749.     else
  750.         prefix=" --prefix=$config_install_path"
  751.     fi
  752. fi

  753. case $config_platform in

  754.     $cpp_sgi ) # SGI C++ 7.2
  755.         env_CC="cc"
  756.         env_CXX="CC"
  757.         env_CXXFLAGS=""
  758.         env_TMPL_REPOS_DIR=ii_files
  759.         if test "$config_shared" = "yes"
  760.         then
  761.             env_CXXFLAGS="-G7 $env_CXXFLAGS"
  762.             env_AR="$env_CXX"
  763.             env_ARFLAGS="-shared -o"
  764.             env_RANLIB=":"
  765.             env_LIBEXT=".so"
  766.             env_LD_LIBRARY_PATH="${lib_dirs}\$LD_LIBRARY_PATH"
  767.         else
  768.             env_CXXFLAGS="-G0 $env_CXXFLAGS"
  769.             env_AR="$env_CXX"
  770.             env_ARFLAGS="-ar -o"
  771.         fi
  772.         ;;

  773.     $cpp_sun ) # SUN C++
  774.         env_CC="cc"
  775.         env_CXX="CC"
  776.         env_CXXFLAGS=""
  777.         env_TMPL_REPOS_DIR=SunWS_cache
  778.         if test "$config_shared" = "yes"
  779.         then
  780.             env_CXXFLAGS="-KPIC $env_CXXFLAGS"
  781.             env_AR="$env_CXX"
  782.             env_ARFLAGS="-G -o"
  783.             env_LIBVERFLAG="-h "
  784.             env_RANLIB=":"
  785.             env_LIBEXT=".so"
  786.             env_LD_LIBRARY_PATH="${lib_dirs}\$LD_LIBRARY_PATH"
  787.         else
  788.             env_AR="$env_CXX"
  789.             env_ARFLAGS="-xar -o"
  790.         fi

  791.         env_CXXFLAGS="-mt $env_CXXFLAGS"
  792.         env_ARFLAGS="-mt $env_ARFLAGS"
  793.         ;;

  794.     $cpp_hp_1100 ) # HP aC++ for HPUX 11.00
  795.         env_CC="cc"
  796.         env_CXX="aCC"
  797.         env_CXXFLAGS=""
  798.         if test "$config_shared" = "yes"
  799.         then
  800.             env_CXXFLAGS="+Z $env_CXXFLAGS"
  801.             env_AR="$env_CXX"
  802.             env_ARFLAGS="-b -o"
  803.             env_LIBVERFLAG="-Wl,+h,"
  804.             env_RANLIB=":"
  805.             env_LDFLAGS=""
  806.             env_LIBEXT=".sl"
  807.             env_LDOPTS="+s"
  808.             env_SHLIB_PATH="${lib_dirs}\$SHLIB_PATH"
  809.         fi
  810.         if test -n "$with_jtc_dce"
  811.         then
  812.             env_CPPFLAGS="-D_REENTRANT -D_PTHREADS_DRAFT4 $env_CPPFLAGS"
  813.         fi
  814.         ;;

  815.     $cpp_aix ) # AIX VisualAge C++
  816.         env_CC="xlc_r"
  817.         env_CXX="xlC_r"
  818.         env_CXXFLAGS="-qnotempinc -qrtti=all"
  819.         #env_TMPL_REPOS_DIR=tempinc
  820.         if test "$config_shared" = "yes"
  821.         then
  822.             env_CXXFLAGS="$env_CXXFLAGS -brtl"
  823.             env_AR="makeC++SharedLib"
  824.             env_ARFLAGS="-p 0 -G -o"
  825.             env_RANLIB=":"
  826.             env_LIBEXT=".so"
  827.             env_LIBPATH="${lib_dirs}\$LIBPATH"
  828.         fi
  829.         ;;

  830.     $cpp_gcc ) # GCC 2.95.3
  831.         if config/gcc-check
  832.         then
  833.             :
  834.         else
  835.             echo "$0: aborted"
  836.             exit
  837.         fi
  838.         env_CC="gcc"
  839.         env_CXX="c++"
  840.         env_CXXFLAGS="-Wall"
  841.         if test "$config_shared" = "yes"
  842.         then
  843.             env_CXXFLAGS="-fPIC $env_CXXFLAGS"
  844.             env_AR="$env_CXX"
  845.             env_ARFLAGS="-fPIC -shared -o"
  846.             env_LIBVERFLAG=`config/gcc-version-flag`
  847.             env_RANLIB=":"
  848.             env_LIBEXT=".so"
  849.             env_LD_LIBRARY_PATH="${lib_dirs}\$LD_LIBRARY_PATH"
  850.         fi
  851.         ;;

  852.     $cpp_dec ) # DEC C++
  853.         env_CC="cc"
  854.         env_CXX="cxx"
  855.         env_CXXFLAGS="-distinguish_nested_enums -msg_disable narrowptr"
  856.         env_TMPL_REPOS_DIR=cxx_repository
  857.         if test "$config_shared" = "yes"
  858.         then
  859.             env_CFLAGS=-call_shared
  860.             env_AR="$env_CXX"
  861.             env_ARFLAGS="'-Wl,-expect_unresolved,*' -shared -o"
  862.             env_RANLIB=":"
  863.             env_LIBEXT=".so"
  864.             env_LD_LIBRARY_PATH="${lib_dirs}\$LD_LIBRARY_PATH"
  865.         fi

  866.         env_CXXFLAGS="-pthread $env_CXXFLAGS"
  867.         ;;


  868.     * )
  869.         $echo "$0: error: unsupported platform and/or compiler"
  870.         exit
  871.         ;;

  872. esac

  873. if test "$config_optimized" = "yes"
  874. then
  875.     env_CPPFLAGS="-DNDEBUG $env_CPPFLAGS"
  876.     optimize_level="-O"
  877.     if test $config_platform = $cpp_gcc
  878.     then
  879.         optimize_level="-O3"
  880.     fi
  881.     env_CXXFLAGS="$optimize_level $env_CXXFLAGS"
  882.     if test "$env_AR" = "$env_CXX"
  883.     then
  884.         env_ARFLAGS="$optimize_level $env_ARFLAGS"
  885.     fi
  886. fi

  887. if test "$config_debug" = "yes"
  888. then
  889.     env_CXXFLAGS="-g $env_CXXFLAGS"
  890.     if test "$env_AR" = "$env_CXX"
  891.     then
  892.         env_ARFLAGS="-g $env_ARFLAGS"
  893.     fi
  894. fi

  895. if test -n "$config_extra_cpp_flags"
  896. then
  897.     env_CPPFLAGS="$config_extra_cpp_flags $env_CPPFLAGS"
  898. fi

  899. if test -n "$config_extra_cxx_flags"
  900. then
  901.     env_CXXFLAGS="$config_extra_cxx_flags $env_CXXFLAGS"
  902. fi

  903. if test -n "$config_extra_ld_flags"
  904. then
  905.     env_LDFLAGS="$config_extra_ld_flags $env_LDFLAGS"
  906. fi

  907. if test -n "$config_extra_ar_flags"
  908. then
  909.     env_ARFLAGS="$config_extra_ar_flags $env_ARFLAGS"
  910. fi

  911. #
  912. # Write script to set the environment
  913. #
  914. {
  915.     if test "$config_shell" = "b"
  916.     then
  917. #        set | sed -e "s/'//g" -e 's/\"//g' | grep "^env_[A-Z_]*=$" | \
  918. #        sed -e 's/^env_\([A-Z_]*\)=$/unset \1/g'
  919. #        set | sed -e "s/'//g" -e 's/\"//g' | grep "^env_[A-Z_]*=." | \
  920. #        sed -e 's/^env_\([A-Z_]*\)=\(.*\)$/\1=\"\2\"; export \1/g'
  921.         set | sed -e s/\$\'/\'/ | \
  922.         sed -e "s/'//g" -e 's/\"//g' | grep "^env_[A-Z_]*=" | \
  923.         sed -e 's/^env_\([A-Z_]*\)=\(.*\)$/\1=\"\2\"; export \1/g'
  924.     fi

  925.     if test "$config_shell" = "c"
  926.     then
  927.         if test -n "$env_LD_LIBRARY_PATH"
  928.         then
  929.             $echo "if ( \$?LD_LIBRARY_PATH == 0 ) then"
  930.             $echo "    setenv LD_LIBRARY_PATH \"\""
  931.             $echo "endif"
  932.             $echo
  933.         fi

  934.         if test -n "$env_SHLIB_PATH"
  935.         then
  936.             $echo "if ( \$?SHLIB_PATH == 0 ) then"
  937.             $echo "    setenv SHLIB_PATH \"\""
  938.             $echo "endif"
  939.             $echo
  940.         fi

  941.         if test -n "$env_LIBPATH"
  942.         then
  943.             $echo "if ( \$?LIBPATH == 0 ) then"
  944.             $echo "    setenv LIBPATH \"\""
  945.             $echo "endif"
  946.             $echo
  947.         fi

  948. #        set | sed -e "s/'//g" -e 's/\"//g' | grep "^env_[A-Z_]*=$" | \
  949. #        sed -e 's/^env_\([A-Z_]*\)=$/unsetenv \1/g'
  950. #        set | sed -e "s/'//g" -e 's/\"//g' | grep "^env_[A-Z_]*=." | \
  951. #        sed -e 's/^env_\([A-Z_]*\)=\(.*\)$/setenv \1 \"\2\"/g'
  952.         set | sed -e s/\$\'/\'/ | \
  953.         sed -e "s/'//g" -e 's/\"//g' | grep "^env_[A-Z_]*=" | \
  954.         sed -e 's/^env_\([A-Z_]*\)=\(.*\)$/setenv \1 \"\2\"/g'
  955.     fi

  956. } >; config.env

  957. if test -n "$Automate" -a "$Automate" != "true"
  958. then

  959.     #
  960.     # Tell the user how to run configure
  961.     #
  962.     $echo
  963.     $echo
  964.     $echo
  965.     $echo "To run \`configure', execute the following code in your shell:"
  966.     $echo
  967.     if test "$config_shell" = "b"
  968.     then
  969.         $echo ". ./go"
  970.         $echo ". ./config.env" >; go
  971.     fi
  972.     if test "$config_shell" = "c"
  973.     then
  974.         $echo "source ./go"
  975.         $echo "source ./config.env" >; go
  976.     fi
  977.     $echo "rm -f config.cache" >;>; go
  978.     $echo "./configure${prefix} --cache-file=config.cache${xincludes}${xlibraries}\c" >;>; go
  979.     $echo "${with_jtc}${with_jtc_dce}\c" >;>; go
  980.     $echo "${with_ob}${with_oracle}${with_berkeleydb}\c" >;>; go
  981.     $echo "${with_obevent}${with_obnotify}\c" >;>; go
  982.     $echo >;>; go
  983.     $echo

  984. else

  985.     #
  986.     # Want to configure the environment automatically
  987.     #
  988.     if test "$config_shell" = "b"
  989.     then
  990.         $echo ". ./config.env"
  991.     fi
  992.     if test "$config_shell" = "c"
  993.     then
  994.         $echo "source ./config.env"
  995.     fi
  996.     $echo "rm -f config.cache"
  997.     $echo "./configure${prefix} --cache-file=config.cache${xincludes}${xlibraries}\c"
  998.     $echo "${with_jtc}${with_jtc_dce}\c"
  999.     $echo "${with_ob}${with_oracle}${with_berkeleydb}\c"
  1000.     $echo "${with_obevent}${with_obnotify}\c"
  1001.     $echo

  1002.     if test "$config_shell" = "b"
  1003.     then
  1004.         . ./config.env
  1005.     fi
  1006.     if test "$config_shell" = "c"
  1007.     then
  1008.         source ./config.env
  1009.     fi
  1010.     rm -f config.cache
  1011.     ./configure${prefix}${xincludes}${xlibraries}${with_jtc}${with_jtc_dce}${with_ob}${with_oracle}${with_berkeleydb}${with_obevent}${with_obnotify}
  1012.    
  1013. fi
复制代码

论坛徽章:
0
6 [报告]
发表于 2004-07-28 04:41 |只看该作者

文件的内容变成中文

你是指csh?这个市没有问题的,在脚本中作了判断了。
平常做移植大多先在linux上做好,在移植到solaris上,不会碰到太大问题。这个搞不定了。
另外,文件中的小写“c”也变成了大写的“C”了,不知何故。


我指的是在 sh 中的语言:  

# LANG=C;export LANG

我试了一下你的 script, 没有出现你说的问题. 估计问题出在你没贴出来的
defaults 及 current 中,  请贴出来看看.

论坛徽章:
0
7 [报告]
发表于 2004-07-29 00:01 |只看该作者

文件的内容变成中文

原帖由 "lightspeed" 发表:


我指的是在 sh 中的语言:  

# LANG=C;export LANG

我试了一下你的 script, 没有出现你说的问题. 估计问题出在你没贴出来的
defaults 及 current 中,  请贴出来看看.

default就是config.env中的一些缺省值:

  1. config_shell=b
  2. config_debug=no
  3. config_ob_path=/usr/local
  4. config_jtc_path=/usr/local
  5. config_jtc_no_iostream=no
  6. config_jtc_thread_model=posix
  7. config_obe_no_trace=no
  8. config_obe_no_colloc=no
  9. config_optimized=no
  10. config_platform=1
  11. config_shared=yes
  12. config_oracle=no
  13. config_berkeleydb=no
  14. config_berkeleydb_path=/usr/local/BerkeleyDB
  15. config_event=no
  16. config_event_path=/usr/local
  17. config_notify=no
  18. config_notify_path=/usr/local
  19. config_extra_cpp_flags=
  20. config_extra_cxx_flags=
  21. config_extra_ld_flags=
  22. config_extra_ar_flags=
  23. config_install_path=/usr/local
复制代码

current文件开始不存在,第一次允许runconfig后建立,保存最后一次交互的值。
我对solaris的了解只限于编程开发,对系统管理配置知之甚少。
我猜想,是不是solaris的中文版对终端IO的输入输出进行了过滤,类似windows中的钩子(hook)。不知能不能证实这个想法。我的系统是SunOS5.7。
另外,多谢耐心回复:)
又及,export是bsh中的用法,csh中应该用setenv吧。

论坛徽章:
0
8 [报告]
发表于 2004-07-29 02:27 |只看该作者

文件的内容变成中文

没看出 MultiThreaded="yes" 是那条语句产生的, 先说明这一点吧。

另外, 有试过在 C 下运行吗: csh # setenv LANG C

论坛徽章:
0
9 [报告]
发表于 2004-07-31 10:55 |只看该作者

文件的内容变成中文

语言环境设为C就搞定了,多谢。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP