]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Mirror 1.1.x change.
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Mon, 27 Jan 2003 17:12:27 +0000 (17:12 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Mon, 27 Jan 2003 17:12:27 +0000 (17:12 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/branches/branch-1.2@3154 7a7537e8-13f0-0310-91df-b6672ffda945

CHANGES-1.1.txt
backend/usb.c

index ad6549630f01cd55eeb06c102d092502572c75e1..0071d62d8082e3e14399dffa7b3282dfef4fd079 100644 (file)
@@ -3,6 +3,7 @@ CHANGES-1.1.txt
 
 CHANGES IN CUPS V1.1.19
 
+       - The USB backend didn't compile on Solaris Intel.
        - The cupstestppd utility now supports the "-q" option
          (quiet) for use in scripts, etc.
        - Merged several weight-reducing changes into the CUPS
index 3c442de935699b2871a2db570444e5517846f25f..fc660c01e31b2f9b81017a3ecdbf0c19d3204596 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * "$Id: usb.c,v 1.18.2.23 2003/01/23 18:55:00 mike Exp $"
+ * "$Id: usb.c,v 1.18.2.24 2003/01/27 17:12:27 mike Exp $"
  *
  *   USB port backend for the Common UNIX Printing System (CUPS).
  *
 #endif /* __linux */
 
 #ifdef __sun
-#  include <sys/ecppio.h>
+#  ifdef __sparc
+#    include <sys/ecppio.h>
+#  else
+#    include <sys/ecppsys.h>
+#  endif /* __sparc */
 #endif /* __sun */
 
 
@@ -744,5 +748,5 @@ open_device(const char *uri)                /* I - Device URI */
 
 
 /*
- * End of "$Id: usb.c,v 1.18.2.23 2003/01/23 18:55:00 mike Exp $".
+ * End of "$Id: usb.c,v 1.18.2.24 2003/01/27 17:12:27 mike Exp $".
  */