* On image renamed print_server_add_on to print_addon_server

and moved it from folder bin to servers.
  The print_server uses print_addon_server now to
  execute printer driver add-ons.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39357 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer
2010-11-08 18:34:43 +00:00
parent f0de36acbb
commit 112cf45c66
5 changed files with 12 additions and 18 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ SYSTEM_BIN = "[" addattr alert arp base64 basename bash bc beep bootman bzip2
netcat netstat nl nohup notify nproc
od open
passwd paste patch pathchk pc ping ping6 play playfile playsound playwav
pr prio printenv printf print_server_add_on profile ps ptx pwd
pr prio printenv printf profile ps ptx pwd
query quit
rc readlink ReadOnlyBootPrompt reindex release renice rlog rm rmattr
rmindex rmdir roster route
@@ -100,7 +100,7 @@ PRIVATE_SYSTEM_LIBS =
;
SYSTEM_SERVERS = app_server cddb_daemon debug_server input_server mail_daemon
media_addon_server media_server midi_server mount_server net_server
notification_server print_server registrar syslog_daemon
notification_server print_server print_addon_server registrar syslog_daemon
;
SYSTEM_NETWORK_DEVICES = ethernet loopback ;
+1 -1
View File
@@ -1,7 +1,7 @@
#include "PrintServerAddOnProtocol.h"
const char* kPrintServerAddOnApplicationSignature =
"application/x-vnd.haiku-print-server-add-on";
"application/x-vnd.haiku-print-addon-server";
const char* kPrintServerAddOnStatusAttribute = "status";
const char* kPrinterDriverAttribute = "driver";
+1 -7
View File
@@ -10,13 +10,7 @@
#include "BeUtils.h"
#include "pr_server.h"
// TODO enable when issue launching print_server_add_on is resolved
#if 0
# include "PrintServerAddOn.h"
#else
# include "PrinterDriverAddOn.h"
# define PrintServerAddOn PrinterDriverAddOn
#endif
#include "PrintServerAddOn.h"
#include "PrintServerApp.h"
// posix
+4 -4
View File
@@ -2,15 +2,15 @@ SubDir HAIKU_TOP src servers print_addon ;
UsePrivateHeaders shared print ;
AddResources print_server_add_on :
print_server_add_on.rdef
AddResources print_addon_server :
print_addon_server.rdef
;
Application print_server_add_on :
Application print_addon_server :
PrintServerAddOnApplication.cpp
;
LinkAgainst print_server_add_on :
LinkAgainst print_addon_server :
be
root
libprintutils.a
@@ -1,16 +1,16 @@
resource app_signature "application/x-vnd.haiku-print-server-add-on";
resource app_signature "application/x-vnd.haiku-print-addon-server";
resource app_version {
major = 1,
middle = 0,
minor = 0,
variety = B_APPV_BETA,
variety = B_APPV_ALPHA,
internal = 0,
short_info = "print_server_add_on",
long_info = "print_server_add_on ©2010 Haiku"
short_info = "print_addon_server",
long_info = "print_addon_server ©2010 Haiku"
};
resource app_flags B_MULTIPLE_LAUNCH | B_BACKGROUND_APP;