summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fixes to the LaTeX scanner for Python version differences.Steven Knight2005-11-191-6/+4
|
* Support specifying absolute path names without drive letters on Win32.Steven Knight2005-11-194-23/+50
|
* Fix C/C++ compiler choosing on AIX. (Bob Halley)Steven Knight2005-11-182-2/+10
|
* Bring CVS back in sync.Steven Knight2005-11-1792-1335/+2894
|
* When searching paths for Files or Dirs, match Entries,too.Steven Knight2005-11-162-817/+557
|
* Handle FunctionAction signatures when the function is an object method.Steven Knight2005-11-163-9/+31
|
* Make CheckLib() arguments consistent with other calls.Steven Knight2005-11-163-2/+560
|
* Allow explicit target_factory=Dir with Builders that make a directory to ↵Steven Knight2005-11-156-2630/+1271
| | | | override the default, implicit make-a-directory Builder..
* Make all relevant builders of .tex and .ltx files consistent with respect to ↵Steven Knight2005-11-076-36/+114
| | | | handling generating bibliographies and re-running LaTeX to resolve undefined references. (Joel B. Mohler) Add a $LATEXRETRIES to configure the number of undefined reference re-runs.
* Do not throw an exception if the type of a stored implicit dependency has ↵Steven Knight2005-11-062-2/+19
| | | | changed since last run. (Dobes Vandermeer)
* Correct $SOURCES on TeX command lines. (Sanjoy Mahajan) Add scanning of ↵Steven Knight2005-11-0614-10/+291
| | | | LaTeX files for implicit dependencies. (August Hörandl) Add support for generating indices from .idx files. (August Hörandl)
* Add support for an explicit SCONS_HOME variable for writing the SCons ↵Steven Knight2005-11-063-8/+33
| | | | execution line in Visual Studio project files. (Dobes Vandermeer) Two minor test fixes for win32 portability.
* Add support for the Java 1.5 enum keyword. (Kian Win Ong)Steven Knight2005-11-063-1/+13
|
* Fix AppendUnique and PrependUnique concatenating strings to lists. (Patrick ↵Steven Knight2005-11-063-2/+33
| | | | Mezard)
* Add use of $CPPDEFINES to $RCCOM on MinGW. (Amir Szekely)Steven Knight2005-11-063-4/+9
|
* Fix a bug in command-line escaping. (Jan Nieuwenhuizen)Steven Knight2005-11-053-5/+41
|
* Add Visual Studio support for SCC Provider variables. (Dobes Vandermeer)Steven Knight2005-11-052-5/+141
|
* Add support for a $INSTALLSTR string. (Christoph Schulz)Steven Knight2005-11-053-1/+4
|
* Add --debug=explain to the man page. (How did we miss this?)Steven Knight2005-11-011-0/+3
|
* Get rid of indentation tabs in the test scripts and have runtest.py invoke ↵Steven Knight2005-10-1411-182/+182
| | | | them with the python -tt option to keep them out.
* Have the QT UIC Scanner use the env.FindFile method. (Leanid Nazdrynau)Steven Knight2005-10-132-10/+11
|
* On Windows, the Intel Fortran compiler (ifort) uses -object: instead of -o ↵Steven Knight2005-10-102-0/+15
| | | | as the command-line option for output object files. Massage command lines appropriately.
* Improve intelc.py so it doesn't throw an exception if a version other than ↵Steven Knight2005-10-102-13/+27
| | | | ia32 (for example, em64t) is installed without the ia32 version. (Anonymous)
* Fix on-disk file matching on case-insensitive systems. Various fixes for ↵Steven Knight2005-10-103-3/+12
| | | | win32 portability. Refactor the --debug=time test. Refactor the Perforce test. Additional cleanup.
* Put quotes around the -C directory in command lines in MSVS project files.Steven Knight2005-10-092-1/+4
|
* Get rid of the last tabs in the source files and have the TestSCons ↵Steven Knight2005-10-097-22/+26
| | | | infrastructure use the python -tt option when executing SCons to make sure they do not recur.
* Move /opt/bin to between /usr/local/bin and /bin on the default POSIX path.Steven Knight2005-10-083-2/+17
|
* Remove old, same-named files from a build directory if the file in the ↵Steven Knight2005-10-083-3/+50
| | | | source directory does not exist. (Patrick Mezard)
* MSVC.py improvements: new MSVSSolution() Builder, new variables to contro ↵Steven Knight2005-10-083-210/+712
| | | | generation of project and solution files. (Stanislav Baranov)
* When deleting a variable from an OverrideEnvironment, do not throw an ↵Steven Knight2005-10-083-2/+33
| | | | exception if the underlying Environment does not have a variable we deleted.
* Add /sw/bin to the default PATH on Darwin systems. (Greg Noel) Add ↵Steven Knight2005-10-083-1/+8
| | | | /opt/bin to the default PATH on all POSIX systems. (Asfand Yar Qazi)
* Handle failure to chmod() the .sconsign.dblite file, if it's owned by ↵Steven Knight2005-10-082-2/+10
| | | | another UID.
* Add $CONFIGURELOG and $CONFIGUREDIR values to support specification of the ↵Steven Knight2005-10-044-6/+37
| | | | configuration log file and directory for configuration tests.
* Report removal of multiple targets correctly when using -n -c. (Patrick Mezard)Steven Knight2005-10-022-2/+7
|
* When building a .jar file and $JARCHDIR is set, prefix each .class file with ↵Steven Knight2005-09-292-10/+8
| | | | the -C flag. (Kian Win Ong)
* Explicit "skipping test" messages for a few straggling tests.Steven Knight2005-09-261-139/+156
|
* Check all targets when deciding if a target is up to date. (Patrick Mezard)Steven Knight2005-09-262-13/+22
|
* Fix a bug in the signature refactoring that caused some generated .h files ↵Steven Knight2005-09-253-11/+27
| | | | to always get rebuilt.
* Optimize is_List et al. Add a script harness and scripts for benchmarking ↵Steven Knight2005-09-251-11/+54
| | | | Python code snippets.
* More efficient checking for on-disk file entries.Steven Knight2005-09-253-17/+36
|
* Fix leftover SCons.Util references. (Ralf W. Grosse-Kunstleve and Patrick ↵Steven Knight2005-09-242-2/+7
| | | | Mezard)
* Document the necessity of passing in "target" to and "source" to env.subst() ↵Steven Knight2005-09-212-29/+48
| | | | calls that want to expand ${TARGET,TARGETS,SOURCE,SOURCES}. Also, speed up the Variable_Method_Caller class.
* Give the subst logic its own SCons.Subst module. It's big enough.Steven Knight2005-09-1913-1884/+2026
|
* Environment infrastructure for special variable handling.Steven Knight2005-09-182-26/+38
|
* testSteven Knight2005-09-082-5/+19
|
* Fix unicode encoder errors.Steven Knight2005-08-301-3/+2
|
* On Solaris, enable the -KPIC option by default when compiling shared ↵Steven Knight2005-08-246-2/+34
| | | | objects, and accomodate Sun Workshop by changing the prefix instead of the suffix. (Steve-o) Add the +Z option for compiling shared objects on HP-UX.
* Add f90 and f95 to the list of Fortran compilers searched by default.Steven Knight2005-08-223-7/+23
|
* Handle Fortran MODULE definitions in the same file. (Craig Scott)Steven Knight2005-08-212-4/+42
|
* Handle IOError exceptions when pushing files to CacheDir (and elsewhere).Steven Knight2005-08-209-78/+76
|