Changeset 1669 for trunk/Cbc/configure
- Timestamp:
- Jun 15, 2011 4:20:51 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cbc/configure
r1668 r1669 21061 21061 # add projrequires to the front of the list of projects that have to be processed next 21062 21062 # at the same time, remove $proj from this list 21063 projtoprocess= ${projtoprocess/$proj/$projrequires}21063 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 21064 21064 21065 21065 # read DATA from $pcfile, if _DATA is still empty … … 21132 21132 21133 21133 # set projcflags and projlibs variables by running $pcfilemod 21134 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 21134 21135 projcflags= 21135 21136 projlibs= 21137 IFS="$save_IFS" 21136 21138 eval `sh -c "$pcfilemod"` 21139 IFS=":" 21137 21140 21138 21141 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 21177 21180 21178 21181 # set projcflags and projlibs variables by running $pcfilemod 21182 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 21179 21183 projcflags= 21180 21184 projlibs= 21185 IFS="$save_IFS" 21181 21186 eval `sh -c "$pcfilemod"` 21187 IFS=":" 21182 21188 21183 21189 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 21210 21216 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 21211 21217 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 21212 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and21218 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 21213 21219 # everything of the form "-lname" by "libname.lib" 21214 21220 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 21215 21221 then 21216 21222 COINDEPEND_LIBS=`echo " $COINDEPEND_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 21217 COINDEPEND_LIBS_INSTALLED=`echo " $COINDEPEND_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`21223 COINDEPEND_LIBS_INSTALLED=`echo " $COINDEPEND_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 21218 21224 fi 21219 21225 … … 21604 21610 # add projrequires to the front of the list of projects that have to be processed next 21605 21611 # at the same time, remove $proj from this list 21606 projtoprocess= ${projtoprocess/$proj/$projrequires}21612 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 21607 21613 21608 21614 # read DATA from $pcfile, if _DATA is still empty … … 21675 21681 21676 21682 # set projcflags and projlibs variables by running $pcfilemod 21683 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 21677 21684 projcflags= 21678 21685 projlibs= 21686 IFS="$save_IFS" 21679 21687 eval `sh -c "$pcfilemod"` 21688 IFS=":" 21680 21689 21681 21690 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 21720 21729 21721 21730 # set projcflags and projlibs variables by running $pcfilemod 21731 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 21722 21732 projcflags= 21723 21733 projlibs= 21734 IFS="$save_IFS" 21724 21735 eval `sh -c "$pcfilemod"` 21736 IFS=":" 21725 21737 21726 21738 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 21753 21765 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 21754 21766 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 21755 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and21767 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 21756 21768 # everything of the form "-lname" by "libname.lib" 21757 21769 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 21758 21770 then 21759 21771 CLP_LIBS=`echo " $CLP_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 21760 CLP_LIBS_INSTALLED=`echo " $CLP_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`21772 CLP_LIBS_INSTALLED=`echo " $CLP_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 21761 21773 fi 21762 21774 … … 22117 22129 # add projrequires to the front of the list of projects that have to be processed next 22118 22130 # at the same time, remove $proj from this list 22119 projtoprocess= ${projtoprocess/$proj/$projrequires}22131 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 22120 22132 22121 22133 # read DATA from $pcfile, if _DATA is still empty … … 22188 22200 22189 22201 # set projcflags and projlibs variables by running $pcfilemod 22202 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 22190 22203 projcflags= 22191 22204 projlibs= 22205 IFS="$save_IFS" 22192 22206 eval `sh -c "$pcfilemod"` 22207 IFS=":" 22193 22208 22194 22209 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 22233 22248 22234 22249 # set projcflags and projlibs variables by running $pcfilemod 22250 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 22235 22251 projcflags= 22236 22252 projlibs= 22253 IFS="$save_IFS" 22237 22254 eval `sh -c "$pcfilemod"` 22255 IFS=":" 22238 22256 22239 22257 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 22266 22284 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 22267 22285 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 22268 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and22286 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 22269 22287 # everything of the form "-lname" by "libname.lib" 22270 22288 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 22271 22289 then 22272 22290 OSITESTS_LIBS=`echo " $OSITESTS_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 22273 OSITESTS_LIBS_INSTALLED=`echo " $OSITESTS_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`22291 OSITESTS_LIBS_INSTALLED=`echo " $OSITESTS_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 22274 22292 fi 22275 22293 … … 22592 22610 # add projrequires to the front of the list of projects that have to be processed next 22593 22611 # at the same time, remove $proj from this list 22594 projtoprocess= ${projtoprocess/$proj/$projrequires}22612 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 22595 22613 22596 22614 # read DATA from $pcfile, if _DATA is still empty … … 22663 22681 22664 22682 # set projcflags and projlibs variables by running $pcfilemod 22683 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 22665 22684 projcflags= 22666 22685 projlibs= 22686 IFS="$save_IFS" 22667 22687 eval `sh -c "$pcfilemod"` 22688 IFS=":" 22668 22689 22669 22690 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 22708 22729 22709 22730 # set projcflags and projlibs variables by running $pcfilemod 22731 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 22710 22732 projcflags= 22711 22733 projlibs= 22734 IFS="$save_IFS" 22712 22735 eval `sh -c "$pcfilemod"` 22736 IFS=":" 22713 22737 22714 22738 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 22741 22765 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 22742 22766 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 22743 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and22767 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 22744 22768 # everything of the form "-lname" by "libname.lib" 22745 22769 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 22746 22770 then 22747 22771 SAMPLE_LIBS=`echo " $SAMPLE_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 22748 SAMPLE_LIBS_INSTALLED=`echo " $SAMPLE_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`22772 SAMPLE_LIBS_INSTALLED=`echo " $SAMPLE_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 22749 22773 fi 22750 22774 … … 23067 23091 # add projrequires to the front of the list of projects that have to be processed next 23068 23092 # at the same time, remove $proj from this list 23069 projtoprocess= ${projtoprocess/$proj/$projrequires}23093 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 23070 23094 23071 23095 # read DATA from $pcfile, if _DATA is still empty … … 23138 23162 23139 23163 # set projcflags and projlibs variables by running $pcfilemod 23164 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 23140 23165 projcflags= 23141 23166 projlibs= 23167 IFS="$save_IFS" 23142 23168 eval `sh -c "$pcfilemod"` 23169 IFS=":" 23143 23170 23144 23171 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 23183 23210 23184 23211 # set projcflags and projlibs variables by running $pcfilemod 23212 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 23185 23213 projcflags= 23186 23214 projlibs= 23215 IFS="$save_IFS" 23187 23216 eval `sh -c "$pcfilemod"` 23217 IFS=":" 23188 23218 23189 23219 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 23216 23246 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 23217 23247 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 23218 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and23248 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 23219 23249 # everything of the form "-lname" by "libname.lib" 23220 23250 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 23221 23251 then 23222 23252 NETLIB_LIBS=`echo " $NETLIB_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 23223 NETLIB_LIBS_INSTALLED=`echo " $NETLIB_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`23253 NETLIB_LIBS_INSTALLED=`echo " $NETLIB_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 23224 23254 fi 23225 23255 … … 23542 23572 # add projrequires to the front of the list of projects that have to be processed next 23543 23573 # at the same time, remove $proj from this list 23544 projtoprocess= ${projtoprocess/$proj/$projrequires}23574 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 23545 23575 23546 23576 # read DATA from $pcfile, if _DATA is still empty … … 23613 23643 23614 23644 # set projcflags and projlibs variables by running $pcfilemod 23645 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 23615 23646 projcflags= 23616 23647 projlibs= 23648 IFS="$save_IFS" 23617 23649 eval `sh -c "$pcfilemod"` 23650 IFS=":" 23618 23651 23619 23652 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 23658 23691 23659 23692 # set projcflags and projlibs variables by running $pcfilemod 23693 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 23660 23694 projcflags= 23661 23695 projlibs= 23696 IFS="$save_IFS" 23662 23697 eval `sh -c "$pcfilemod"` 23698 IFS=":" 23663 23699 23664 23700 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 23691 23727 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 23692 23728 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 23693 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and23729 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 23694 23730 # everything of the form "-lname" by "libname.lib" 23695 23731 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 23696 23732 then 23697 23733 MIPLIB3_LIBS=`echo " $MIPLIB3_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 23698 MIPLIB3_LIBS_INSTALLED=`echo " $MIPLIB3_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`23734 MIPLIB3_LIBS_INSTALLED=`echo " $MIPLIB3_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 23699 23735 fi 23700 23736 … … 25030 25066 # add projrequires to the front of the list of projects that have to be processed next 25031 25067 # at the same time, remove $proj from this list 25032 projtoprocess= ${projtoprocess/$proj/$projrequires}25068 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 25033 25069 25034 25070 # read DATA from $pcfile, if _DATA is still empty … … 25101 25137 25102 25138 # set projcflags and projlibs variables by running $pcfilemod 25139 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 25103 25140 projcflags= 25104 25141 projlibs= 25142 IFS="$save_IFS" 25105 25143 eval `sh -c "$pcfilemod"` 25144 IFS=":" 25106 25145 25107 25146 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 25146 25185 25147 25186 # set projcflags and projlibs variables by running $pcfilemod 25187 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 25148 25188 projcflags= 25149 25189 projlibs= 25190 IFS="$save_IFS" 25150 25191 eval `sh -c "$pcfilemod"` 25192 IFS=":" 25151 25193 25152 25194 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 25179 25221 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 25180 25222 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 25181 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and25223 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 25182 25224 # everything of the form "-lname" by "libname.lib" 25183 25225 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 25184 25226 then 25185 25227 DYLP_LIBS=`echo " $DYLP_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 25186 DYLP_LIBS_INSTALLED=`echo " $DYLP_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`25228 DYLP_LIBS_INSTALLED=`echo " $DYLP_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 25187 25229 fi 25188 25230 … … 25520 25562 # add projrequires to the front of the list of projects that have to be processed next 25521 25563 # at the same time, remove $proj from this list 25522 projtoprocess= ${projtoprocess/$proj/$projrequires}25564 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 25523 25565 25524 25566 # read DATA from $pcfile, if _DATA is still empty … … 25591 25633 25592 25634 # set projcflags and projlibs variables by running $pcfilemod 25635 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 25593 25636 projcflags= 25594 25637 projlibs= 25638 IFS="$save_IFS" 25595 25639 eval `sh -c "$pcfilemod"` 25640 IFS=":" 25596 25641 25597 25642 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 25636 25681 25637 25682 # set projcflags and projlibs variables by running $pcfilemod 25683 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 25638 25684 projcflags= 25639 25685 projlibs= 25686 IFS="$save_IFS" 25640 25687 eval `sh -c "$pcfilemod"` 25688 IFS=":" 25641 25689 25642 25690 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 25669 25717 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 25670 25718 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 25671 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and25719 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 25672 25720 # everything of the form "-lname" by "libname.lib" 25673 25721 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 25674 25722 then 25675 25723 VOL_LIBS=`echo " $VOL_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 25676 VOL_LIBS_INSTALLED=`echo " $VOL_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`25724 VOL_LIBS_INSTALLED=`echo " $VOL_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 25677 25725 fi 25678 25726 … … 26025 26073 # add projrequires to the front of the list of projects that have to be processed next 26026 26074 # at the same time, remove $proj from this list 26027 projtoprocess= ${projtoprocess/$proj/$projrequires}26075 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 26028 26076 26029 26077 # read DATA from $pcfile, if _DATA is still empty … … 26096 26144 26097 26145 # set projcflags and projlibs variables by running $pcfilemod 26146 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 26098 26147 projcflags= 26099 26148 projlibs= 26149 IFS="$save_IFS" 26100 26150 eval `sh -c "$pcfilemod"` 26151 IFS=":" 26101 26152 26102 26153 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 26141 26192 26142 26193 # set projcflags and projlibs variables by running $pcfilemod 26194 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 26143 26195 projcflags= 26144 26196 projlibs= 26197 IFS="$save_IFS" 26145 26198 eval `sh -c "$pcfilemod"` 26199 IFS=":" 26146 26200 26147 26201 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 26174 26228 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 26175 26229 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 26176 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and26230 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 26177 26231 # everything of the form "-lname" by "libname.lib" 26178 26232 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 26179 26233 then 26180 26234 CPX_LIBS=`echo " $CPX_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 26181 CPX_LIBS_INSTALLED=`echo " $CPX_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`26235 CPX_LIBS_INSTALLED=`echo " $CPX_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 26182 26236 fi 26183 26237 … … 26545 26599 # add projrequires to the front of the list of projects that have to be processed next 26546 26600 # at the same time, remove $proj from this list 26547 projtoprocess= ${projtoprocess/$proj/$projrequires}26601 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 26548 26602 26549 26603 # read DATA from $pcfile, if _DATA is still empty … … 26616 26670 26617 26671 # set projcflags and projlibs variables by running $pcfilemod 26672 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 26618 26673 projcflags= 26619 26674 projlibs= 26675 IFS="$save_IFS" 26620 26676 eval `sh -c "$pcfilemod"` 26677 IFS=":" 26621 26678 26622 26679 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 26661 26718 26662 26719 # set projcflags and projlibs variables by running $pcfilemod 26720 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 26663 26721 projcflags= 26664 26722 projlibs= 26723 IFS="$save_IFS" 26665 26724 eval `sh -c "$pcfilemod"` 26725 IFS=":" 26666 26726 26667 26727 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 26694 26754 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 26695 26755 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 26696 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and26756 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 26697 26757 # everything of the form "-lname" by "libname.lib" 26698 26758 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 26699 26759 then 26700 26760 GLPK_LIBS=`echo " $GLPK_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 26701 GLPK_LIBS_INSTALLED=`echo " $GLPK_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`26761 GLPK_LIBS_INSTALLED=`echo " $GLPK_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 26702 26762 fi 26703 26763 … … 27035 27095 # add projrequires to the front of the list of projects that have to be processed next 27036 27096 # at the same time, remove $proj from this list 27037 projtoprocess= ${projtoprocess/$proj/$projrequires}27097 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 27038 27098 27039 27099 # read DATA from $pcfile, if _DATA is still empty … … 27106 27166 27107 27167 # set projcflags and projlibs variables by running $pcfilemod 27168 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 27108 27169 projcflags= 27109 27170 projlibs= 27171 IFS="$save_IFS" 27110 27172 eval `sh -c "$pcfilemod"` 27173 IFS=":" 27111 27174 27112 27175 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 27151 27214 27152 27215 # set projcflags and projlibs variables by running $pcfilemod 27216 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 27153 27217 projcflags= 27154 27218 projlibs= 27219 IFS="$save_IFS" 27155 27220 eval `sh -c "$pcfilemod"` 27221 IFS=":" 27156 27222 27157 27223 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 27184 27250 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 27185 27251 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 27186 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and27252 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 27187 27253 # everything of the form "-lname" by "libname.lib" 27188 27254 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 27189 27255 then 27190 27256 GRB_LIBS=`echo " $GRB_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 27191 GRB_LIBS_INSTALLED=`echo " $GRB_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`27257 GRB_LIBS_INSTALLED=`echo " $GRB_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 27192 27258 fi 27193 27259 … … 27525 27591 # add projrequires to the front of the list of projects that have to be processed next 27526 27592 # at the same time, remove $proj from this list 27527 projtoprocess= ${projtoprocess/$proj/$projrequires}27593 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 27528 27594 27529 27595 # read DATA from $pcfile, if _DATA is still empty … … 27596 27662 27597 27663 # set projcflags and projlibs variables by running $pcfilemod 27664 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 27598 27665 projcflags= 27599 27666 projlibs= 27667 IFS="$save_IFS" 27600 27668 eval `sh -c "$pcfilemod"` 27669 IFS=":" 27601 27670 27602 27671 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 27641 27710 27642 27711 # set projcflags and projlibs variables by running $pcfilemod 27712 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 27643 27713 projcflags= 27644 27714 projlibs= 27715 IFS="$save_IFS" 27645 27716 eval `sh -c "$pcfilemod"` 27717 IFS=":" 27646 27718 27647 27719 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 27674 27746 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 27675 27747 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 27676 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and27748 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 27677 27749 # everything of the form "-lname" by "libname.lib" 27678 27750 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 27679 27751 then 27680 27752 MSK_LIBS=`echo " $MSK_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 27681 MSK_LIBS_INSTALLED=`echo " $MSK_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`27753 MSK_LIBS_INSTALLED=`echo " $MSK_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 27682 27754 fi 27683 27755 … … 28030 28102 # add projrequires to the front of the list of projects that have to be processed next 28031 28103 # at the same time, remove $proj from this list 28032 projtoprocess= ${projtoprocess/$proj/$projrequires}28104 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 28033 28105 28034 28106 # read DATA from $pcfile, if _DATA is still empty … … 28101 28173 28102 28174 # set projcflags and projlibs variables by running $pcfilemod 28175 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 28103 28176 projcflags= 28104 28177 projlibs= 28178 IFS="$save_IFS" 28105 28179 eval `sh -c "$pcfilemod"` 28180 IFS=":" 28106 28181 28107 28182 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 28146 28221 28147 28222 # set projcflags and projlibs variables by running $pcfilemod 28223 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 28148 28224 projcflags= 28149 28225 projlibs= 28226 IFS="$save_IFS" 28150 28227 eval `sh -c "$pcfilemod"` 28228 IFS=":" 28151 28229 28152 28230 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 28179 28257 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 28180 28258 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 28181 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and28259 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 28182 28260 # everything of the form "-lname" by "libname.lib" 28183 28261 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 28184 28262 then 28185 28263 SPX_LIBS=`echo " $SPX_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 28186 SPX_LIBS_INSTALLED=`echo " $SPX_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`28264 SPX_LIBS_INSTALLED=`echo " $SPX_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 28187 28265 fi 28188 28266 … … 28520 28598 # add projrequires to the front of the list of projects that have to be processed next 28521 28599 # at the same time, remove $proj from this list 28522 projtoprocess= ${projtoprocess/$proj/$projrequires}28600 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 28523 28601 28524 28602 # read DATA from $pcfile, if _DATA is still empty … … 28591 28669 28592 28670 # set projcflags and projlibs variables by running $pcfilemod 28671 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 28593 28672 projcflags= 28594 28673 projlibs= 28674 IFS="$save_IFS" 28595 28675 eval `sh -c "$pcfilemod"` 28676 IFS=":" 28596 28677 28597 28678 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 28636 28717 28637 28718 # set projcflags and projlibs variables by running $pcfilemod 28719 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 28638 28720 projcflags= 28639 28721 projlibs= 28722 IFS="$save_IFS" 28640 28723 eval `sh -c "$pcfilemod"` 28724 IFS=":" 28641 28725 28642 28726 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 28669 28753 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 28670 28754 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 28671 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and28755 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 28672 28756 # everything of the form "-lname" by "libname.lib" 28673 28757 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 28674 28758 then 28675 28759 XPR_LIBS=`echo " $XPR_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 28676 XPR_LIBS_INSTALLED=`echo " $XPR_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`28760 XPR_LIBS_INSTALLED=`echo " $XPR_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 28677 28761 fi 28678 28762 … … 29001 29085 # add projrequires to the front of the list of projects that have to be processed next 29002 29086 # at the same time, remove $proj from this list 29003 projtoprocess= ${projtoprocess/$proj/$projrequires}29087 projtoprocess=`echo $projtoprocess | sed -e "s/$proj/$projrequires/"` 29004 29088 29005 29089 # read DATA from $pcfile, if _DATA is still empty … … 29072 29156 29073 29157 # set projcflags and projlibs variables by running $pcfilemod 29158 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 29074 29159 projcflags= 29075 29160 projlibs= 29161 IFS="$save_IFS" 29076 29162 eval `sh -c "$pcfilemod"` 29163 IFS=":" 29077 29164 29078 29165 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 29117 29204 29118 29205 # set projcflags and projlibs variables by running $pcfilemod 29206 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 29119 29207 projcflags= 29120 29208 projlibs= 29209 IFS="$save_IFS" 29121 29210 eval `sh -c "$pcfilemod"` 29211 IFS=":" 29122 29212 29123 29213 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 29150 29240 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 29151 29241 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 29152 # everything of the form "-Lpath" by " /libpath:`$(CYGPATH_W) path`, and29242 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path`, and 29153 29243 # everything of the form "-lname" by "libname.lib" 29154 29244 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 29155 29245 then 29156 29246 ASL_LIBS=`echo " $ASL_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 29157 ASL_LIBS_INSTALLED=`echo " $ASL_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'`29247 ASL_LIBS_INSTALLED=`echo " $ASL_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 29158 29248 fi 29159 29249 … … 32078 32168 fi 32079 32169 32170 { echo "$as_me:$LINENO: In case of trouble, first consult the troubleshooting page at https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting" >&5 32171 echo "$as_me: In case of trouble, first consult the troubleshooting page at https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting" >&6;} 32080 32172 if test x$coin_projectdir = xyes; then 32081 32173 { echo "$as_me:$LINENO: Configuration of $PACKAGE_NAME successful" >&5
Note: See TracChangeset
for help on using the changeset viewer.