]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Updated Makedefs for new man page rules and directories.
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Thu, 24 Feb 2000 21:01:38 +0000 (21:01 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Thu, 24 Feb 2000 21:01:38 +0000 (21:01 +0000)
Updated configure script for new directory stuff.

Removed old .z man page files.

Updated parallel and serial backends for all supported platforms.

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@920 7a7537e8-13f0-0310-91df-b6672ffda945

Makedefs.in
backend/parallel.c
backend/serial.c

index e20a462b9178b5dc3cedc8da98508a68f527bbff..d3b4eab79412d63f511580be043a8735e99eac41 100644 (file)
@@ -1,5 +1,5 @@
 #
-# "$Id: Makedefs.in,v 1.18 2000/02/08 20:38:40 mike Exp $"
+# "$Id: Makedefs.in,v 1.19 2000/02/24 21:01:37 mike Exp $"
 #
 #   Common makefile definitions for the Common UNIX Printing System (CUPS).
 #
@@ -37,7 +37,6 @@ LN    =       /bin/ln -sf
 MKDIR  =       @MKDIR@ -p
 MV     =       @MV@
 NROFF  =       @NROFF@
-PACK   =       @PACK@
 RANLIB =       @RANLIB@
 RM     =       @RM@ -f
 SED    =       @SED@
@@ -129,5 +128,5 @@ SERVERROOT  =       @CUPS_SERVERROOT@
        $(NROFF) -man $< >$@
 
 #
-# End of "$Id: Makedefs.in,v 1.18 2000/02/08 20:38:40 mike Exp $"
+# End of "$Id: Makedefs.in,v 1.19 2000/02/24 21:01:37 mike Exp $"
 #
index 0a191297e298b89f0cc609b58b53e6a4f244613d..c8f73ca98fc6b111ec5cc9dc8f64a7dd4e0c3d70 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * "$Id: parallel.c,v 1.14 2000/02/11 05:04:12 mike Exp $"
+ * "$Id: parallel.c,v 1.15 2000/02/24 21:01:38 mike Exp $"
  *
  *   Parallel port backend for the Common UNIX Printing System (CUPS).
  *
 #  include <termios.h>
 #endif /* WIN32 || __EMX__ */
 
+#ifdef __sgi
+#  include <invent.h>
+#  ifndef INV_EPP_ECP_PLP
+#    define INV_EPP_ECP_PLP    6       /* From 6.3/6.4/6.5 sys/invent.h */
+#    define INV_ASO_SERIAL     14      /* serial portion of SGI ASO board */
+#    define INV_IOC3_DMA       16      /* DMA mode IOC3 serial */
+#    define INV_IOC3_PIO       17      /* PIO mode IOC3 serial */
+#    define INV_ISA_DMA                19      /* DMA mode ISA serial -- O2 */
+#  endif /* !INV_EPP_ECP_PLP */
+#endif /* __sgi */
+
 
 /*
  * Local functions...
@@ -211,6 +222,9 @@ main(int  argc,             /* I - Number of command-line arguments (6 or 7) */
 void
 list_devices(void)
 {
+  static char  *funky_hex = "0123456789abcdefghijklmnopqrstuvwxyz";
+                               /* Funky hex numbering used for some devices */
+
 #ifdef __linux
   int  i;                      /* Looping var */
   int  fd;                     /* File descriptor */
@@ -283,14 +297,219 @@ list_devices(void)
     }
   }
 #elif defined(__sgi)
