Skip to content

Commit

Permalink
Save work.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Nov 3, 2023
1 parent df1c985 commit 1247820
Show file tree
Hide file tree
Showing 16 changed files with 5,745 additions and 13 deletions.
10 changes: 10 additions & 0 deletions daemon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,16 @@ cups-locald: $(OBJS)
$(CODE_SIGN) -s "$(CODESIGN_IDENTITY)" $@


#
# iconsh - all of the PNG icons as a header file...
#

.PHONY: iconsh
iconsh:
echo Generating icons.h...
pappl-makeresheader *.png >icons.h


#
# Dependencies...
#
Expand Down
12 changes: 8 additions & 4 deletions daemon/cups-locald.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,16 @@
# define VALUE(x)
# endif // CUPS_LOCAL_MAIN_C

VAR pappl_pr_driver_t LocalDrivers[3]
VAR pappl_pr_driver_t LocalDrivers[7]
# ifdef CUPS_LOCAL_MAIN_C
= {
{ "everywhere", "IPP Everywhere™", NULL, NULL },
{ "pcl", "Generic PCL", NULL, NULL },
{ "ps", "Generic PostScript", NULL, NULL }
{ "everywhere", "IPP Everywhere™", NULL, NULL },
{ "pcl", "Generic PCL", NULL, NULL },
{ "pcl_duplex", "Generic PCL w/Duplexer", NULL, NULL },
{ "ps", "Generic PostScript", NULL, NULL },
{ "ps_color", "Generic Color PostScript", NULL, NULL },
{ "ps_duplex", "Generic PostScript w/Duplexer", NULL, NULL },
{ "ps_color_duplex", "Generic Color PostScript w/Duplexer", NULL, NULL }
}
# endif // CUPS_LOCAL_MAIN_C
;
Expand Down
Loading

0 comments on commit 1247820

Please sign in to comment.