===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
mcpp-2.7.2/ChangeLog-167-        (internal.H, expand.c, support.c)
mcpp-2.7.2/ChangeLog:168:        * Relaxed token checking and syntax checking in lang_asm mode.
mcpp-2.7.2/ChangeLog-169-        (expand,c, support.c)
##############################################
mcpp-2.7.2/doc/mcpp-porting.html-1076-<li>'$' needs to be used in an identifier?<br>
mcpp-2.7.2/doc/mcpp-porting.html:1077:<li>Are there #asm and #endasm?  How about the passing format of the block enclosed by these directives to the compiler proper?  What are the other non-standard directives?<br>
mcpp-2.7.2/doc/mcpp-porting.html-1078-<li>Which #pragma sub-directive should be processed by preprocessor?<br>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-60-<dd><a name="toc.3.8.2" href="#3.8.2">3.8.2. Handling of 'defined' by GCC</a>
mcpp-2.7.2/doc/mcpp-manual.html:61:<dd><a name="toc.3.8.3" href="#3.8.3">3.8.3. Asm Statement in Borland C and Other Special Syntaxes</a>
mcpp-2.7.2/doc/mcpp-manual.html-62-<dd><a name="toc.3.8.4" href="#3.8.4">3.8.4. #import and Others</a></dl>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-234-<p>#if defined, #elif cannot be used in pre-Standard mode.  Macros cannot be used within argument of #include or #line in pre-Standard.  Predefined macros, <tt>__FILE__</tt>, <tt>__LINE__</tt>, <tt>__DATE__</tt>, <tt>__TIME__</tt> are not defined at pre-Standard.</p>
mcpp-2.7.2/doc/mcpp-manual.html:235:<p>On the other hand, #assert, #asm (#endasm), #put_defines and #debug are available in pre-Standard mode only.</p>
mcpp-2.7.2/doc/mcpp-manual.html-236-<p>#if expression is evaluated in long / unsigned long or long long / unsigned long long at Standard mode, and in (signed) long only at pre-Standard.  sizeof (type) in #if expression can be used only in pre-Standard.</p>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-690-Same as -a for other compiler systems.
mcpp-2.7.2/doc/mcpp-manual.html:691:Specify lang-asm mode.
mcpp-2.7.2/doc/mcpp-manual.html-692-In GCC-specific-build, a macro <tt>__ASSEMBLER__</tt> is defined to 1, and '$' in identifiers are prohibited.
mcpp-2.7.2/doc/mcpp-manual.html:693:When the main source file is named *.S, lang-asm mode is implicitly specified without this option.<br>
mcpp-2.7.2/doc/mcpp-manual.html-694-<li><samp>-trigraphs</samp><br>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1330-<p>This #assert is quite different from that of System V or GCC.</p>
mcpp-2.7.2/doc/mcpp-manual.html:1331:<p><b>mcpp</b> in pre-Standard mode regards a block enclosed with the #asm and #endasm directives as assembler coding.  <b>mcpp</b> implements this functionality for Microware C/6809 only.  To implement this functionality in other compiler systems, do_old() and put_asm() in system.c must be modified.</p>
mcpp-2.7.2/doc/mcpp-manual.html:1332:<p>For a #asm block, <b>mcpp</b> performs trigraphs conversion and deletes &lt;backslash&gt;&lt;newline&gt; sequence, but it neither performs comment processing, checks tokens or characters, nor deletes white-space characters at the beginning of a line.  Also, it does not expand a token that happens to have the same name with a macro and outputs it as it is.  Other directive lines have no meaning within the #asm block.</p>
mcpp-2.7.2/doc/mcpp-manual.html:1333:<p>These #asm and #endasm directives do not conform to Standard C.  In the first place, extension directives in the form other than "#pragma sub-directive" are not Standard C conforming.  Changing their directive names to #pragma asm and #pragma endasm does not solve this problem.  In Standard C, the source code must consist of a C token sequence (more precisely, a preprocessing token sequence), however, an assembler program is not a C token sequence.  To use assembly code in the Standard C, there is no other way but to embed it in a string literal token.  Then, you have to implement a built-in function that processes that string literal in the compiler-proper and call it as follows:</p>
mcpp-2.7.2/doc/mcpp-manual.html-1334-<pre>
mcpp-2.7.2/doc/mcpp-manual.html:1335:asm (
mcpp-2.7.2/doc/mcpp-manual.html-1336-    " leax _iob+13,y\n"
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1421-
mcpp-2.7.2/doc/mcpp-manual.html:1422:<h3><a name="3.8.3" href="#toc.3.8.3">3.8.3. Asm Statement in Borland C and Other Special Syntaxes</a></h3>
mcpp-2.7.2/doc/mcpp-manual.html-1423-<p>Borland C has the <samp>asm</samp> keyword.  This keyword is used to write assembly code as follows:</p>
mcpp-2.7.2/doc/mcpp-manual.html-1424-<pre>
mcpp-2.7.2/doc/mcpp-manual.html:1425:asm {
mcpp-2.7.2/doc/mcpp-manual.html-1426-    mov x,4;
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1468-asm("
mcpp-2.7.2/doc/mcpp-manual.html:1469:    asm code0
mcpp-2.7.2/doc/mcpp-manual.html-1470-#ifdef PC98
mcpp-2.7.2/doc/mcpp-manual.html:1471:    asm code1
mcpp-2.7.2/doc/mcpp-manual.html-1472-#else
mcpp-2.7.2/doc/mcpp-manual.html:1473:    asm code2
mcpp-2.7.2/doc/mcpp-manual.html-1474-#endif
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1481-asm(
mcpp-2.7.2/doc/mcpp-manual.html:1482:    "  asm code0\n"
mcpp-2.7.2/doc/mcpp-manual.html-1483-#ifdef PC98
mcpp-2.7.2/doc/mcpp-manual.html:1484:    "  asm code1\n"
mcpp-2.7.2/doc/mcpp-manual.html-1485-#else
mcpp-2.7.2/doc/mcpp-manual.html:1486:    "  asm code2\n"
mcpp-2.7.2/doc/mcpp-manual.html-1487-#endif
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1654-asm(
mcpp-2.7.2/doc/mcpp-manual.html:1655:    "  asm code0\n"
mcpp-2.7.2/doc/mcpp-manual.html-1656-#ifdef Machine_A
mcpp-2.7.2/doc/mcpp-manual.html:1657:    "  asm code1\n"
mcpp-2.7.2/doc/mcpp-manual.html-1658-#else
mcpp-2.7.2/doc/mcpp-manual.html:1659:    "  asm code2\n"
mcpp-2.7.2/doc/mcpp-manual.html-1660-#endif
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1694-<p>Some string literals are very long.  <samp>compile/csu/version-info.h</samp> created by make also has a multi-line string literal.  Of course, it is non-conforming, but GCC treats it as a string literal with embedded &lt;newline&gt;.</p>
mcpp-2.7.2/doc/mcpp-manual.html:1695:<p>The -lang-asm (-x assembler-with-cpp, -a) option allows <b>mcpp</b> to convert a multi-line string literal into the following code:</p>
mcpp-2.7.2/doc/mcpp-manual.html-1696-<pre>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1777-<p>Concatenation of pp-tokens using the ## operator sometimes generates an invalid pp-token.  GCC/cpp outputs these pp-tokens without issuing a diagnostic.</p>
mcpp-2.7.2/doc/mcpp-manual.html:1778:<p>For compatibility with GCC, I reluctantly decided that, with the -lang-asm (-x assembler-with-cpp, -a) option, <b>mcpp</b> does not treat these non-conforming directives and invalid pp-tokens generated by ## as error, and outputs them as they are and issues a warning.</p>
mcpp-2.7.2/doc/mcpp-manual.html-1779-<p>Essentially, these sources should be processed with an assembler macro processor.  GNU seems to provide a macro processor called gasp, but it seems to be scarcely used for some reason.</p>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1837-</ol>
mcpp-2.7.2/doc/mcpp-manual.html:1838:<p>In addition to the options specified in Makefile or specs file, you must specify the -lang-asm (-xassembler-with-cpp) option to process *.S files containing multi-line string literals or assembler comments before you can invoke <b>mcpp</b>.  Usually, you can leave this option specified when preprocessing other files.</p>
mcpp-2.7.2/doc/mcpp-manual.html-1839-<p>When you want to use GCC/cpp or <b>mcpp</b>, or change the default options, you had better perform the following steps:</p>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-1845-#!/bin/sh
mcpp-2.7.2/doc/mcpp-manual.html:1846:/usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/mcpp -Q -lang-asm "$@"
mcpp-2.7.2/doc/mcpp-manual.html-1847-</pre>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-2431-In actual, many sources of glibc use /* */ or //, whereas some sources use #.</p>
mcpp-2.7.2/doc/mcpp-manual.html:2432:<p>Having said so, <b>mcpp</b> V.2.6.3 onward relaxed grammar checking largely in lang-asm mode to process these unusual sources, considering that glibc 2.4 has too many *.S files and out-of-C-grammar-sources has increased since 2.1.3.</p>
mcpp-2.7.2/doc/mcpp-manual.html-2433-
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-3607-<li><samp>Unterminated character constant 't understand.</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:3608:A character constant is not terminated.  <b>mcpp</b> in <i>OLDPREP</i> mode and lang-asm mode does not make it an error. (Instead, it regards the line end as literal end.)<br>
mcpp-2.7.2/doc/mcpp-manual.html-3609-<br>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-3614-A character constant is empty.
mcpp-2.7.2/doc/mcpp-manual.html:3615:In lang-asm mode, <b>mcpp</b> only issues a warning, but an error in other modes.<br>
mcpp-2.7.2/doc/mcpp-manual.html-3616-<br>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-3652-</ul>
mcpp-2.7.2/doc/mcpp-manual.html:3653:<p>The following two errors occur when #asm and #endasm are not balanced.  These messages are issued only by compiler-specific-build for a particular compiler system and in pre-Standard mode.</p>
mcpp-2.7.2/doc/mcpp-manual.html-3654-<ul>
mcpp-2.7.2/doc/mcpp-manual.html:3655:<li><samp>In #asm block started at line 123</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:3656:A #asm block that begins at the line 123 has another #asm.  #asm cannot be nested.  Maybe, the programmer forgot to write #endasm.<br>
mcpp-2.7.2/doc/mcpp-manual.html-3657-<br>
mcpp-2.7.2/doc/mcpp-manual.html-3658-<li><samp>Without #asm</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:3659:#endasm is found in a non #asm block.<br>
mcpp-2.7.2/doc/mcpp-manual.html-3660-</ul>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-3670-<li><samp>Unknown #directive "pseudo-directive"</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:3671:The directive "pseudo-directive" is not implemented.  <b>mcpp</b> invoked with the -a (-lang-asm or -x assembler-with-cpp) option issues a warning, not an error.<br>
mcpp-2.7.2/doc/mcpp-manual.html-3672-<br>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-3705-<li><samp>Excessive token sequence "junk"</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:3706:#else, #endif, #asm, or #endasm line has a junk text, or such text follows a valid argument of #ifdef, #ifndef, #include, #line or #undef line.<br>
mcpp-2.7.2/doc/mcpp-manual.html-3707-</ul>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-3868-<li><samp>Not a valid preprocessing token "+12"</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:3869:The ## operator has concatenated two pp-tokens, resulting in an invalid token "+12".  The token may be separated at a later time.  Standard mode continues processing.  <i>STD</i> mode invoked with the -lang-asm (-x assembler-with-cpp, -a) option also issues a warning instead of an error.<br>
mcpp-2.7.2/doc/mcpp-manual.html-3870-<br>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-3994-<li><samp>Unterminated string literal, catenated to the next line</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:3995:Although an unterminated string literal in a logical line is normally regarded as an error, <b>mcpp</b> invoked with the -lang-asm (-x assembler-with-cpp, -a) option regards it as a multi-line string literal and concatenates the line with the next by inserting '\n'.  This way of writing has no advantage.  Using a functionality to concatenate adjacent string literals is preferable.<br>
mcpp-2.7.2/doc/mcpp-manual.html-3996-<li><samp>Unterminated character constant 't understand.</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:3997:<b>mcpp</b> in lang-asm mode does not regard this an error.<br>
mcpp-2.7.2/doc/mcpp-manual.html-3998-<li><samp>Empty character constant ''</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html-3999-A character constant is empty.
mcpp-2.7.2/doc/mcpp-manual.html:4000:In lang-asm mode, <b>mcpp</b> only issues a warning.<br>
mcpp-2.7.2/doc/mcpp-manual.html-4001-</ul>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-4020-<br>
mcpp-2.7.2/doc/mcpp-manual.html:4021:<li><samp>End of file with unterminated #asm block starting from line 123</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:4022:#asm on the line 123 does not have a corresponding #endasm.<br>
mcpp-2.7.2/doc/mcpp-manual.html-4023-</ul>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-4062-</ul>
mcpp-2.7.2/doc/mcpp-manual.html:4063:<p>The following warnings are issued only in lang-asm mode.</p>
mcpp-2.7.2/doc/mcpp-manual.html-4064-<ul>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-4066-<li><samp>Unknown #directive "pseudo-directive"</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:4067:Though these are usually errors, lang-asm mode issues only warnings.<br>
mcpp-2.7.2/doc/mcpp-manual.html-4068-</ul>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-4236-<li><samp>Not a valid preprocessing token "+12"</samp><br>
mcpp-2.7.2/doc/mcpp-manual.html:4237:Concatenating two pp-tokens with the ## operator results in an invalid token "+12", which normally causes an error.  However, <b>mcpp</b> invoked with the -lang-asm  (-x assembler-with-cpp, -a) option does not regard it as an error.<br>
mcpp-2.7.2/doc/mcpp-manual.html-4238-</ul>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-4467-<tr><td><samp>End of file with no newline, supplemented the newline</samp></td><td></td><td></td><td><a href='#5.5.2'>5.5.2</td></tr>
mcpp-2.7.2/doc/mcpp-manual.html:4468:<tr><td><samp>End of file with unterminated #asm block started at line 123</samp></td><td></td><td><a href='#5.4.2'>5.4.2</td><td><a href='#5.5.2'>5.5.2</td></tr>
mcpp-2.7.2/doc/mcpp-manual.html-4469-<tr><td><samp>End of file with unterminated comment, terminated the comment</samp></td><td></td><td></td><td><a href='#5.5.2'>5.5.2</td></tr>
##############################################
mcpp-2.7.2/doc/mcpp-manual.html-4491-<tr><td><samp>Illegal UCN sequence</samp></td><td></td><td><a href='#5.4.1'>5.4.1</td></tr>
mcpp-2.7.2/doc/mcpp-manual.html:4492:<tr><td><samp>In #asm block started at line 123</samp></td><td></td><td><a href='#5.4.3'>5.4.3</td></tr>
mcpp-2.7.2/doc/mcpp-manual.html-4493-<tr><td><samp>Integer character constant 'abcde' is out of range of unsigned long</samp></td><td></td><td></td><td><a href='#5.5.4'>5.5.4</td><td><a href='#5.6'>5.6</td><td></td><td><a href='#5.8'>5.8</td></tr>
##############################################
mcpp-2.7.2/src/unset_mcpp.sh-14-target_cc=${11}
mcpp-2.7.2/src/unset_mcpp.sh:15:cpp_name=`echo $cpp_call | sed 's,.*/,,'`
mcpp-2.7.2/src/unset_mcpp.sh:16:cpp_path=`echo $cpp_call | sed "s,/$cpp_name,,"`
mcpp-2.7.2/src/unset_mcpp.sh:17:gcc_path=`echo $1 | sed "s,/${CC}\$,,"`
mcpp-2.7.2/src/unset_mcpp.sh:18:EXEEXT=`echo $7 | sed 's/^x//'`
mcpp-2.7.2/src/unset_mcpp.sh-19-if test x$EXEEXT != x; then
mcpp-2.7.2/src/unset_mcpp.sh:20:    cpp_base=`echo $cpp_name | sed "s/$EXEEXT//"`
mcpp-2.7.2/src/unset_mcpp.sh-21-else
##############################################
mcpp-2.7.2/src/unset_mcpp.sh-55-    CC_=$target_cc
mcpp-2.7.2/src/unset_mcpp.sh:56:    CXX_=`echo $target_cc | sed 's/gcc/g++/'`
mcpp-2.7.2/src/unset_mcpp.sh-57-else
##############################################
mcpp-2.7.2/src/unset_mcpp.sh-64-    if test $host_system != SYS_MINGW; then
mcpp-2.7.2/src/unset_mcpp.sh:65:        ref=`readlink $cc`
mcpp-2.7.2/src/unset_mcpp.sh-66-    fi
##############################################
mcpp-2.7.2/src/unset_mcpp.sh-69-    fi
mcpp-2.7.2/src/unset_mcpp.sh:70:    ccache=`grep ccache $ref`
mcpp-2.7.2/src/unset_mcpp.sh-71-    if test x$ccache != x; then
mcpp-2.7.2/src/unset_mcpp.sh-72-        ## search the real $cc in $PATH
mcpp-2.7.2/src/unset_mcpp.sh:73:        for path in `echo $PATH | sed 's/:/ /g'`
mcpp-2.7.2/src/unset_mcpp.sh-74-        do
##############################################
mcpp-2.7.2/src/unset_mcpp.sh-81-        cd $gcc_path
mcpp-2.7.2/src/unset_mcpp.sh:82:        ref=`readlink $cc`
mcpp-2.7.2/src/unset_mcpp.sh-83-    fi
mcpp-2.7.2/src/unset_mcpp.sh-84-    if test x$ref = x$cc.sh || test $host_system = SYS_MINGW; then
mcpp-2.7.2/src/unset_mcpp.sh:85:        entity=`grep $gcc_path $cc.sh | sed "s,$gcc_path/,," | sed "s/_proper.*$//"`
mcpp-2.7.2/src/unset_mcpp.sh-86-        rm -f $entity
##############################################
mcpp-2.7.2/src/directive.c-123-    token_type = scan_token( c, (workp = work_buf, &workp), work_end);
mcpp-2.7.2/src/directive.c:124:    if (in_asm && (token_type != NAM
mcpp-2.7.2/src/directive.c-125-            || (! str_eq( identifier, "asm")
mcpp-2.7.2/src/directive.c-126-                && ! str_eq( identifier, "endasm"))))
mcpp-2.7.2/src/directive.c:127:        /* In #asm block, ignore #anything other than #asm or #endasm       */
mcpp-2.7.2/src/directive.c-128-        goto  skip_line;
##############################################
mcpp-2.7.2/src/set_mcpp.sh-10-CXX=$6
mcpp-2.7.2/src/set_mcpp.sh:11:CPPFLAGS=`echo $7 | sed 's/^x//'`
mcpp-2.7.2/src/set_mcpp.sh-12-LN_S=$9
##############################################
mcpp-2.7.2/src/set_mcpp.sh-17-    target_cc=${13}
mcpp-2.7.2/src/set_mcpp.sh:18:    target=`echo $target_cc | sed 's/-gcc.*$//'`
mcpp-2.7.2/src/set_mcpp.sh-19-fi
mcpp-2.7.2/src/set_mcpp.sh:20:cpp_name=`echo $cpp_call | sed 's,.*/,,'`
mcpp-2.7.2/src/set_mcpp.sh:21:cpp_path=`echo $cpp_call | sed "s,/$cpp_name,,"`
mcpp-2.7.2/src/set_mcpp.sh:22:gcc_path=`echo $1 | sed "s,/${CC}\$,,"`
mcpp-2.7.2/src/set_mcpp.sh-23-
mcpp-2.7.2/src/set_mcpp.sh-24-# remove ".exe" or such
mcpp-2.7.2/src/set_mcpp.sh:25:EXEEXT=`echo $8 | sed 's/^x//'`
mcpp-2.7.2/src/set_mcpp.sh-26-if test x$EXEEXT != x; then
mcpp-2.7.2/src/set_mcpp.sh:27:    cpp_base=`echo $cpp_name | sed "s/${EXEEXT}//"`
mcpp-2.7.2/src/set_mcpp.sh-28-else
##############################################
mcpp-2.7.2/src/set_mcpp.sh-164-# backup GCC / cpp or cc1, cc1plus
mcpp-2.7.2/src/set_mcpp.sh:165:mcpp_installed=`$cpp_call -v /dev/null 2>&1 | grep "MCPP"`
mcpp-2.7.2/src/set_mcpp.sh-166-if test "x$mcpp_installed" = x; then            # mcpp has not installed
##############################################
mcpp-2.7.2/src/set_mcpp.sh-224-    CC_=$target_cc
mcpp-2.7.2/src/set_mcpp.sh:225:    CXX_=`echo $target_cc | sed 's/gcc/g++/'`
mcpp-2.7.2/src/set_mcpp.sh-226-else
##############################################
mcpp-2.7.2/src/set_mcpp.sh-235-        ref=$cc$EXEEXT
mcpp-2.7.2/src/set_mcpp.sh:236:        while ref=`readlink $ref`
mcpp-2.7.2/src/set_mcpp.sh-237-        do
##############################################
mcpp-2.7.2/src/set_mcpp.sh-243-    fi
mcpp-2.7.2/src/set_mcpp.sh:244:    ccache=`echo $entity | grep ccache`
mcpp-2.7.2/src/set_mcpp.sh-245-    if test x$ccache != x; then
##############################################
mcpp-2.7.2/src/set_mcpp.sh-247-        ## search the real $cc in $PATH
mcpp-2.7.2/src/set_mcpp.sh:248:        for path in `echo $PATH | sed 's/:/ /g'`
mcpp-2.7.2/src/set_mcpp.sh-249-        do
##############################################
mcpp-2.7.2/src/set_mcpp.sh-258-        ref=$cc
mcpp-2.7.2/src/set_mcpp.sh:259:        while ref=`readlink $ref`
mcpp-2.7.2/src/set_mcpp.sh-260-        do
##############################################
mcpp-2.7.2/src/set_mcpp.sh-267-    if test x$EXEEXT != x; then
mcpp-2.7.2/src/set_mcpp.sh:268:        entity_base=`echo $entity | sed "s/$EXEEXT//"`
mcpp-2.7.2/src/set_mcpp.sh-269-    else
##############################################
mcpp-2.7.2/src/set_mcpp.sh-276-    fi
mcpp-2.7.2/src/set_mcpp.sh:277:    if test x"`echo $entity | grep '^/'`" = x; then     # not absolute path
mcpp-2.7.2/src/set_mcpp.sh-278-        prefix_dir=$gcc_path/
##############################################
mcpp-2.7.2/src/Makefile.in-51-CONFIG_CLEAN_FILES =
mcpp-2.7.2/src/Makefile.in:52:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
mcpp-2.7.2/src/Makefile.in-53-am__vpath_adj = case $$p in \
mcpp-2.7.2/src/Makefile.in:54:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
mcpp-2.7.2/src/Makefile.in-55-    *) f=$$p;; \
mcpp-2.7.2/src/Makefile.in-56-  esac;
mcpp-2.7.2/src/Makefile.in:57:am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
mcpp-2.7.2/src/Makefile.in-58-am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
##############################################
mcpp-2.7.2/src/Makefile.in-316-	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
mcpp-2.7.2/src/Makefile.in:317:	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
mcpp-2.7.2/src/Makefile.in-318-	  test "$$dir" != "$$p" || dir=.; \
##############################################
mcpp-2.7.2/src/Makefile.in-327-	@list='$(bin_PROGRAMS)'; for p in $$list; do \
mcpp-2.7.2/src/Makefile.in:328:	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
mcpp-2.7.2/src/Makefile.in-329-	  if test -f $$p \
##############################################
mcpp-2.7.2/src/Makefile.in-331-	  ; then \
mcpp-2.7.2/src/Makefile.in:332:	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
mcpp-2.7.2/src/Makefile.in-333-	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
##############################################
mcpp-2.7.2/src/Makefile.in-340-	@list='$(bin_PROGRAMS)'; for p in $$list; do \
mcpp-2.7.2/src/Makefile.in:341:	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
mcpp-2.7.2/src/Makefile.in-342-	  echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
##############################################
mcpp-2.7.2/src/Makefile.in-347-	@list='$(bin_PROGRAMS)'; for p in $$list; do \
mcpp-2.7.2/src/Makefile.in:348:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
mcpp-2.7.2/src/Makefile.in-349-	  echo " rm -f $$p $$f"; \
##############################################
mcpp-2.7.2/src/Makefile.in-355-	@list='$(cc1_PROGRAMS)'; for p in $$list; do \
mcpp-2.7.2/src/Makefile.in:356:	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
mcpp-2.7.2/src/Makefile.in-357-	  if test -f $$p \
##############################################
mcpp-2.7.2/src/Makefile.in-359-	  ; then \
mcpp-2.7.2/src/Makefile.in:360:	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
mcpp-2.7.2/src/Makefile.in-361-	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(cc1PROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(cc1dir)/$$f'"; \
##############################################
mcpp-2.7.2/src/Makefile.in-368-	@list='$(cc1_PROGRAMS)'; for p in $$list; do \
mcpp-2.7.2/src/Makefile.in:369:	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
mcpp-2.7.2/src/Makefile.in-370-	  echo " rm -f '$(DESTDIR)$(cc1dir)/$$f'"; \
##############################################
mcpp-2.7.2/src/Makefile.in-375-	@list='$(cc1_PROGRAMS)'; for p in $$list; do \
mcpp-2.7.2/src/Makefile.in:376:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
mcpp-2.7.2/src/Makefile.in-377-	  echo " rm -f $$p $$f"; \
##############################################
mcpp-2.7.2/src/Makefile.in-396-.c.obj:
mcpp-2.7.2/src/Makefile.in:397:	$(COMPILE) -c `$(CYGPATH_W) '$<'`
mcpp-2.7.2/src/Makefile.in-398-
##############################################
mcpp-2.7.2/src/Makefile.in-402-mcpp-main.o: main.c
mcpp-2.7.2/src/Makefile.in:403:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
mcpp-2.7.2/src/Makefile.in-404-
mcpp-2.7.2/src/Makefile.in-405-mcpp-main.obj: main.c
mcpp-2.7.2/src/Makefile.in:406:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
mcpp-2.7.2/src/Makefile.in-407-
mcpp-2.7.2/src/Makefile.in-408-mcpp-directive.o: directive.c
mcpp-2.7.2/src/Makefile.in:409:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-directive.o `test -f 'directive.c' || echo '$(srcdir)/'`directive.c
mcpp-2.7.2/src/Makefile.in-410-
mcpp-2.7.2/src/Makefile.in-411-mcpp-directive.obj: directive.c
mcpp-2.7.2/src/Makefile.in:412:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-directive.obj `if test -f 'directive.c'; then $(CYGPATH_W) 'directive.c'; else $(CYGPATH_W) '$(srcdir)/directive.c'; fi`
mcpp-2.7.2/src/Makefile.in-413-
mcpp-2.7.2/src/Makefile.in-414-mcpp-eval.o: eval.c
mcpp-2.7.2/src/Makefile.in:415:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-eval.o `test -f 'eval.c' || echo '$(srcdir)/'`eval.c
mcpp-2.7.2/src/Makefile.in-416-
mcpp-2.7.2/src/Makefile.in-417-mcpp-eval.obj: eval.c
mcpp-2.7.2/src/Makefile.in:418:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-eval.obj `if test -f 'eval.c'; then $(CYGPATH_W) 'eval.c'; else $(CYGPATH_W) '$(srcdir)/eval.c'; fi`
mcpp-2.7.2/src/Makefile.in-419-
mcpp-2.7.2/src/Makefile.in-420-mcpp-expand.o: expand.c
mcpp-2.7.2/src/Makefile.in:421:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-expand.o `test -f 'expand.c' || echo '$(srcdir)/'`expand.c
mcpp-2.7.2/src/Makefile.in-422-
mcpp-2.7.2/src/Makefile.in-423-mcpp-expand.obj: expand.c
mcpp-2.7.2/src/Makefile.in:424:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-expand.obj `if test -f 'expand.c'; then $(CYGPATH_W) 'expand.c'; else $(CYGPATH_W) '$(srcdir)/expand.c'; fi`
mcpp-2.7.2/src/Makefile.in-425-
mcpp-2.7.2/src/Makefile.in-426-mcpp-mbchar.o: mbchar.c
mcpp-2.7.2/src/Makefile.in:427:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-mbchar.o `test -f 'mbchar.c' || echo '$(srcdir)/'`mbchar.c
mcpp-2.7.2/src/Makefile.in-428-
mcpp-2.7.2/src/Makefile.in-429-mcpp-mbchar.obj: mbchar.c
mcpp-2.7.2/src/Makefile.in:430:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-mbchar.obj `if test -f 'mbchar.c'; then $(CYGPATH_W) 'mbchar.c'; else $(CYGPATH_W) '$(srcdir)/mbchar.c'; fi`
mcpp-2.7.2/src/Makefile.in-431-
mcpp-2.7.2/src/Makefile.in-432-mcpp-support.o: support.c
mcpp-2.7.2/src/Makefile.in:433:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-support.o `test -f 'support.c' || echo '$(srcdir)/'`support.c
mcpp-2.7.2/src/Makefile.in-434-
mcpp-2.7.2/src/Makefile.in-435-mcpp-support.obj: support.c
mcpp-2.7.2/src/Makefile.in:436:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-support.obj `if test -f 'support.c'; then $(CYGPATH_W) 'support.c'; else $(CYGPATH_W) '$(srcdir)/support.c'; fi`
mcpp-2.7.2/src/Makefile.in-437-
mcpp-2.7.2/src/Makefile.in-438-mcpp-system.o: system.c
mcpp-2.7.2/src/Makefile.in:439:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-system.o `test -f 'system.c' || echo '$(srcdir)/'`system.c
mcpp-2.7.2/src/Makefile.in-440-
mcpp-2.7.2/src/Makefile.in-441-mcpp-system.obj: system.c
mcpp-2.7.2/src/Makefile.in:442:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-system.obj `if test -f 'system.c'; then $(CYGPATH_W) 'system.c'; else $(CYGPATH_W) '$(srcdir)/system.c'; fi`
mcpp-2.7.2/src/Makefile.in-443-
mcpp-2.7.2/src/Makefile.in-444-mcpp-main_libmcpp.o: main_libmcpp.c
mcpp-2.7.2/src/Makefile.in:445:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-main_libmcpp.o `test -f 'main_libmcpp.c' || echo '$(srcdir)/'`main_libmcpp.c
mcpp-2.7.2/src/Makefile.in-446-
mcpp-2.7.2/src/Makefile.in-447-mcpp-main_libmcpp.obj: main_libmcpp.c
mcpp-2.7.2/src/Makefile.in:448:	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mcpp_CFLAGS) $(CFLAGS) -c -o mcpp-main_libmcpp.obj `if test -f 'main_libmcpp.c'; then $(CYGPATH_W) 'main_libmcpp.c'; else $(CYGPATH_W) '$(srcdir)/main_libmcpp.c'; fi`
mcpp-2.7.2/src/Makefile.in-449-
##############################################
mcpp-2.7.2/src/Makefile.in-513-GTAGS:
mcpp-2.7.2/src/Makefile.in:514:	here=`$(am__cd) $(top_builddir) && pwd` \
mcpp-2.7.2/src/Makefile.in-515-	  && cd $(top_srcdir) \
##############################################
mcpp-2.7.2/src/Makefile.in-521-distdir: $(DISTFILES)
mcpp-2.7.2/src/Makefile.in:522:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
mcpp-2.7.2/src/Makefile.in:523:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
mcpp-2.7.2/src/Makefile.in-524-	list='$(DISTFILES)'; \
##############################################
mcpp-2.7.2/src/Makefile.in-535-	  if test -d $$d/$$file; then \
mcpp-2.7.2/src/Makefile.in:536:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
mcpp-2.7.2/src/Makefile.in-537-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
##############################################
mcpp-2.7.2/src/expand.c-350-                    /* and just after MAC_CALL_END.                 */
mcpp-2.7.2/src/expand.c:351:                    /* Also skip this in lang_asm mode, #include    */
mcpp-2.7.2/src/expand.c-352-                    /* Skip just before another TOK_SEP, ' ', '\t'  */
##############################################
mcpp-2.7.2/src/internal.H-383-extern int      mcpp_debug;         /* Class of debug information   */
mcpp-2.7.2/src/internal.H:384:extern long     in_asm;             /* In #asm - #endasm block      */
mcpp-2.7.2/src/internal.H-385-extern jmp_buf  error_exit;         /* Exit on fatal error          */
##############################################
mcpp-2.7.2/src/internal.H-527-extern void     put_asm( void);
mcpp-2.7.2/src/internal.H:528:                /* Putout an asm code line      */
mcpp-2.7.2/src/internal.H-529-extern void     do_old( void);
##############################################
mcpp-2.7.2/src/system.c-224-static void     do_asm( int asm_start);
mcpp-2.7.2/src/system.c:225:                /* Process #asm, #endasm            */
mcpp-2.7.2/src/system.c-226-static int      mcpp_getopt( int argc, char * const * argv, const char * opts);
##############################################
mcpp-2.7.2/src/system.c-585-        case 'A':
mcpp-2.7.2/src/system.c:586:            option_flags.lang_asm = TRUE;   /* "assembler" source   */
mcpp-2.7.2/src/system.c-587-            break;
##############################################
mcpp-2.7.2/src/system.c-589-        case 'a':
mcpp-2.7.2/src/system.c:590:            option_flags.lang_asm = TRUE;   /* "assembler" source   */
mcpp-2.7.2/src/system.c-591-            break;
##############################################
mcpp-2.7.2/src/system.c-863-            } else if (str_eq( mcpp_optarg + 4, "asm")) {   /* -lang-asm*/
mcpp-2.7.2/src/system.c:864:                option_flags.lang_asm = TRUE;
mcpp-2.7.2/src/system.c-865-            } else {
##############################################
mcpp-2.7.2/src/system.c-1223-            } else if (str_eq( mcpp_optarg, "assembler-with-cpp")) {
mcpp-2.7.2/src/system.c:1224:                option_flags.lang_asm = TRUE;
mcpp-2.7.2/src/system.c-1225-                break;
##############################################
mcpp-2.7.2/src/system.c-1317-    if (*in_pp && str_eq( (*in_pp) + strlen( *in_pp) - 2, ".S"))
mcpp-2.7.2/src/system.c:1318:        option_flags.lang_asm = TRUE;   /* Input file name is *.S   */
mcpp-2.7.2/src/system.c-1319-    if (option_flags.lang_asm) {
##############################################
mcpp-2.7.2/src/system.c-1578-#if COMPILER == GNUC
mcpp-2.7.2/src/system.c:1579:"-lang-asm   Same as -x assembler-with-cpp.\n",
mcpp-2.7.2/src/system.c-1580-"-x assembler-with-cpp   Process \"assembler\" source.\n",
##############################################
mcpp-2.7.2/src/system.c-1778-    if (mcpp_mode == POST_STD
mcpp-2.7.2/src/system.c:1779:            && (option_flags.lang_asm || compat_mode || option_flags.k))
mcpp-2.7.2/src/system.c-1780-        incompat = TRUE;
##############################################
mcpp-2.7.2/src/system.c-1789-    if ((mcpp_debug & MACRO_CALL)
mcpp-2.7.2/src/system.c:1790:                && (option_flags.lang_asm || option_flags.c)) {
mcpp-2.7.2/src/system.c-1791-            mcpp_fputs( "Disabled -K option.\n", ERR);
##############################################
mcpp-2.7.2/src/system.c-4359-static void do_asm(
mcpp-2.7.2/src/system.c:4360:    int     asm_start                       /* #asm ?               */
mcpp-2.7.2/src/system.c-4361-)
##############################################
mcpp-2.7.2/src/system.c-4368-        return;
mcpp-2.7.2/src/system.c:4369:    if (asm_start == (in_asm != 0L)) {
mcpp-2.7.2/src/system.c-4370-        if (in_asm)
mcpp-2.7.2/src/system.c:4371:            cerror( "In #asm block started at line %.0s%ld" /* _E_  */
mcpp-2.7.2/src/system.c-4372-                    , NULL, in_asm, NULL);
##############################################
mcpp-2.7.2/src/system.c-4378-    }
mcpp-2.7.2/src/system.c:4379:    in_asm = asm_start ? src_line : 0L;
mcpp-2.7.2/src/system.c-4380-}
##############################################
mcpp-2.7.2/src/system.c-4542-
mcpp-2.7.2/src/system.c:4543:    if (str_eq( identifier, "asm")) {       /* #asm                 */
mcpp-2.7.2/src/system.c-4544-        do_asm( TRUE);
##############################################
mcpp-2.7.2/src/system.c-4546-    }
mcpp-2.7.2/src/system.c:4547:    if (str_eq( identifier, "endasm")) {    /* #endasm              */
mcpp-2.7.2/src/system.c-4548-        do_asm( FALSE);
##############################################
mcpp-2.7.2/src/main.c-59-        /*
mcpp-2.7.2/src/main.c:60:         * lang_asm allows the following non-standard features.
mcpp-2.7.2/src/main.c-61-         * 1. #non-directive.
##############################################
mcpp-2.7.2/src/main.c-63-         * 3. invalid pp-token generated by ## operator.
mcpp-2.7.2/src/main.c:64:         * lang_asm is not available in POST_STD mode.
mcpp-2.7.2/src/main.c:65:         * When COMPILER == GNUC, -x assembler-with-cpp or -lang-asm options
mcpp-2.7.2/src/main.c-66-         * are used instead of -a.
##############################################
mcpp-2.7.2/src/main.c-128-    int     in_if = FALSE;  /* TRUE scanning #if and in non-skipped expr.   */
mcpp-2.7.2/src/main.c:129:    long    in_asm = 0L;    /* Starting line of #asm - #endasm block*/
mcpp-2.7.2/src/main.c-130-
##############################################
mcpp-2.7.2/src/main.c-311-    in_directive = in_define = in_getarg = in_include = in_if = FALSE;
mcpp-2.7.2/src/main.c:312:    src_line = macro_line = in_asm = 0L;
mcpp-2.7.2/src/main.c-313-    mcpp_debug = mkdep = no_output = keep_comments = keep_spaces = 0;
##############################################
mcpp-2.7.2/src/main.c-651-                newlines++;                 /* Count it, too.       */
mcpp-2.7.2/src/main.c:652:            } else if (in_asm && ! no_output) { /* In #asm block    */
mcpp-2.7.2/src/main.c-653-                put_asm();                  /* Put out as it is     */
##############################################
mcpp-2.7.2/src/support.c-1658-        return  NULL;                       /* End of a file        */
mcpp-2.7.2/src/support.c:1659:    if (in_asm) {                           /* In #asm block        */
mcpp-2.7.2/src/support.c-1660-        while (char_type[ *sp++ & UCHARMAX] & SPA)
##############################################
mcpp-2.7.2/src/support.c-2139-    const char * const  unterm_asm_format
mcpp-2.7.2/src/support.c:2140:= "End of %s with unterminated #asm block started at line %ld"; /* _E_ _W1_ */
mcpp-2.7.2/src/support.c-2141-    size_t  len;
##############################################
mcpp-2.7.2/src/support.c-2191-
mcpp-2.7.2/src/support.c:2192:    if (in_asm && mcpp_mode == KR && (warn_level & 1))
mcpp-2.7.2/src/support.c-2193-        cwarn( unterm_asm_format, input, in_asm, NULL);
##############################################
mcpp-2.7.2/aclocal.m4-261-done
mcpp-2.7.2/aclocal.m4:262:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/aclocal.m4-263-])
##############################################
mcpp-2.7.2/aclocal.m4-333-  # Remove one level of quotation (which was required for Make).
mcpp-2.7.2/aclocal.m4:334:  ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
mcpp-2.7.2/aclocal.m4-335-  ;;
##############################################
mcpp-2.7.2/aclocal.m4-344-  :
mcpp-2.7.2/aclocal.m4:345:elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
mcpp-2.7.2/aclocal.m4-346-  # Yippee, $echo works!
##############################################
mcpp-2.7.2/aclocal.m4-370-    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
mcpp-2.7.2/aclocal.m4:371:    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
mcpp-2.7.2/aclocal.m4:372:       echo_test_string=`eval $cmd` &&
mcpp-2.7.2/aclocal.m4-373-       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
##############################################
mcpp-2.7.2/aclocal.m4-379-
mcpp-2.7.2/aclocal.m4:380:if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
mcpp-2.7.2/aclocal.m4:381:   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/aclocal.m4-382-   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/aclocal.m4-394-    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
mcpp-2.7.2/aclocal.m4:395:       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
mcpp-2.7.2/aclocal.m4:396:       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/aclocal.m4-397-       test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/aclocal.m4-406-    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
mcpp-2.7.2/aclocal.m4:407:       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/aclocal.m4-408-       test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/aclocal.m4-421-      echo='printf %s\n'
mcpp-2.7.2/aclocal.m4:422:      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
mcpp-2.7.2/aclocal.m4:423:	 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/aclocal.m4-424-	 test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/aclocal.m4-426-	:
mcpp-2.7.2/aclocal.m4:427:      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
mcpp-2.7.2/aclocal.m4-428-	   test "X$echo_testing_string" = 'X\t' &&
mcpp-2.7.2/aclocal.m4:429:	   echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/aclocal.m4-430-	   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/aclocal.m4-435-	echo="$CONFIG_SHELL [$]0 --fallback-echo"
mcpp-2.7.2/aclocal.m4:436:      elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
mcpp-2.7.2/aclocal.m4-437-	   test "X$echo_testing_string" = 'X\t' &&
mcpp-2.7.2/aclocal.m4:438:	   echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/aclocal.m4-439-	   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/aclocal.m4-445-	for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
mcpp-2.7.2/aclocal.m4:446:	  if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
mcpp-2.7.2/aclocal.m4-447-	  then
##############################################
mcpp-2.7.2/aclocal.m4-453-	if test "$prev" != 'sed 50q "[$]0"'; then
mcpp-2.7.2/aclocal.m4:454:	  echo_test_string=`eval $prev`
mcpp-2.7.2/aclocal.m4-455-	  export echo_test_string
##############################################
mcpp-2.7.2/aclocal.m4-492-  if AC_TRY_EVAL(ac_compile); then
mcpp-2.7.2/aclocal.m4:493:    case `/usr/bin/file conftest.$ac_objext` in
mcpp-2.7.2/aclocal.m4-494-    *ELF-32*)
##############################################
mcpp-2.7.2/aclocal.m4-508-   if test "$lt_cv_prog_gnu_ld" = yes; then
mcpp-2.7.2/aclocal.m4:509:    case `/usr/bin/file conftest.$ac_objext` in
mcpp-2.7.2/aclocal.m4-510-    *32-bit*)
##############################################
mcpp-2.7.2/aclocal.m4-520-   else
mcpp-2.7.2/aclocal.m4:521:    case `/usr/bin/file conftest.$ac_objext` in
mcpp-2.7.2/aclocal.m4-522-    *32-bit*)
##############################################
mcpp-2.7.2/aclocal.m4-755-    # And add a safety zone
mcpp-2.7.2/aclocal.m4:756:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
mcpp-2.7.2/aclocal.m4:757:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
mcpp-2.7.2/aclocal.m4-758-    ;;
##############################################
mcpp-2.7.2/aclocal.m4-783-    if test -n "$kargmax"; then
mcpp-2.7.2/aclocal.m4:784:      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ 	]]//'`
mcpp-2.7.2/aclocal.m4-785-    else
##############################################
mcpp-2.7.2/aclocal.m4-793-    SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
mcpp-2.7.2/aclocal.m4:794:    while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \
mcpp-2.7.2/aclocal.m4-795-	       = "XX$teststring") >/dev/null 2>&1 &&
mcpp-2.7.2/aclocal.m4:796:	    new_result=`expr "X$teststring" : ".*" 2>&1` &&
mcpp-2.7.2/aclocal.m4-797-	    lt_cv_sys_max_cmd_len=$new_result &&
##############################################
mcpp-2.7.2/aclocal.m4-799-    do
mcpp-2.7.2/aclocal.m4:800:      i=`expr $i + 1`
mcpp-2.7.2/aclocal.m4-801-      teststring=$teststring$teststring
##############################################
mcpp-2.7.2/aclocal.m4-806-    # It appears as though 1/2 is a usable value.
mcpp-2.7.2/aclocal.m4:807:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
mcpp-2.7.2/aclocal.m4-808-    ;;
##############################################
mcpp-2.7.2/aclocal.m4-1098-  if test "$hard_links" = no; then
mcpp-2.7.2/aclocal.m4:1099:    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
mcpp-2.7.2/aclocal.m4-1100-    need_locks=warn
##############################################
mcpp-2.7.2/aclocal.m4-1213-if test "$GCC" = yes; then
mcpp-2.7.2/aclocal.m4:1214:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/aclocal.m4-1215-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
mcpp-2.7.2/aclocal.m4-1219-    # okay in the real world where ";" in dirpaths is itself problematic.
mcpp-2.7.2/aclocal.m4:1220:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/aclocal.m4-1221-  else
mcpp-2.7.2/aclocal.m4:1222:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/aclocal.m4-1223-  fi
##############################################
mcpp-2.7.2/aclocal.m4-1290-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
mcpp-2.7.2/aclocal.m4:1291:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
mcpp-2.7.2/aclocal.m4-1292-  ;;
##############################################
mcpp-2.7.2/aclocal.m4-1323-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
mcpp-2.7.2/aclocal.m4:1324:    postinstall_cmds='base_file=`basename \${file}`~
mcpp-2.7.2/aclocal.m4:1325:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
mcpp-2.7.2/aclocal.m4:1326:      dldir=$destdir/`dirname \$dlpath`~
mcpp-2.7.2/aclocal.m4-1327-      test -d \$dldir || mkdir -p \$dldir~
##############################################
mcpp-2.7.2/aclocal.m4-1329-      chmod a+x \$dldir/$dlname'
mcpp-2.7.2/aclocal.m4:1330:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
mcpp-2.7.2/aclocal.m4-1331-      dlpath=$dir/\$dldll~
##############################################
mcpp-2.7.2/aclocal.m4-1337-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
mcpp-2.7.2/aclocal.m4:1338:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/aclocal.m4-1339-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
mcpp-2.7.2/aclocal.m4-1342-      # MinGW DLLs use traditional 'lib' prefix
mcpp-2.7.2/aclocal.m4:1343:      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/aclocal.m4:1344:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/aclocal.m4-1345-      if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
##############################################
mcpp-2.7.2/aclocal.m4-1351-        # which wouldn't understand a cygwinified path. Ahh.
mcpp-2.7.2/aclocal.m4:1352:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/aclocal.m4-1353-      else
mcpp-2.7.2/aclocal.m4:1354:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/aclocal.m4-1355-      fi
##############################################
mcpp-2.7.2/aclocal.m4-1358-      # pw32 DLLs use 'pw' prefix rather than 'lib'
mcpp-2.7.2/aclocal.m4:1359:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/aclocal.m4-1360-      ;;
##############################################
mcpp-2.7.2/aclocal.m4-1364-  *)
mcpp-2.7.2/aclocal.m4:1365:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
mcpp-2.7.2/aclocal.m4-1366-    ;;
##############################################
mcpp-2.7.2/aclocal.m4-1381-  shlibpath_var=DYLD_LIBRARY_PATH
mcpp-2.7.2/aclocal.m4:1382:  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
mcpp-2.7.2/aclocal.m4-1383-  # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
mcpp-2.7.2/aclocal.m4-1384-  if test "$GCC" = yes; then
mcpp-2.7.2/aclocal.m4:1385:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
mcpp-2.7.2/aclocal.m4-1386-  else
##############################################
mcpp-2.7.2/aclocal.m4-1575-  if test -f /etc/ld.so.conf; then
mcpp-2.7.2/aclocal.m4:1576:    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
mcpp-2.7.2/aclocal.m4-1577-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
mcpp-2.7.2/aclocal.m4-1647-  shlibpath_var=LD_LIBRARY_PATH
mcpp-2.7.2/aclocal.m4:1648:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/aclocal.m4-1649-    case $host_os in
##############################################
mcpp-2.7.2/aclocal.m4-1797-  if test -z "$LTCC"; then
mcpp-2.7.2/aclocal.m4:1798:    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
mcpp-2.7.2/aclocal.m4-1799-    if test -z "$LTCC"; then
##############################################
mcpp-2.7.2/aclocal.m4-1801-    else
mcpp-2.7.2/aclocal.m4:1802:      AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
mcpp-2.7.2/aclocal.m4-1803-    fi
##############################################
mcpp-2.7.2/aclocal.m4-1805-  if test -z "$LTCFLAGS"; then
mcpp-2.7.2/aclocal.m4:1806:    eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`"
mcpp-2.7.2/aclocal.m4-1807-  fi
##############################################
mcpp-2.7.2/aclocal.m4-1810-  # Note that this assumes the entire list is on one line.
mcpp-2.7.2/aclocal.m4:1811:  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
mcpp-2.7.2/aclocal.m4-1812-
##############################################
mcpp-2.7.2/aclocal.m4-1816-    # Check whether tagname contains only valid characters
mcpp-2.7.2/aclocal.m4:1817:    case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
mcpp-2.7.2/aclocal.m4-1818-    "") ;;
##############################################
mcpp-2.7.2/aclocal.m4-2071-	"file_magic "*)
mcpp-2.7.2/aclocal.m4:2072:	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
mcpp-2.7.2/aclocal.m4-2073-	  MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
##############################################
mcpp-2.7.2/aclocal.m4-2143-    # gcc leaves a trailing carriage return which upsets mingw
mcpp-2.7.2/aclocal.m4:2144:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
mcpp-2.7.2/aclocal.m4-2145-  *)
mcpp-2.7.2/aclocal.m4:2146:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
mcpp-2.7.2/aclocal.m4-2147-  esac
##############################################
mcpp-2.7.2/aclocal.m4-2152-      # Canonicalize the pathname of ld
mcpp-2.7.2/aclocal.m4:2153:      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
mcpp-2.7.2/aclocal.m4-2154-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
mcpp-2.7.2/aclocal.m4:2155:	ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
mcpp-2.7.2/aclocal.m4-2156-      done
##############################################
mcpp-2.7.2/aclocal.m4-2183-      # Break only if it was the GNU/non-GNU ld that we prefer.
mcpp-2.7.2/aclocal.m4:2184:      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
mcpp-2.7.2/aclocal.m4-2185-      *GNU* | *'with BFD'*)
##############################################
mcpp-2.7.2/aclocal.m4-2214-[# I'd rather use --version here, but apparently some GNU lds only accept -v.
mcpp-2.7.2/aclocal.m4:2215:case `$LD -v 2>&1 </dev/null` in
mcpp-2.7.2/aclocal.m4-2216-*GNU* | *'with BFD'*)
##############################################
mcpp-2.7.2/aclocal.m4-2382-openbsd*)
mcpp-2.7.2/aclocal.m4:2383:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/aclocal.m4-2384-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
##############################################
mcpp-2.7.2/aclocal.m4-2459-	# Tru64's nm complains that /dev/null is an invalid object file
mcpp-2.7.2/aclocal.m4:2460:	case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
mcpp-2.7.2/aclocal.m4-2461-	*/dev/null* | *'Invalid file or object type'*)
##############################################
mcpp-2.7.2/aclocal.m4-2465-	*)
mcpp-2.7.2/aclocal.m4:2466:	  case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
mcpp-2.7.2/aclocal.m4-2467-	  */dev/null*)
##############################################
mcpp-2.7.2/aclocal.m4-2829-    # ancient GNU ld didn't support --whole-archive et. al.
mcpp-2.7.2/aclocal.m4:2830:    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
mcpp-2.7.2/aclocal.m4-2831-	grep 'no-whole-archive' > /dev/null; then
##############################################
mcpp-2.7.2/aclocal.m4-2910-      # below for broken collect2 doesn't work under 4.3+
mcpp-2.7.2/aclocal.m4:2911:	collect2name=`${CC} -print-prog-name=collect2`
mcpp-2.7.2/aclocal.m4-2912-	if test -f "$collect2name" && \
##############################################
mcpp-2.7.2/aclocal.m4-2958-
mcpp-2.7.2/aclocal.m4:2959:      _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
mcpp-2.7.2/aclocal.m4-2960-     else
##############################################
mcpp-2.7.2/aclocal.m4-3013-      # is EXPORTS), use it as is; otherwise, prepend...
mcpp-2.7.2/aclocal.m4:3014:      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
mcpp-2.7.2/aclocal.m4-3015-	cp $export_symbols $output_objdir/$soname.def;
##############################################
mcpp-2.7.2/aclocal.m4-3074-         output_verbose_link_cmd='echo'
mcpp-2.7.2/aclocal.m4:3075:          _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
mcpp-2.7.2/aclocal.m4-3076-          _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
mcpp-2.7.2/aclocal.m4-3142-      # dependencies.
mcpp-2.7.2/aclocal.m4:3143:      output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/aclocal.m4-3144-      ;;
##############################################
mcpp-2.7.2/aclocal.m4-3206-	# dependencies.
mcpp-2.7.2/aclocal.m4:3207:	output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/aclocal.m4-3208-	;;
##############################################
mcpp-2.7.2/aclocal.m4-3241-    # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
mcpp-2.7.2/aclocal.m4:3242:    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/aclocal.m4:3243:    _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/aclocal.m4-3244-    ;;
##############################################
mcpp-2.7.2/aclocal.m4-3248-	# SGI C++
mcpp-2.7.2/aclocal.m4:3249:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-3250-
##############################################
mcpp-2.7.2/aclocal.m4-3259-	  if test "$with_gnu_ld" = no; then
mcpp-2.7.2/aclocal.m4:3260:	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-3261-	  else
mcpp-2.7.2/aclocal.m4:3262:	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib'
mcpp-2.7.2/aclocal.m4-3263-	  fi
##############################################
mcpp-2.7.2/aclocal.m4-3278-	# to its proper name (with version) after linking.
mcpp-2.7.2/aclocal.m4:3279:	_LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
mcpp-2.7.2/aclocal.m4:3280:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
mcpp-2.7.2/aclocal.m4-3281-	# Commands to make compiler produce verbose output that lists
##############################################
mcpp-2.7.2/aclocal.m4-3288-	# dependencies.
mcpp-2.7.2/aclocal.m4:3289:	output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/aclocal.m4-3290-
##############################################
mcpp-2.7.2/aclocal.m4-3303-	# earlier do not add the objects themselves.
mcpp-2.7.2/aclocal.m4:3304:	case `$CC -V 2>&1` in
mcpp-2.7.2/aclocal.m4-3305-	*"Version 7."*)
##############################################
mcpp-2.7.2/aclocal.m4-3329-	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
mcpp-2.7.2/aclocal.m4:3330:	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/aclocal.m4-3331-        ;;
##############################################
mcpp-2.7.2/aclocal.m4-3348-	# dependencies.
mcpp-2.7.2/aclocal.m4:3349:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/aclocal.m4-3350-	;;
##############################################
mcpp-2.7.2/aclocal.m4-3392-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
mcpp-2.7.2/aclocal.m4:3393:    if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/aclocal.m4-3394-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
##############################################
mcpp-2.7.2/aclocal.m4-3407-	# to its proper name (with version) after linking.
mcpp-2.7.2/aclocal.m4:3408:	_LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
mcpp-2.7.2/aclocal.m4-3409-
##############################################
mcpp-2.7.2/aclocal.m4-3424-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/aclocal.m4:3425:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-3426-
##############################################
mcpp-2.7.2/aclocal.m4-3437-	# dependencies.
mcpp-2.7.2/aclocal.m4:3438:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/aclocal.m4-3439-	;;
##############################################
mcpp-2.7.2/aclocal.m4-3442-	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/aclocal.m4:3443:	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-3444-
##############################################
mcpp-2.7.2/aclocal.m4-3467-	# to its proper name (with version) after linking.
mcpp-2.7.2/aclocal.m4:3468:	_LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
mcpp-2.7.2/aclocal.m4-3469-
##############################################
mcpp-2.7.2/aclocal.m4-3483-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
mcpp-2.7.2/aclocal.m4:3484:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4:3485:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
mcpp-2.7.2/aclocal.m4-3486-	  echo "-hidden">> $lib.exp~
mcpp-2.7.2/aclocal.m4:3487:	  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp  `test -n "$verstring" && echo -set_version	$verstring` -update_registry ${output_objdir}/so_locations -o $lib~
mcpp-2.7.2/aclocal.m4-3488-	  $rm $lib.exp'
##############################################
mcpp-2.7.2/aclocal.m4-3500-	# dependencies.
mcpp-2.7.2/aclocal.m4:3501:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/aclocal.m4-3502-	;;
##############################################
mcpp-2.7.2/aclocal.m4-3505-	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/aclocal.m4:3506:	 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-3507-
##############################################
mcpp-2.7.2/aclocal.m4-3567-	    # Supported since Solaris 2.6 (maybe 2.5.1?)
mcpp-2.7.2/aclocal.m4:3568:	    _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract'
mcpp-2.7.2/aclocal.m4-3569-	    ;;
##############################################
mcpp-2.7.2/aclocal.m4-3655-    _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
mcpp-2.7.2/aclocal.m4:3656:    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
mcpp-2.7.2/aclocal.m4-3657-    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
##############################################
mcpp-2.7.2/aclocal.m4-3778-  # eval without this substitution.
mcpp-2.7.2/aclocal.m4:3779:  output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"`
mcpp-2.7.2/aclocal.m4-3780-
mcpp-2.7.2/aclocal.m4:3781:  for p in `eval $output_verbose_link_cmd`; do
mcpp-2.7.2/aclocal.m4-3782-    case $p in
##############################################
mcpp-2.7.2/aclocal.m4-4164-      # Double-quote double-evaled strings.
mcpp-2.7.2/aclocal.m4:4165:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
mcpp-2.7.2/aclocal.m4-4166-      ;;
mcpp-2.7.2/aclocal.m4-4167-    *)
mcpp-2.7.2/aclocal.m4:4168:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
mcpp-2.7.2/aclocal.m4-4169-      ;;
##############################################
mcpp-2.7.2/aclocal.m4-4174-  *'\[$]0 --fallback-echo"')
mcpp-2.7.2/aclocal.m4:4175:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
mcpp-2.7.2/aclocal.m4-4176-    ;;
##############################################
mcpp-2.7.2/aclocal.m4-4189-
mcpp-2.7.2/aclocal.m4:4190:# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
mcpp-2.7.2/aclocal.m4-4191-# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
##############################################
mcpp-2.7.2/aclocal.m4-4571-  # libtool script then.
mcpp-2.7.2/aclocal.m4:4572:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
mcpp-2.7.2/aclocal.m4-4573-  if test -f "$ltmain_in"; then
##############################################
mcpp-2.7.2/aclocal.m4-4676-# If we're using GNU nm, then use its standard symbol codes.
mcpp-2.7.2/aclocal.m4:4677:case `$NM -V 2>&1` in
mcpp-2.7.2/aclocal.m4-4678-*GNU* | *'with BFD'*)
##############################################
mcpp-2.7.2/aclocal.m4-4709-    nlist=conftest.nm
mcpp-2.7.2/aclocal.m4:4710:    if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
mcpp-2.7.2/aclocal.m4-4711-      # Try sorting and uniquifying the output.
##############################################
mcpp-2.7.2/aclocal.m4-5430-    supports_anon_versioning=no
mcpp-2.7.2/aclocal.m4:5431:    case `$LD -v 2>/dev/null` in
mcpp-2.7.2/aclocal.m4-5432-      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
##############################################
mcpp-2.7.2/aclocal.m4-5494-	# is EXPORTS), use it as is; otherwise, prepend...
mcpp-2.7.2/aclocal.m4:5495:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
mcpp-2.7.2/aclocal.m4-5496-	  cp $export_symbols $output_objdir/$soname.def;
##############################################
mcpp-2.7.2/aclocal.m4-5517-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
mcpp-2.7.2/aclocal.m4:5518:      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/aclocal.m4:5519:      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/aclocal.m4-5520-      ;;
##############################################
mcpp-2.7.2/aclocal.m4-5526-	pgcc*)				# Portland Group C compiler
mcpp-2.7.2/aclocal.m4:5527:	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/aclocal.m4-5528-	  tmp_addflag=' $pic_flag'
##############################################
mcpp-2.7.2/aclocal.m4-5530-	pgf77* | pgf90* | pgf95*)	# Portland Group f77 and f90 compilers
mcpp-2.7.2/aclocal.m4:5531:	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/aclocal.m4-5532-	  tmp_addflag=' $pic_flag -Mnomain' ;;
##############################################
mcpp-2.7.2/aclocal.m4-5585-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
mcpp-2.7.2/aclocal.m4:5586:      case `$LD -v 2>&1` in
mcpp-2.7.2/aclocal.m4-5587-        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) 
##############################################
mcpp-2.7.2/aclocal.m4-5601-	  if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
mcpp-2.7.2/aclocal.m4:5602:	    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
mcpp-2.7.2/aclocal.m4-5603-	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
##############################################
mcpp-2.7.2/aclocal.m4-5700-	# below for broken collect2 doesn't work under 4.3+
mcpp-2.7.2/aclocal.m4:5701:	  collect2name=`${CC} -print-prog-name=collect2`
mcpp-2.7.2/aclocal.m4-5702-	  if test -f "$collect2name" && \
##############################################
mcpp-2.7.2/aclocal.m4-5747-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
mcpp-2.7.2/aclocal.m4:5748:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
mcpp-2.7.2/aclocal.m4-5749-       else
##############################################
mcpp-2.7.2/aclocal.m4-5794-      # FIXME: Setting linknames here is a bad hack.
mcpp-2.7.2/aclocal.m4:5795:      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
mcpp-2.7.2/aclocal.m4-5796-      # The linker will automatically build a .lib file if we build a DLL.
##############################################
mcpp-2.7.2/aclocal.m4-5799-      _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs'
mcpp-2.7.2/aclocal.m4:5800:      _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
mcpp-2.7.2/aclocal.m4-5801-      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
##############################################
mcpp-2.7.2/aclocal.m4-5840-         output_verbose_link_cmd='echo'
mcpp-2.7.2/aclocal.m4:5841:         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
mcpp-2.7.2/aclocal.m4-5842-         _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
mcpp-2.7.2/aclocal.m4-5975-      if test "$GCC" = yes; then
mcpp-2.7.2/aclocal.m4:5976:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-5977-      else
mcpp-2.7.2/aclocal.m4:5978:	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-5979-	_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
##############################################
mcpp-2.7.2/aclocal.m4-6007-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
mcpp-2.7.2/aclocal.m4:6008:      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/aclocal.m4-6009-	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
mcpp-2.7.2/aclocal.m4-6037-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/aclocal.m4:6038:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-6039-      else
mcpp-2.7.2/aclocal.m4-6040-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
mcpp-2.7.2/aclocal.m4:6041:	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-6042-      fi
##############################################
mcpp-2.7.2/aclocal.m4-6049-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/aclocal.m4:6050:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4-6051-	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
##############################################
mcpp-2.7.2/aclocal.m4-6053-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
mcpp-2.7.2/aclocal.m4:6054:	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/aclocal.m4:6055:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
mcpp-2.7.2/aclocal.m4:6056:	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
mcpp-2.7.2/aclocal.m4-6057-
##############################################
mcpp-2.7.2/aclocal.m4-6090- 	*)
mcpp-2.7.2/aclocal.m4:6091: 	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;;
mcpp-2.7.2/aclocal.m4-6092- 	esac ;;
##############################################
mcpp-2.7.2/aclocal.m4-6174-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
mcpp-2.7.2/aclocal.m4:6175:      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
mcpp-2.7.2/aclocal.m4-6176-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
##############################################
mcpp-2.7.2/aclocal.m4-6239-        _LT_AC_TAGVAR(allow_undefined_flag, $1)=
mcpp-2.7.2/aclocal.m4:6240:        if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
mcpp-2.7.2/aclocal.m4-6241-        then
##############################################
mcpp-2.7.2/aclocal.m4-6375-    test $lt_ac_count -gt 10 && break
mcpp-2.7.2/aclocal.m4:6376:    lt_ac_count=`expr $lt_ac_count + 1`
mcpp-2.7.2/aclocal.m4-6377-    if test $lt_ac_count -gt $lt_ac_max; then
##############################################
mcpp-2.7.2/aclocal.m4-6431-# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
mcpp-2.7.2/aclocal.m4:6432:# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
mcpp-2.7.2/aclocal.m4-6433-#
##############################################
mcpp-2.7.2/aclocal.m4-6455-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
mcpp-2.7.2/aclocal.m4:6456:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
mcpp-2.7.2/aclocal.m4-6457-# and then we would define $MISSING as
##############################################
mcpp-2.7.2/aclocal.m4-6471-# expand $ac_aux_dir to an absolute path
mcpp-2.7.2/aclocal.m4:6472:am_aux_dir=`cd $ac_aux_dir && pwd`
mcpp-2.7.2/aclocal.m4-6473-])
##############################################
mcpp-2.7.2/aclocal.m4-6553-AC_REQUIRE([AC_PROG_INSTALL])dnl
mcpp-2.7.2/aclocal.m4:6554:if test "`cd $srcdir && pwd`" != "`pwd`"; then
mcpp-2.7.2/aclocal.m4-6555-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
mcpp-2.7.2/aclocal.m4-6641-    * )
mcpp-2.7.2/aclocal.m4:6642:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
mcpp-2.7.2/aclocal.m4-6643-  esac
mcpp-2.7.2/aclocal.m4-6644-done
mcpp-2.7.2/aclocal.m4:6645:echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
mcpp-2.7.2/aclocal.m4-6646-
##############################################
mcpp-2.7.2/aclocal.m4-6800-if (
mcpp-2.7.2/aclocal.m4:6801:   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
mcpp-2.7.2/aclocal.m4-6802-   if test "$[*]" = "X"; then
mcpp-2.7.2/aclocal.m4-6803-      # -L didn't work.
mcpp-2.7.2/aclocal.m4:6804:      set X `ls -t $srcdir/configure conftest.file`
mcpp-2.7.2/aclocal.m4-6805-   fi
##############################################
mcpp-2.7.2/NEWS-52-
mcpp-2.7.2/NEWS:53:2. Relaxed syntax checking and token checking in lang_asm mode.
mcpp-2.7.2/NEWS-54-    Implemented variadic macro of GCC3-specification for GCC-specific-
##############################################
mcpp-2.7.2/config/depcomp-68-  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
mcpp-2.7.2/config/depcomp:69:tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
mcpp-2.7.2/config/depcomp-70-
##############################################
mcpp-2.7.2/config/depcomp-203-  # Version 6 uses the directory in both cases.
mcpp-2.7.2/config/depcomp:204:  stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
mcpp-2.7.2/config/depcomp-205-  tmpdepfile="$stripped.u"
##############################################
mcpp-2.7.2/config/depcomp-214-  else
mcpp-2.7.2/config/depcomp:215:    stripped=`echo "$stripped" | sed 's,^.*/,,'`
mcpp-2.7.2/config/depcomp-216-    tmpdepfile="$stripped.u"
##############################################
mcpp-2.7.2/config/depcomp-228-    # Do two passes, one to just change these to
mcpp-2.7.2/config/depcomp:229:    # `$object: dependent.h' and one to simply `dependent.h:'.
mcpp-2.7.2/config/depcomp-230-    sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
mcpp-2.7.2/config/depcomp-269-  # Do two passes, one to just change these to
mcpp-2.7.2/config/depcomp:270:  # `$object: dependent.h' and one to simply `dependent.h:'.
mcpp-2.7.2/config/depcomp-271-  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
mcpp-2.7.2/config/depcomp-284-   # Subdirectories are respected.
mcpp-2.7.2/config/depcomp:285:   dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
mcpp-2.7.2/config/depcomp-286-   test "x$dir" = "x$object" && dir=
mcpp-2.7.2/config/depcomp:287:   base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
mcpp-2.7.2/config/depcomp-288-
##############################################
mcpp-2.7.2/config/depcomp-423-  done
mcpp-2.7.2/config/depcomp:424:  obj_suffix="`echo $object | sed 's/^.*\././'`"
mcpp-2.7.2/config/depcomp-425-  touch "$tmpdepfile"
##############################################
mcpp-2.7.2/config/missing-128-       # Could not run --version or --help.  This is probably someone
mcpp-2.7.2/config/missing:129:       # running `$TOOL --version' or `$TOOL --help' to check whether
mcpp-2.7.2/config/missing-130-       # $TOOL exists and not knowing $TOOL uses missing.
##############################################
mcpp-2.7.2/config/missing-162-         from any GNU archive site."
mcpp-2.7.2/config/missing:163:    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
mcpp-2.7.2/config/missing-164-    test -z "$files" && files="config.h"
##############################################
mcpp-2.7.2/config/missing-191-         proper tools for further handling them.
mcpp-2.7.2/config/missing:192:         You can get \`$1' as part of \`Autoconf' from any GNU
mcpp-2.7.2/config/missing-193-         archive site."
mcpp-2.7.2/config/missing-194-
mcpp-2.7.2/config/missing:195:    file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
mcpp-2.7.2/config/missing:196:    test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
mcpp-2.7.2/config/missing-197-    if test -f "$file"; then
##############################################
mcpp-2.7.2/config/missing-220-	*.y)
mcpp-2.7.2/config/missing:221:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
mcpp-2.7.2/config/missing-222-	    if [ -f "$SRCFILE" ]; then
##############################################
mcpp-2.7.2/config/missing-224-	    fi
mcpp-2.7.2/config/missing:225:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
mcpp-2.7.2/config/missing-226-	    if [ -f "$SRCFILE" ]; then
##############################################
mcpp-2.7.2/config/missing-250-	*.l)
mcpp-2.7.2/config/missing:251:	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
mcpp-2.7.2/config/missing-252-	    if [ -f "$SRCFILE" ]; then
##############################################
mcpp-2.7.2/config/missing-269-
mcpp-2.7.2/config/missing:270:    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
mcpp-2.7.2/config/missing-271-    if test -z "$file"; then
mcpp-2.7.2/config/missing:272:	file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
mcpp-2.7.2/config/missing-273-    fi
##############################################
mcpp-2.7.2/config/missing-291-    # The file to touch is that specified with -o ...
mcpp-2.7.2/config/missing:292:    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
mcpp-2.7.2/config/missing-293-    if test -z "$file"; then
mcpp-2.7.2/config/missing-294-      # ... or it is the one specified with @setfilename ...
mcpp-2.7.2/config/missing:295:      infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
mcpp-2.7.2/config/missing:296:      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
mcpp-2.7.2/config/missing-297-      # ... or it is derived from the source name (dir/f.texi becomes f.info)
mcpp-2.7.2/config/missing:298:      test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
mcpp-2.7.2/config/missing-299-    fi
##############################################
mcpp-2.7.2/config/missing-321-	*o*)
mcpp-2.7.2/config/missing:322:	    firstarg=`echo "$firstarg" | sed s/o//`
mcpp-2.7.2/config/missing-323-	    tar "$firstarg" "$@" && exit 0
##############################################
mcpp-2.7.2/config/missing-327-	*h*)
mcpp-2.7.2/config/missing:328:	    firstarg=`echo "$firstarg" | sed s/h//`
mcpp-2.7.2/config/missing-329-	    tar "$firstarg" "$@" && exit 0
##############################################
mcpp-2.7.2/config/config.sub-56-
mcpp-2.7.2/config/config.sub:57:me=`echo "$0" | sed -e 's,.*/,,'`
mcpp-2.7.2/config/config.sub-58-
##############################################
mcpp-2.7.2/config/config.sub-120-# Here we must recognize all the valid KERNEL-OS combinations.
mcpp-2.7.2/config/config.sub:121:maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
mcpp-2.7.2/config/config.sub-122-case $maybe_os in
##############################################
mcpp-2.7.2/config/config.sub-126-    os=-$maybe_os
mcpp-2.7.2/config/config.sub:127:    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
mcpp-2.7.2/config/config.sub-128-    ;;
mcpp-2.7.2/config/config.sub-129-  *)
mcpp-2.7.2/config/config.sub:130:    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
mcpp-2.7.2/config/config.sub-131-    if [ $basic_machine != $1 ]
mcpp-2.7.2/config/config.sub:132:    then os=`echo $1 | sed 's/.*-/-/'`
mcpp-2.7.2/config/config.sub-133-    else os=; fi
##############################################
mcpp-2.7.2/config/config.sub-177-		os=-sco5v6
mcpp-2.7.2/config/config.sub:178:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-179-		;;
##############################################
mcpp-2.7.2/config/config.sub-181-		os=-sco3.2v5
mcpp-2.7.2/config/config.sub:182:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-183-		;;
##############################################
mcpp-2.7.2/config/config.sub-185-		os=-sco3.2v4
mcpp-2.7.2/config/config.sub:186:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-187-		;;
mcpp-2.7.2/config/config.sub-188-	-sco3.2.[4-9]*)
mcpp-2.7.2/config/config.sub:189:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
mcpp-2.7.2/config/config.sub:190:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-191-		;;
##############################################
mcpp-2.7.2/config/config.sub-193-		# Don't forget version if it is 3.2v4 or newer.
mcpp-2.7.2/config/config.sub:194:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-195-		;;
##############################################
mcpp-2.7.2/config/config.sub-197-		# Don't forget version if it is 3.2v4 or newer.
mcpp-2.7.2/config/config.sub:198:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-199-		;;
##############################################
mcpp-2.7.2/config/config.sub-201-		os=-sco3.2v2
mcpp-2.7.2/config/config.sub:202:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-203-		;;
mcpp-2.7.2/config/config.sub-204-	-udk*)
mcpp-2.7.2/config/config.sub:205:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-206-		;;
##############################################
mcpp-2.7.2/config/config.sub-208-		os=-isc2.2
mcpp-2.7.2/config/config.sub:209:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-210-		;;
##############################################
mcpp-2.7.2/config/config.sub-214-	-isc*)
mcpp-2.7.2/config/config.sub:215:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
mcpp-2.7.2/config/config.sub-216-		;;
##############################################
mcpp-2.7.2/config/config.sub-220-	-ptx*)
mcpp-2.7.2/config/config.sub:221:		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
mcpp-2.7.2/config/config.sub-222-		;;
mcpp-2.7.2/config/config.sub-223-	-windowsnt*)
mcpp-2.7.2/config/config.sub:224:		os=`echo $os | sed -e 's/windowsnt/winnt/'`
mcpp-2.7.2/config/config.sub-225-		;;
##############################################
mcpp-2.7.2/config/config.sub-309-	*-*-*)
mcpp-2.7.2/config/config.sub:310:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
mcpp-2.7.2/config/config.sub-311-		exit 1
##############################################
mcpp-2.7.2/config/config.sub-411-	amd64-*)
mcpp-2.7.2/config/config.sub:412:		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-413-		;;
##############################################
mcpp-2.7.2/config/config.sub-632-	i*86v32)
mcpp-2.7.2/config/config.sub:633:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
mcpp-2.7.2/config/config.sub-634-		os=-sysv32
##############################################
mcpp-2.7.2/config/config.sub-636-	i*86v4*)
mcpp-2.7.2/config/config.sub:637:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
mcpp-2.7.2/config/config.sub-638-		os=-sysv4
##############################################
mcpp-2.7.2/config/config.sub-640-	i*86v)
mcpp-2.7.2/config/config.sub:641:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
mcpp-2.7.2/config/config.sub-642-		os=-sysv
##############################################
mcpp-2.7.2/config/config.sub-644-	i*86sol2)
mcpp-2.7.2/config/config.sub:645:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
mcpp-2.7.2/config/config.sub-646-		os=-solaris2
##############################################
mcpp-2.7.2/config/config.sub-692-	mips3*-*)
mcpp-2.7.2/config/config.sub:693:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
mcpp-2.7.2/config/config.sub-694-		;;
mcpp-2.7.2/config/config.sub-695-	mips3*)
mcpp-2.7.2/config/config.sub:696:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
mcpp-2.7.2/config/config.sub-697-		;;
##############################################
mcpp-2.7.2/config/config.sub-710-	ms1-*)
mcpp-2.7.2/config/config.sub:711:		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
mcpp-2.7.2/config/config.sub-712-		;;
##############################################
mcpp-2.7.2/config/config.sub-823-	pc98-*)
mcpp-2.7.2/config/config.sub:824:		basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-825-		;;
##############################################
mcpp-2.7.2/config/config.sub-838-	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
mcpp-2.7.2/config/config.sub:839:		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-840-		;;
mcpp-2.7.2/config/config.sub-841-	pentiumpro-* | p6-* | 6x86-* | athlon-*)
mcpp-2.7.2/config/config.sub:842:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-843-		;;
mcpp-2.7.2/config/config.sub-844-	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
mcpp-2.7.2/config/config.sub:845:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-846-		;;
mcpp-2.7.2/config/config.sub-847-	pentium4-*)
mcpp-2.7.2/config/config.sub:848:		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-849-		;;
##############################################
mcpp-2.7.2/config/config.sub-856-		;;
mcpp-2.7.2/config/config.sub:857:	ppc-*)	basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-858-		;;
##############################################
mcpp-2.7.2/config/config.sub-862-	ppcle-* | powerpclittle-*)
mcpp-2.7.2/config/config.sub:863:		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-864-		;;
##############################################
mcpp-2.7.2/config/config.sub-866-		;;
mcpp-2.7.2/config/config.sub:867:	ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-868-		;;
##############################################
mcpp-2.7.2/config/config.sub-872-	ppc64le-* | powerpc64little-*)
mcpp-2.7.2/config/config.sub:873:		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
mcpp-2.7.2/config/config.sub-874-		;;
##############################################
mcpp-2.7.2/config/config.sub-1149-	*)
mcpp-2.7.2/config/config.sub:1150:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
mcpp-2.7.2/config/config.sub-1151-		exit 1
##############################################
mcpp-2.7.2/config/config.sub-1157-	*-digital*)
mcpp-2.7.2/config/config.sub:1158:		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
mcpp-2.7.2/config/config.sub-1159-		;;
mcpp-2.7.2/config/config.sub-1160-	*-commodore*)
mcpp-2.7.2/config/config.sub:1161:		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
mcpp-2.7.2/config/config.sub-1162-		;;
##############################################
mcpp-2.7.2/config/config.sub-1175-	-solaris1 | -solaris1.*)
mcpp-2.7.2/config/config.sub:1176:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
mcpp-2.7.2/config/config.sub-1177-		;;
##############################################
mcpp-2.7.2/config/config.sub-1187-	-gnu/linux*)
mcpp-2.7.2/config/config.sub:1188:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
mcpp-2.7.2/config/config.sub-1189-		;;
##############################################
mcpp-2.7.2/config/config.sub-1231-	-nto*)
mcpp-2.7.2/config/config.sub:1232:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
mcpp-2.7.2/config/config.sub-1233-		;;
##############################################
mcpp-2.7.2/config/config.sub-1238-	-mac*)
mcpp-2.7.2/config/config.sub:1239:		os=`echo $os | sed -e 's|mac|macos|'`
mcpp-2.7.2/config/config.sub-1240-		;;
##############################################
mcpp-2.7.2/config/config.sub-1244-	-linux*)
mcpp-2.7.2/config/config.sub:1245:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
mcpp-2.7.2/config/config.sub-1246-		;;
mcpp-2.7.2/config/config.sub-1247-	-sunos5*)
mcpp-2.7.2/config/config.sub:1248:		os=`echo $os | sed -e 's|sunos5|solaris2|'`
mcpp-2.7.2/config/config.sub-1249-		;;
mcpp-2.7.2/config/config.sub-1250-	-sunos6*)
mcpp-2.7.2/config/config.sub:1251:		os=`echo $os | sed -e 's|sunos6|solaris3|'`
mcpp-2.7.2/config/config.sub-1252-		;;
##############################################
mcpp-2.7.2/config/config.sub-1299-	-sinix5.*)
mcpp-2.7.2/config/config.sub:1300:		os=`echo $os | sed -e 's|sinix|sysv|'`
mcpp-2.7.2/config/config.sub-1301-		;;
##############################################
mcpp-2.7.2/config/config.sub-1350-		# Get rid of the `-' at the beginning of $os.
mcpp-2.7.2/config/config.sub:1351:		os=`echo $os | sed 's/[^-]*-//'`
mcpp-2.7.2/config/config.sub:1352:		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
mcpp-2.7.2/config/config.sub-1353-		exit 1
##############################################
mcpp-2.7.2/config/config.sub-1595-		esac
mcpp-2.7.2/config/config.sub:1596:		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
mcpp-2.7.2/config/config.sub-1597-		;;
##############################################
mcpp-2.7.2/config/config.guess-40-
mcpp-2.7.2/config/config.guess:41:me=`echo "$0" | sed -e 's,.*/,,'`
mcpp-2.7.2/config/config.guess-42-
##############################################
mcpp-2.7.2/config/config.guess-109-: ${TMPDIR=/tmp} ;
mcpp-2.7.2/config/config.guess:110: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
mcpp-2.7.2/config/config.guess-111- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
##############################################
mcpp-2.7.2/config/config.guess-194-	    *)
mcpp-2.7.2/config/config.guess:195:		release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
mcpp-2.7.2/config/config.guess-196-		;;
##############################################
mcpp-2.7.2/config/config.guess-221-	*4.0)
mcpp-2.7.2/config/config.guess:222:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
mcpp-2.7.2/config/config.guess-223-		;;
mcpp-2.7.2/config/config.guess-224-	*5.*)
mcpp-2.7.2/config/config.guess:225:	        UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
mcpp-2.7.2/config/config.guess-226-		;;
##############################################
mcpp-2.7.2/config/config.guess-231-	# types through head -n 1, so we only detect the type of CPU 0.
mcpp-2.7.2/config/config.guess:232:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
mcpp-2.7.2/config/config.guess-233-	case "$ALPHA_CPU_TYPE" in
##############################################
mcpp-2.7.2/config/config.guess-269-	# 1.2 uses "1.2" for uname -r.
mcpp-2.7.2/config/config.guess:270:	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
mcpp-2.7.2/config/config.guess-271-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-326-    sun4H:SunOS:5.*:*)
mcpp-2.7.2/config/config.guess:327:	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
mcpp-2.7.2/config/config.guess-328-	exit ;;
mcpp-2.7.2/config/config.guess-329-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
mcpp-2.7.2/config/config.guess:330:	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
mcpp-2.7.2/config/config.guess-331-	exit ;;
mcpp-2.7.2/config/config.guess-332-    i86pc:SunOS:5.*:*)
mcpp-2.7.2/config/config.guess:333:	echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
mcpp-2.7.2/config/config.guess-334-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-338-	# it's likely to be more like Solaris than SunOS4.
mcpp-2.7.2/config/config.guess:339:	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
mcpp-2.7.2/config/config.guess-340-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-347-	# Japanese Language versions have a version number like `4.1.3-JL'.
mcpp-2.7.2/config/config.guess:348:	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
mcpp-2.7.2/config/config.guess-349-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-353-    sun*:*:4.2BSD:*)
mcpp-2.7.2/config/config.guess:354:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
mcpp-2.7.2/config/config.guess-355-	test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
##############################################
mcpp-2.7.2/config/config.guess-435-	$CC_FOR_BUILD -o $dummy $dummy.c &&
mcpp-2.7.2/config/config.guess:436:	  dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
mcpp-2.7.2/config/config.guess:437:	  SYSTEM_NAME=`$dummy $dummyarg` &&
mcpp-2.7.2/config/config.guess-438-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
mcpp-2.7.2/config/config.guess-491-    *:IRIX*:*:*)
mcpp-2.7.2/config/config.guess:492:	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
mcpp-2.7.2/config/config.guess-493-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-521-EOF
mcpp-2.7.2/config/config.guess:522:		if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
mcpp-2.7.2/config/config.guess-523-		then
##############################################
mcpp-2.7.2/config/config.guess-534-    *:AIX:*:[45])
mcpp-2.7.2/config/config.guess:535:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
mcpp-2.7.2/config/config.guess-536-	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
##############################################
mcpp-2.7.2/config/config.guess-569-    9000/[34678]??:HP-UX:*:*)
mcpp-2.7.2/config/config.guess:570:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
mcpp-2.7.2/config/config.guess-571-	case "${UNAME_MACHINE}" in
##############################################
mcpp-2.7.2/config/config.guess-623-EOF
mcpp-2.7.2/config/config.guess:624:		    (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
mcpp-2.7.2/config/config.guess-625-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
mcpp-2.7.2/config/config.guess-651-    ia64:HP-UX:*:*)
mcpp-2.7.2/config/config.guess:652:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
mcpp-2.7.2/config/config.guess-653-	echo ia64-hp-hpux${HPUX_REV}
##############################################
mcpp-2.7.2/config/config.guess-681-EOF
mcpp-2.7.2/config/config.guess:682:	$CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
mcpp-2.7.2/config/config.guess-683-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
mcpp-2.7.2/config/config.guess-752-        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
mcpp-2.7.2/config/config.guess:753:        FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
mcpp-2.7.2/config/config.guess-754-        echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
mcpp-2.7.2/config/config.guess-757-        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
mcpp-2.7.2/config/config.guess:758:        FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
mcpp-2.7.2/config/config.guess-759-        echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
mcpp-2.7.2/config/config.guess-772-	    pc98)
mcpp-2.7.2/config/config.guess:773:		echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
mcpp-2.7.2/config/config.guess-774-	    amd64)
mcpp-2.7.2/config/config.guess:775:		echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
mcpp-2.7.2/config/config.guess-776-	    *)
mcpp-2.7.2/config/config.guess:777:		echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
mcpp-2.7.2/config/config.guess-778-	esac
##############################################
mcpp-2.7.2/config/config.guess-817-    prep*:SunOS:5.*:*)
mcpp-2.7.2/config/config.guess:818:	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
mcpp-2.7.2/config/config.guess-819-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-821-	# the GNU system
mcpp-2.7.2/config/config.guess:822:	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
mcpp-2.7.2/config/config.guess-823-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-825-	# other systems with GNU libc and userland
mcpp-2.7.2/config/config.guess:826:	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
mcpp-2.7.2/config/config.guess-827-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-1050-    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
mcpp-2.7.2/config/config.guess:1051:	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
mcpp-2.7.2/config/config.guess-1052-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
mcpp-2.7.2/config/config.guess-1282-    *:DragonFly:*:*)
mcpp-2.7.2/config/config.guess:1283:	echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
mcpp-2.7.2/config/config.guess-1284-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-1295-    i*86:skyos:*:*)
mcpp-2.7.2/config/config.guess:1296:	echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
mcpp-2.7.2/config/config.guess-1297-	exit ;;
##############################################
mcpp-2.7.2/config/config.guess-1420-
mcpp-2.7.2/config/config.guess:1421:$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
mcpp-2.7.2/config/config.guess-1422-	{ echo "$SYSTEM_NAME"; exit; }
##############################################
mcpp-2.7.2/config/ltmain.sh-36-# The name of this program:
mcpp-2.7.2/config/ltmain.sh:37:progname=`echo "$progpath" | $SED $basename`
mcpp-2.7.2/config/ltmain.sh-38-modename="$progname"
##############################################
mcpp-2.7.2/config/ltmain.sh-61-  :
mcpp-2.7.2/config/ltmain.sh:62:elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
mcpp-2.7.2/config/ltmain.sh-63-  # Yippee, $echo works!
##############################################
mcpp-2.7.2/config/ltmain.sh-157-      # If mktemp works, use that first and foremost
mcpp-2.7.2/config/ltmain.sh:158:      my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
mcpp-2.7.2/config/ltmain.sh-159-
##############################################
mcpp-2.7.2/config/ltmain.sh-189-  win32_libid_type="unknown"
mcpp-2.7.2/config/ltmain.sh:190:  win32_fileres=`file -L $1 2>/dev/null`
mcpp-2.7.2/config/ltmain.sh-191-  case $win32_fileres in
##############################################
mcpp-2.7.2/config/ltmain.sh-241-      # but not from the CC environment variable when configure was run.
mcpp-2.7.2/config/ltmain.sh:242:      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;
mcpp-2.7.2/config/ltmain.sh-243-      # Blanks at the start of $base_compile will cause this to fail
##############################################
mcpp-2.7.2/config/ltmain.sh-248-	    # Evaluate the configuration.
mcpp-2.7.2/config/ltmain.sh:249:	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
mcpp-2.7.2/config/ltmain.sh-250-	    CC_quoted=
##############################################
mcpp-2.7.2/config/ltmain.sh-260-	    case "$@ " in
mcpp-2.7.2/config/ltmain.sh:261:	      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)
mcpp-2.7.2/config/ltmain.sh-262-	      # The compiler in the base compile command matches
##############################################
mcpp-2.7.2/config/ltmain.sh-328-      esac
mcpp-2.7.2/config/ltmain.sh:329:      my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-330-      my_xdir="$my_gentop/$my_xlib"
##############################################
mcpp-2.7.2/config/ltmain.sh-348-	  darwin_curdir=`pwd`
mcpp-2.7.2/config/ltmain.sh:349:	  darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh:350:	  darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null`
mcpp-2.7.2/config/ltmain.sh-351-	  if test -n "$darwin_arches"; then 
mcpp-2.7.2/config/ltmain.sh:352:	    darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'`
mcpp-2.7.2/config/ltmain.sh-353-	    darwin_arch=
##############################################
mcpp-2.7.2/config/ltmain.sh-363-      ## Okay now we have a bunch of thin objects, gotta fatten them up :)
mcpp-2.7.2/config/ltmain.sh:364:	    darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP`
mcpp-2.7.2/config/ltmain.sh-365-	    darwin_file=
##############################################
mcpp-2.7.2/config/ltmain.sh-367-	    for darwin_file in $darwin_filelist; do
mcpp-2.7.2/config/ltmain.sh:368:	      darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`
mcpp-2.7.2/config/ltmain.sh-369-	      lipo -create -output "$darwin_file" $darwin_files
##############################################
mcpp-2.7.2/config/ltmain.sh-382-      esac
mcpp-2.7.2/config/ltmain.sh:383:      my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
mcpp-2.7.2/config/ltmain.sh-384-    done
##############################################
mcpp-2.7.2/config/ltmain.sh-401-  case $arg in
mcpp-2.7.2/config/ltmain.sh:402:  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
mcpp-2.7.2/config/ltmain.sh-403-  *) optarg= ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-432-	  # Evaluate the configuration.
mcpp-2.7.2/config/ltmain.sh:433:	  eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
mcpp-2.7.2/config/ltmain.sh-434-	else
##############################################
mcpp-2.7.2/config/ltmain.sh-554-static)
mcpp-2.7.2/config/ltmain.sh:555:  build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
mcpp-2.7.2/config/ltmain.sh-556-  ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-675-	-Wc,*)
mcpp-2.7.2/config/ltmain.sh:676:	  args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
mcpp-2.7.2/config/ltmain.sh-677-	  lastarg=
##############################################
mcpp-2.7.2/config/ltmain.sh-692-	  IFS="$save_ifs"
mcpp-2.7.2/config/ltmain.sh:693:	  lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
mcpp-2.7.2/config/ltmain.sh-694-
##############################################
mcpp-2.7.2/config/ltmain.sh-711-      # Aesthetically quote the previous argument.
mcpp-2.7.2/config/ltmain.sh:712:      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-713-
##############################################
mcpp-2.7.2/config/ltmain.sh-739-      # Get the name of the library object.
mcpp-2.7.2/config/ltmain.sh:740:      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-741-      ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-750-    *.ads) xform=ads ;;
mcpp-2.7.2/config/ltmain.sh:751:    *.asm) xform=asm ;;
mcpp-2.7.2/config/ltmain.sh-752-    *.c++) xform=c++ ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-762-
mcpp-2.7.2/config/ltmain.sh:763:    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
mcpp-2.7.2/config/ltmain.sh-764-
mcpp-2.7.2/config/ltmain.sh-765-    case $libobj in
mcpp-2.7.2/config/ltmain.sh:766:    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
mcpp-2.7.2/config/ltmain.sh-767-    *)
##############################################
mcpp-2.7.2/config/ltmain.sh-793-
mcpp-2.7.2/config/ltmain.sh:794:    qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-795-    case $qlibobj in
##############################################
mcpp-2.7.2/config/ltmain.sh-801-	&& $echo "$modename: libobj name \`$libobj' may not contain shell special characters."
mcpp-2.7.2/config/ltmain.sh:802:    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh:803:    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-804-    if test "X$xdir" = "X$obj"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-840-    if test "$compiler_c_o" = no; then
mcpp-2.7.2/config/ltmain.sh:841:      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
mcpp-2.7.2/config/ltmain.sh-842-      lockfile="$output_obj.lock"
##############################################
mcpp-2.7.2/config/ltmain.sh-861-*** ERROR, $lockfile exists and contains:
mcpp-2.7.2/config/ltmain.sh:862:`cat $lockfile 2>/dev/null`
mcpp-2.7.2/config/ltmain.sh-863-
##############################################
mcpp-2.7.2/config/ltmain.sh-879-    fi
mcpp-2.7.2/config/ltmain.sh:880:    qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-881-    case $qsrcfile in
##############################################
mcpp-2.7.2/config/ltmain.sh-935-      if test "$need_locks" = warn &&
mcpp-2.7.2/config/ltmain.sh:936:	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
mcpp-2.7.2/config/ltmain.sh-937-	$echo "\
mcpp-2.7.2/config/ltmain.sh-938-*** ERROR, $lockfile contains:
mcpp-2.7.2/config/ltmain.sh:939:`cat $lockfile 2>/dev/null`
mcpp-2.7.2/config/ltmain.sh-940-
##############################################
mcpp-2.7.2/config/ltmain.sh-1007-      if test "$need_locks" = warn &&
mcpp-2.7.2/config/ltmain.sh:1008:	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
mcpp-2.7.2/config/ltmain.sh-1009-	$echo "\
mcpp-2.7.2/config/ltmain.sh-1010-*** ERROR, $lockfile contains:
mcpp-2.7.2/config/ltmain.sh:1011:`cat $lockfile 2>/dev/null`
mcpp-2.7.2/config/ltmain.sh-1012-
##############################################
mcpp-2.7.2/config/ltmain.sh-1171-      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
mcpp-2.7.2/config/ltmain.sh:1172:	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
mcpp-2.7.2/config/ltmain.sh-1173-	;;
##############################################
mcpp-2.7.2/config/ltmain.sh-1260-	    moreargs=
mcpp-2.7.2/config/ltmain.sh:1261:	    for fil in `cat $save_arg`
mcpp-2.7.2/config/ltmain.sh-1262-	    do
##############################################
mcpp-2.7.2/config/ltmain.sh-1287-		# Extract subdirectory from the argument.
mcpp-2.7.2/config/ltmain.sh:1288:		xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-1289-		if test "X$xdir" = "X$arg"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-1346-		  # Extract subdirectory from the argument.
mcpp-2.7.2/config/ltmain.sh:1347:		  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-1348-		  if test "X$xdir" = "X$arg"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-1353-
mcpp-2.7.2/config/ltmain.sh:1354:		  pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
mcpp-2.7.2/config/ltmain.sh:1355:		  non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
mcpp-2.7.2/config/ltmain.sh-1356-		  libobjs="$libobjs $pic_object"
##############################################
mcpp-2.7.2/config/ltmain.sh-1514-      -L*)
mcpp-2.7.2/config/ltmain.sh:1515:	dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
mcpp-2.7.2/config/ltmain.sh-1516-	# We need an absolute path.
##############################################
mcpp-2.7.2/config/ltmain.sh-1519-	*)
mcpp-2.7.2/config/ltmain.sh:1520:	  absdir=`cd "$dir" && pwd`
mcpp-2.7.2/config/ltmain.sh-1521-	  if test -z "$absdir"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-1537-	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
mcpp-2.7.2/config/ltmain.sh:1538:	  testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'`
mcpp-2.7.2/config/ltmain.sh-1539-	  case :$dllsearchpath: in
##############################################
mcpp-2.7.2/config/ltmain.sh-1629-	# to be aesthetically quoted because they are evaled later.
mcpp-2.7.2/config/ltmain.sh:1630:	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-1631-	case $arg in
##############################################
mcpp-2.7.2/config/ltmain.sh-1698-      -R*)
mcpp-2.7.2/config/ltmain.sh:1699:	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
mcpp-2.7.2/config/ltmain.sh-1700-	# We need an absolute path.
##############################################
mcpp-2.7.2/config/ltmain.sh-1739-      -Wc,*)
mcpp-2.7.2/config/ltmain.sh:1740:	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
mcpp-2.7.2/config/ltmain.sh-1741-	arg=
##############################################
mcpp-2.7.2/config/ltmain.sh-1753-	IFS="$save_ifs"
mcpp-2.7.2/config/ltmain.sh:1754:	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
mcpp-2.7.2/config/ltmain.sh-1755-	;;
##############################################
mcpp-2.7.2/config/ltmain.sh-1757-      -Wl,*)
mcpp-2.7.2/config/ltmain.sh:1758:	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
mcpp-2.7.2/config/ltmain.sh-1759-	arg=
##############################################
mcpp-2.7.2/config/ltmain.sh-1772-	IFS="$save_ifs"
mcpp-2.7.2/config/ltmain.sh:1773:	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
mcpp-2.7.2/config/ltmain.sh-1774-	;;
##############################################
mcpp-2.7.2/config/ltmain.sh-1794-	# to be aesthetically quoted because they are evaled later.
mcpp-2.7.2/config/ltmain.sh:1795:	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-1796-	case $arg in
##############################################
mcpp-2.7.2/config/ltmain.sh-1831-	  # Extract subdirectory from the argument.
mcpp-2.7.2/config/ltmain.sh:1832:	  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-1833-	  if test "X$xdir" = "X$arg"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-1890-	    # Extract subdirectory from the argument.
mcpp-2.7.2/config/ltmain.sh:1891:	    xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-1892-	    if test "X$xdir" = "X$arg"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-1897-
mcpp-2.7.2/config/ltmain.sh:1898:	    pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
mcpp-2.7.2/config/ltmain.sh:1899:	    non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
mcpp-2.7.2/config/ltmain.sh-1900-	    libobjs="$libobjs $pic_object"
##############################################
mcpp-2.7.2/config/ltmain.sh-1933-	# to be aesthetically quoted because they are evaled later.
mcpp-2.7.2/config/ltmain.sh:1934:	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-1935-	case $arg in
##############################################
mcpp-2.7.2/config/ltmain.sh-1963-    # calculate the name of the file, without its directory
mcpp-2.7.2/config/ltmain.sh:1964:    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-1965-    libobjs_save="$libobjs"
##############################################
mcpp-2.7.2/config/ltmain.sh-1968-      # get the directories listed in $shlibpath_var
mcpp-2.7.2/config/ltmain.sh:1969:      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
mcpp-2.7.2/config/ltmain.sh-1970-    else
##############################################
mcpp-2.7.2/config/ltmain.sh-1975-
mcpp-2.7.2/config/ltmain.sh:1976:    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-1977-    if test "X$output_objdir" = "X$output"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-2113-	  fi
mcpp-2.7.2/config/ltmain.sh:2114:	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
mcpp-2.7.2/config/ltmain.sh-2115-	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
##############################################
mcpp-2.7.2/config/ltmain.sh-2157-		    found=no
mcpp-2.7.2/config/ltmain.sh:2158:		    ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-2159-		    test "X$ladir" = "X$lib" && ladir="."
##############################################
mcpp-2.7.2/config/ltmain.sh-2182-	    newdependency_libs="$deplib $newdependency_libs"
mcpp-2.7.2/config/ltmain.sh:2183:	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
mcpp-2.7.2/config/ltmain.sh-2184-	    ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-2195-	    fi
mcpp-2.7.2/config/ltmain.sh:2196:	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
mcpp-2.7.2/config/ltmain.sh-2197-	    ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-2205-	  if test "$pass" = link; then
mcpp-2.7.2/config/ltmain.sh:2206:	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
mcpp-2.7.2/config/ltmain.sh-2207-	    # Make sure the xrpath contains only unique directories.
##############################################
mcpp-2.7.2/config/ltmain.sh-2227-		set dummy $deplibs_check_method
mcpp-2.7.2/config/ltmain.sh:2228:	        match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
mcpp-2.7.2/config/ltmain.sh-2229-		if eval $echo \"$deplib\" 2>/dev/null \
##############################################
mcpp-2.7.2/config/ltmain.sh-2288-	else
mcpp-2.7.2/config/ltmain.sh:2289:	  $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2
mcpp-2.7.2/config/ltmain.sh-2290-	  exit $EXIT_FAILURE
##############################################
mcpp-2.7.2/config/ltmain.sh-2299-
mcpp-2.7.2/config/ltmain.sh:2300:	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-2301-	test "X$ladir" = "X$lib" && ladir="."
##############################################
mcpp-2.7.2/config/ltmain.sh-2391-	*)
mcpp-2.7.2/config/ltmain.sh:2392:	  abs_ladir=`cd "$ladir" && pwd`
mcpp-2.7.2/config/ltmain.sh-2393-	  if test -z "$abs_ladir"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-2399-	esac
mcpp-2.7.2/config/ltmain.sh:2400:	laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-2401-
##############################################
mcpp-2.7.2/config/ltmain.sh-2426-	fi # $installed = yes
mcpp-2.7.2/config/ltmain.sh:2427:	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
mcpp-2.7.2/config/ltmain.sh-2428-
##############################################
mcpp-2.7.2/config/ltmain.sh-2473-	    case $deplib in
mcpp-2.7.2/config/ltmain.sh:2474:	    -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
mcpp-2.7.2/config/ltmain.sh-2475-	    esac
##############################################
mcpp-2.7.2/config/ltmain.sh-2592-	    shift; shift
mcpp-2.7.2/config/ltmain.sh:2593:	    libname=`eval \\$echo \"$libname_spec\"`
mcpp-2.7.2/config/ltmain.sh-2594-	    # use dlname if we got it. it's perfectly good, no?
##############################################
mcpp-2.7.2/config/ltmain.sh-2600-	      *cygwin* | mingw*)
mcpp-2.7.2/config/ltmain.sh:2601:		major=`expr $current - $age`
mcpp-2.7.2/config/ltmain.sh-2602-		versuffix="-$major"
##############################################
mcpp-2.7.2/config/ltmain.sh-2611-	    soroot="$soname"
mcpp-2.7.2/config/ltmain.sh:2612:	    soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
mcpp-2.7.2/config/ltmain.sh:2613:	    newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
mcpp-2.7.2/config/ltmain.sh-2614-
##############################################
mcpp-2.7.2/config/ltmain.sh-2844-	      case $libdir in
mcpp-2.7.2/config/ltmain.sh:2845:	      -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
mcpp-2.7.2/config/ltmain.sh-2846-		   case " $xrpath " in
##############################################
mcpp-2.7.2/config/ltmain.sh-2876-	      *.la)
mcpp-2.7.2/config/ltmain.sh:2877:		dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-2878-		test "X$dir" = "X$deplib" && dir="."
##############################################
mcpp-2.7.2/config/ltmain.sh-2882-		*)
mcpp-2.7.2/config/ltmain.sh:2883:		  absdir=`cd "$dir" && pwd`
mcpp-2.7.2/config/ltmain.sh-2884-		  if test -z "$absdir"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-2892-		else
mcpp-2.7.2/config/ltmain.sh:2893:		  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
mcpp-2.7.2/config/ltmain.sh-2894-		  if test -z "$libdir"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-2907-		  # but need to link against shared
mcpp-2.7.2/config/ltmain.sh:2908:		  eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
mcpp-2.7.2/config/ltmain.sh-2909-		  if test -n "$deplibrary_names" ; then
##############################################
mcpp-2.7.2/config/ltmain.sh-2932-		  # Again, we only want to link against shared libraries
mcpp-2.7.2/config/ltmain.sh:2933:		  eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"`
mcpp-2.7.2/config/ltmain.sh-2934-		  for tmp in $newlib_search_path ; do
##############################################
mcpp-2.7.2/config/ltmain.sh-3099-      lib*)
mcpp-2.7.2/config/ltmain.sh:3100:	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
mcpp-2.7.2/config/ltmain.sh-3101-	eval shared_ext=\"$shrext_cmds\"
##############################################
mcpp-2.7.2/config/ltmain.sh-3105-	if test "$module" = no; then
mcpp-2.7.2/config/ltmain.sh:3106:	  $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
mcpp-2.7.2/config/ltmain.sh-3107-	  $echo "$help" 1>&2
##############################################
mcpp-2.7.2/config/ltmain.sh-3111-	  # Add the "lib" prefix for modules if required
mcpp-2.7.2/config/ltmain.sh:3112:	  name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
mcpp-2.7.2/config/ltmain.sh-3113-	  eval shared_ext=\"$shrext_cmds\"
##############################################
mcpp-2.7.2/config/ltmain.sh-3115-	else
mcpp-2.7.2/config/ltmain.sh:3116:	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
mcpp-2.7.2/config/ltmain.sh-3117-	fi
##############################################
mcpp-2.7.2/config/ltmain.sh-3192-	  darwin|linux|osf|windows)
mcpp-2.7.2/config/ltmain.sh:3193:	    current=`expr $number_major + $number_minor`
mcpp-2.7.2/config/ltmain.sh-3194-	    age="$number_minor"
##############################################
mcpp-2.7.2/config/ltmain.sh-3202-	  irix|nonstopux)
mcpp-2.7.2/config/ltmain.sh:3203:	    current=`expr $number_major + $number_minor - 1`
mcpp-2.7.2/config/ltmain.sh-3204-	    age="$number_minor"
##############################################
mcpp-2.7.2/config/ltmain.sh-3249-	if test "$age" -gt "$current"; then
mcpp-2.7.2/config/ltmain.sh:3250:	  $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
mcpp-2.7.2/config/ltmain.sh-3251-	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
##############################################
mcpp-2.7.2/config/ltmain.sh-3264-	  # verstring for coding it into the library header
mcpp-2.7.2/config/ltmain.sh:3265:	  major=.`expr $current - $age`
mcpp-2.7.2/config/ltmain.sh-3266-	  versuffix="$major.$age.$revision"
mcpp-2.7.2/config/ltmain.sh-3267-	  # Darwin ld doesn't like 0 for these options...
mcpp-2.7.2/config/ltmain.sh:3268:	  minor_current=`expr $current + 1`
mcpp-2.7.2/config/ltmain.sh-3269-	  verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
##############################################
mcpp-2.7.2/config/ltmain.sh-3282-	irix | nonstopux)
mcpp-2.7.2/config/ltmain.sh:3283:	  major=`expr $current - $age + 1`
mcpp-2.7.2/config/ltmain.sh-3284-
##############################################
mcpp-2.7.2/config/ltmain.sh-3293-	  while test "$loop" -ne 0; do
mcpp-2.7.2/config/ltmain.sh:3294:	    iface=`expr $revision - $loop`
mcpp-2.7.2/config/ltmain.sh:3295:	    loop=`expr $loop - 1`
mcpp-2.7.2/config/ltmain.sh-3296-	    verstring="$verstring_prefix$major.$iface:$verstring"
##############################################
mcpp-2.7.2/config/ltmain.sh-3304-	linux)
mcpp-2.7.2/config/ltmain.sh:3305:	  major=.`expr $current - $age`
mcpp-2.7.2/config/ltmain.sh-3306-	  versuffix="$major.$age.$revision"
##############################################
mcpp-2.7.2/config/ltmain.sh-3309-	osf)
mcpp-2.7.2/config/ltmain.sh:3310:	  major=.`expr $current - $age`
mcpp-2.7.2/config/ltmain.sh-3311-	  versuffix=".$current.$age.$revision"
##############################################
mcpp-2.7.2/config/ltmain.sh-3316-	  while test "$loop" -ne 0; do
mcpp-2.7.2/config/ltmain.sh:3317:	    iface=`expr $current - $loop`
mcpp-2.7.2/config/ltmain.sh:3318:	    loop=`expr $loop - 1`
mcpp-2.7.2/config/ltmain.sh-3319-	    verstring="$verstring:${iface}.0"
##############################################
mcpp-2.7.2/config/ltmain.sh-3333-	  # extension on DOS 8.3 filesystems.
mcpp-2.7.2/config/ltmain.sh:3334:	  major=`expr $current - $age`
mcpp-2.7.2/config/ltmain.sh-3335-	  versuffix="-$major"
##############################################
mcpp-2.7.2/config/ltmain.sh-3388-	removelist=
mcpp-2.7.2/config/ltmain.sh:3389:	tempremovelist=`$echo "$output_objdir/*"`
mcpp-2.7.2/config/ltmain.sh-3390-	for p in $tempremovelist; do
##############################################
mcpp-2.7.2/config/ltmain.sh-3416-	# Transform .lo files to .o files.
mcpp-2.7.2/config/ltmain.sh:3417:	oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
mcpp-2.7.2/config/ltmain.sh-3418-      fi
##############################################
mcpp-2.7.2/config/ltmain.sh-3421-      for path in $notinst_path; do
mcpp-2.7.2/config/ltmain.sh:3422:	lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"`
mcpp-2.7.2/config/ltmain.sh:3423:	deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"`
mcpp-2.7.2/config/ltmain.sh:3424:	dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"`
mcpp-2.7.2/config/ltmain.sh-3425-      done
##############################################
mcpp-2.7.2/config/ltmain.sh-3529-	    for i in $deplibs; do
mcpp-2.7.2/config/ltmain.sh:3530:	      name=`expr $i : '-l\(.*\)'`
mcpp-2.7.2/config/ltmain.sh-3531-	      # If $name is empty we are operating on a -L argument.
##############################################
mcpp-2.7.2/config/ltmain.sh-3541-		if test -n "$i" ; then
mcpp-2.7.2/config/ltmain.sh:3542:		  libname=`eval \\$echo \"$libname_spec\"`
mcpp-2.7.2/config/ltmain.sh:3543:		  deplib_matches=`eval \\$echo \"$library_names_spec\"`
mcpp-2.7.2/config/ltmain.sh-3544-		  set dummy $deplib_matches
mcpp-2.7.2/config/ltmain.sh-3545-		  deplib_match=$2
mcpp-2.7.2/config/ltmain.sh:3546:		  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
mcpp-2.7.2/config/ltmain.sh-3547-		    newdeplibs="$newdeplibs $i"
##############################################
mcpp-2.7.2/config/ltmain.sh-3566-	    for i in $deplibs; do
mcpp-2.7.2/config/ltmain.sh:3567:	      name=`expr $i : '-l\(.*\)'`
mcpp-2.7.2/config/ltmain.sh-3568-	      # If $name is empty we are operating on a -L argument.
##############################################
mcpp-2.7.2/config/ltmain.sh-3583-		  if test -n "$i" ; then
mcpp-2.7.2/config/ltmain.sh:3584:		    libname=`eval \\$echo \"$libname_spec\"`
mcpp-2.7.2/config/ltmain.sh:3585:		    deplib_matches=`eval \\$echo \"$library_names_spec\"`
mcpp-2.7.2/config/ltmain.sh-3586-		    set dummy $deplib_matches
mcpp-2.7.2/config/ltmain.sh-3587-		    deplib_match=$2
mcpp-2.7.2/config/ltmain.sh:3588:		    if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
mcpp-2.7.2/config/ltmain.sh-3589-		      newdeplibs="$newdeplibs $i"
##############################################
mcpp-2.7.2/config/ltmain.sh-3616-	  set dummy $deplibs_check_method
mcpp-2.7.2/config/ltmain.sh:3617:	  file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
mcpp-2.7.2/config/ltmain.sh-3618-	  for a_deplib in $deplibs; do
mcpp-2.7.2/config/ltmain.sh:3619:	    name=`expr $a_deplib : '-l\(.*\)'`
mcpp-2.7.2/config/ltmain.sh-3620-	    # If $name is empty we are operating on a -L argument.
##############################################
mcpp-2.7.2/config/ltmain.sh-3630-	      if test -n "$a_deplib" ; then
mcpp-2.7.2/config/ltmain.sh:3631:		libname=`eval \\$echo \"$libname_spec\"`
mcpp-2.7.2/config/ltmain.sh-3632-		for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
mcpp-2.7.2/config/ltmain.sh:3633:		  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
mcpp-2.7.2/config/ltmain.sh-3634-		  for potent_lib in $potential_libs; do
##############################################
mcpp-2.7.2/config/ltmain.sh-3646-		      while test -h "$potlib" 2>/dev/null; do
mcpp-2.7.2/config/ltmain.sh:3647:			potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
mcpp-2.7.2/config/ltmain.sh-3648-			case $potliblink in
mcpp-2.7.2/config/ltmain.sh-3649-			[\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
mcpp-2.7.2/config/ltmain.sh:3650:			*) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
mcpp-2.7.2/config/ltmain.sh-3651-			esac
##############################################
mcpp-2.7.2/config/ltmain.sh-3685-	  set dummy $deplibs_check_method
mcpp-2.7.2/config/ltmain.sh:3686:	  match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
mcpp-2.7.2/config/ltmain.sh-3687-	  for a_deplib in $deplibs; do
mcpp-2.7.2/config/ltmain.sh:3688:	    name=`expr $a_deplib : '-l\(.*\)'`
mcpp-2.7.2/config/ltmain.sh-3689-	    # If $name is empty we are operating on a -L argument.
##############################################
mcpp-2.7.2/config/ltmain.sh-3699-	      if test -n "$a_deplib" ; then
mcpp-2.7.2/config/ltmain.sh:3700:		libname=`eval \\$echo \"$libname_spec\"`
mcpp-2.7.2/config/ltmain.sh-3701-		for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
mcpp-2.7.2/config/ltmain.sh:3702:		  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
mcpp-2.7.2/config/ltmain.sh-3703-		  for potent_lib in $potential_libs; do
##############################################
mcpp-2.7.2/config/ltmain.sh-3742-	      # can't use Xsed below, because $i might contain '/'
mcpp-2.7.2/config/ltmain.sh:3743:	      tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
mcpp-2.7.2/config/ltmain.sh-3744-	    done
##############################################
mcpp-2.7.2/config/ltmain.sh-3767-	  # On Rhapsody replace the C library is the System framework
mcpp-2.7.2/config/ltmain.sh:3768:	  newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
mcpp-2.7.2/config/ltmain.sh-3769-	  ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-3936-	# Use standard objects if they are pic
mcpp-2.7.2/config/ltmain.sh:3937:	test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
mcpp-2.7.2/config/ltmain.sh-3938-
##############################################
mcpp-2.7.2/config/ltmain.sh-3949-	      eval cmd=\"$cmd\"
mcpp-2.7.2/config/ltmain.sh:3950:	      if len=`expr "X$cmd" : ".*"` &&
mcpp-2.7.2/config/ltmain.sh-3951-	       test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
##############################################
mcpp-2.7.2/config/ltmain.sh-4031-	if test "X$skipped_export" != "X:" &&
mcpp-2.7.2/config/ltmain.sh:4032:	   len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
mcpp-2.7.2/config/ltmain.sh-4033-	   test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
##############################################
mcpp-2.7.2/config/ltmain.sh-4050-	  save_output=$output
mcpp-2.7.2/config/ltmain.sh:4051:	  output_la=`$echo "X$output" | $Xsed -e "$basename"`
mcpp-2.7.2/config/ltmain.sh-4052-
##############################################
mcpp-2.7.2/config/ltmain.sh-4066-	    if test "X$objlist" = X ||
mcpp-2.7.2/config/ltmain.sh:4067:	       { len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
mcpp-2.7.2/config/ltmain.sh-4068-		 test "$len" -le "$max_cmd_len"; }; then
##############################################
mcpp-2.7.2/config/ltmain.sh-4081-	      last_robj=$output_objdir/$output_la-${k}.$objext
mcpp-2.7.2/config/ltmain.sh:4082:	      k=`expr $k + 1`
mcpp-2.7.2/config/ltmain.sh-4083-	      output=$output_objdir/$output_la-${k}.$objext
##############################################
mcpp-2.7.2/config/ltmain.sh-4107-	  do
mcpp-2.7.2/config/ltmain.sh:4108:	    i=`expr $i + 1`
mcpp-2.7.2/config/ltmain.sh-4109-	    delfiles="$delfiles $output_objdir/$output_la-${i}.$objext"
##############################################
mcpp-2.7.2/config/ltmain.sh-4231-	libobj="$output"
mcpp-2.7.2/config/ltmain.sh:4232:	obj=`$echo "X$output" | $Xsed -e "$lo2o"`
mcpp-2.7.2/config/ltmain.sh-4233-	;;
##############################################
mcpp-2.7.2/config/ltmain.sh-4265-      # Create the old-style object.
mcpp-2.7.2/config/ltmain.sh:4266:      reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
mcpp-2.7.2/config/ltmain.sh-4267-
##############################################
mcpp-2.7.2/config/ltmain.sh-4326-      case $host in
mcpp-2.7.2/config/ltmain.sh:4327:	*cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;;
mcpp-2.7.2/config/ltmain.sh-4328-      esac
##############################################
mcpp-2.7.2/config/ltmain.sh-4346-	# On Rhapsody replace the C library is the System framework
mcpp-2.7.2/config/ltmain.sh:4347:	compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
mcpp-2.7.2/config/ltmain.sh:4348:	finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
mcpp-2.7.2/config/ltmain.sh-4349-	;;
##############################################
mcpp-2.7.2/config/ltmain.sh-4434-	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
mcpp-2.7.2/config/ltmain.sh:4435:	  testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'`
mcpp-2.7.2/config/ltmain.sh-4436-	  case :$dllsearchpath: in
##############################################
mcpp-2.7.2/config/ltmain.sh-4492-	# Transform all the library objects into standard objects.
mcpp-2.7.2/config/ltmain.sh:4493:	compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
mcpp-2.7.2/config/ltmain.sh:4494:	finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
mcpp-2.7.2/config/ltmain.sh-4495-      fi
##############################################
mcpp-2.7.2/config/ltmain.sh-4538-	    # Add our own program objects to the symbol list.
mcpp-2.7.2/config/ltmain.sh:4539:	    progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
mcpp-2.7.2/config/ltmain.sh-4540-	    for arg in $progfiles; do
##############################################
mcpp-2.7.2/config/ltmain.sh-4580-	    $show "extracting global C symbols from \`$arg'"
mcpp-2.7.2/config/ltmain.sh:4581:	    name=`$echo "$arg" | ${SED} -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-4582-	    $run eval '$echo ": $name " >> "$nlist"'
##############################################
mcpp-2.7.2/config/ltmain.sh-4702-            if test -f "$output_objdir/${outputname}.def" ; then
mcpp-2.7.2/config/ltmain.sh:4703:              compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%"`
mcpp-2.7.2/config/ltmain.sh:4704:              finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%"`
mcpp-2.7.2/config/ltmain.sh-4705-            else
mcpp-2.7.2/config/ltmain.sh:4706:              compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
mcpp-2.7.2/config/ltmain.sh:4707:              finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
mcpp-2.7.2/config/ltmain.sh-4708-             fi
##############################################
mcpp-2.7.2/config/ltmain.sh-4710-          * )
mcpp-2.7.2/config/ltmain.sh:4711:            compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
mcpp-2.7.2/config/ltmain.sh:4712:            finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
mcpp-2.7.2/config/ltmain.sh-4713-            ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-4726-	# Nullify the symbol file.
mcpp-2.7.2/config/ltmain.sh:4727:	compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
mcpp-2.7.2/config/ltmain.sh:4728:	finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
mcpp-2.7.2/config/ltmain.sh-4729-      fi
##############################################
mcpp-2.7.2/config/ltmain.sh-4732-	# Replace the output file specification.
mcpp-2.7.2/config/ltmain.sh:4733:	compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
mcpp-2.7.2/config/ltmain.sh-4734-	link_command="$compile_command$compile_rpath"
##############################################
mcpp-2.7.2/config/ltmain.sh-4799-	# Replace the output file specification.
mcpp-2.7.2/config/ltmain.sh:4800:	link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
mcpp-2.7.2/config/ltmain.sh-4801-	# Delete the old output file.
##############################################
mcpp-2.7.2/config/ltmain.sh-4819-	  if test "$fast_install" = yes; then
mcpp-2.7.2/config/ltmain.sh:4820:	    relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
mcpp-2.7.2/config/ltmain.sh-4821-	  else
##############################################
mcpp-2.7.2/config/ltmain.sh-4831-      # Replace the output file specification.
mcpp-2.7.2/config/ltmain.sh:4832:      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
mcpp-2.7.2/config/ltmain.sh-4833-
##############################################
mcpp-2.7.2/config/ltmain.sh-4851-	  else
mcpp-2.7.2/config/ltmain.sh:4852:	    var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-4853-	    relink_command="$var=\"$var_value\"; export $var; $relink_command"
##############################################
mcpp-2.7.2/config/ltmain.sh-4856-	relink_command="(cd `pwd`; $relink_command)"
mcpp-2.7.2/config/ltmain.sh:4857:	relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-4858-      fi
##############################################
mcpp-2.7.2/config/ltmain.sh-4865-	esac
mcpp-2.7.2/config/ltmain.sh:4866:	qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-4867-      else
mcpp-2.7.2/config/ltmain.sh:4868:	qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-4869-      fi
##############################################
mcpp-2.7.2/config/ltmain.sh-4875-	case $output in
mcpp-2.7.2/config/ltmain.sh:4876:	  *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
mcpp-2.7.2/config/ltmain.sh-4877-	esac
##############################################
mcpp-2.7.2/config/ltmain.sh-4881-	    exeext=.exe
mcpp-2.7.2/config/ltmain.sh:4882:	    outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;;
mcpp-2.7.2/config/ltmain.sh-4883-	  *) exeext= ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-4886-	  *cygwin* | *mingw* )
mcpp-2.7.2/config/ltmain.sh:4887:            output_name=`basename $output`
mcpp-2.7.2/config/ltmain.sh:4888:            output_path=`dirname $output`
mcpp-2.7.2/config/ltmain.sh-4889-            cwrappersource="$output_path/$objdir/lt-$output_name.c"
##############################################
mcpp-2.7.2/config/ltmain.sh-5282-      shift
mcpp-2.7.2/config/ltmain.sh:5283:    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
mcpp-2.7.2/config/ltmain.sh-5284-      # Yippee, \$echo works!
##############################################
mcpp-2.7.2/config/ltmain.sh-5294-  # Find the directory that this script lives in.
mcpp-2.7.2/config/ltmain.sh:5295:  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
mcpp-2.7.2/config/ltmain.sh-5296-  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
##############################################
mcpp-2.7.2/config/ltmain.sh-5298-  # Follow symbolic links until we get to the real thisdir.
mcpp-2.7.2/config/ltmain.sh:5299:  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
mcpp-2.7.2/config/ltmain.sh-5300-  while test -n \"\$file\"; do
mcpp-2.7.2/config/ltmain.sh:5301:    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
mcpp-2.7.2/config/ltmain.sh-5302-
##############################################
mcpp-2.7.2/config/ltmain.sh-5310-
mcpp-2.7.2/config/ltmain.sh:5311:    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
mcpp-2.7.2/config/ltmain.sh:5312:    file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
mcpp-2.7.2/config/ltmain.sh-5313-  done
##############################################
mcpp-2.7.2/config/ltmain.sh-5315-  # Try to get the absolute directory name.
mcpp-2.7.2/config/ltmain.sh:5316:  absdir=\`cd \"\$thisdir\" && pwd\`
mcpp-2.7.2/config/ltmain.sh-5317-  test -n \"\$absdir\" && thisdir=\"\$absdir\"
##############################################
mcpp-2.7.2/config/ltmain.sh-5325-  if test ! -f \"\$progdir/\$program\" || \\
mcpp-2.7.2/config/ltmain.sh:5326:     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
mcpp-2.7.2/config/ltmain.sh-5327-       test \"X\$file\" != \"X\$progdir/\$program\"; }; then
##############################################
mcpp-2.7.2/config/ltmain.sh-5340-    if test -n \"\$relink_command\"; then
mcpp-2.7.2/config/ltmain.sh:5341:      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
mcpp-2.7.2/config/ltmain.sh-5342-      else
##############################################
mcpp-2.7.2/config/ltmain.sh-5372-    # The second colon is a workaround for a bug in BeOS R4 sed
mcpp-2.7.2/config/ltmain.sh:5373:    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
mcpp-2.7.2/config/ltmain.sh-5374-
##############################################
mcpp-2.7.2/config/ltmain.sh-5485-	  do
mcpp-2.7.2/config/ltmain.sh:5486:	    objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-5487-	    case " $oldobjs " in
##############################################
mcpp-2.7.2/config/ltmain.sh-5493-		newobj=lt$counter-$objbase
mcpp-2.7.2/config/ltmain.sh:5494:		counter=`expr $counter + 1`
mcpp-2.7.2/config/ltmain.sh-5495-		case " $oldobjs " in
##############################################
mcpp-2.7.2/config/ltmain.sh-5511-
mcpp-2.7.2/config/ltmain.sh:5512:	if len=`expr "X$cmds" : ".*"` &&
mcpp-2.7.2/config/ltmain.sh-5513-	     test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
##############################################
mcpp-2.7.2/config/ltmain.sh-5533-	    eval test_cmds=\"$old_archive_cmds\"
mcpp-2.7.2/config/ltmain.sh:5534:	    if len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
mcpp-2.7.2/config/ltmain.sh-5535-	       test "$len" -le "$max_cmd_len"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-5585-	else
mcpp-2.7.2/config/ltmain.sh:5586:	  var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-5587-	  relink_command="$var=\"$var_value\"; export $var; $relink_command"
##############################################
mcpp-2.7.2/config/ltmain.sh-5591-      relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
mcpp-2.7.2/config/ltmain.sh:5592:      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-5593-      if test "$hardcode_automatic" = yes ; then
##############################################
mcpp-2.7.2/config/ltmain.sh-5610-	      *.la)
mcpp-2.7.2/config/ltmain.sh:5611:		name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh:5612:		eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
mcpp-2.7.2/config/ltmain.sh-5613-		if test -z "$libdir"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-5624-	    for lib in $dlfiles; do
mcpp-2.7.2/config/ltmain.sh:5625:	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh:5626:	      eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
mcpp-2.7.2/config/ltmain.sh-5627-	      if test -z "$libdir"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-5635-	    for lib in $dlprefiles; do
mcpp-2.7.2/config/ltmain.sh:5636:	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh:5637:	      eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
mcpp-2.7.2/config/ltmain.sh-5638-	      if test -z "$libdir"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-5732-      # Aesthetically quote it.
mcpp-2.7.2/config/ltmain.sh:5733:      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-5734-      case $arg in
##############################################
mcpp-2.7.2/config/ltmain.sh-5748-    # Aesthetically quote it.
mcpp-2.7.2/config/ltmain.sh:5749:    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-5750-    case $arg in
##############################################
mcpp-2.7.2/config/ltmain.sh-5799-      # Aesthetically quote the argument.
mcpp-2.7.2/config/ltmain.sh:5800:      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-5801-      case $arg in
##############################################
mcpp-2.7.2/config/ltmain.sh-5831-    # Strip any trailing slash from the destination.
mcpp-2.7.2/config/ltmain.sh:5832:    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
mcpp-2.7.2/config/ltmain.sh-5833-
##############################################
mcpp-2.7.2/config/ltmain.sh-5839-    else
mcpp-2.7.2/config/ltmain.sh:5840:      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-5841-      test "X$destdir" = "X$dest" && destdir=.
mcpp-2.7.2/config/ltmain.sh:5842:      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-5843-
##############################################
mcpp-2.7.2/config/ltmain.sh-5915-
mcpp-2.7.2/config/ltmain.sh:5916:	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
mcpp-2.7.2/config/ltmain.sh-5917-	test "X$dir" = "X$file/" && dir=
##############################################
mcpp-2.7.2/config/ltmain.sh-5921-	  # Determine the prefix the user has applied to our future dir.
mcpp-2.7.2/config/ltmain.sh:5922:	  inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"`
mcpp-2.7.2/config/ltmain.sh-5923-
##############################################
mcpp-2.7.2/config/ltmain.sh-5936-	    # Stick the inst_prefix_dir data into the link command.
mcpp-2.7.2/config/ltmain.sh:5937:	    relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
mcpp-2.7.2/config/ltmain.sh-5938-	  else
mcpp-2.7.2/config/ltmain.sh:5939:	    relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
mcpp-2.7.2/config/ltmain.sh-5940-	  fi
##############################################
mcpp-2.7.2/config/ltmain.sh-6005-	# Install the pseudo-library for information purposes.
mcpp-2.7.2/config/ltmain.sh:6006:	name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-6007-	instname="$dir/$name"i
##############################################
mcpp-2.7.2/config/ltmain.sh-6021-	else
mcpp-2.7.2/config/ltmain.sh:6022:	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-6023-	  destfile="$destdir/$destfile"
##############################################
mcpp-2.7.2/config/ltmain.sh-6028-	*.lo)
mcpp-2.7.2/config/ltmain.sh:6029:	  staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
mcpp-2.7.2/config/ltmain.sh-6030-	  ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-6050-	  # Deduce the name of the old-style object file.
mcpp-2.7.2/config/ltmain.sh:6051:	  staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
mcpp-2.7.2/config/ltmain.sh-6052-
##############################################
mcpp-2.7.2/config/ltmain.sh-6063-	else
mcpp-2.7.2/config/ltmain.sh:6064:	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-6065-	  destfile="$destdir/$destfile"
##############################################
mcpp-2.7.2/config/ltmain.sh-6074-	    if test ! -f "$file"; then
mcpp-2.7.2/config/ltmain.sh:6075:	      file=`$echo $file|${SED} 's,.exe$,,'`
mcpp-2.7.2/config/ltmain.sh-6076-	      stripped_ext=".exe"
##############################################
mcpp-2.7.2/config/ltmain.sh-6083-	*cygwin*|*mingw*)
mcpp-2.7.2/config/ltmain.sh:6084:	    wrapper=`$echo $file | ${SED} -e 's,.exe$,,'`
mcpp-2.7.2/config/ltmain.sh-6085-	    ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-6121-	    fi
mcpp-2.7.2/config/ltmain.sh:6122:	    libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
mcpp-2.7.2/config/ltmain.sh-6123-	    if test -n "$libdir" && test ! -f "$libfile"; then
mcpp-2.7.2/config/ltmain.sh:6124:	      $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
mcpp-2.7.2/config/ltmain.sh-6125-	      finalize=no
##############################################
mcpp-2.7.2/config/ltmain.sh-6144-	      tmpdir=`func_mktempdir`
mcpp-2.7.2/config/ltmain.sh:6145:	      file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-6146-	      outputname="$tmpdir/$file"
mcpp-2.7.2/config/ltmain.sh-6147-	      # Replace the output file specification.
mcpp-2.7.2/config/ltmain.sh:6148:	      relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
mcpp-2.7.2/config/ltmain.sh-6149-
##############################################
mcpp-2.7.2/config/ltmain.sh-6162-	    # Install the binary that we compiled earlier.
mcpp-2.7.2/config/ltmain.sh:6163:	    file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
mcpp-2.7.2/config/ltmain.sh-6164-	  fi
##############################################
mcpp-2.7.2/config/ltmain.sh-6178-	  *:*.exe)
mcpp-2.7.2/config/ltmain.sh:6179:	    destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'`
mcpp-2.7.2/config/ltmain.sh-6180-	    ;;
##############################################
mcpp-2.7.2/config/ltmain.sh-6191-    for file in $staticlibs; do
mcpp-2.7.2/config/ltmain.sh:6192:      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-6193-
##############################################
mcpp-2.7.2/config/ltmain.sh-6348-	  # Warn if it was a shared library.
mcpp-2.7.2/config/ltmain.sh:6349:	  test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
mcpp-2.7.2/config/ltmain.sh-6350-	  continue
##############################################
mcpp-2.7.2/config/ltmain.sh-6352-
mcpp-2.7.2/config/ltmain.sh:6353:	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-6354-	test "X$dir" = "X$file" && dir=.
##############################################
mcpp-2.7.2/config/ltmain.sh-6358-	else
mcpp-2.7.2/config/ltmain.sh:6359:	  $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
mcpp-2.7.2/config/ltmain.sh-6360-	  exit $EXIT_FAILURE
##############################################
mcpp-2.7.2/config/ltmain.sh-6365-	# Just add the directory containing the .lo file.
mcpp-2.7.2/config/ltmain.sh:6366:	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-6367-	test "X$dir" = "X$file" && dir=.
##############################################
mcpp-2.7.2/config/ltmain.sh-6376-      # Get the absolute pathname.
mcpp-2.7.2/config/ltmain.sh:6377:      absdir=`cd "$dir" && pwd`
mcpp-2.7.2/config/ltmain.sh-6378-      test -n "$absdir" && dir="$absdir"
##############################################
mcpp-2.7.2/config/ltmain.sh-6412-      # Quote arguments (to preserve shell metacharacters).
mcpp-2.7.2/config/ltmain.sh:6413:      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
mcpp-2.7.2/config/ltmain.sh-6414-      args="$args \"$file\""
##############################################
mcpp-2.7.2/config/ltmain.sh-6474-    for file in $files; do
mcpp-2.7.2/config/ltmain.sh:6475:      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
mcpp-2.7.2/config/ltmain.sh-6476-      if test "X$dir" = "X$file"; then
##############################################
mcpp-2.7.2/config/ltmain.sh-6481-      fi
mcpp-2.7.2/config/ltmain.sh:6482:      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
mcpp-2.7.2/config/ltmain.sh-6483-      test "$mode" = uninstall && objdir="$dir"
##############################################
mcpp-2.7.2/config/ltmain.sh-6591-	  *.exe)
mcpp-2.7.2/config/ltmain.sh:6592:	    file=`$echo $file|${SED} 's,.exe$,,'`
mcpp-2.7.2/config/ltmain.sh:6593:	    noexename=`$echo $name|${SED} 's,.exe$,,'`
mcpp-2.7.2/config/ltmain.sh-6594-	    # $file with .exe has already been added to rmfiles,
##############################################
mcpp-2.7.2/config/compile-105-# Name of file we expect compiler to create.
mcpp-2.7.2/config/compile:106:cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
mcpp-2.7.2/config/compile-107-
##############################################
mcpp-2.7.2/config/compile-111-# object file name, since that is what matters with a parallel build.
mcpp-2.7.2/config/compile:112:lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
mcpp-2.7.2/config/compile-113-while true; do
##############################################
mcpp-2.7.2/config/install-sh-210-      fi
mcpp-2.7.2/config/install-sh:211:      dst=$dst/`basename "$src"`
mcpp-2.7.2/config/install-sh-212-    fi
##############################################
mcpp-2.7.2/config/install-sh-215-  # This sed command emulates the dirname command.
mcpp-2.7.2/config/install-sh:216:  dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
mcpp-2.7.2/config/install-sh-217-
##############################################
mcpp-2.7.2/config/install-sh-228-    IFS='%'
mcpp-2.7.2/config/install-sh:229:    set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
mcpp-2.7.2/config/install-sh-230-    shift
##############################################
mcpp-2.7.2/config/install-sh-256-  else
mcpp-2.7.2/config/install-sh:257:    dstfile=`basename "$dst"`
mcpp-2.7.2/config/install-sh-258-
##############################################
mcpp-2.7.2/Makefile.in-271-	  else file=$$i; fi; \
mcpp-2.7.2/Makefile.in:272:	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
mcpp-2.7.2/Makefile.in-273-	  case "$$ext" in \
##############################################
mcpp-2.7.2/Makefile.in-276-	  esac; \
mcpp-2.7.2/Makefile.in:277:	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
mcpp-2.7.2/Makefile.in:278:	  inst=`echo $$inst | sed -e 's/^.*\///'`; \
mcpp-2.7.2/Makefile.in:279:	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
mcpp-2.7.2/Makefile.in-280-	  echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
##############################################
mcpp-2.7.2/Makefile.in-292-	for i in $$list; do \
mcpp-2.7.2/Makefile.in:293:	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
mcpp-2.7.2/Makefile.in-294-	  case "$$ext" in \
##############################################
mcpp-2.7.2/Makefile.in-297-	  esac; \
mcpp-2.7.2/Makefile.in:298:	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
mcpp-2.7.2/Makefile.in:299:	  inst=`echo $$inst | sed -e 's/^.*\///'`; \
mcpp-2.7.2/Makefile.in:300:	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
mcpp-2.7.2/Makefile.in-301-	  echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \
##############################################
mcpp-2.7.2/Makefile.in-319-	dot_seen=no; \
mcpp-2.7.2/Makefile.in:320:	target=`echo $@ | sed s/-recursive//`; \
mcpp-2.7.2/Makefile.in-321-	list='$(SUBDIRS)'; for subdir in $$list; do \
##############################################
mcpp-2.7.2/Makefile.in-354-	rev="$$rev ."; \
mcpp-2.7.2/Makefile.in:355:	target=`echo $@ | sed s/-recursive//`; \
mcpp-2.7.2/Makefile.in-356-	for subdir in $$rev; do \
##############################################
mcpp-2.7.2/Makefile.in-428-GTAGS:
mcpp-2.7.2/Makefile.in:429:	here=`$(am__cd) $(top_builddir) && pwd` \
mcpp-2.7.2/Makefile.in-430-	  && cd $(top_srcdir) \
##############################################
mcpp-2.7.2/Makefile.in-438-	test -d $(distdir) || mkdir $(distdir)
mcpp-2.7.2/Makefile.in:439:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
mcpp-2.7.2/Makefile.in:440:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
mcpp-2.7.2/Makefile.in-441-	list='$(DISTFILES)'; \
##############################################
mcpp-2.7.2/Makefile.in-452-	  if test -d $$d/$$file; then \
mcpp-2.7.2/Makefile.in:453:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
mcpp-2.7.2/Makefile.in-454-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
##############################################
mcpp-2.7.2/Makefile.in-468-	    || exit 1; \
mcpp-2.7.2/Makefile.in:469:	    distdir=`$(am__cd) $(distdir) && pwd`; \
mcpp-2.7.2/Makefile.in:470:	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
mcpp-2.7.2/Makefile.in-471-	    (cd $$subdir && \
##############################################
mcpp-2.7.2/Makefile.in-530-	chmod a-w $(distdir)
mcpp-2.7.2/Makefile.in:531:	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
mcpp-2.7.2/Makefile.in-532-	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
##############################################
mcpp-2.7.2/Makefile.in-561-	@cd $(distuninstallcheck_dir) \
mcpp-2.7.2/Makefile.in:562:	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
mcpp-2.7.2/Makefile.in-563-	   || { echo "ERROR: files left after uninstall:" ; \
##############################################
mcpp-2.7.2/Makefile.in-573-	fi
mcpp-2.7.2/Makefile.in:574:	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
mcpp-2.7.2/Makefile.in-575-	  || { echo "ERROR: files left in build directory after distclean:" ; \
##############################################
mcpp-2.7.2/configure-109-do
mcpp-2.7.2/configure:110:  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
mcpp-2.7.2/configure-111-    eval $as_var=C; export $as_var
##############################################
mcpp-2.7.2/configure-217-  test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
mcpp-2.7.2/configure:218:  test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
mcpp-2.7.2/configure-219-") 2> /dev/null; then
##############################################
mcpp-2.7.2/configure-332-  test "x$as_lineno_1" != "x$as_lineno_2" &&
mcpp-2.7.2/configure:333:  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
mcpp-2.7.2/configure-334-
##############################################
mcpp-2.7.2/configure-427-  test "x$as_lineno_1" != "x$as_lineno_2" &&
mcpp-2.7.2/configure:428:  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
mcpp-2.7.2/configure-429-
##############################################
mcpp-2.7.2/configure-538-	esac;
mcpp-2.7.2/configure:539:	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
mcpp-2.7.2/configure-540-	???[sx]*):;;*)false;;esac;fi
##############################################
mcpp-2.7.2/configure-560-  # Remove one level of quotation (which was required for Make).
mcpp-2.7.2/configure:561:  ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','`
mcpp-2.7.2/configure-562-  ;;
##############################################
mcpp-2.7.2/configure-571-  :
mcpp-2.7.2/configure:572:elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
mcpp-2.7.2/configure-573-  # Yippee, $echo works!
##############################################
mcpp-2.7.2/configure-597-    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
mcpp-2.7.2/configure:598:    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
mcpp-2.7.2/configure:599:       echo_test_string=`eval $cmd` &&
mcpp-2.7.2/configure-600-       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
##############################################
mcpp-2.7.2/configure-606-
mcpp-2.7.2/configure:607:if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
mcpp-2.7.2/configure:608:   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/configure-609-   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/configure-621-    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
mcpp-2.7.2/configure:622:       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
mcpp-2.7.2/configure:623:       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/configure-624-       test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/configure-633-    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
mcpp-2.7.2/configure:634:       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/configure-635-       test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/configure-648-      echo='printf %s\n'
mcpp-2.7.2/configure:649:      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
mcpp-2.7.2/configure:650:	 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/configure-651-	 test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/configure-653-	:
mcpp-2.7.2/configure:654:      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
mcpp-2.7.2/configure-655-	   test "X$echo_testing_string" = 'X\t' &&
mcpp-2.7.2/configure:656:	   echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/configure-657-	   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/configure-662-	echo="$CONFIG_SHELL $0 --fallback-echo"
mcpp-2.7.2/configure:663:      elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
mcpp-2.7.2/configure-664-	   test "X$echo_testing_string" = 'X\t' &&
mcpp-2.7.2/configure:665:	   echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
mcpp-2.7.2/configure-666-	   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
mcpp-2.7.2/configure-672-	for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
mcpp-2.7.2/configure:673:	  if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
mcpp-2.7.2/configure-674-	  then
##############################################
mcpp-2.7.2/configure-680-	if test "$prev" != 'sed 50q "$0"'; then
mcpp-2.7.2/configure:681:	  echo_test_string=`eval $prev`
mcpp-2.7.2/configure-682-	  export echo_test_string
##############################################
mcpp-2.7.2/configure-962-  case $ac_option in
mcpp-2.7.2/configure:963:  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
mcpp-2.7.2/configure-964-  *)	ac_optarg=yes ;;
##############################################
mcpp-2.7.2/configure-1005-  -disable-* | --disable-*)
mcpp-2.7.2/configure:1006:    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
mcpp-2.7.2/configure-1007-    # Reject names that are not valid shell variable names.
##############################################
mcpp-2.7.2/configure-1010-   { (exit 1); exit 1; }; }
mcpp-2.7.2/configure:1011:    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
mcpp-2.7.2/configure-1012-    eval enable_$ac_feature=no ;;
##############################################
mcpp-2.7.2/configure-1024-  -enable-* | --enable-*)
mcpp-2.7.2/configure:1025:    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
mcpp-2.7.2/configure-1026-    # Reject names that are not valid shell variable names.
##############################################
mcpp-2.7.2/configure-1029-   { (exit 1); exit 1; }; }
mcpp-2.7.2/configure:1030:    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
mcpp-2.7.2/configure-1031-    eval enable_$ac_feature=\$ac_optarg ;;
##############################################
mcpp-2.7.2/configure-1221-  -with-* | --with-*)
mcpp-2.7.2/configure:1222:    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
mcpp-2.7.2/configure-1223-    # Reject names that are not valid shell variable names.
##############################################
mcpp-2.7.2/configure-1226-   { (exit 1); exit 1; }; }
mcpp-2.7.2/configure:1227:    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
mcpp-2.7.2/configure-1228-    eval with_$ac_package=\$ac_optarg ;;
##############################################
mcpp-2.7.2/configure-1230-  -without-* | --without-*)
mcpp-2.7.2/configure:1231:    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
mcpp-2.7.2/configure-1232-    # Reject names that are not valid shell variable names.
##############################################
mcpp-2.7.2/configure-1235-   { (exit 1); exit 1; }; }
mcpp-2.7.2/configure:1236:    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
mcpp-2.7.2/configure-1237-    eval with_$ac_package=no ;;
##############################################
mcpp-2.7.2/configure-1262-  *=*)
mcpp-2.7.2/configure:1263:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
mcpp-2.7.2/configure-1264-    # Reject names that are not valid shell variable names.
##############################################
mcpp-2.7.2/configure-1282-if test -n "$ac_prev"; then
mcpp-2.7.2/configure:1283:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
mcpp-2.7.2/configure-1284-  { echo "$as_me: error: missing argument to $ac_option" >&2
##############################################
mcpp-2.7.2/configure-1328-ac_ls_di=`ls -di .` &&
mcpp-2.7.2/configure:1329:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
mcpp-2.7.2/configure-1330-  { echo "$as_me: error: Working directory cannot be determined" >&2
##############################################
mcpp-2.7.2/configure-1388-case $srcdir in
mcpp-2.7.2/configure:1389:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
mcpp-2.7.2/configure-1390-esac
##############################################
mcpp-2.7.2/configure-1431-By default, \`make install' will install all the files in
mcpp-2.7.2/configure:1432:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
mcpp-2.7.2/configure:1433:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
mcpp-2.7.2/configure-1434-for instance \`--prefix=\$HOME'.
##############################################
mcpp-2.7.2/configure-1566-*)
mcpp-2.7.2/configure:1567:  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
mcpp-2.7.2/configure-1568-  # A ".." for each directory in $ac_dir_suffix.
mcpp-2.7.2/configure:1569:  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
mcpp-2.7.2/configure-1570-  case $ac_top_builddir_sub in
##############################################
mcpp-2.7.2/configure-1699-    *\'*)
mcpp-2.7.2/configure:1700:      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
mcpp-2.7.2/configure-1701-    esac
##############################################
mcpp-2.7.2/configure-1785-      case $ac_val in
mcpp-2.7.2/configure:1786:      *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
mcpp-2.7.2/configure-1787-      esac
##############################################
mcpp-2.7.2/configure-1802-	case $ac_val in
mcpp-2.7.2/configure:1803:	*\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
mcpp-2.7.2/configure-1804-	esac
##############################################
mcpp-2.7.2/configure-1910-    set,)
mcpp-2.7.2/configure:1911:      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
mcpp-2.7.2/configure:1912:echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
mcpp-2.7.2/configure-1913-      ac_cache_corrupted=: ;;
##############################################
mcpp-2.7.2/configure-1932-    case $ac_new_val in
mcpp-2.7.2/configure:1933:    *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
mcpp-2.7.2/configure-1934-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
mcpp-2.7.2/configure-2027-test "x$ac_build_alias" = x &&
mcpp-2.7.2/configure:2028:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
mcpp-2.7.2/configure-2029-test "x$ac_build_alias" = x &&
##############################################
mcpp-2.7.2/configure-2032-   { (exit 1); exit 1; }; }
mcpp-2.7.2/configure:2033:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
mcpp-2.7.2/configure-2034-  { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
##############################################
mcpp-2.7.2/configure-2057-IFS=$ac_save_IFS
mcpp-2.7.2/configure:2058:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
mcpp-2.7.2/configure-2059-
##############################################
mcpp-2.7.2/configure-2068-else
mcpp-2.7.2/configure:2069:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
mcpp-2.7.2/configure-2070-    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
##############################################
mcpp-2.7.2/configure-2094-IFS=$ac_save_IFS
mcpp-2.7.2/configure:2095:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
mcpp-2.7.2/configure-2096-
##############################################
mcpp-2.7.2/configure-2105-else
mcpp-2.7.2/configure:2106:  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
mcpp-2.7.2/configure-2107-    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5
##############################################
mcpp-2.7.2/configure-2131-IFS=$ac_save_IFS
mcpp-2.7.2/configure:2132:case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
mcpp-2.7.2/configure-2133-
##############################################
mcpp-2.7.2/configure-2233-if (
mcpp-2.7.2/configure:2234:   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
mcpp-2.7.2/configure-2235-   if test "$*" = "X"; then
mcpp-2.7.2/configure-2236-      # -L didn't work.
mcpp-2.7.2/configure:2237:      set X `ls -t $srcdir/configure conftest.file`
mcpp-2.7.2/configure-2238-   fi
##############################################
mcpp-2.7.2/configure-2277-_ACEOF
mcpp-2.7.2/configure:2278:program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
mcpp-2.7.2/configure-2279-rm -f conftest.sed
##############################################
mcpp-2.7.2/configure-2281-# expand $ac_aux_dir to an absolute path
mcpp-2.7.2/configure:2282:am_aux_dir=`cd $ac_aux_dir && pwd`
mcpp-2.7.2/configure-2283-
##############################################
mcpp-2.7.2/configure-2307-	   { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
mcpp-2.7.2/configure:2308:	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
mcpp-2.7.2/configure-2309-	     'mkdir (GNU coreutils) '* | \
##############################################
mcpp-2.7.2/configure-2385-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
mcpp-2.7.2/configure:2386:set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
mcpp-2.7.2/configure-2387-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
##############################################
mcpp-2.7.2/configure-2395-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
mcpp-2.7.2/configure:2396:case `${MAKE-make} -f conftest.make 2>/dev/null` in
mcpp-2.7.2/configure-2397-  *@@@%%%=?*=@@@%%%*)
##############################################
mcpp-2.7.2/configure-2422-
mcpp-2.7.2/configure:2423:if test "`cd $srcdir && pwd`" != "`pwd`"; then
mcpp-2.7.2/configure-2424-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
mcpp-2.7.2/configure-2908-echo "$as_me:$LINENO: checking for C compiler version" >&5
mcpp-2.7.2/configure:2909:ac_compiler=`set X $ac_compile; echo $2`
mcpp-2.7.2/configure-2910-{ (ac_try="$ac_compiler --version >&5"
##############################################
mcpp-2.7.2/configure-2962-echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
mcpp-2.7.2/configure:2963:ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
mcpp-2.7.2/configure-2964-#
##############################################
mcpp-2.7.2/configure-3010-	then :; else
mcpp-2.7.2/configure:3011:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
mcpp-2.7.2/configure-3012-	fi
##############################################
mcpp-2.7.2/configure-3107-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
mcpp-2.7.2/configure:3108:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
mcpp-2.7.2/configure-3109-	  break;;
##############################################
mcpp-2.7.2/configure-3162-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
mcpp-2.7.2/configure:3163:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
mcpp-2.7.2/configure-3164-       break;;
##############################################
mcpp-2.7.2/configure-3237-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
mcpp-2.7.2/configure:3238:GCC=`test $ac_compiler_gnu = yes && echo yes`
mcpp-2.7.2/configure-3239-ac_test_CFLAGS=${CFLAGS+set}
##############################################
mcpp-2.7.2/configure-3847-  # Check for GNU $ac_path_GREP
mcpp-2.7.2/configure:3848:case `"$ac_path_GREP" --version 2>&1` in
mcpp-2.7.2/configure-3849-*GNU*)
##############################################
mcpp-2.7.2/configure-3861-    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
mcpp-2.7.2/configure:3862:    ac_count=`expr $ac_count + 1`
mcpp-2.7.2/configure-3863-    if test $ac_count -gt ${ac_path_GREP_max-0}; then
##############################################
mcpp-2.7.2/configure-3929-  # Check for GNU $ac_path_EGREP
mcpp-2.7.2/configure:3930:case `"$ac_path_EGREP" --version 2>&1` in
mcpp-2.7.2/configure-3931-*GNU*)
##############################################
mcpp-2.7.2/configure-3943-    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
mcpp-2.7.2/configure:3944:    ac_count=`expr $ac_count + 1`
mcpp-2.7.2/configure-3945-    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
##############################################
mcpp-2.7.2/configure-4102-    test $lt_ac_count -gt 10 && break
mcpp-2.7.2/configure:4103:    lt_ac_count=`expr $lt_ac_count + 1`
mcpp-2.7.2/configure-4104-    if test $lt_ac_count -gt $lt_ac_max; then
##############################################
mcpp-2.7.2/configure-4132-    # gcc leaves a trailing carriage return which upsets mingw
mcpp-2.7.2/configure:4133:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
mcpp-2.7.2/configure-4134-  *)
mcpp-2.7.2/configure:4135:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
mcpp-2.7.2/configure-4136-  esac
##############################################
mcpp-2.7.2/configure-4141-      # Canonicalize the pathname of ld
mcpp-2.7.2/configure:4142:      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
mcpp-2.7.2/configure-4143-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
mcpp-2.7.2/configure:4144:	ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
mcpp-2.7.2/configure-4145-      done
##############################################
mcpp-2.7.2/configure-4176-      # Break only if it was the GNU/non-GNU ld that we prefer.
mcpp-2.7.2/configure:4177:      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
mcpp-2.7.2/configure-4178-      *GNU* | *'with BFD'*)
##############################################
mcpp-2.7.2/configure-4209-  # I'd rather use --version here, but apparently some GNU lds only accept -v.
mcpp-2.7.2/configure:4210:case `$LD -v 2>&1 </dev/null` in
mcpp-2.7.2/configure-4211-*GNU* | *'with BFD'*)
##############################################
mcpp-2.7.2/configure-4272-	# Tru64's nm complains that /dev/null is an invalid object file
mcpp-2.7.2/configure:4273:	case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
mcpp-2.7.2/configure-4274-	*/dev/null* | *'Invalid file or object type'*)
##############################################
mcpp-2.7.2/configure-4278-	*)
mcpp-2.7.2/configure:4279:	  case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
mcpp-2.7.2/configure-4280-	  */dev/null*)
##############################################
mcpp-2.7.2/configure-4440-openbsd*)
mcpp-2.7.2/configure:4441:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-4442-    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$'
##############################################
mcpp-2.7.2/configure-4525-  (exit $ac_status); }; then
mcpp-2.7.2/configure:4526:    case `/usr/bin/file conftest.$ac_objext` in
mcpp-2.7.2/configure-4527-    *ELF-32*)
##############################################
mcpp-2.7.2/configure-4545-   if test "$lt_cv_prog_gnu_ld" = yes; then
mcpp-2.7.2/configure:4546:    case `/usr/bin/file conftest.$ac_objext` in
mcpp-2.7.2/configure-4547-    *32-bit*)
##############################################
mcpp-2.7.2/configure-4557-   else
mcpp-2.7.2/configure:4558:    case `/usr/bin/file conftest.$ac_objext` in
mcpp-2.7.2/configure-4559-    *32-bit*)
##############################################
mcpp-2.7.2/configure-5195-do
mcpp-2.7.2/configure:5196:as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
mcpp-2.7.2/configure-5197-{ echo "$as_me:$LINENO: checking for $ac_header" >&5
##############################################
mcpp-2.7.2/configure-5238-fi
mcpp-2.7.2/configure:5239:ac_res=`eval echo '${'$as_ac_Header'}'`
mcpp-2.7.2/configure-5240-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
mcpp-2.7.2/configure-5241-echo "${ECHO_T}$ac_res" >&6; }
mcpp-2.7.2/configure:5242:if test `eval echo '${'$as_ac_Header'}'` = yes; then
mcpp-2.7.2/configure-5243-  cat >>confdefs.h <<_ACEOF
mcpp-2.7.2/configure:5244:#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
mcpp-2.7.2/configure-5245-_ACEOF
##############################################
mcpp-2.7.2/configure-5254-do
mcpp-2.7.2/configure:5255:as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
mcpp-2.7.2/configure-5256-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
##############################################
mcpp-2.7.2/configure-5261-fi
mcpp-2.7.2/configure:5262:ac_res=`eval echo '${'$as_ac_Header'}'`
mcpp-2.7.2/configure-5263-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
##############################################
mcpp-2.7.2/configure-5382-fi
mcpp-2.7.2/configure:5383:ac_res=`eval echo '${'$as_ac_Header'}'`
mcpp-2.7.2/configure-5384-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
##############################################
mcpp-2.7.2/configure-5387-fi
mcpp-2.7.2/configure:5388:if test `eval echo '${'$as_ac_Header'}'` = yes; then
mcpp-2.7.2/configure-5389-  cat >>confdefs.h <<_ACEOF
mcpp-2.7.2/configure:5390:#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
mcpp-2.7.2/configure-5391-_ACEOF
##############################################
mcpp-2.7.2/configure-5513-echo "$as_me:$LINENO: checking for C++ compiler version" >&5
mcpp-2.7.2/configure:5514:ac_compiler=`set X $ac_compile; echo $2`
mcpp-2.7.2/configure-5515-{ (ac_try="$ac_compiler --version >&5"
##############################################
mcpp-2.7.2/configure-5599-echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; }
mcpp-2.7.2/configure:5600:GXX=`test $ac_compiler_gnu = yes && echo yes`
mcpp-2.7.2/configure-5601-ac_test_CXXFLAGS=${CXXFLAGS+set}
##############################################
mcpp-2.7.2/configure-6105-echo "$as_me:$LINENO: checking for Fortran 77 compiler version" >&5
mcpp-2.7.2/configure:6106:ac_compiler=`set X $ac_compile; echo $2`
mcpp-2.7.2/configure-6107-{ (ac_try="$ac_compiler --version >&5"
##############################################
mcpp-2.7.2/configure-6247-
mcpp-2.7.2/configure:6248:G77=`test $ac_compiler_gnu = yes && echo yes`
mcpp-2.7.2/configure-6249-ac_ext=c
##############################################
mcpp-2.7.2/configure-6310-    # And add a safety zone
mcpp-2.7.2/configure:6311:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
mcpp-2.7.2/configure:6312:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
mcpp-2.7.2/configure-6313-    ;;
##############################################
mcpp-2.7.2/configure-6338-    if test -n "$kargmax"; then
mcpp-2.7.2/configure:6339:      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ 	]//'`
mcpp-2.7.2/configure-6340-    else
##############################################
mcpp-2.7.2/configure-6348-    SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
mcpp-2.7.2/configure:6349:    while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \
mcpp-2.7.2/configure-6350-	       = "XX$teststring") >/dev/null 2>&1 &&
mcpp-2.7.2/configure:6351:	    new_result=`expr "X$teststring" : ".*" 2>&1` &&
mcpp-2.7.2/configure-6352-	    lt_cv_sys_max_cmd_len=$new_result &&
##############################################
mcpp-2.7.2/configure-6354-    do
mcpp-2.7.2/configure:6355:      i=`expr $i + 1`
mcpp-2.7.2/configure-6356-      teststring=$teststring$teststring
##############################################
mcpp-2.7.2/configure-6361-    # It appears as though 1/2 is a usable value.
mcpp-2.7.2/configure:6362:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
mcpp-2.7.2/configure-6363-    ;;
##############################################
mcpp-2.7.2/configure-6454-# If we're using GNU nm, then use its standard symbol codes.
mcpp-2.7.2/configure:6455:case `$NM -V 2>&1` in
mcpp-2.7.2/configure-6456-*GNU* | *'with BFD'*)
##############################################
mcpp-2.7.2/configure-6990-done
mcpp-2.7.2/configure:6991:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/configure-6992-
##############################################
mcpp-2.7.2/configure-7018-	"file_magic "*)
mcpp-2.7.2/configure:7019:	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
mcpp-2.7.2/configure-7020-	  MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
##############################################
mcpp-2.7.2/configure-7080-	"file_magic "*)
mcpp-2.7.2/configure:7081:	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
mcpp-2.7.2/configure-7082-	  MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
##############################################
mcpp-2.7.2/configure-7637-  if test "$hard_links" = no; then
mcpp-2.7.2/configure:7638:    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
mcpp-2.7.2/configure:7639:echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
mcpp-2.7.2/configure-7640-    need_locks=warn
##############################################
mcpp-2.7.2/configure-7693-done
mcpp-2.7.2/configure:7694:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/configure-7695-
##############################################
mcpp-2.7.2/configure-7731-    supports_anon_versioning=no
mcpp-2.7.2/configure:7732:    case `$LD -v 2>/dev/null` in
mcpp-2.7.2/configure-7733-      *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
##############################################
mcpp-2.7.2/configure-7795-	# is EXPORTS), use it as is; otherwise, prepend...
mcpp-2.7.2/configure:7796:	archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
mcpp-2.7.2/configure-7797-	  cp $export_symbols $output_objdir/$soname.def;
##############################################
mcpp-2.7.2/configure-7818-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
mcpp-2.7.2/configure:7819:      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/configure:7820:      archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/configure-7821-      ;;
##############################################
mcpp-2.7.2/configure-7827-	pgcc*)				# Portland Group C compiler
mcpp-2.7.2/configure:7828:	  whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/configure-7829-	  tmp_addflag=' $pic_flag'
##############################################
mcpp-2.7.2/configure-7831-	pgf77* | pgf90* | pgf95*)	# Portland Group f77 and f90 compilers
mcpp-2.7.2/configure:7832:	  whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/configure-7833-	  tmp_addflag=' $pic_flag -Mnomain' ;;
##############################################
mcpp-2.7.2/configure-7886-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
mcpp-2.7.2/configure:7887:      case `$LD -v 2>&1` in
mcpp-2.7.2/configure-7888-        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
##############################################
mcpp-2.7.2/configure-7902-	  if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
mcpp-2.7.2/configure:7903:	    hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
mcpp-2.7.2/configure-7904-	    archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
##############################################
mcpp-2.7.2/configure-8001-	# below for broken collect2 doesn't work under 4.3+
mcpp-2.7.2/configure:8002:	  collect2name=`${CC} -print-prog-name=collect2`
mcpp-2.7.2/configure-8003-	  if test -f "$collect2name" && \
##############################################
mcpp-2.7.2/configure-8097-       hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
mcpp-2.7.2/configure:8098:	archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
mcpp-2.7.2/configure-8099-       else
##############################################
mcpp-2.7.2/configure-8193-      # FIXME: Setting linknames here is a bad hack.
mcpp-2.7.2/configure:8194:      archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
mcpp-2.7.2/configure-8195-      # The linker will automatically build a .lib file if we build a DLL.
##############################################
mcpp-2.7.2/configure-8198-      old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs'
mcpp-2.7.2/configure:8199:      fix_srcfile_path='`cygpath -w "$srcfile"`'
mcpp-2.7.2/configure-8200-      enable_shared_with_static_runtimes=yes
##############################################
mcpp-2.7.2/configure-8239-         output_verbose_link_cmd='echo'
mcpp-2.7.2/configure:8240:         archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
mcpp-2.7.2/configure-8241-         module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
mcpp-2.7.2/configure-8374-      if test "$GCC" = yes; then
mcpp-2.7.2/configure:8375:	archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-8376-      else
mcpp-2.7.2/configure:8377:	archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-8378-	hardcode_libdir_flag_spec_ld='-rpath $libdir'
##############################################
mcpp-2.7.2/configure-8406-      hardcode_shlibpath_var=no
mcpp-2.7.2/configure:8407:      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-8408-	archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
mcpp-2.7.2/configure-8436-	allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:8437:	archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-8438-      else
mcpp-2.7.2/configure-8439-	allow_undefined_flag=' -expect_unresolved \*'
mcpp-2.7.2/configure:8440:	archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-8441-      fi
##############################################
mcpp-2.7.2/configure-8448-	allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:8449:	archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-8450-	hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
##############################################
mcpp-2.7.2/configure-8452-	allow_undefined_flag=' -expect_unresolved \*'
mcpp-2.7.2/configure:8453:	archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure:8454:	archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
mcpp-2.7.2/configure:8455:	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
mcpp-2.7.2/configure-8456-
##############################################
mcpp-2.7.2/configure-8489- 	*)
mcpp-2.7.2/configure:8490: 	  whole_archive_flag_spec='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;;
mcpp-2.7.2/configure-8491- 	esac ;;
##############################################
mcpp-2.7.2/configure-8573-      hardcode_shlibpath_var=no
mcpp-2.7.2/configure:8574:      hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
mcpp-2.7.2/configure-8575-      hardcode_libdir_separator=':'
##############################################
mcpp-2.7.2/configure-8683-if test "$GCC" = yes; then
mcpp-2.7.2/configure:8684:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/configure-8685-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
mcpp-2.7.2/configure-8689-    # okay in the real world where ";" in dirpaths is itself problematic.
mcpp-2.7.2/configure:8690:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/configure-8691-  else
mcpp-2.7.2/configure:8692:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/configure-8693-  fi
##############################################
mcpp-2.7.2/configure-8760-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
mcpp-2.7.2/configure:8761:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
mcpp-2.7.2/configure-8762-  ;;
##############################################
mcpp-2.7.2/configure-8793-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
mcpp-2.7.2/configure:8794:    postinstall_cmds='base_file=`basename \${file}`~
mcpp-2.7.2/configure:8795:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
mcpp-2.7.2/configure:8796:      dldir=$destdir/`dirname \$dlpath`~
mcpp-2.7.2/configure-8797-      test -d \$dldir || mkdir -p \$dldir~
##############################################
mcpp-2.7.2/configure-8799-      chmod a+x \$dldir/$dlname'
mcpp-2.7.2/configure:8800:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
mcpp-2.7.2/configure-8801-      dlpath=$dir/\$dldll~
##############################################
mcpp-2.7.2/configure-8807-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
mcpp-2.7.2/configure:8808:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure-8809-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
mcpp-2.7.2/configure-8812-      # MinGW DLLs use traditional 'lib' prefix
mcpp-2.7.2/configure:8813:      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure:8814:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/configure-8815-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
##############################################
mcpp-2.7.2/configure-8821-        # which wouldn't understand a cygwinified path. Ahh.
mcpp-2.7.2/configure:8822:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/configure-8823-      else
mcpp-2.7.2/configure:8824:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/configure-8825-      fi
##############################################
mcpp-2.7.2/configure-8828-      # pw32 DLLs use 'pw' prefix rather than 'lib'
mcpp-2.7.2/configure:8829:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure-8830-      ;;
##############################################
mcpp-2.7.2/configure-8834-  *)
mcpp-2.7.2/configure:8835:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
mcpp-2.7.2/configure-8836-    ;;
##############################################
mcpp-2.7.2/configure-8851-  shlibpath_var=DYLD_LIBRARY_PATH
mcpp-2.7.2/configure:8852:  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
mcpp-2.7.2/configure-8853-  # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
mcpp-2.7.2/configure-8854-  if test "$GCC" = yes; then
mcpp-2.7.2/configure:8855:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
mcpp-2.7.2/configure-8856-  else
##############################################
mcpp-2.7.2/configure-9045-  if test -f /etc/ld.so.conf; then
mcpp-2.7.2/configure:9046:    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
mcpp-2.7.2/configure-9047-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
mcpp-2.7.2/configure-9117-  shlibpath_var=LD_LIBRARY_PATH
mcpp-2.7.2/configure:9118:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-9119-    case $host_os in
##############################################
mcpp-2.7.2/configure-10205-      # Double-quote double-evaled strings.
mcpp-2.7.2/configure:10206:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
mcpp-2.7.2/configure-10207-      ;;
mcpp-2.7.2/configure-10208-    *)
mcpp-2.7.2/configure:10209:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
mcpp-2.7.2/configure-10210-      ;;
##############################################
mcpp-2.7.2/configure-10215-  *'\$0 --fallback-echo"')
mcpp-2.7.2/configure:10216:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
mcpp-2.7.2/configure-10217-    ;;
##############################################
mcpp-2.7.2/configure-10228-
mcpp-2.7.2/configure:10229:# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
mcpp-2.7.2/configure-10230-# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
##############################################
mcpp-2.7.2/configure-10607-  # libtool script then.
mcpp-2.7.2/configure:10608:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
mcpp-2.7.2/configure-10609-  if test -f "$ltmain_in"; then
##############################################
mcpp-2.7.2/configure-10636-  if test -z "$LTCC"; then
mcpp-2.7.2/configure:10637:    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
mcpp-2.7.2/configure-10638-    if test -z "$LTCC"; then
##############################################
mcpp-2.7.2/configure-10641-    else
mcpp-2.7.2/configure:10642:      { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5
mcpp-2.7.2/configure:10643:echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;}
mcpp-2.7.2/configure-10644-    fi
##############################################
mcpp-2.7.2/configure-10646-  if test -z "$LTCFLAGS"; then
mcpp-2.7.2/configure:10647:    eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`"
mcpp-2.7.2/configure-10648-  fi
##############################################
mcpp-2.7.2/configure-10651-  # Note that this assumes the entire list is on one line.
mcpp-2.7.2/configure:10652:  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
mcpp-2.7.2/configure-10653-
##############################################
mcpp-2.7.2/configure-10657-    # Check whether tagname contains only valid characters
mcpp-2.7.2/configure:10658:    case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in
mcpp-2.7.2/configure-10659-    "") ;;
##############################################
mcpp-2.7.2/configure-10785-done
mcpp-2.7.2/configure:10786:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/configure-10787-
##############################################
mcpp-2.7.2/configure-10815-    # gcc leaves a trailing carriage return which upsets mingw
mcpp-2.7.2/configure:10816:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
mcpp-2.7.2/configure-10817-  *)
mcpp-2.7.2/configure:10818:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
mcpp-2.7.2/configure-10819-  esac
##############################################
mcpp-2.7.2/configure-10824-      # Canonicalize the pathname of ld
mcpp-2.7.2/configure:10825:      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
mcpp-2.7.2/configure-10826-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
mcpp-2.7.2/configure:10827:	ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
mcpp-2.7.2/configure-10828-      done
##############################################
mcpp-2.7.2/configure-10859-      # Break only if it was the GNU/non-GNU ld that we prefer.
mcpp-2.7.2/configure:10860:      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
mcpp-2.7.2/configure-10861-      *GNU* | *'with BFD'*)
##############################################
mcpp-2.7.2/configure-10892-  # I'd rather use --version here, but apparently some GNU lds only accept -v.
mcpp-2.7.2/configure:10893:case `$LD -v 2>&1 </dev/null` in
mcpp-2.7.2/configure-10894-*GNU* | *'with BFD'*)
##############################################
mcpp-2.7.2/configure-10922-    # ancient GNU ld didn't support --whole-archive et. al.
mcpp-2.7.2/configure:10923:    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
mcpp-2.7.2/configure-10924-	grep 'no-whole-archive' > /dev/null; then
##############################################
mcpp-2.7.2/configure-11004-      # below for broken collect2 doesn't work under 4.3+
mcpp-2.7.2/configure:11005:	collect2name=`${CC} -print-prog-name=collect2`
mcpp-2.7.2/configure-11006-	if test -f "$collect2name" && \
##############################################
mcpp-2.7.2/configure-11101-
mcpp-2.7.2/configure:11102:      archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
mcpp-2.7.2/configure-11103-     else
##############################################
mcpp-2.7.2/configure-11205-      # is EXPORTS), use it as is; otherwise, prepend...
mcpp-2.7.2/configure:11206:      archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
mcpp-2.7.2/configure-11207-	cp $export_symbols $output_objdir/$soname.def;
##############################################
mcpp-2.7.2/configure-11266-         output_verbose_link_cmd='echo'
mcpp-2.7.2/configure:11267:          archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
mcpp-2.7.2/configure-11268-          module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
mcpp-2.7.2/configure-11334-      # dependencies.
mcpp-2.7.2/configure:11335:      output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/configure-11336-      ;;
##############################################
mcpp-2.7.2/configure-11398-	# dependencies.
mcpp-2.7.2/configure:11399:	output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/configure-11400-	;;
##############################################
mcpp-2.7.2/configure-11433-    # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
mcpp-2.7.2/configure:11434:    archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/configure:11435:    archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/configure-11436-    ;;
##############################################
mcpp-2.7.2/configure-11440-	# SGI C++
mcpp-2.7.2/configure:11441:	archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-11442-
##############################################
mcpp-2.7.2/configure-11451-	  if test "$with_gnu_ld" = no; then
mcpp-2.7.2/configure:11452:	    archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-11453-	  else
mcpp-2.7.2/configure:11454:	    archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib'
mcpp-2.7.2/configure-11455-	  fi
##############################################
mcpp-2.7.2/configure-11470-	# to its proper name (with version) after linking.
mcpp-2.7.2/configure:11471:	archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
mcpp-2.7.2/configure:11472:	archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
mcpp-2.7.2/configure-11473-	# Commands to make compiler produce verbose output that lists
##############################################
mcpp-2.7.2/configure-11480-	# dependencies.
mcpp-2.7.2/configure:11481:	output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/configure-11482-
##############################################
mcpp-2.7.2/configure-11495-	# earlier do not add the objects themselves.
mcpp-2.7.2/configure:11496:	case `$CC -V 2>&1` in
mcpp-2.7.2/configure-11497-	*"Version 7."*)
##############################################
mcpp-2.7.2/configure-11521-	export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
mcpp-2.7.2/configure:11522:	whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/configure-11523-        ;;
##############################################
mcpp-2.7.2/configure-11540-	# dependencies.
mcpp-2.7.2/configure:11541:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/configure-11542-	;;
##############################################
mcpp-2.7.2/configure-11584-    hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
mcpp-2.7.2/configure:11585:    if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-11586-      archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
##############################################
mcpp-2.7.2/configure-11599-	# to its proper name (with version) after linking.
mcpp-2.7.2/configure:11600:	archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
mcpp-2.7.2/configure-11601-
##############################################
mcpp-2.7.2/configure-11616-	allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:11617:	archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-11618-
##############################################
mcpp-2.7.2/configure-11629-	# dependencies.
mcpp-2.7.2/configure:11630:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/configure-11631-	;;
##############################################
mcpp-2.7.2/configure-11634-	  allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:11635:	  archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-11636-
##############################################
mcpp-2.7.2/configure-11659-	# to its proper name (with version) after linking.
mcpp-2.7.2/configure:11660:	archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
mcpp-2.7.2/configure-11661-
##############################################
mcpp-2.7.2/configure-11675-	allow_undefined_flag_CXX=' -expect_unresolved \*'
mcpp-2.7.2/configure:11676:	archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure:11677:	archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
mcpp-2.7.2/configure-11678-	  echo "-hidden">> $lib.exp~
mcpp-2.7.2/configure:11679:	  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp  `test -n "$verstring" && echo -set_version	$verstring` -update_registry ${output_objdir}/so_locations -o $lib~
mcpp-2.7.2/configure-11680-	  $rm $lib.exp'
##############################################
mcpp-2.7.2/configure-11692-	# dependencies.
mcpp-2.7.2/configure:11693:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
mcpp-2.7.2/configure-11694-	;;
##############################################
mcpp-2.7.2/configure-11697-	  allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:11698:	 archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-11699-
##############################################
mcpp-2.7.2/configure-11759-	    # Supported since Solaris 2.6 (maybe 2.5.1?)
mcpp-2.7.2/configure:11760:	    whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract'
mcpp-2.7.2/configure-11761-	    ;;
##############################################
mcpp-2.7.2/configure-11847-    hardcode_shlibpath_var_CXX=no
mcpp-2.7.2/configure:11848:    hardcode_libdir_flag_spec_CXX='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
mcpp-2.7.2/configure-11849-    hardcode_libdir_separator_CXX=':'
##############################################
mcpp-2.7.2/configure-11919-  # eval without this substitution.
mcpp-2.7.2/configure:11920:  output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"`
mcpp-2.7.2/configure-11921-
mcpp-2.7.2/configure:11922:  for p in `eval $output_verbose_link_cmd`; do
mcpp-2.7.2/configure-11923-    case $p in
##############################################
mcpp-2.7.2/configure-12474-  if test "$hard_links" = no; then
mcpp-2.7.2/configure:12475:    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
mcpp-2.7.2/configure:12476:echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
mcpp-2.7.2/configure-12477-    need_locks=warn
##############################################
mcpp-2.7.2/configure-12593-if test "$GCC" = yes; then
mcpp-2.7.2/configure:12594:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/configure-12595-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
mcpp-2.7.2/configure-12599-    # okay in the real world where ";" in dirpaths is itself problematic.
mcpp-2.7.2/configure:12600:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/configure-12601-  else
mcpp-2.7.2/configure:12602:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/configure-12603-  fi
##############################################
mcpp-2.7.2/configure-12670-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
mcpp-2.7.2/configure:12671:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
mcpp-2.7.2/configure-12672-  ;;
##############################################
mcpp-2.7.2/configure-12703-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
mcpp-2.7.2/configure:12704:    postinstall_cmds='base_file=`basename \${file}`~
mcpp-2.7.2/configure:12705:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
mcpp-2.7.2/configure:12706:      dldir=$destdir/`dirname \$dlpath`~
mcpp-2.7.2/configure-12707-      test -d \$dldir || mkdir -p \$dldir~
##############################################
mcpp-2.7.2/configure-12709-      chmod a+x \$dldir/$dlname'
mcpp-2.7.2/configure:12710:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
mcpp-2.7.2/configure-12711-      dlpath=$dir/\$dldll~
##############################################
mcpp-2.7.2/configure-12717-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
mcpp-2.7.2/configure:12718:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure-12719-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
mcpp-2.7.2/configure-12722-      # MinGW DLLs use traditional 'lib' prefix
mcpp-2.7.2/configure:12723:      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure:12724:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/configure-12725-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
##############################################
mcpp-2.7.2/configure-12731-        # which wouldn't understand a cygwinified path. Ahh.
mcpp-2.7.2/configure:12732:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/configure-12733-      else
mcpp-2.7.2/configure:12734:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/configure-12735-      fi
##############################################
mcpp-2.7.2/configure-12738-      # pw32 DLLs use 'pw' prefix rather than 'lib'
mcpp-2.7.2/configure:12739:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure-12740-      ;;
##############################################
mcpp-2.7.2/configure-12744-  *)
mcpp-2.7.2/configure:12745:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
mcpp-2.7.2/configure-12746-    ;;
##############################################
mcpp-2.7.2/configure-12761-  shlibpath_var=DYLD_LIBRARY_PATH
mcpp-2.7.2/configure:12762:  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
mcpp-2.7.2/configure-12763-  # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
mcpp-2.7.2/configure-12764-  if test "$GCC" = yes; then
mcpp-2.7.2/configure:12765:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
mcpp-2.7.2/configure-12766-  else
##############################################
mcpp-2.7.2/configure-12955-  if test -f /etc/ld.so.conf; then
mcpp-2.7.2/configure:12956:    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
mcpp-2.7.2/configure-12957-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
mcpp-2.7.2/configure-13027-  shlibpath_var=LD_LIBRARY_PATH
mcpp-2.7.2/configure:13028:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-13029-    case $host_os in
##############################################
mcpp-2.7.2/configure-13272-      # Double-quote double-evaled strings.
mcpp-2.7.2/configure:13273:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
mcpp-2.7.2/configure-13274-      ;;
mcpp-2.7.2/configure-13275-    *)
mcpp-2.7.2/configure:13276:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
mcpp-2.7.2/configure-13277-      ;;
##############################################
mcpp-2.7.2/configure-13282-  *'\$0 --fallback-echo"')
mcpp-2.7.2/configure:13283:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
mcpp-2.7.2/configure-13284-    ;;
##############################################
mcpp-2.7.2/configure-13601-  # libtool script then.
mcpp-2.7.2/configure:13602:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
mcpp-2.7.2/configure-13603-  if test -f "$ltmain_in"; then
##############################################
mcpp-2.7.2/configure-13710-done
mcpp-2.7.2/configure:13711:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/configure-13712-
##############################################
mcpp-2.7.2/configure-14139-  if test "$hard_links" = no; then
mcpp-2.7.2/configure:14140:    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
mcpp-2.7.2/configure:14141:echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
mcpp-2.7.2/configure-14142-    need_locks=warn
##############################################
mcpp-2.7.2/configure-14195-done
mcpp-2.7.2/configure:14196:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/configure-14197-
##############################################
mcpp-2.7.2/configure-14233-    supports_anon_versioning=no
mcpp-2.7.2/configure:14234:    case `$LD -v 2>/dev/null` in
mcpp-2.7.2/configure-14235-      *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
##############################################
mcpp-2.7.2/configure-14297-	# is EXPORTS), use it as is; otherwise, prepend...
mcpp-2.7.2/configure:14298:	archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
mcpp-2.7.2/configure-14299-	  cp $export_symbols $output_objdir/$soname.def;
##############################################
mcpp-2.7.2/configure-14320-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
mcpp-2.7.2/configure:14321:      archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/configure:14322:      archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/configure-14323-      ;;
##############################################
mcpp-2.7.2/configure-14329-	pgcc*)				# Portland Group C compiler
mcpp-2.7.2/configure:14330:	  whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/configure-14331-	  tmp_addflag=' $pic_flag'
##############################################
mcpp-2.7.2/configure-14333-	pgf77* | pgf90* | pgf95*)	# Portland Group f77 and f90 compilers
mcpp-2.7.2/configure:14334:	  whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/configure-14335-	  tmp_addflag=' $pic_flag -Mnomain' ;;
##############################################
mcpp-2.7.2/configure-14388-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
mcpp-2.7.2/configure:14389:      case `$LD -v 2>&1` in
mcpp-2.7.2/configure-14390-        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
##############################################
mcpp-2.7.2/configure-14404-	  if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
mcpp-2.7.2/configure:14405:	    hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
mcpp-2.7.2/configure-14406-	    archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
##############################################
mcpp-2.7.2/configure-14503-	# below for broken collect2 doesn't work under 4.3+
mcpp-2.7.2/configure:14504:	  collect2name=`${CC} -print-prog-name=collect2`
mcpp-2.7.2/configure-14505-	  if test -f "$collect2name" && \
##############################################
mcpp-2.7.2/configure-14589-       hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath"
mcpp-2.7.2/configure:14590:	archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
mcpp-2.7.2/configure-14591-       else
##############################################
mcpp-2.7.2/configure-14675-      # FIXME: Setting linknames here is a bad hack.
mcpp-2.7.2/configure:14676:      archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
mcpp-2.7.2/configure-14677-      # The linker will automatically build a .lib file if we build a DLL.
##############################################
mcpp-2.7.2/configure-14680-      old_archive_cmds_F77='lib /OUT:$oldlib$oldobjs$old_deplibs'
mcpp-2.7.2/configure:14681:      fix_srcfile_path_F77='`cygpath -w "$srcfile"`'
mcpp-2.7.2/configure-14682-      enable_shared_with_static_runtimes_F77=yes
##############################################
mcpp-2.7.2/configure-14721-         output_verbose_link_cmd='echo'
mcpp-2.7.2/configure:14722:         archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
mcpp-2.7.2/configure-14723-         module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
mcpp-2.7.2/configure-14856-      if test "$GCC" = yes; then
mcpp-2.7.2/configure:14857:	archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-14858-      else
mcpp-2.7.2/configure:14859:	archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-14860-	hardcode_libdir_flag_spec_ld_F77='-rpath $libdir'
##############################################
mcpp-2.7.2/configure-14888-      hardcode_shlibpath_var_F77=no
mcpp-2.7.2/configure:14889:      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-14890-	archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
mcpp-2.7.2/configure-14918-	allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:14919:	archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-14920-      else
mcpp-2.7.2/configure-14921-	allow_undefined_flag_F77=' -expect_unresolved \*'
mcpp-2.7.2/configure:14922:	archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-14923-      fi
##############################################
mcpp-2.7.2/configure-14930-	allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:14931:	archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-14932-	hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir'
##############################################
mcpp-2.7.2/configure-14934-	allow_undefined_flag_F77=' -expect_unresolved \*'
mcpp-2.7.2/configure:14935:	archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure:14936:	archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
mcpp-2.7.2/configure:14937:	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
mcpp-2.7.2/configure-14938-
##############################################
mcpp-2.7.2/configure-14971- 	*)
mcpp-2.7.2/configure:14972: 	  whole_archive_flag_spec_F77='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;;
mcpp-2.7.2/configure-14973- 	esac ;;
##############################################
mcpp-2.7.2/configure-15055-      hardcode_shlibpath_var_F77=no
mcpp-2.7.2/configure:15056:      hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
mcpp-2.7.2/configure-15057-      hardcode_libdir_separator_F77=':'
##############################################
mcpp-2.7.2/configure-15165-if test "$GCC" = yes; then
mcpp-2.7.2/configure:15166:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/configure-15167-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
mcpp-2.7.2/configure-15171-    # okay in the real world where ";" in dirpaths is itself problematic.
mcpp-2.7.2/configure:15172:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/configure-15173-  else
mcpp-2.7.2/configure:15174:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/configure-15175-  fi
##############################################
mcpp-2.7.2/configure-15242-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
mcpp-2.7.2/configure:15243:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
mcpp-2.7.2/configure-15244-  ;;
##############################################
mcpp-2.7.2/configure-15275-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
mcpp-2.7.2/configure:15276:    postinstall_cmds='base_file=`basename \${file}`~
mcpp-2.7.2/configure:15277:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
mcpp-2.7.2/configure:15278:      dldir=$destdir/`dirname \$dlpath`~
mcpp-2.7.2/configure-15279-      test -d \$dldir || mkdir -p \$dldir~
##############################################
mcpp-2.7.2/configure-15281-      chmod a+x \$dldir/$dlname'
mcpp-2.7.2/configure:15282:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
mcpp-2.7.2/configure-15283-      dlpath=$dir/\$dldll~
##############################################
mcpp-2.7.2/configure-15289-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
mcpp-2.7.2/configure:15290:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure-15291-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
mcpp-2.7.2/configure-15294-      # MinGW DLLs use traditional 'lib' prefix
mcpp-2.7.2/configure:15295:      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure:15296:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/configure-15297-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
##############################################
mcpp-2.7.2/configure-15303-        # which wouldn't understand a cygwinified path. Ahh.
mcpp-2.7.2/configure:15304:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/configure-15305-      else
mcpp-2.7.2/configure:15306:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/configure-15307-      fi
##############################################
mcpp-2.7.2/configure-15310-      # pw32 DLLs use 'pw' prefix rather than 'lib'
mcpp-2.7.2/configure:15311:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure-15312-      ;;
##############################################
mcpp-2.7.2/configure-15316-  *)
mcpp-2.7.2/configure:15317:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
mcpp-2.7.2/configure-15318-    ;;
##############################################
mcpp-2.7.2/configure-15333-  shlibpath_var=DYLD_LIBRARY_PATH
mcpp-2.7.2/configure:15334:  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
mcpp-2.7.2/configure-15335-  # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
mcpp-2.7.2/configure-15336-  if test "$GCC" = yes; then
mcpp-2.7.2/configure:15337:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
mcpp-2.7.2/configure-15338-  else
##############################################
mcpp-2.7.2/configure-15527-  if test -f /etc/ld.so.conf; then
mcpp-2.7.2/configure:15528:    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
mcpp-2.7.2/configure-15529-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
mcpp-2.7.2/configure-15599-  shlibpath_var=LD_LIBRARY_PATH
mcpp-2.7.2/configure:15600:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-15601-    case $host_os in
##############################################
mcpp-2.7.2/configure-15844-      # Double-quote double-evaled strings.
mcpp-2.7.2/configure:15845:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
mcpp-2.7.2/configure-15846-      ;;
mcpp-2.7.2/configure-15847-    *)
mcpp-2.7.2/configure:15848:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
mcpp-2.7.2/configure-15849-      ;;
##############################################
mcpp-2.7.2/configure-15854-  *'\$0 --fallback-echo"')
mcpp-2.7.2/configure:15855:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
mcpp-2.7.2/configure-15856-    ;;
##############################################
mcpp-2.7.2/configure-16173-  # libtool script then.
mcpp-2.7.2/configure:16174:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
mcpp-2.7.2/configure-16175-  if test -f "$ltmain_in"; then
##############################################
mcpp-2.7.2/configure-16249-done
mcpp-2.7.2/configure:16250:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/configure-16251-
##############################################
mcpp-2.7.2/configure-16698-  if test "$hard_links" = no; then
mcpp-2.7.2/configure:16699:    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
mcpp-2.7.2/configure:16700:echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
mcpp-2.7.2/configure-16701-    need_locks=warn
##############################################
mcpp-2.7.2/configure-16754-done
mcpp-2.7.2/configure:16755:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/configure-16756-
##############################################
mcpp-2.7.2/configure-16792-    supports_anon_versioning=no
mcpp-2.7.2/configure:16793:    case `$LD -v 2>/dev/null` in
mcpp-2.7.2/configure-16794-      *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
##############################################
mcpp-2.7.2/configure-16856-	# is EXPORTS), use it as is; otherwise, prepend...
mcpp-2.7.2/configure:16857:	archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
mcpp-2.7.2/configure-16858-	  cp $export_symbols $output_objdir/$soname.def;
##############################################
mcpp-2.7.2/configure-16879-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
mcpp-2.7.2/configure:16880:      archive_cmds_GCJ='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/configure:16881:      archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
mcpp-2.7.2/configure-16882-      ;;
##############################################
mcpp-2.7.2/configure-16888-	pgcc*)				# Portland Group C compiler
mcpp-2.7.2/configure:16889:	  whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/configure-16890-	  tmp_addflag=' $pic_flag'
##############################################
mcpp-2.7.2/configure-16892-	pgf77* | pgf90* | pgf95*)	# Portland Group f77 and f90 compilers
mcpp-2.7.2/configure:16893:	  whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
mcpp-2.7.2/configure-16894-	  tmp_addflag=' $pic_flag -Mnomain' ;;
##############################################
mcpp-2.7.2/configure-16947-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
mcpp-2.7.2/configure:16948:      case `$LD -v 2>&1` in
mcpp-2.7.2/configure-16949-        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
##############################################
mcpp-2.7.2/configure-16963-	  if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
mcpp-2.7.2/configure:16964:	    hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
mcpp-2.7.2/configure-16965-	    archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
##############################################
mcpp-2.7.2/configure-17062-	# below for broken collect2 doesn't work under 4.3+
mcpp-2.7.2/configure:17063:	  collect2name=`${CC} -print-prog-name=collect2`
mcpp-2.7.2/configure-17064-	  if test -f "$collect2name" && \
##############################################
mcpp-2.7.2/configure-17158-       hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath"
mcpp-2.7.2/configure:17159:	archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
mcpp-2.7.2/configure-17160-       else
##############################################
mcpp-2.7.2/configure-17254-      # FIXME: Setting linknames here is a bad hack.
mcpp-2.7.2/configure:17255:      archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
mcpp-2.7.2/configure-17256-      # The linker will automatically build a .lib file if we build a DLL.
##############################################
mcpp-2.7.2/configure-17259-      old_archive_cmds_GCJ='lib /OUT:$oldlib$oldobjs$old_deplibs'
mcpp-2.7.2/configure:17260:      fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`'
mcpp-2.7.2/configure-17261-      enable_shared_with_static_runtimes_GCJ=yes
##############################################
mcpp-2.7.2/configure-17300-         output_verbose_link_cmd='echo'
mcpp-2.7.2/configure:17301:         archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
mcpp-2.7.2/configure-17302-         module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
mcpp-2.7.2/configure-17435-      if test "$GCC" = yes; then
mcpp-2.7.2/configure:17436:	archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-17437-      else
mcpp-2.7.2/configure:17438:	archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-17439-	hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir'
##############################################
mcpp-2.7.2/configure-17467-      hardcode_shlibpath_var_GCJ=no
mcpp-2.7.2/configure:17468:      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-17469-	archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
mcpp-2.7.2/configure-17497-	allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:17498:	archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-17499-      else
mcpp-2.7.2/configure-17500-	allow_undefined_flag_GCJ=' -expect_unresolved \*'
mcpp-2.7.2/configure:17501:	archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-17502-      fi
##############################################
mcpp-2.7.2/configure-17509-	allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*'
mcpp-2.7.2/configure:17510:	archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure-17511-	hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir'
##############################################
mcpp-2.7.2/configure-17513-	allow_undefined_flag_GCJ=' -expect_unresolved \*'
mcpp-2.7.2/configure:17514:	archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
mcpp-2.7.2/configure:17515:	archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
mcpp-2.7.2/configure:17516:	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
mcpp-2.7.2/configure-17517-
##############################################
mcpp-2.7.2/configure-17550- 	*)
mcpp-2.7.2/configure:17551: 	  whole_archive_flag_spec_GCJ='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;;
mcpp-2.7.2/configure-17552- 	esac ;;
##############################################
mcpp-2.7.2/configure-17634-      hardcode_shlibpath_var_GCJ=no
mcpp-2.7.2/configure:17635:      hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
mcpp-2.7.2/configure-17636-      hardcode_libdir_separator_GCJ=':'
##############################################
mcpp-2.7.2/configure-17744-if test "$GCC" = yes; then
mcpp-2.7.2/configure:17745:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/configure-17746-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
mcpp-2.7.2/configure-17750-    # okay in the real world where ";" in dirpaths is itself problematic.
mcpp-2.7.2/configure:17751:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/configure-17752-  else
mcpp-2.7.2/configure:17753:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/configure-17754-  fi
##############################################
mcpp-2.7.2/configure-17821-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
mcpp-2.7.2/configure:17822:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
mcpp-2.7.2/configure-17823-  ;;
##############################################
mcpp-2.7.2/configure-17854-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
mcpp-2.7.2/configure:17855:    postinstall_cmds='base_file=`basename \${file}`~
mcpp-2.7.2/configure:17856:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
mcpp-2.7.2/configure:17857:      dldir=$destdir/`dirname \$dlpath`~
mcpp-2.7.2/configure-17858-      test -d \$dldir || mkdir -p \$dldir~
##############################################
mcpp-2.7.2/configure-17860-      chmod a+x \$dldir/$dlname'
mcpp-2.7.2/configure:17861:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
mcpp-2.7.2/configure-17862-      dlpath=$dir/\$dldll~
##############################################
mcpp-2.7.2/configure-17868-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
mcpp-2.7.2/configure:17869:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure-17870-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
mcpp-2.7.2/configure-17873-      # MinGW DLLs use traditional 'lib' prefix
mcpp-2.7.2/configure:17874:      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure:17875:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
mcpp-2.7.2/configure-17876-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
##############################################
mcpp-2.7.2/configure-17882-        # which wouldn't understand a cygwinified path. Ahh.
mcpp-2.7.2/configure:17883:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
mcpp-2.7.2/configure-17884-      else
mcpp-2.7.2/configure:17885:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
mcpp-2.7.2/configure-17886-      fi
##############################################
mcpp-2.7.2/configure-17889-      # pw32 DLLs use 'pw' prefix rather than 'lib'
mcpp-2.7.2/configure:17890:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
mcpp-2.7.2/configure-17891-      ;;
##############################################
mcpp-2.7.2/configure-17895-  *)
mcpp-2.7.2/configure:17896:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
mcpp-2.7.2/configure-17897-    ;;
##############################################
mcpp-2.7.2/configure-17912-  shlibpath_var=DYLD_LIBRARY_PATH
mcpp-2.7.2/configure:17913:  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
mcpp-2.7.2/configure-17914-  # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
mcpp-2.7.2/configure-17915-  if test "$GCC" = yes; then
mcpp-2.7.2/configure:17916:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
mcpp-2.7.2/configure-17917-  else
##############################################
mcpp-2.7.2/configure-18106-  if test -f /etc/ld.so.conf; then
mcpp-2.7.2/configure:18107:    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
mcpp-2.7.2/configure-18108-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
mcpp-2.7.2/configure-18178-  shlibpath_var=LD_LIBRARY_PATH
mcpp-2.7.2/configure:18179:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
mcpp-2.7.2/configure-18180-    case $host_os in
##############################################
mcpp-2.7.2/configure-18423-      # Double-quote double-evaled strings.
mcpp-2.7.2/configure:18424:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
mcpp-2.7.2/configure-18425-      ;;
mcpp-2.7.2/configure-18426-    *)
mcpp-2.7.2/configure:18427:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
mcpp-2.7.2/configure-18428-      ;;
##############################################
mcpp-2.7.2/configure-18433-  *'\$0 --fallback-echo"')
mcpp-2.7.2/configure:18434:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
mcpp-2.7.2/configure-18435-    ;;
##############################################
mcpp-2.7.2/configure-18752-  # libtool script then.
mcpp-2.7.2/configure:18753:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
mcpp-2.7.2/configure-18754-  if test -f "$ltmain_in"; then
##############################################
mcpp-2.7.2/configure-18827-done
mcpp-2.7.2/configure:18828:cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
mcpp-2.7.2/configure-18829-
##############################################
mcpp-2.7.2/configure-18903-      # Double-quote double-evaled strings.
mcpp-2.7.2/configure:18904:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
mcpp-2.7.2/configure-18905-      ;;
mcpp-2.7.2/configure-18906-    *)
mcpp-2.7.2/configure:18907:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
mcpp-2.7.2/configure-18908-      ;;
##############################################
mcpp-2.7.2/configure-18913-  *'\$0 --fallback-echo"')
mcpp-2.7.2/configure:18914:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
mcpp-2.7.2/configure-18915-    ;;
##############################################
mcpp-2.7.2/configure-19232-  # libtool script then.
mcpp-2.7.2/configure:19233:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
mcpp-2.7.2/configure-19234-  if test -f "$ltmain_in"; then
##############################################
mcpp-2.7.2/configure-19309-echo $ECHO_N "checking whether the cpp is target preprocessor... $ECHO_C" >&6; }
mcpp-2.7.2/configure:19310:mcpp=`$CPP $CFLAGS -xc -v /dev/null 2>&1 | grep 'MCPP'`
mcpp-2.7.2/configure-19311-if test "x$mcpp" != x; then
##############################################
mcpp-2.7.2/configure-19438-        target_cc=$withval
mcpp-2.7.2/configure:19439:        target_name=`echo $target_cc | sed 's/-gcc.*$//'`
mcpp-2.7.2/configure-19440-        if test $target_name != $target_alias; then
##############################################
mcpp-2.7.2/configure-19457-## on compile time based on the CPU macro, and possibly redefine them at an
mcpp-2.7.2/configure:19458:## execution time.
mcpp-2.7.2/configure-19459-
##############################################
mcpp-2.7.2/configure-19498-do
mcpp-2.7.2/configure:19499:as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
mcpp-2.7.2/configure-19500-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
##############################################
mcpp-2.7.2/configure-19505-fi
mcpp-2.7.2/configure:19506:ac_res=`eval echo '${'$as_ac_Header'}'`
mcpp-2.7.2/configure-19507-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
##############################################
mcpp-2.7.2/configure-19626-fi
mcpp-2.7.2/configure:19627:ac_res=`eval echo '${'$as_ac_Header'}'`
mcpp-2.7.2/configure-19628-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
##############################################
mcpp-2.7.2/configure-19631-fi
mcpp-2.7.2/configure:19632:if test `eval echo '${'$as_ac_Header'}'` = yes; then
mcpp-2.7.2/configure-19633-  cat >>confdefs.h <<_ACEOF
mcpp-2.7.2/configure:19634:#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
mcpp-2.7.2/configure-19635-_ACEOF
##############################################
mcpp-2.7.2/configure-19770-do
mcpp-2.7.2/configure:19771:as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
mcpp-2.7.2/configure-19772-{ echo "$as_me:$LINENO: checking for $ac_func" >&5
##############################################
mcpp-2.7.2/configure-19850-fi
mcpp-2.7.2/configure:19851:ac_res=`eval echo '${'$as_ac_var'}'`
mcpp-2.7.2/configure-19852-	       { echo "$as_me:$LINENO: result: $ac_res" >&5
mcpp-2.7.2/configure-19853-echo "${ECHO_T}$ac_res" >&6; }
mcpp-2.7.2/configure:19854:if test `eval echo '${'$as_ac_var'}'` = yes; then
mcpp-2.7.2/configure-19855-  cat >>confdefs.h <<_ACEOF
mcpp-2.7.2/configure:19856:#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
mcpp-2.7.2/configure-19857-_ACEOF
##############################################
mcpp-2.7.2/configure-20113-        test x$mcpp_ac_c_define_SYSTEM_SP_STD != x__FreeBSD__; then
mcpp-2.7.2/configure:20114:    fbsd_ver=`echo '__FreeBSD__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`
mcpp-2.7.2/configure-20115-
##############################################
mcpp-2.7.2/configure-20137-echo $ECHO_N "checking for value of __GNUC__... $ECHO_C" >&6; }
mcpp-2.7.2/configure:20138:    gcc_maj_ver=`echo '__GNUC__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`
mcpp-2.7.2/configure-20139-    { echo "$as_me:$LINENO: result: $gcc_maj_ver" >&5
##############################################
mcpp-2.7.2/configure-20147-echo $ECHO_N "checking for value of __GNUC_MINOR__... $ECHO_C" >&6; }
mcpp-2.7.2/configure:20148:    gcc_min_ver=`echo __GNUC_MINOR__ | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`
mcpp-2.7.2/configure-20149-    { echo "$as_me:$LINENO: result: $gcc_min_ver" >&5
##############################################
mcpp-2.7.2/configure-20168-else
mcpp-2.7.2/configure:20169:  ac_cv_cygwin_root=`$src_dir/config/cygwin_root`
mcpp-2.7.2/configure-20170-
##############################################
mcpp-2.7.2/configure-20199-            cd /
mcpp-2.7.2/configure:20200:            ac_cv_msys_root=`$src_dir/config/mingw_root`
mcpp-2.7.2/configure-20201-
##############################################
mcpp-2.7.2/configure-20210-  cd /mingw
mcpp-2.7.2/configure:20211:            ac_cv_mingw_dir=`$src_dir/config/mingw_root`
mcpp-2.7.2/configure-20212-
##############################################
mcpp-2.7.2/configure-20248-
mcpp-2.7.2/configure:20249:    name=`echo $enableval | sed 's/=.*//'`
mcpp-2.7.2/configure-20250-    mcpp_macro=SYSTEM_SP_STD
mcpp-2.7.2/configure:20251:    stripped_mcpp_macro=`echo $mcpp_macro | sed 's/STD//'`
mcpp-2.7.2/configure-20252-    if test x$stripped_mcpp_macro != x$mcpp_macro; then
mcpp-2.7.2/configure:20253:        stripped_name=`echo $name | sed 's/^_//'`
mcpp-2.7.2/configure-20254-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20259-    else
mcpp-2.7.2/configure:20260:        stripped_name=`echo $name | sed 's/^[A-Za-z]//'`
mcpp-2.7.2/configure-20261-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20269-    else
mcpp-2.7.2/configure:20270:        replace=`echo $enableval | sed 's/^.*=//'`
mcpp-2.7.2/configure-20271-    fi
##############################################
mcpp-2.7.2/configure-20298-
mcpp-2.7.2/configure:20299:    name=`echo $enableval | sed 's/=.*//'`
mcpp-2.7.2/configure-20300-    mcpp_macro=SYSTEM_SP_OLD
mcpp-2.7.2/configure:20301:    stripped_mcpp_macro=`echo $mcpp_macro | sed 's/STD//'`
mcpp-2.7.2/configure-20302-    if test x$stripped_mcpp_macro != x$mcpp_macro; then
mcpp-2.7.2/configure:20303:        stripped_name=`echo $name | sed 's/^_//'`
mcpp-2.7.2/configure-20304-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20309-    else
mcpp-2.7.2/configure:20310:        stripped_name=`echo $name | sed 's/^[A-Za-z]//'`
mcpp-2.7.2/configure-20311-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20319-    else
mcpp-2.7.2/configure:20320:        replace=`echo $enableval | sed 's/^.*=//'`
mcpp-2.7.2/configure-20321-    fi
##############################################
mcpp-2.7.2/configure-20348-
mcpp-2.7.2/configure:20349:    name=`echo $enableval | sed 's/=.*//'`
mcpp-2.7.2/configure-20350-    mcpp_macro=CPU_SP_STD
mcpp-2.7.2/configure:20351:    stripped_mcpp_macro=`echo $mcpp_macro | sed 's/STD//'`
mcpp-2.7.2/configure-20352-    if test x$stripped_mcpp_macro != x$mcpp_macro; then
mcpp-2.7.2/configure:20353:        stripped_name=`echo $name | sed 's/^_//'`
mcpp-2.7.2/configure-20354-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20359-    else
mcpp-2.7.2/configure:20360:        stripped_name=`echo $name | sed 's/^[A-Za-z]//'`
mcpp-2.7.2/configure-20361-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20369-    else
mcpp-2.7.2/configure:20370:        replace=`echo $enableval | sed 's/^.*=//'`
mcpp-2.7.2/configure-20371-    fi
##############################################
mcpp-2.7.2/configure-20398-
mcpp-2.7.2/configure:20399:    name=`echo $enableval | sed 's/=.*//'`
mcpp-2.7.2/configure-20400-    mcpp_macro=CPU_SP_OLD
mcpp-2.7.2/configure:20401:    stripped_mcpp_macro=`echo $mcpp_macro | sed 's/STD//'`
mcpp-2.7.2/configure-20402-    if test x$stripped_mcpp_macro != x$mcpp_macro; then
mcpp-2.7.2/configure:20403:        stripped_name=`echo $name | sed 's/^_//'`
mcpp-2.7.2/configure-20404-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20409-    else
mcpp-2.7.2/configure:20410:        stripped_name=`echo $name | sed 's/^[A-Za-z]//'`
mcpp-2.7.2/configure-20411-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20419-    else
mcpp-2.7.2/configure:20420:        replace=`echo $enableval | sed 's/^.*=//'`
mcpp-2.7.2/configure-20421-    fi
##############################################
mcpp-2.7.2/configure-20448-
mcpp-2.7.2/configure:20449:    name=`echo $enableval | sed 's/=.*//'`
mcpp-2.7.2/configure-20450-    mcpp_macro=COMPILER_SP_STD
mcpp-2.7.2/configure:20451:    stripped_mcpp_macro=`echo $mcpp_macro | sed 's/STD//'`
mcpp-2.7.2/configure-20452-    if test x$stripped_mcpp_macro != x$mcpp_macro; then
mcpp-2.7.2/configure:20453:        stripped_name=`echo $name | sed 's/^_//'`
mcpp-2.7.2/configure-20454-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20459-    else
mcpp-2.7.2/configure:20460:        stripped_name=`echo $name | sed 's/^[A-Za-z]//'`
mcpp-2.7.2/configure-20461-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20469-    else
mcpp-2.7.2/configure:20470:        replace=`echo $enableval | sed 's/^.*=//'`
mcpp-2.7.2/configure-20471-    fi
##############################################
mcpp-2.7.2/configure-20498-
mcpp-2.7.2/configure:20499:    name=`echo $enableval | sed 's/=.*//'`
mcpp-2.7.2/configure-20500-    mcpp_macro=COMPILER_SP_OLD
mcpp-2.7.2/configure:20501:    stripped_mcpp_macro=`echo $mcpp_macro | sed 's/STD//'`
mcpp-2.7.2/configure-20502-    if test x$stripped_mcpp_macro != x$mcpp_macro; then
mcpp-2.7.2/configure:20503:        stripped_name=`echo $name | sed 's/^_//'`
mcpp-2.7.2/configure-20504-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20509-    else
mcpp-2.7.2/configure:20510:        stripped_name=`echo $name | sed 's/^[A-Za-z]//'`
mcpp-2.7.2/configure-20511-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure-20519-    else
mcpp-2.7.2/configure:20520:        replace=`echo $enableval | sed 's/^.*=//'`
mcpp-2.7.2/configure-20521-    fi
##############################################
mcpp-2.7.2/configure-20546-echo $ECHO_N "checking for the MacOS-specific framework directory... $ECHO_C" >&6; }
mcpp-2.7.2/configure:20547:    frameworks=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | sed 's/^ *//' | sed 's/ .*$//' | $EGREP '/Frameworks$'`
mcpp-2.7.2/configure-20548-    n=1
##############################################
mcpp-2.7.2/configure-20814-else
mcpp-2.7.2/configure:20815:  ac_cv_c_line_format=\"`echo '#line 4321' | $CPP - | grep 432 | sed 's/432.*$//'`\"
mcpp-2.7.2/configure-20816-## Note: the output line number may be 4320 on GCC 2.* or other preprocessors.
##############################################
mcpp-2.7.2/configure-20841-else
mcpp-2.7.2/configure:20842:  stdc=`echo '__STDC__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`
mcpp-2.7.2/configure-20843-    if test x"$stdc" = x"__STDC__"; then
##############################################
mcpp-2.7.2/configure-20862-else
mcpp-2.7.2/configure:20863:  stdc_ver=`echo '__STDC_VERSION__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`
mcpp-2.7.2/configure-20864-    if test x"$stdc_ver" = x"__STDC_VERSION__"; then
##############################################
mcpp-2.7.2/configure-20903-    \\/* | A-Za-z:\\/*)
mcpp-2.7.2/configure:20904:        cxx_include_dir=`echo $withval | sed 's,/$,,'; 's,\\$,,'`
mcpp-2.7.2/configure-20905-
##############################################
mcpp-2.7.2/configure-20933-
mcpp-2.7.2/configure:20934:    cpp_call=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | $EGREP '/cpp|/cc1' | sed 's/^ *//; s/ .*//'`
mcpp-2.7.2/configure-20935-    { echo "$as_me:$LINENO: checking for the directory to install mcpp" >&5
mcpp-2.7.2/configure-20936-echo $ECHO_N "checking for the directory to install mcpp... $ECHO_C" >&6; }
mcpp-2.7.2/configure:20937:    cpp_name=`expr $cpp_call : '.*/\(.*\)'`
mcpp-2.7.2/configure:20938:    bindir=`expr $cpp_call : "\(.*\)/$cpp_name"`
mcpp-2.7.2/configure-20939-    { echo "$as_me:$LINENO: result: $bindir" >&5
##############################################
mcpp-2.7.2/configure-20981-
mcpp-2.7.2/configure:20982:    cc_path=`echo $CC | $EGREP "/"`
mcpp-2.7.2/configure-20983-    if test x$cc_path != x; then
##############################################
mcpp-2.7.2/configure-20989-    ## (i.e. "/usr/local" of "/usr/local/bin/gcc")
mcpp-2.7.2/configure:20990:    gcc_prefix=`echo $gcc_path | $EGREP "/bin/$CC\$" | sed "s,/bin/$CC\$,,"`
mcpp-2.7.2/configure-20991-    if test "x$gcc_prefix" != xNONE; then
##############################################
mcpp-2.7.2/configure-21007-    exclude="^/usr(/local|)/include\$|^${prefix}(/local|)/include\$|/Frameworks|End of search list"
mcpp-2.7.2/configure:21008:    c_include_dirs=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | sed '1,/<...> search starts here/d' | sed '/End of search list/q' | sed 's/^ *//' | $EGREP -v "$exclude"`
mcpp-2.7.2/configure-21009-    n=1
##############################################
mcpp-2.7.2/configure-21166-echo "$as_me:$LINENO: checking for C++ compiler version" >&5
mcpp-2.7.2/configure:21167:ac_compiler=`set X $ac_compile; echo $2`
mcpp-2.7.2/configure-21168-{ (ac_try="$ac_compiler --version >&5"
##############################################
mcpp-2.7.2/configure-21252-echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; }
mcpp-2.7.2/configure:21253:GXX=`test $ac_compiler_gnu = yes && echo yes`
mcpp-2.7.2/configure-21254-ac_test_CXXFLAGS=${CXXFLAGS+set}
##############################################
mcpp-2.7.2/configure-21648-    exclude="^/usr(/local|)/include\$|^${prefix}(/local|)/include\$|/Frameworks|^${c_include_dir1}\$|^${c_include_dir2}\$|^${c_include_dir3}\$"
mcpp-2.7.2/configure:21649:    cxx_include_dirs=`${CXXCPP} ${CXXFLAGS} $arch_opt -xc++ -v /dev/null 2>&1 | sed '1,/<...> search starts here/d' | sed '/End of search list/q' | sed '/End of search list/d' | sed 's/^ *//' | $EGREP -v "$exclude"`
mcpp-2.7.2/configure-21650-    n=1
##############################################
mcpp-2.7.2/configure-21748-else
mcpp-2.7.2/configure:21749:  size_type=`echo '__SIZE_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`
mcpp-2.7.2/configure-21750-
##############################################
mcpp-2.7.2/configure-21764-else
mcpp-2.7.2/configure:21765:  ptrdiff_type=`echo '__PTRDIFF_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`
mcpp-2.7.2/configure-21766-
##############################################
mcpp-2.7.2/configure-21780-else
mcpp-2.7.2/configure:21781:  wchar_type=`echo '__WCHAR_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`
mcpp-2.7.2/configure-21782-
##############################################
mcpp-2.7.2/configure-21823-        if test x$enable_replace_cpp = xyes; then
mcpp-2.7.2/configure:21824:            gcc_testsuite_dir=`echo $withval | sed 's,/$,,'`
mcpp-2.7.2/configure-21825-        else
##############################################
mcpp-2.7.2/configure-21959-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
mcpp-2.7.2/configure:21960:  ac_i=`echo "$ac_i" | sed "$ac_script"`
mcpp-2.7.2/configure-21961-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
mcpp-2.7.2/configure-22117-do
mcpp-2.7.2/configure:22118:  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
mcpp-2.7.2/configure-22119-    eval $as_var=C; export $as_var
##############################################
mcpp-2.7.2/configure-22167-  test "x$as_lineno_1" != "x$as_lineno_2" &&
mcpp-2.7.2/configure:22168:  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
mcpp-2.7.2/configure-22169-
##############################################
mcpp-2.7.2/configure-22278-	esac;
mcpp-2.7.2/configure:22279:	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
mcpp-2.7.2/configure-22280-	???[sx]*):;;*)false;;esac;fi
##############################################
mcpp-2.7.2/configure-22349-configured by $0, generated by GNU Autoconf 2.61,
mcpp-2.7.2/configure:22350:  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
mcpp-2.7.2/configure-22351-
##############################################
mcpp-2.7.2/configure-22369-  --*=*)
mcpp-2.7.2/configure:22370:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
mcpp-2.7.2/configure:22371:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
mcpp-2.7.2/configure-22372-    ac_shift=:
##############################################
mcpp-2.7.2/configure-22620-
mcpp-2.7.2/configure:22621:  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
mcpp-2.7.2/configure-22622-    break
##############################################
mcpp-2.7.2/configure-22631-
mcpp-2.7.2/configure:22632:ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
mcpp-2.7.2/configure-22633-if test -n "$ac_eof"; then
mcpp-2.7.2/configure:22634:  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
mcpp-2.7.2/configure:22635:  ac_eof=`expr $ac_eof + 1`
mcpp-2.7.2/configure-22636-fi
##############################################
mcpp-2.7.2/configure-22679-
mcpp-2.7.2/configure:22680:  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 18; then
mcpp-2.7.2/configure-22681-    break
##############################################
mcpp-2.7.2/configure-22690-
mcpp-2.7.2/configure:22691:ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
mcpp-2.7.2/configure-22692-if test -n "$ac_eof"; then
mcpp-2.7.2/configure:22693:  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
mcpp-2.7.2/configure:22694:  ac_eof=`expr $ac_eof + 1`
mcpp-2.7.2/configure-22695-fi
##############################################
mcpp-2.7.2/configure-22828-      case $as_dir in #(
mcpp-2.7.2/configure:22829:      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
mcpp-2.7.2/configure-22830-      *) as_qdir=$as_dir;;
##############################################
mcpp-2.7.2/configure-22866-*)
mcpp-2.7.2/configure:22867:  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
mcpp-2.7.2/configure-22868-  # A ".." for each directory in $ac_dir_suffix.
mcpp-2.7.2/configure:22869:  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
mcpp-2.7.2/configure-22870-  case $ac_top_builddir_sub in
##############################################
mcpp-2.7.2/configure-22944-
mcpp-2.7.2/configure:22945:# Neutralize VPATH when `$srcdir' = `.'.
mcpp-2.7.2/configure-22946-# Shell code in configure.ac might set extrasub.
##############################################
mcpp-2.7.2/configure-22969-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
mcpp-2.7.2/configure:22970:  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
mcpp-2.7.2/configure:22971:  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
mcpp-2.7.2/configure-22972-  { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
##############################################
mcpp-2.7.2/configure-23086-    * )
mcpp-2.7.2/configure:23087:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
mcpp-2.7.2/configure-23088-  esac
##############################################
mcpp-2.7.2/tests/set_test.sh-6-CC=$1
mcpp-2.7.2/tests/set_test.sh:7:gcc_path=`expr $2 : "\(.*\)/$CC"`
mcpp-2.7.2/tests/set_test.sh-8-target_cc=$7
##############################################
mcpp-2.7.2/tests/set_test.sh-17-LN_S=$5
mcpp-2.7.2/tests/set_test.sh:18:cpp_name=`echo $6 | sed 's,.*/,,'`
mcpp-2.7.2/tests/set_test.sh:19:cpp_path=`echo $6 | sed "s,/$cpp_name,,"`
mcpp-2.7.2/tests/set_test.sh-20-
##############################################
mcpp-2.7.2/tests/Makefile.am-15-    fi
mcpp-2.7.2/tests/Makefile.am:16:	@if test `$(cpp_call) -v /dev/null 2>&1 | grep 'MCPP' > /dev/null; echo $$?` != 0; \
mcpp-2.7.2/tests/Makefile.am-17-            then \
##############################################
mcpp-2.7.2/tests/Makefile.in-215-@REPLACE_CPP_FALSE@check-DEJAGNU: site.exp
mcpp-2.7.2/tests/Makefile.in:216:@REPLACE_CPP_FALSE@	srcdir=`$(am__cd) $(srcdir) && pwd`; export srcdir; \
mcpp-2.7.2/tests/Makefile.in-217-@REPLACE_CPP_FALSE@	EXPECT=$(EXPECT); export EXPECT; \
##############################################
mcpp-2.7.2/tests/Makefile.in-253-distdir: $(DISTFILES)
mcpp-2.7.2/tests/Makefile.in:254:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
mcpp-2.7.2/tests/Makefile.in:255:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
mcpp-2.7.2/tests/Makefile.in-256-	list='$(DISTFILES)'; \
##############################################
mcpp-2.7.2/tests/Makefile.in-267-	  if test -d $$d/$$file; then \
mcpp-2.7.2/tests/Makefile.in:268:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
mcpp-2.7.2/tests/Makefile.in-269-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
##############################################
mcpp-2.7.2/tests/Makefile.in-385-@REPLACE_CPP_TRUE@    fi
mcpp-2.7.2/tests/Makefile.in:386:@REPLACE_CPP_TRUE@	@if test `$(cpp_call) -v /dev/null 2>&1 | grep 'MCPP' > /dev/null; echo $$?` != 0; \
mcpp-2.7.2/tests/Makefile.in-387-@REPLACE_CPP_TRUE@            then \
##############################################
mcpp-2.7.2/tests/after_test.sh-4-CC=$1
mcpp-2.7.2/tests/after_test.sh:5:gcc_path=`expr $2 : "\(.*\)/${CC}\$"`
mcpp-2.7.2/tests/after_test.sh-6-target_cc=$4
##############################################
mcpp-2.7.2/tests/after_test.sh-9-fi
mcpp-2.7.2/tests/after_test.sh:10:cpp_name=`echo $3 | sed 's,.*/,,'`
mcpp-2.7.2/tests/after_test.sh:11:cpp_path=`echo $3 | sed "s,/$cpp_name,,"`
mcpp-2.7.2/tests/after_test.sh-12-
##############################################
mcpp-2.7.2/doc-jp/mcpp-porting.html-1099-<br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1-<html>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-2-<head>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-550-</ol>
##############################################
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1208-</blockquote>
##############################################
##############################################
##############################################
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1506-
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1509-<pre>
mcpp-2.7.2/doc-jp/mcpp-manual.html:1510:asm {
mcpp-2.7.2/doc-jp/mcpp-manual.html-1511-    mov x,4;
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1514-</pre>
##############################################
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1553-asm("
mcpp-2.7.2/doc-jp/mcpp-manual.html:1554:    asm code0
mcpp-2.7.2/doc-jp/mcpp-manual.html-1555-#ifdef PC98
mcpp-2.7.2/doc-jp/mcpp-manual.html:1556:    asm code1
mcpp-2.7.2/doc-jp/mcpp-manual.html-1557-#else
mcpp-2.7.2/doc-jp/mcpp-manual.html:1558:    asm code2
mcpp-2.7.2/doc-jp/mcpp-manual.html-1559-#endif
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1566-asm(
mcpp-2.7.2/doc-jp/mcpp-manual.html:1567:    "    asm code0\n"
mcpp-2.7.2/doc-jp/mcpp-manual.html-1568-#ifdef PC98
mcpp-2.7.2/doc-jp/mcpp-manual.html:1569:    "    asm code1\n"
mcpp-2.7.2/doc-jp/mcpp-manual.html-1570-#else
mcpp-2.7.2/doc-jp/mcpp-manual.html:1571:    "    asm code2\n"
mcpp-2.7.2/doc-jp/mcpp-manual.html-1572-#endif
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1573-    "    ...\n"
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1742-asm(
mcpp-2.7.2/doc-jp/mcpp-manual.html:1743:    "    asm code0\n"
mcpp-2.7.2/doc-jp/mcpp-manual.html-1744-#ifdef Machine_A
mcpp-2.7.2/doc-jp/mcpp-manual.html:1745:    "    asm code1\n"
mcpp-2.7.2/doc-jp/mcpp-manual.html-1746-#else
mcpp-2.7.2/doc-jp/mcpp-manual.html:1747:    "    asm code2\n"
mcpp-2.7.2/doc-jp/mcpp-manual.html-1748-#endif
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1749-    "    ...\n"
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1750-);
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1751-</pre>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-1933-#!/bin/sh
mcpp-2.7.2/doc-jp/mcpp-manual.html:1934:/usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/mcpp -Q -lang-asm "$@"
mcpp-2.7.2/doc-jp/mcpp-manual.html-1935-</pre>
##############################################
##############################################
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-3667-<li><samp>Unterminated character constant 't understand.</samp><br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-3704-</ul>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-3706-<ul>
mcpp-2.7.2/doc-jp/mcpp-manual.html:3707:<li><samp>In #asm block started at line 123</samp><br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-3709-<li><samp>Without #asm</samp><br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-3745-<li><samp>Excessive token sequence "junk"</samp><br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-3884-<li><samp>Not a valid preprocessing token "+12"</samp><br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-3988-<li><samp>Unterminated string literal, catenated to the next line</samp><br>
##############################################
##############################################
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-4011-<li><samp>End of file within macro call started at line 123</samp><br>
mcpp-2.7.2/doc-jp/mcpp-manual.html:4012:<li><samp>End of file with unterminated #asm block started at line 123</samp><br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-4051-</ul>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-4055-<li><samp>Unknown #directive "pseudo-directive"</samp><br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-4212-<li><samp>Not a valid preprocessing token "+12"</samp><br>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-4429-<tr><td><samp>End of file with no newline, supplemented the newline</samp></td><td></td><td></td><td><a href='#5.5.2'>5.5.2</td></tr>
mcpp-2.7.2/doc-jp/mcpp-manual.html:4430:<tr><td><samp>End of file with unterminated #asm block started at line 123</samp></td><td></td><td><a href='#5.4.2'>5.4.2</td><td><a href='#5.5.2'>5.5.2</td></tr>
mcpp-2.7.2/doc-jp/mcpp-manual.html-4431-<tr><td><samp>End of file with unterminated comment, terminated the comment</samp></td><td></td><td></td><td><a href='#5.5.2'>5.5.2</td></tr>
##############################################
mcpp-2.7.2/doc-jp/mcpp-manual.html-4453-<tr><td><samp>Illegal UCN sequence</samp></td><td></td><td><a href='#5.4.1'>5.4.1</td></tr>
mcpp-2.7.2/doc-jp/mcpp-manual.html:4454:<tr><td><samp>In #asm block started at line 123</samp></td><td></td><td><a href='#5.4.3'>5.4.3</td></tr>
mcpp-2.7.2/doc-jp/mcpp-manual.html-4455-<tr><td><samp>Integer character constant 'abcde' is out of range of unsigned long</samp></td><td></td><td></td><td><a href='#5.5.4'>5.5.4</td><td><a href='#5.6'>5.6</td><td></td><td><a href='#5.8'>5.8</td></tr>
##############################################
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-103--            size_type,
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch:104:-            [size_type=`echo '__SIZE_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`]
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-105-+        AC_CACHE_CHECK(for value of predefined macro '__SIZE_TYPE__',
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-106-+            mcpp_cv_size_type,
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch:107:+            [mcpp_cv_size_type=`echo '__SIZE_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`]
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-108-         )
##############################################
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-114--            ptrdiff_type,
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch:115:-            [ptrdiff_type=`echo '__PTRDIFF_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`]
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-116-+        AC_CACHE_CHECK(for value of predefined macro '__PTRDIFF_TYPE__',
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-117-+            mcpp_cv_ptrdiff_type,
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch:118:+            [mcpp_cv_ptrdiff_type=`echo '__PTRDIFF_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`]
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-119-         )
##############################################
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-125--            wchar_type,
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch:126:-            [wchar_type=`echo '__WCHAR_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`]
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-127-+        AC_CACHE_CHECK(for value of predefined macro '__WCHAR_TYPE__',
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-128-+            mcpp_cv_wchar_type,
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch:129:+            [mcpp_cv_wchar_type=`echo '__WCHAR_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`]
mcpp-2.7.2/debian/patches/06-gniibe-fix-autotools.patch-130-         )
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-59-        /*
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c:60:         * lang_asm allows the following non-standard features.
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-61-         * 1. #non-directive.
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-63-         * 3. invalid pp-token generated by ## operator.
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c:64:         * lang_asm is not available in POST_STD mode.
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c:65:         * When COMPILER == GNUC, -x assembler-with-cpp or -lang-asm options
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-66-         * are used instead of -a.
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-128-    int     in_if = FALSE;  /* TRUE scanning #if and in non-skipped expr.   */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c:129:    long    in_asm = 0L;    /* Starting line of #asm - #endasm block*/
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-130-
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-311-    in_directive = in_define = in_getarg = in_include = in_if = FALSE;
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c:312:    src_line = macro_line = in_asm = 0L;
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-313-    mcpp_debug = mkdep = no_output = keep_comments = keep_spaces = 0;
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-654-                newlines++;                 /* Count it, too.       */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c:655:            } else if (in_asm && ! no_output) { /* In #asm block    */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/main.c-656-                put_asm();                  /* Put out as it is     */
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c-1658-        return  NULL;                       /* End of a file        */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c:1659:    if (in_asm) {                           /* In #asm block        */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c-1660-        while (char_type[ *sp++ & UCHARMAX] & SPA)
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c-2132-    const char * const  unterm_asm_format
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c:2133:= "End of %s with unterminated #asm block started at line %ld"; /* _E_ _W1_ */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c-2134-    size_t  len;
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c-2184-
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c:2185:    if (in_asm && mcpp_mode == KR && (warn_level & 1))
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/support.c-2186-        cwarn( unterm_asm_format, input, in_asm, NULL);
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/internal.H-383-extern int      mcpp_debug;         /* Class of debug information   */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/internal.H:384:extern long     in_asm;             /* In #asm - #endasm block      */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/internal.H-385-extern jmp_buf  error_exit;         /* Exit on fatal error          */
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/internal.H-525-extern void     put_asm( void);
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/internal.H:526:                /* Putout an asm code line      */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/internal.H-527-extern void     do_old( void);
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-224-static void     do_asm( int asm_start);
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:225:                /* Process #asm, #endasm            */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-226-static int      mcpp_getopt( int argc, char * const * argv, const char * opts);
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-585-        case 'A':
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:586:            option_flags.lang_asm = TRUE;   /* "assembler" source   */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-587-            break;
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-589-        case 'a':
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:590:            option_flags.lang_asm = TRUE;   /* "assembler" source   */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-591-            break;
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-863-            } else if (str_eq( mcpp_optarg + 4, "asm")) {   /* -lang-asm*/
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:864:                option_flags.lang_asm = TRUE;
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-865-            } else {
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1223-            } else if (str_eq( mcpp_optarg, "assembler-with-cpp")) {
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:1224:                option_flags.lang_asm = TRUE;
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1225-                break;
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1317-    if (*in_pp && str_eq( (*in_pp) + strlen( *in_pp) - 2, ".S"))
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:1318:        option_flags.lang_asm = TRUE;   /* Input file name is *.S   */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1319-    if (option_flags.lang_asm) {
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1578-#if COMPILER == GNUC
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:1579:"-lang-asm   Same as -x assembler-with-cpp.\n",
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1580-"-x assembler-with-cpp   Process \"assembler\" source.\n",
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1778-    if (mcpp_mode == POST_STD
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:1779:            && (option_flags.lang_asm || compat_mode || option_flags.k))
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1780-        incompat = TRUE;
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1789-    if ((mcpp_debug & MACRO_CALL)
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:1790:                && (option_flags.lang_asm || option_flags.c)) {
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-1791-            mcpp_fputs( "Disabled -K option.\n", ERR);
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4358-static void do_asm(
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:4359:    int     asm_start                       /* #asm ?               */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4360-)
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4367-        return;
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:4368:    if (asm_start == (in_asm != 0L)) {
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4369-        if (in_asm)
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:4370:            cerror( "In #asm block started at line %.0s%ld" /* _E_  */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4371-                    , NULL, in_asm, NULL);
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4377-    }
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:4378:    in_asm = asm_start ? src_line : 0L;
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4379-}
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4541-
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:4542:    if (str_eq( identifier, "asm")) {       /* #asm                 */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4543-        do_asm( TRUE);
##############################################
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4545-    }
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c:4546:    if (str_eq( identifier, "endasm")) {    /* #endasm              */
mcpp-2.7.2/.pc/01-zeroc-fixes.patch/src/system.c-4547-        do_asm( FALSE);
##############################################
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-59-        /*
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c:60:         * lang_asm allows the following non-standard features.
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-61-         * 1. #non-directive.
##############################################
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-63-         * 3. invalid pp-token generated by ## operator.
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c:64:         * lang_asm is not available in POST_STD mode.
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c:65:         * When COMPILER == GNUC, -x assembler-with-cpp or -lang-asm options
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-66-         * are used instead of -a.
##############################################
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-128-    int     in_if = FALSE;  /* TRUE scanning #if and in non-skipped expr.   */
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c:129:    long    in_asm = 0L;    /* Starting line of #asm - #endasm block*/
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-130-
##############################################
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-311-    in_directive = in_define = in_getarg = in_include = in_if = FALSE;
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c:312:    src_line = macro_line = in_asm = 0L;
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-313-    mcpp_debug = mkdep = no_output = keep_comments = keep_spaces = 0;
##############################################
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-656-                newlines++;                 /* Count it, too.       */
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c:657:            } else if (in_asm && ! no_output) { /* In #asm block    */
mcpp-2.7.2/.pc/02-gniibe-fixes.patch/src/main.c-658-                put_asm();                  /* Put out as it is     */
##############################################
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c-1658-        return  NULL;                       /* End of a file        */
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c:1659:    if (in_asm) {                           /* In #asm block        */
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c-1660-        while (char_type[ *sp++ & UCHARMAX] & SPA)
##############################################
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c-2134-    const char * const  unterm_asm_format
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c:2135:= "End of %s with unterminated #asm block started at line %ld"; /* _E_ _W1_ */
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c-2136-    size_t  len;
##############################################
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c-2186-
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c:2187:    if (in_asm && mcpp_mode == KR && (warn_level & 1))
mcpp-2.7.2/.pc/03-gniibe-fix-11.patch/src/support.c-2188-        cwarn( unterm_asm_format, input, in_asm, NULL);
##############################################
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c-1658-        return  NULL;                       /* End of a file        */
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c:1659:    if (in_asm) {                           /* In #asm block        */
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c-1660-        while (char_type[ *sp++ & UCHARMAX] & SPA)
##############################################
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c-2136-    const char * const  unterm_asm_format
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c:2137:= "End of %s with unterminated #asm block started at line %ld"; /* _E_ _W1_ */
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c-2138-    size_t  len;
##############################################
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c-2188-
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c:2189:    if (in_asm && mcpp_mode == KR && (warn_level & 1))
mcpp-2.7.2/.pc/04-gniibe-fix-12.patch/src/support.c-2190-        cwarn( unterm_asm_format, input, in_asm, NULL);
##############################################
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c-1658-        return  NULL;                       /* End of a file        */
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c:1659:    if (in_asm) {                           /* In #asm block        */
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c-1660-        while (char_type[ *sp++ & UCHARMAX] & SPA)
##############################################
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c-2139-    const char * const  unterm_asm_format
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c:2140:= "End of %s with unterminated #asm block started at line %ld"; /* _E_ _W1_ */
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c-2141-    size_t  len;
##############################################
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c-2191-
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c:2192:    if (in_asm && mcpp_mode == KR && (warn_level & 1))
mcpp-2.7.2/.pc/05-gniibe-fix-13.patch/src/support.c-2193-        cwarn( unterm_asm_format, input, in_asm, NULL);
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-27-AC_MSG_CHECKING( [whether the cpp is target preprocessor])
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:28:mcpp=`$CPP $CFLAGS -xc -v /dev/null 2>&1 | grep 'MCPP'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-29-if test "x$mcpp" != x; then
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-107-        target_cc=$withval
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:108:        target_name=`echo $target_cc | sed 's/-gcc.*$//'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-109-        if test $target_name != $target_alias; then
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-122-## on compile time based on the CPU macro, and possibly redefine them at an
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:123:## execution time.
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-124-
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-259-        test x$mcpp_ac_c_define_SYSTEM_SP_STD != x__FreeBSD__; then
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:260:    fbsd_ver=`echo '__FreeBSD__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-261-    AC_DEFINE_UNQUOTED( [SYSTEM_EXT_VAL], "$fbsd_ver",
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-271-    AC_MSG_CHECKING( for value of __GNUC__)
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:272:    gcc_maj_ver=`echo '__GNUC__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-273-    AC_MSG_RESULT( $gcc_maj_ver)
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-276-    AC_MSG_CHECKING( for value of __GNUC_MINOR__)
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:277:    gcc_min_ver=`echo __GNUC_MINOR__ | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-278-    AC_MSG_RESULT( $gcc_min_ver)
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-290-            ac_cv_cygwin_root,
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:291:            [ac_cv_cygwin_root=`$src_dir/config/cygwin_root`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-292-        )
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-312-            cd /
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:313:            [ac_cv_msys_root=`$src_dir/config/mingw_root`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-314-        )
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-317-            cd /mingw
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:318:            [ac_cv_mingw_dir=`$src_dir/config/mingw_root`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-319-        )
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-332-AC_DEFUN([mcpp_AC_C_DEFINE], [
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:333:    name=`echo $3 | sed 's/=.*//'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-334-    mcpp_macro=$1_SP_$2
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:335:    stripped_mcpp_macro=`echo $mcpp_macro | sed 's/STD//'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-336-    if test x$stripped_mcpp_macro != x$mcpp_macro; then
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:337:        stripped_name=`echo $name | sed 's/^_//'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-338-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-341-    else
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:342:        stripped_name=`echo $name | sed 's/^@<:@A-Za-z@:>@//'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-343-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-349-    else
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:350:        [replace=`echo $3 | sed 's/^.*=//'`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-351-    fi
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-390-    AC_MSG_CHECKING( for the MacOS-specific framework directory)
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:391:    frameworks=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | sed 's/^ *//' | sed 's/ .*$//' | $EGREP '/Frameworks$'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-392-    n=1
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-516-    ac_cv_c_line_format,
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:517:    [ac_cv_c_line_format=\"`echo '#line 4321' | $CPP - | grep 432 | sed 's/432.*$//'`\"]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-518-## Note: the output line number may be 4320 on GCC 2.* or other preprocessors.
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-531-    ac_cv_c_stdc,
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:532:    [stdc=`echo '__STDC__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-533-    if test x"$stdc" = x"__STDC__"; then
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-543-    ac_cv_c_stdc_ver,
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:544:    [stdc_ver=`echo '__STDC_VERSION__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-545-    if test x"$stdc_ver" = x"__STDC_VERSION__"; then
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-569-    [\\/]* | [A-Za-z]:[\\/]*)
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:570:        cxx_include_dir=`echo $withval | sed 's,/$,,'; 's,\\$,,'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-571-        AC_DEFINE_UNQUOTED( [CPLUS_INCLUDE_DIR1], $cxx_include_dir,
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-588-
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:589:    cpp_call=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | $EGREP '/cpp|/cc1' | sed 's/^ *//; s/ .*//'` 
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-590-    AC_MSG_CHECKING( for the directory to install mcpp)
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:591:    cpp_name=`expr $cpp_call : '.*/\(.*\)'`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:592:    bindir=`expr $cpp_call : "\(.*\)/$cpp_name"`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-593-    AC_MSG_RESULT( $bindir)
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-595-    AC_PATH_PROG( [gcc_path], [$CC], , [$PATH])
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:596:    cc_path=`echo $CC | $EGREP "/"`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-597-    if test x$cc_path != x; then
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-601-    ## (i.e. "/usr/local" of "/usr/local/bin/gcc")
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:602:    gcc_prefix=`echo $gcc_path | $EGREP "/bin/$CC\$" | sed "s,/bin/$CC\$,,"`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-603-    if test "x$gcc_prefix" != xNONE; then
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-617-    exclude="^/usr(/local|)/include\$|^${prefix}(/local|)/include\$|/Frameworks|End of search list"
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:618:    c_include_dirs=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | sed '1,/<...> search starts here/d' | sed '/End of search list/q' | sed 's/^ *//' | $EGREP -v "$exclude"`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-619-    n=1
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-651-    exclude="^/usr(/local|)/include\$|^${prefix}(/local|)/include\$|/Frameworks|^${c_include_dir1}\$|^${c_include_dir2}\$|^${c_include_dir3}\$"
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:652:    cxx_include_dirs=`${CXXCPP} ${CXXFLAGS} $arch_opt -xc++ -v /dev/null 2>&1 | sed '1,/<...> search starts here/d' | sed '/End of search list/q' | sed '/End of search list/d' | sed 's/^ *//' | $EGREP -v "$exclude"`
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-653-    n=1
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-714-            size_type,
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:715:            [size_type=`echo '__SIZE_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-716-        )
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-721-            ptrdiff_type,
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:722:            [ptrdiff_type=`echo '__PTRDIFF_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-723-        )
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-728-            wchar_type,
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:729:            [wchar_type=`echo '__WCHAR_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-730-        )
##############################################
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-761-        if test x$enable_replace_cpp = xyes; then
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac:762:            [gcc_testsuite_dir=`echo $withval | sed 's,/$,,'`]
mcpp-2.7.2/.pc/06-gniibe-fix-autotools.patch/configure.ac-763-        else
##############################################
mcpp-2.7.2/configure.ac-27-AC_MSG_CHECKING( [whether the cpp is target preprocessor])
mcpp-2.7.2/configure.ac:28:mcpp=`$CPP $CFLAGS -xc -v /dev/null 2>&1 | grep 'MCPP'`
mcpp-2.7.2/configure.ac-29-if test "x$mcpp" != x; then
##############################################
mcpp-2.7.2/configure.ac-107-        target_cc=$withval
mcpp-2.7.2/configure.ac:108:        target_name=`echo $target_cc | sed 's/-gcc.*$//'`
mcpp-2.7.2/configure.ac-109-        if test $target_name != $target_alias; then
##############################################
mcpp-2.7.2/configure.ac-122-## on compile time based on the CPU macro, and possibly redefine them at an
mcpp-2.7.2/configure.ac:123:## execution time.
mcpp-2.7.2/configure.ac-124-
##############################################
mcpp-2.7.2/configure.ac-259-        test x$mcpp_ac_c_define_SYSTEM_SP_STD != x__FreeBSD__; then
mcpp-2.7.2/configure.ac:260:    fbsd_ver=`echo '__FreeBSD__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`
mcpp-2.7.2/configure.ac-261-    AC_DEFINE_UNQUOTED( [SYSTEM_EXT_VAL], "$fbsd_ver",
##############################################
mcpp-2.7.2/configure.ac-271-    AC_MSG_CHECKING( for value of __GNUC__)
mcpp-2.7.2/configure.ac:272:    gcc_maj_ver=`echo '__GNUC__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`
mcpp-2.7.2/configure.ac-273-    AC_MSG_RESULT( $gcc_maj_ver)
##############################################
mcpp-2.7.2/configure.ac-276-    AC_MSG_CHECKING( for value of __GNUC_MINOR__)
mcpp-2.7.2/configure.ac:277:    gcc_min_ver=`echo __GNUC_MINOR__ | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`
mcpp-2.7.2/configure.ac-278-    AC_MSG_RESULT( $gcc_min_ver)
##############################################
mcpp-2.7.2/configure.ac-290-            ac_cv_cygwin_root,
mcpp-2.7.2/configure.ac:291:            [ac_cv_cygwin_root=`$src_dir/config/cygwin_root`]
mcpp-2.7.2/configure.ac-292-        )
##############################################
mcpp-2.7.2/configure.ac-312-            cd /
mcpp-2.7.2/configure.ac:313:            [ac_cv_msys_root=`$src_dir/config/mingw_root`]
mcpp-2.7.2/configure.ac-314-        )
##############################################
mcpp-2.7.2/configure.ac-317-            cd /mingw
mcpp-2.7.2/configure.ac:318:            [ac_cv_mingw_dir=`$src_dir/config/mingw_root`]
mcpp-2.7.2/configure.ac-319-        )
##############################################
mcpp-2.7.2/configure.ac-332-AC_DEFUN([mcpp_AC_C_DEFINE], [
mcpp-2.7.2/configure.ac:333:    name=`echo $3 | sed 's/=.*//'`
mcpp-2.7.2/configure.ac-334-    mcpp_macro=$1_SP_$2
mcpp-2.7.2/configure.ac:335:    stripped_mcpp_macro=`echo $mcpp_macro | sed 's/STD//'`
mcpp-2.7.2/configure.ac-336-    if test x$stripped_mcpp_macro != x$mcpp_macro; then
mcpp-2.7.2/configure.ac:337:        stripped_name=`echo $name | sed 's/^_//'`
mcpp-2.7.2/configure.ac-338-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure.ac-341-    else
mcpp-2.7.2/configure.ac:342:        stripped_name=`echo $name | sed 's/^@<:@A-Za-z@:>@//'`
mcpp-2.7.2/configure.ac-343-        if test x$stripped_name = x$name; then
##############################################
mcpp-2.7.2/configure.ac-349-    else
mcpp-2.7.2/configure.ac:350:        [replace=`echo $3 | sed 's/^.*=//'`]
mcpp-2.7.2/configure.ac-351-    fi
##############################################
mcpp-2.7.2/configure.ac-390-    AC_MSG_CHECKING( for the MacOS-specific framework directory)
mcpp-2.7.2/configure.ac:391:    frameworks=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | sed 's/^ *//' | sed 's/ .*$//' | $EGREP '/Frameworks$'`
mcpp-2.7.2/configure.ac-392-    n=1
##############################################
mcpp-2.7.2/configure.ac-517-    ac_cv_c_line_format,
mcpp-2.7.2/configure.ac:518:    [ac_cv_c_line_format=\"`echo '#line 4321' | $CPP - | grep 432 | sed 's/432.*$//'`\"]
mcpp-2.7.2/configure.ac-519-## Note: the output line number may be 4320 on GCC 2.* or other preprocessors.
##############################################
mcpp-2.7.2/configure.ac-532-    ac_cv_c_stdc,
mcpp-2.7.2/configure.ac:533:    [stdc=`echo '__STDC__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`]
mcpp-2.7.2/configure.ac-534-    if test x"$stdc" = x"__STDC__"; then
##############################################
mcpp-2.7.2/configure.ac-544-    ac_cv_c_stdc_ver,
mcpp-2.7.2/configure.ac:545:    [stdc_ver=`echo '__STDC_VERSION__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ .*//'`]
mcpp-2.7.2/configure.ac-546-    if test x"$stdc_ver" = x"__STDC_VERSION__"; then
##############################################
mcpp-2.7.2/configure.ac-570-    [\\/]* | [A-Za-z]:[\\/]*)
mcpp-2.7.2/configure.ac:571:        cxx_include_dir=`echo $withval | sed 's,/$,,'; 's,\\$,,'`
mcpp-2.7.2/configure.ac-572-        AC_DEFINE_UNQUOTED( [CPLUS_INCLUDE_DIR1], $cxx_include_dir,
##############################################
mcpp-2.7.2/configure.ac-589-
mcpp-2.7.2/configure.ac:590:    cpp_call=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | $EGREP '/cpp|/cc1' | sed 's/^ *//; s/ .*//'` 
mcpp-2.7.2/configure.ac-591-    AC_MSG_CHECKING( for the directory to install mcpp)
mcpp-2.7.2/configure.ac:592:    cpp_name=`expr $cpp_call : '.*/\(.*\)'`
mcpp-2.7.2/configure.ac:593:    bindir=`expr $cpp_call : "\(.*\)/$cpp_name"`
mcpp-2.7.2/configure.ac-594-    AC_MSG_RESULT( $bindir)
##############################################
mcpp-2.7.2/configure.ac-596-    AC_PATH_PROG( [gcc_path], [$CC], , [$PATH])
mcpp-2.7.2/configure.ac:597:    cc_path=`echo $CC | $EGREP "/"`
mcpp-2.7.2/configure.ac-598-    if test x$cc_path != x; then
##############################################
mcpp-2.7.2/configure.ac-602-    ## (i.e. "/usr/local" of "/usr/local/bin/gcc")
mcpp-2.7.2/configure.ac:603:    gcc_prefix=`echo $gcc_path | $EGREP "/bin/$CC\$" | sed "s,/bin/$CC\$,,"`
mcpp-2.7.2/configure.ac-604-    if test "x$gcc_prefix" != xNONE; then
##############################################
mcpp-2.7.2/configure.ac-618-    exclude="^/usr(/local|)/include\$|^${prefix}(/local|)/include\$|/Frameworks|End of search list"
mcpp-2.7.2/configure.ac:619:    c_include_dirs=`$CPP $CFLAGS $arch_opt -xc -v /dev/null 2>&1 | sed '1,/<...> search starts here/d' | sed '/End of search list/q' | sed 's/^ *//' | $EGREP -v "$exclude"`
mcpp-2.7.2/configure.ac-620-    n=1
##############################################
mcpp-2.7.2/configure.ac-652-    exclude="^/usr(/local|)/include\$|^${prefix}(/local|)/include\$|/Frameworks|^${c_include_dir1}\$|^${c_include_dir2}\$|^${c_include_dir3}\$"
mcpp-2.7.2/configure.ac:653:    cxx_include_dirs=`${CXXCPP} ${CXXFLAGS} $arch_opt -xc++ -v /dev/null 2>&1 | sed '1,/<...> search starts here/d' | sed '/End of search list/q' | sed '/End of search list/d' | sed 's/^ *//' | $EGREP -v "$exclude"`
mcpp-2.7.2/configure.ac-654-    n=1
##############################################
mcpp-2.7.2/configure.ac-715-            mcpp_cv_size_type,
mcpp-2.7.2/configure.ac:716:            [mcpp_cv_size_type=`echo '__SIZE_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *//'`]
mcpp-2.7.2/configure.ac-717-        )
##############################################
mcpp-2.7.2/configure.ac-722-            mcpp_cv_ptrdiff_type,
mcpp-2.7.2/configure.ac:723:            [mcpp_cv_ptrdiff_type=`echo '__PTRDIFF_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`]
mcpp-2.7.2/configure.ac-724-        )
##############################################
mcpp-2.7.2/configure.ac-729-            mcpp_cv_wchar_type,
mcpp-2.7.2/configure.ac:730:            [mcpp_cv_wchar_type=`echo '__WCHAR_TYPE__' | $CPP - | sed 's/^ *//' | $EGREP -v '^#|^$' | sed 's/ *$//'`]
mcpp-2.7.2/configure.ac-731-        )
##############################################
mcpp-2.7.2/configure.ac-762-        if test x$enable_replace_cpp = xyes; then
mcpp-2.7.2/configure.ac:763:            [gcc_testsuite_dir=`echo $withval | sed 's,/$,,'`]
mcpp-2.7.2/configure.ac-764-        else