+  int          i, j, n;        /* Looping vars */
+  char         device[255];    /* Device filename */
+  inventory_t  *inv;           /* Hardware inventory info */
+
+
+ /*
+  * IRIX maintains a hardware inventory of most devices...
+  */
+
+  setinvent();
+
+  while ((inv = getinvent()) != NULL)
+  {
+    if (inv->inv_class == INV_PARALLEL &&
+        (inv->inv_type == INV_ONBOARD_PLP ||
+         inv->inv_type == INV_EPP_ECP_PLP))
+    {
+     /*
+      * Standard parallel port...
+      */
+
+      puts("direct parallel:/dev/plp \"Unknown\" \"Onboard Parallel Port\"");
+    }
+    else if (inv->inv_class == INV_PARALLEL &&
+             inv->inv_type == INV_EPC_PLP)
+    {
+     /*
+      * EPC parallel port...
+      */
+
+      printf("direct parallel:/dev/plp%d \"Unknown\" \"Integral EPC parallel port, Ebus slot %d\"\n",
+             inv->inv_controller, inv->inv_controller);
+    }
+  }
+
+  endinvent();
+
+ /*
+  * Central Data makes serial and parallel "servers" that can be
+  * connected in a number of ways.  Look for ports...
+  */
+
+  for (i = 0; i < 10; i ++)
+    for (j = 0; j < 8; j ++)
+      for (n = 0; n < 32; n ++)
+      {
+        if (i == 8)            /* EtherLite */
+          sprintf(device, "/dev/lpn%d%c", j, funky_hex[n]);
+        else if (i == 9)       /* PCI */
+          sprintf(device, "/dev/lpp%d%c", j, funky_hex[n]);
+        else                   /* SCSI */
+          sprintf(device, "/dev/lp%d%d%c", i, j, funky_hex[n]);
+
+       if (access(device, 0) == 0)
+       {
+         if (i == 8)
+           printf("direct parallel:%s \"Unknown\" \"Central Data EtherLite Parallel Port, ID %d, port %d\"\n",
+                  device, j, n);
+         else if (i == 9)
+           printf("direct parallel:%s \"Unknown\" \"Central Data PCI Parallel Port, ID %d, port %d\"\n",
+                  device, j, n);
+         else
+           printf("direct parallel:%s \"Unknown\" \"Central Data SCSI Parallel Port, logical bus %d, ID %d, port %d\"\n",
+                  device, i, j, n);
+       }
+      }
 #elif defined(__sun)
+  int          i, j, n;        /* Looping vars */
+  char         device[255];    /* Device filename */
+  inventory_t  *inv;           /* Hardware inventory info */
+
+
+ /*
+  * Standard parallel ports...
+  */
+
+  for (i = 0; i < 10; i ++)
+  {
+    sprintf(device, "/dev/ecpp%d", i);
+    if (access(device, 0) == 0)
+      printf("direct parallel:%s \"Unknown\" \"Sun IEEE-1284 Parallel Port #%d\"\n",
+             device, i + 1);
+  }
+
+  for (i = 0; i < 10; i ++)
+  {
+    sprintf(device, "/dev/bpp%d", i);
+    if (access(device, 0) == 0)
+      printf("direct parallel:%s \"Unknown\" \"Sun Standard Parallel Port #%d\"\n",
+             device, i + 1);
+  }
+
+  for (i = 0; i < 3; i ++)
+  {
+    sprintf(device, "/dev/lp%d", i);
+
+    if (access(device, 0) == 0)
+      printf("direct parallel:%s \"Unknown\" \"PC Parallel Port #%d\"\n",
+             device, i + 1);
+  }
+
+ /*
+  * MAGMA parallel ports...
+  */
+
+  for (i = 0; i < 40; i ++)
+  {
+    sprintf(device, "/dev/pm%02d", i);
+    if (access(device, 0) == 0)
+      printf("direct parallel:%s \"Unknown\" \"MAGMA Parallel Board #%d Port #%d\"\n",
+             device, (i / 10) + 1, (i % 10) + 1);
+  }
+
+ /*
+  * Central Data parallel ports...
+  */
+
+  for (i = 0; i < 9; i ++)
+    for (j = 0; j < 8; j ++)
+      for (n = 0; n < 32; n ++)
+      {
+        if (i == 8)    /* EtherLite */
+          sprintf(device, "/dev/sts/lpN%d%c", j, funky_hex[n]);
+        else
+          sprintf(device, "/dev/sts/lp%c%d%c", i + 'C', j,
+                  funky_hex[n]);
+
+       if (access(device, 0) == 0)
+       {
+         if (i == 8)
+           printf("direct parallel:%s \"Unknown\" \"Central Data EtherLite Parallel Port, ID %d, port %d\"\n",
+                  device, j, n);
+         else
+           printf("direct parallel:%s \"Unknown\" \"Central Data SCSI Parallel Port, logical bus %d, ID %d, port %d\"\n",
+                  device, i, j, n);
+       }
+      }
 #elif defined(__hpux)
