| 1 | #!perl |
1 | #!perl |
| 2 | ################################################################################ |
2 | ################################################################################ |
| 3 | # WeBWorK Online Homework Delivery System |
3 | # WeBWorK Online Homework Delivery System |
| 4 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
4 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
| 5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.131 2005/08/25 18:17:14 jj Exp $ |
5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.132 2005/08/26 17:30:05 jj Exp $ |
| 6 | # |
6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify it under |
7 | # This program is free software; you can redistribute it and/or modify it under |
| 8 | # the terms of either: (a) the GNU General Public License as published by the |
8 | # the terms of either: (a) the GNU General Public License as published by the |
| 9 | # Free Software Foundation; either version 2, or (at your option) any later |
9 | # Free Software Foundation; either version 2, or (at your option) any later |
| 10 | # version, or (b) the "Artistic License" which comes with this package. |
10 | # version, or (b) the "Artistic License" which comes with this package. |
| … | |
… | |
| 59 | |
59 | |
| 60 | $externalPrograms{tar} = "/usr/bin/tar"; |
60 | $externalPrograms{tar} = "/usr/bin/tar"; |
| 61 | |
61 | |
| 62 | # Basic image manipulation utilities |
62 | # Basic image manipulation utilities |
| 63 | # Most sites only need to configure the first line |
63 | # Most sites only need to configure the first line |
| 64 | $externalPrograms{netpbm} = "/usr/bin/"; # Really a prefix, rather than a program |
64 | my $netpbm_prefix = "/usr/bin"; |
| 65 | $externalPrograms{giftopnm} = $externalPrograms{netpbm}.'giftopnm'; |
65 | $externalPrograms{giftopnm} = "$netpbm_prefix/giftopnm"; |
| 66 | $externalPrograms{ppmtopgm} = $externalPrograms{netpbm}.'ppmtopgm'; |
66 | $externalPrograms{ppmtopgm} = "$netpbm_prefix/ppmtopgm"; |
| 67 | $externalPrograms{pnmtops} = $externalPrograms{netpbm}.'pnmtops'; |
67 | $externalPrograms{pnmtops} = "$netpbm_prefix/pnmtops"; |
| 68 | $externalPrograms{pnmtopng} = $externalPrograms{netpbm}.'pnmtopng'; |
68 | $externalPrograms{pnmtopng} = "$netpbm_prefix/pnmtopng"; |
| 69 | $externalPrograms{pngtopnm} = $externalPrograms{netpbm}.'pngtopnm'; |
69 | $externalPrograms{pngtopnm} = "$netpbm_prefix/pngtopnm"; |
| 70 | |
70 | |
| 71 | # The following lines are the external scripts gif2eps, etc. |
71 | # The following lines are the external scripts gif2eps, etc. |
| 72 | # The source file is input with cat, and the output is redirected to |
72 | # The source file is input with cat, and the output is redirected to |
| 73 | # the desired file. |
73 | # the desired file. |
| 74 | |
74 | |