Advertisement
Guest User

Untitled

a guest
Jul 6th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 2.61 KB | None | 0 0
  1. clang -DHAVE_CONFIG_H -I. -I..  -I../include  -I./raster  -I./memory  -I./pagemanager  -I./filteropt  -I/usr/local/include  -O2 -MT raster_to_epson.o -MD -MP -MF .deps/raster_to_epson.Tpo -c -o raster_to_epson.o raster_to_epson.c
  2. raster_to_epson.c:83:44: warning: passing 'char *' to parameter of type 'unsigned char *' converts between pointers to integer types with
  3.       different sign [-Wpointer-sign]
  4.                 readBytes = cupsRasterReadPixels(Raster, buf, bufSize);
  5.                                                          ^~~
  6. /usr/local/include/cups/raster.h:399:40: note: passing argument to parameter 'p' here
  7.                                              unsigned char *p, unsigned len);
  8.                                                             ^
  9. raster_to_epson.c:267:15: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
  10.                 while (attr = get_ppd_attr ("epcgResourceData", isFirst)) {
  11.                        ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  12. raster_to_epson.c:267:15: note: place parentheses around the assignment to silence this warning
  13.                 while (attr = get_ppd_attr ("epcgResourceData", isFirst)) {
  14.                             ^
  15.                        (                                                )
  16. raster_to_epson.c:267:15: note: use '==' to turn this assignment into an equality comparison
  17.                 while (attr = get_ppd_attr ("epcgResourceData", isFirst)) {
  18.                             ^
  19.                             ==
  20. raster_to_epson.c:384:43: warning: 'cupsRasterReadHeader' is deprecated: Use cupsRasterReadHeader2 instead. [-Wdeprecated-declarations]
  21.         while (JobCanceled == 0 && error == 0 && cupsRasterReadHeader (Raster, &header)) {
  22.                                                  ^
  23. /usr/local/include/cups/raster.h:396:18: note: 'cupsRasterReadHeader' has been explicitly marked deprecated here
  24. extern unsigned         cupsRasterReadHeader(cups_raster_t *r,
  25.                         ^
  26. 3 warnings generated.
  27. mv -f .deps/raster_to_epson.Tpo .deps/raster_to_epson.Po
  28. /bin/sh ../libtool  --tag=CC    --mode=link clang  -O2   -L/usr/local/lib -o epson_inkjet_printer_filter main.o  raster_to_epson.o -lstdc++  -lcupsimage -lcups -ljpeg -lm  ./memory/libmemory.la  ./pagemanager/libpagemanager.la  ./filteropt/libfilteropt.la  ./raster/libraster.la
  29. libtool: link: clang -O2 -o epson_inkjet_printer_filter main.o raster_to_epson.o  -L/usr/local/lib -lstdc++ -lcupsimage -lcups -ljpeg -lm ./memory/.libs/libmemory.a ./pagemanager/.libs/libpagemanager.a ./filteropt/.libs/libfilteropt.a ./raster/.libs/libraster.a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement