Bug 179538 - Default solaris print command should call "lp". sr=alecf, a=asa.

This commit is contained in:
kjh-5727%comcast.net 2005-04-28 17:13:14 +00:00
Родитель 969eb028e7
Коммит f85c64ed6a
1 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -1634,7 +1634,6 @@ pref("applications.telnet", "xterm -e telnet %h %p");
pref("applications.tn3270", "xterm -e tn3270 %h");
pref("applications.rlogin", "xterm -e rlogin %h");
pref("applications.rlogin_with_user", "xterm -e rlogin %h -l %u");
// On Solaris/IRIX, this should be "lp"
pref("print.print_command", "lpr ${MOZ_PRINTER_NAME:+'-P'}${MOZ_PRINTER_NAME}");
pref("print.printer_list", ""); // list of printers, separated by spaces
pref("print.print_reversed", false);
@ -2051,3 +2050,11 @@ pref("font.name.monospace.x-unicode", "dt-interface user-ucs2.cjk_japan-0");
# AIX
#endif
#ifdef SOLARIS
pref("print.postscript.print_command", "lp -c -s ${MOZ_PRINTER_NAME:+'-d '}${MOZ_PRINTER_NAME}");
pref("print.print_command", "lp -c -s ${MOZ_PRINTER_NAME:+'-d '}${MOZ_PRINTER_NAME}");
# Solaris
#endif