-#elif defined(__osf)
+  int          i, j, n;        /* Looping vars */
+  char         device[255];    /* Device filename */
+
+
+ /*
+  * Standard parallel ports...
+  */
+
+  if (access("/dev/rlp", 0) == 0)
+    puts("direct parallel:/dev/rlp \"Unknown\" \"Standard Parallel Port (/dev/rlp)\"");
+
+  for (i = 0; i < 7; i ++)
+    for (j = 0; j < 7; j ++)
+    {
+      sprintf(device, "/dev/c%dt%dd0_lp", i, j);
+      if (access(device, 0) == 0)
+       printf("direct parallel:%s \"Unknown\" \"Parallel Port #%d,%d\"\n", i, j);
+    }
+
+ /*
+  * Central Data parallel ports...
+  */
+
+  for (i = 0; i < 9; i ++)
+    for (j = 0; j < 8; j ++)
+      for (n = 0; n < 32; n ++)
+      {
+        if (i == 8)    /* EtherLite */
+          sprintf(device, "/dev/lpN%d%c", j, funky_hex[n]);
+        else
+          sprintf(device, "/dev/lp%c%d%c", i + 'C', j,
+                  funky_hex[n]);
+
+       if (access(device, 0) == 0)
+       {
+         if (i == 8)
+           printf("direct parallel:%s \"Unknown\" \"Central Data EtherLite Parallel Port, ID %d, port %d\"\n",
+                  device, j, n);
+         else
+           printf("direct parallel:%s \"Unknown\" \"Central Data SCSI Parallel Port, logical bus %d, ID %d, port %d\"\n",
+                  device, i, j, n);
+       }
+      }
+#elif defined(__osf__)
+  int  i;                      /* Looping var */
+  char device[255];            /* Device filename */
+
+
+  for (i = 0; i < 3; i ++)
+  {
+    sprintf(device, "/dev/lp%d", i);
+    if ((fd = open(device, O_WRONLY)) >= 0)
+    {
+      close(fd);
+      printf("direct parallel:%s \"Unknown\" \"Parallel Port #%d\"\n", device, i + 1);
+    }
+  }
 #elif defined(FreeBSD) || defined(OpenBSD) || defined(NetBSD)
+  int  i;                      /* Looping var */
+  char device[255];            /* Device filename */
+
+
+  for (i = 0; i < 3; i ++)
+  {
+    sprintf(device, "/dev/lpt%d", i);
+    if ((fd = open(device, O_WRONLY)) >= 0)
+    {
+      close(fd);
+      printf("direct parallel:%s \"Unknown\" \"Parallel Port #%d\"\n", device, i + 1);
+    }
+  }
 #endif
 }
 
 
 /*
- * End of "$Id: parallel.c,v 1.14 2000/02/11 05:04:12 mike Exp $".
+ * End of "$Id: parallel.c,v 1.15 2000/02/24 21:01:38 mike Exp $".
  */
index eb4d7481f8d233e2808f0bd00518c978e7dfec56..7c3740f102b0fe42bff63885a1bcf8e4295b3f15 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * "$Id: serial.c,v 1.12 2000/02/10 00:57:52 mike Exp $"
+ * "$Id: serial.c,v 1.13 2000/02/24 21:01:38 mike Exp $"
  *
  *   Serial port backend for the Common UNIX Printing System (CUPS).
  *
 #  include <termios.h>
 #endif /* WIN32 || __EMX__ */
 
