| OLD | NEW |
| 1 /* Configure script for libxslt, specific for Windows with Scripting Host. | 1 /* Configure script for libxslt, specific for Windows with Scripting Host. |
| 2 * | 2 * |
| 3 * This script will configure the libxslt build process and create necessary fil
es. | 3 * This script will configure the libxslt build process and create necessary fil
es. |
| 4 * Run it with an 'help', or an invalid option and it will tell you what options | 4 * Run it with an 'help', or an invalid option and it will tell you what options |
| 5 * it accepts. | 5 * it accepts. |
| 6 * | 6 * |
| 7 * March 2002, Igor Zlatkovic <igor@zlatkovic.com> | 7 * March 2002, Igor Zlatkovic <igor@zlatkovic.com> |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 /* The source directory, relative to the one where this file resides. */ | 10 /* The source directory, relative to the one where this file resides. */ |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 txtOut += " Install prefix: " + buildPrefix + "\n"; | 498 txtOut += " Install prefix: " + buildPrefix + "\n"; |
| 499 txtOut += " Put tools in: " + buildBinPrefix + "\n"; | 499 txtOut += " Put tools in: " + buildBinPrefix + "\n"; |
| 500 txtOut += " Put headers in: " + buildIncPrefix + "\n"; | 500 txtOut += " Put headers in: " + buildIncPrefix + "\n"; |
| 501 txtOut += "Put static libs in: " + buildLibPrefix + "\n"; | 501 txtOut += "Put static libs in: " + buildLibPrefix + "\n"; |
| 502 txtOut += "Put shared libs in: " + buildSoPrefix + "\n"; | 502 txtOut += "Put shared libs in: " + buildSoPrefix + "\n"; |
| 503 txtOut += " Include path: " + buildInclude + "\n"; | 503 txtOut += " Include path: " + buildInclude + "\n"; |
| 504 txtOut += " Lib path: " + buildLib + "\n"; | 504 txtOut += " Lib path: " + buildLib + "\n"; |
| 505 WScript.Echo(txtOut); | 505 WScript.Echo(txtOut); |
| 506 | 506 |
| 507 // Done. | 507 // Done. |
| OLD | NEW |