Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Version bump | lloyd | 2006-09-20 | 1 | -1/+1 |
| | |||||
* | Clean up the output produced when a 'note' directive is encountered in a | lloyd | 2006-09-10 | 1 | -5/+2 |
| | | | | module. | ||||
* | Better trace output | lloyd | 2006-09-09 | 1 | -78/+73 |
| | | | | Tidy up module loading | ||||
* | Clean up use of grep and map | lloyd | 2006-09-09 | 1 | -17/+22 |
| | |||||
* | Fix the clean and install targets in the makefiles | lloyd | 2006-09-09 | 1 | -16/+24 |
| | | | | Clean up how help output is produced a bit further. | ||||
* | Split main() into several subroutines. | lloyd | 2006-09-09 | 1 | -580/+650 |
| | | | | | | Improve help and diagnostic output. Exit if an error is encountered when parsing options. | ||||
* | Be more free with suggesting the user try running with --help in the event | lloyd | 2006-09-09 | 1 | -22/+24 |
| | | | | of a failure relating to input. | ||||
* | Merge the various set_if_any functions into a single match_any_of | lloyd | 2006-09-09 | 1 | -40/+32 |
| | |||||
* | Fix a bug when generating nmake-style makefiles. | lloyd | 2006-09-08 | 1 | -3/+2 |
| | | | | | | Make sure to close the output file in process_template Work around some Visual Studio command-line brain damange. | ||||
* | Rename error() to croak(), to make it a little more obvious that it doesn't | lloyd | 2006-09-08 | 1 | -146/+155 |
| | | | | | | | | return. Rename read_hash to read_list, which is slightly more accurate. Use croak() instead of calling die directly in most spots. | ||||
* | Some minor simplifications for installation logic. | lloyd | 2006-09-08 | 1 | -60/+35 |
| | | | | Inline print_unix_makefile and print_nmake_makefile into generate_makefile | ||||
* | Various small things, nothing of real import. | lloyd | 2006-09-08 | 1 | -24/+20 |
| | |||||
* | The dir_list() function hardcoded '.' and '..' intead of using File::Spec | lloyd | 2006-09-08 | 1 | -6/+11 |
| | |||||
* | Hoist some shared code up to generate_makefile() | lloyd | 2006-09-08 | 1 | -71/+51 |
| | |||||
* | Store the list of docs to install in a list rather than a hash. | lloyd | 2006-09-08 | 1 | -49/+31 |
| | | | | Simplify calls to file_list() a bit. | ||||
* | Fix handling for systems that need to run ranlib on static libraries. | lloyd | 2006-09-08 | 1 | -8/+4 |
| | |||||
* | Fix minor spacing issues after the build list | lloyd | 2006-09-08 | 1 | -3/+2 |
| | |||||
* | Fix several embedded pathnames that might cause problems on non-Unix | lloyd | 2006-09-08 | 1 | -56/+32 |
| | | | | | | | | | | machines. Change clean_out_dir() to use dir_list() instead of list_dir(), as it was not making any use of the extra features of list_dir. Also, as there was one remaining use of list_dir(), which was the checks directory (which had some special cases burned in), delete list_dir and replace it by a special purpose function for that case. | ||||
* | Integrated conflict detection into the module loader, which catches many | lloyd | 2006-09-08 | 1 | -40/+28 |
| | | | | cases that the old check_for_conflicts() function would not. | ||||
* | Finally get rid of the last set of globals | lloyd | 2006-09-08 | 1 | -50/+48 |
| | | | | | Fix copy_files, it was hardcoding the directory to look for the files, rather than simply looking at the hash contents. | ||||
* | Speed up process_template() by running the regular expressions over the | lloyd | 2006-09-08 | 1 | -90/+106 |
| | | | | entire file at once, instead of a line at a time. | ||||
* | Pass the config hash to load_module instead of a list of arguments | lloyd | 2006-09-08 | 1 | -66/+66 |
| | |||||
* | Get rid of a few more global variables | lloyd | 2006-09-08 | 1 | -35/+34 |
| | | | | Pass the name of the makefile template to use in the config hash | ||||
* | Use %CONFIG to hold much more of the build information. | lloyd | 2006-09-08 | 1 | -160/+136 |
| | |||||
* | Chop out various globals and unused parameters | lloyd | 2006-09-08 | 1 | -94/+127 |
| | |||||
* | Rearrange to place related pieces of code near each other. | lloyd | 2006-09-08 | 1 | -271/+343 |
| | | | | | | | Add some block comments so it's easier to navigate. Merge the two functions that generated the makefile build commands, as they basically performed the same function with slightly different parameters. | ||||
* | Remove support for building with .s files, which aren't used (versus .S | lloyd | 2006-09-08 | 1 | -5/+4 |
| | | | | files, which are). | ||||
* | Remove some unused parameters to the makefile printers | lloyd | 2006-09-08 | 1 | -27/+26 |
| | | | | Reformat file_list() | ||||
* | Move some of the shared code up to generate_makefile | lloyd | 2006-09-08 | 1 | -172/+109 |
| | |||||
* | Remove the makefile file handle parameter to the generation functions, as | lloyd | 2006-09-08 | 1 | -32/+24 |
| | | | | they weren't using it. | ||||
* | Fix a failure that occured if the user specified the OS as generic. | lloyd | 2006-09-08 | 1 | -28/+33 |
| | | | | | | Fix the code that took the user-specified or autodetected CPU name and turned it into the canonical arch/submodel pair. It did not handle arch aliases (such as 'x86' or 'axp') correctly. | ||||
* | Remove print_header(), no longer used | lloyd | 2006-09-08 | 1 | -7/+0 |
| | |||||
* | Generate the NMAKE version of the makefile with file templates | lloyd | 2006-09-08 | 1 | -123/+52 |
| | |||||
* | Generate the Unix makefiles by processing templates and replacing | lloyd | 2006-09-08 | 1 | -178/+49 |
| | | | | variables, rather than hardcoding the entire Makefile into the script. | ||||
* | Make some code a bit more concise/Perlish | lloyd | 2006-09-08 | 1 | -16/+14 |
| | |||||
* | Get ride of some variables that were just cluttering up the code. | lloyd | 2006-09-08 | 1 | -14/+5 |
| | |||||
* | Generate the botan-config script through a simple template-based system. | lloyd | 2006-09-08 | 1 | -66/+41 |
| | |||||
* | Just moving things around | lloyd | 2006-09-07 | 1 | -569/+570 |
| | |||||
* | Remove extraneous parenthesis | lloyd | 2006-09-06 | 1 | -3/+3 |
| | |||||
* | Move the call to main() up towards the top of the script so it's easier | lloyd | 2006-09-05 | 1 | -8/+6 |
| | | | | to find. | ||||
* | Remove the last users of %MODULES_OLD | lloyd | 2006-09-05 | 1 | -95/+63 |
| | |||||
* | Add helper functions for warning and error messages. | lloyd | 2006-09-05 | 1 | -54/+74 |
| | | | | Add a helper function in load_module | ||||
* | Change computation of the preprocessor macros to define to use the new | lloyd | 2006-09-05 | 1 | -20/+22 |
| | | | | | | | modules hash. If two modules request inconsistent sizes for the MP words, report what modules they were. | ||||
* | Cause two different versions of the modules hash to exist; the previous | lloyd | 2006-09-05 | 1 | -17/+30 |
| | | | | format (renamed MODULES_OLD) and the new format (MODULES). | ||||
* | Start changing the module reader code to match the configuration info | lloyd | 2006-09-05 | 1 | -33/+41 |
| | | | | readers; in particular, being somewhat consistent about data structures. | ||||
* | Remove support for modules to define macros that don't have an _EXT_ in | lloyd | 2006-09-05 | 1 | -23/+3 |
| | | | | them; it wasn't being used, and I'm not sure if it's even a good idea. | ||||
* | Move the autoconfiguration code to the bottom; it's the messiest and probably | lloyd | 2006-09-05 | 1 | -214/+213 |
| | | | | the thing I'm going to work on last. | ||||
* | Remove the last of the (old) global hashes | lloyd | 2006-09-05 | 1 | -56/+100 |
| | |||||
* | Inline set_arch_defines for easier editing | lloyd | 2006-09-05 | 1 | -28/+22 |
| | |||||
* | Change set_arch_defines to also use read_info_files, then interate over | lloyd | 2006-09-05 | 1 | -10/+5 |
| | | | | the %CPU hash and extract the extra information that's currently needed. |