+#ifdef __sgi
+#  include <invent.h>
+#  ifndef INV_EPP_ECP_PLP
+#    define INV_EPP_ECP_PLP    6       /* From 6.3/6.4/6.5 sys/invent.h */
+#    define INV_ASO_SERIAL     14      /* serial portion of SGI ASO board */
+#    define INV_IOC3_DMA       16      /* DMA mode IOC3 serial */
+#    define INV_IOC3_PIO       17      /* PIO mode IOC3 serial */
+#    define INV_ISA_DMA                19      /* DMA mode ISA serial -- O2 */
+#  endif /* !INV_EPP_ECP_PLP */
+#endif /* __sgi */
+
 
 /*
  * Local functions...
@@ -328,6 +339,9 @@ main(int  argc,             /* I - Number of command-line arguments (6 or 7) */
 void
 list_devices(void)
 {
+  static char  *funky_hex = "0123456789abcdefghijklmnopqrstuvwxyz";
+                               /* Funky hex numbering used for some devices */
+
 #ifdef __linux
   int  i;              /* Looping var */
   int  fd;             /* File descriptor */
@@ -345,14 +359,299 @@ list_devices(void)
     }
   }
 #elif defined(__sgi)
+  int          i, j, n;        /* Looping vars */
+  char         device[255];    /* Device filename */
+  inventory_t  *inv;           /* Hardware inventory info */
+
+
+ /*
+  * IRIX maintains a hardware inventory of most devices...
+  */
+
+  setinvent();
+
+  while ((inv = getinvent()) != NULL)
+  {
+    if (inv->inv_class == INV_SERIAL)
+    {
+     /*
+      * Some sort of serial port...
+      */
+
+      if (inv->inv_type == INV_CDSIO || inv->inv_type == INV_CDSIO_E)
+      {
+       /*
+        * CDSIO port...
+        */
+
+       for (n = 0; n < 6; n ++)
+         printf("serial serial:/dev/ttyd%d?baud=19200 \"Unknown\" \"CDSIO Board %d Serial Port #%d\"\n",
+                n + 5 + 8 * inv->inv_controller, inv->inv_controller, n + 1);
+      }
+      else if (inv->inv_type == INV_EPC_SERIAL)
+      {
+       /*
+        * Everest serial port...
+        */
+
+       if (inv->inv_unit == 0)
+          i = 1;
+       else
+          i = 41 + 4 * inv->inv_controller;
+
+       for (n = 0; n < inv->inv_state; n ++)
+         printf("serial serial:/dev/ttyd%d?baud=19200 \"Unknown\" \"EPC Serial Port %d, Ebus slot %d\"\n",
+                n + i, n + 1, inv->inv_controller);
+      }
+      else if (inv->inv_state > 1)
+      {
+       /*
+        * Standard serial port under IRIX 6.4 and earlier...
+        */
+
+       for (n = 0; n < inv->inv_state; n ++)
+         printf("serial serial:/dev/ttyd%d?baud=19200 \"Unknown\" \"Onboard Serial Port %d\"\n",
+                n + inv->inv_unit + 1, n + inv->inv_unit + 1);
+      }
+      else
+      {
+       /*
+        * Standard serial port under IRIX 6.5 and beyond...
+        */
+
+       printf("serial serial:/dev/ttyd%d?baud=115200 \"Unknown\" \"Onboard Serial Port %d\"\n",
+               inv->inv_controller, inv->inv_controller);
+      }
+    }
+  }
+
+  endinvent();
+
+ /*
+  * Central Data makes serial and parallel "servers" that can be
+  * connected in a number of ways.  Look for ports...
+  */
+
+  for (i = 0; i < 10; i ++)
+    for (j = 0; j < 8; j ++)
+      for (n = 0; n < 32; n ++)
+      {
+        if (i == 8)            /* EtherLite */
+          sprintf(device, "/dev/ttydn%d%c", j, funky_hex[n]);
+        else if (i == 9)       /* PCI */
+          sprintf(device, "/dev/ttydp%d%c", j, funky_hex[n]);
+        else                   /* SCSI */
+          sprintf(device, "/dev/ttyd%d%d%c", i, j, funky_hex[n]);
+
+       if (access(device, 0) == 0)
+       {
+         if (i == 8)
+           printf("serial serial:%s?baud=38400 \"Unknown\" \"Central Data EtherLite Serial Port, ID %d, port %d\"\n",
+                  device, j, n);
+         else if (i == 9)
+           printf("serial serial:%s?baud=38400 \"Unknown\" \"Central Data PCI Serial Port, ID %d, port %d\"\n",
+                  device, j, n);
+         else
+           printf("serial serial:%s?baud=38400 \"Unknown\" \"Central Data SCSI Serial Port, logical bus %d, ID %d, port %d\"\n",
+                  device, i, j, n);
+       }
+      }
 #elif defined(__sun)
