Commit Graph

6 Commits

Author SHA1 Message Date
Bill Wendling
5f17827df4 [svn-r7627] Purpose:
Bug Fix

Description:
    The Dependencies files for fortran/ weren't being generated properly.
    The "top_srcdir" variable was pointing to the src/fortran directory
    instead of the src/ directory. This is correct as far as configure's
    concerned, but our code needs the src/ directory to work.

Solution:
    Remove the /fortran/.. from the end of top_srcdir if it exists there.

Platforms tested:
    Arabica (just needed to check that Fortran compiles okay).

Misc. update:
2003-10-14 15:28:26 -05:00
Bill Wendling
f0fc174cdd [svn-r7570] Purpose:
Bug fix/ Update

Description:
    Added "void**" type to trace file (set to "x").

    Fixed dependencies so that it closes the DEPEND and NEW file handles.

Platforms tested:
    Linux (small fix)

Misc. update:
2003-10-07 16:12:28 -05:00
Bill Wendling
ebb263afa6 [svn-r6765] Purpose:
Bug Fix

Description:
    If there was a header file with a path like:

        /some/path/mpich.optimized/...

    The dependencies script would change that to

        /some/path/mpich.loptimized/...
                         ^--Note.

Solution:
    Mike McKay offered the solution to replace the substitution script
    from "s/\.o/\.lo/g" to "s/\.o(\b)/\.lo$1/g". It doesn't crash when
    run on Linux, but we need to make sure that it's okay for his
    machine.

Platforms tested:
    Linux, since this script is only run on GNU platforms.

Misc. update:
2003-04-28 13:39:41 -05:00
Bill Wendling
2021329c69 [svn-r6536] Purpose:
Updated Copyright Statement

Description:
    Replaced old copyright statement with new one.

Platforms tested:
    No need.

Misc. update:
2003-03-31 12:39:53 -05:00
Bill Wendling
cfb22bab40 [svn-r4304]
Purpose:
    Bug Fix
Description:
    The dependencies weren't being generated properly. What was
    happening, if there was a "." in the path name to the source
    directories, it would say, "oh! That matches anything. Dup-dee-do
    I'll just mess everything up, then."
Solution:
    Escape all occurences of "." with a "\." so that it will match an
    actual "." instead of anything.
Platforms tested:
    Linux
2001-08-02 12:26:52 -05:00
Bill Wendling
b5d11111b0 [svn-r4292]
Purpose:
    Bug Fix
Description:
    The way we were generating Dependencies and .depend files was broken.
    If the $srcdir or other macros began with a ".", then it would match
    anything and cause problems since it would then overwrite the
    beginning of the header file's path.
Solution:
    Wrote a Perl script which can handle this type of weirdness better.
    It's only used when the environment is a GNU one with a GCC
    compiler...
Platforms tested:
    Linux
2001-08-01 16:00:25 -05:00