+  int          i, j, n;        /* Looping vars */
+  char         device[255];    /* Device filename */
+
+
+ /*
+  * Standard serial ports...
+  */
+
+  for (i = 0; i < 26; i ++)
+  {
+    sprintf(device, "/dev/cua/%c", 'a' + i);
+    if (access(device, 0) == 0)
+      printf("serial serial:%s?baud=38400 \"Unknown\" \"Serial Port #%d\"\n",
+             device, i + 1);
+  }
+
+ /*
+  * MAGMA serial ports...
+  */
+
+  for (i = 0; i < 40; i ++)
+  {
+    sprintf(device, "/dev/term/%02d", i);
+    if (access(device, 0) == 0)
+      printf("serial serial:%s?baud=38400 \"Unknown\" \"MAGMA Serial Board #%d Port #%d\"\n",
+             device, (i / 10) + 1, (i % 10) + 1);
+  }
+
+ /*
+  * Central Data serial ports...
+  */
+
+  for (i = 0; i < 9; i ++)
+    for (j = 0; j < 8; j ++)
+      for (n = 0; n < 32; n ++)
+      {
+        if (i == 8)    /* EtherLite */
+          sprintf(device, "/dev/sts/ttyN%d%c", j, funky_hex[n]);
+        else
+          sprintf(device, "/dev/sts/tty%c%d%c", i + 'C', j,
+                  funky_hex[n]);
+
+       if (access(device, 0) == 0)
+       {
+         if (i == 8)
+           printf("serial serial:%s?baud=38400 \"Unknown\" \"Central Data EtherLite Serial Port, ID %d, port %d\"\n",
+                  device, j, n);
+         else
+           printf("serial serial:%s?baud=38400 \"Unknown\" \"Central Data SCSI Serial Port, logical bus %d, ID %d, port %d\"\n",
+                  device, i, j, n);
+       }
+      }
 #elif defined(__hpux)
-#elif defined(__osf)
+  int          i, j, n;        /* Looping vars */
+  char         device[255];    /* Device filename */
+
+
+ /*
+  * Standard serial ports...
+  */
+
+  for (i = 0; i < 10; i ++)
+  {
+    sprintf(device, "/dev/tty%dp0", i);
+    if (access(device, 0) == 0)
+      printf("serial serial:%s?baud=38400 \"Unknown\" \"Serial Port #%d\"\n",
+             device, i + 1);
+  }
+
+ /*
+  * Central Data serial ports...
+  */
+
+  for (i = 0; i < 9; i ++)
+    for (j = 0; j < 8; j ++)
+      for (n = 0; n < 32; n ++)
+      {
+        if (i == 8)    /* EtherLite */
+          sprintf(device, "/dev/ttyN%d%c", j, funky_hex[n]);
+        else
+          sprintf(device, "/dev/tty%c%d%c", i + 'C', j,
+                  funky_hex[n]);
+
+       if (access(device, 0) == 0)
+       {
+         if (i == 8)
+           printf("serial serial:%s?baud=38400 \"Unknown\" \"Central Data EtherLite Serial Port, ID %d, port %d\"\n",
+                  device, j, n);
+         else
+           printf("serial serial:%s?baud=38400 \"Unknown\" \"Central Data SCSI Serial Port, logical bus %d, ID %d, port %d\"\n",
+                  device, i, j, n);
+       }
+      }
+#elif defined(__osf__)
+  int          i;              /* Looping var */
+  char         device[255];    /* Device filename */
+
+
+ /*
+  * Standard serial ports...
+  */
+
+  for (i = 0; i < 100; i ++)
+  {
+    sprintf(device, "/dev/tty%02d", i);
+    if (access(device, 0) == 0)
+      printf("serial serial:%s?baud=38400 \"Unknown\" \"Serial Port #%d\"\n",
+             device, i + 1);
+  }
 #elif defined(FreeBSD) || defined(OpenBSD) || defined(NetBSD)
+  int  i, j;           /* Looping vars */
+  int  fd;             /* File descriptor */
+  char device[255];    /* Device filename */
+
+
+ /*
+  * SIO ports...
+  */
+
+  for (i = 0; i < 32; i ++)
+  {
+    sprintf(device, "/dev/ttyd%c", funky_hex[i]);
+    if ((fd = open(device, O_WRONLY | O_NOCTTY)) >= 0)
+    {
+      close(fd);
+      printf("serial serial:%s?baud=115200 \"Unknown\" \"Standard Serial Port #%d\"\n",
+             device, i + 1);
+    }
+  }
+
+ /*
+  * Cyclades ports...
+  */
+
+  for (i = 0; i < 16; i ++) /* Should be up to 65536 boards... */
+    for (j = 0; j < 32; j ++)
+    {
+      sprintf(device, "/dev/ttyc%d%c", i, funky_hex[j]);
+      if ((fd = open(device, O_WRONLY | O_NOCTTY)) >= 0)
+      {
+       close(fd);
+       printf("serial serial:%s?baud=115200 \"Unknown\" \"Cyclades #%d Serial Port #%d\"\n",
+               device, i, j + 1);
+      }
+    }
+
+ /*
+  * Digiboard ports...
+  */
+
+  for (i = 0; i < 16; i ++) /* Should be up to 65536 boards... */
+    for (j = 0; j < 32; j ++)
+    {
+      sprintf(device, "/dev/ttyD%d%c", i, funky_hex[j]);
+      if ((fd = open(device, O_WRONLY | O_NOCTTY)) >= 0)
+      {
+       close(fd);
+       printf("serial serial:%s?baud=115200 \"Unknown\" \"Digiboard #%d Serial Port #%d\"\n",
+               device, i, j + 1);
+      }
+    }
+
+ /*
+  * Stallion ports...
+  */
+
+  for (i = 0; i < 32; i ++)
+  {
+    sprintf(device, "/dev/ttyE%c", funky_hex[i]);
+    if ((fd = open(device, O_WRONLY | O_NOCTTY)) >= 0)
+    {
+      close(fd);
+      printf("serial serial:%s?baud=115200 \"Unknown\" \"Stallion Serial Port #%d\"\n",
+             device, i + 1);
+    }
+  }
+
+ /*
+  * SX ports...
+  */
+
+  for (i = 0; i < 128; i ++)
+  {
+    sprintf(device, "/dev/ttyA%d", i + 1);
+    if ((fd = open(device, O_WRONLY | O_NOCTTY)) >= 0)
+    {
+      close(fd);
+      printf("serial serial:%s?baud=115200 \"Unknown\" \"SX Serial Port #%d\"\n",
+             device, i + 1);
+    }
+  }
 #endif
 }
 
 
 /*
- * End of "$Id: serial.c,v 1.12 2000/02/10 00:57:52 mike Exp $".
+ * End of "$Id: serial.c,v 1.13 2000/02/24 21:01:38 mike Exp $".
  */