/*
- * "$Id: socket.c,v 1.18 2001/04/12 17:25:03 mike Exp $"
+ * "$Id: socket.c,v 1.19 2001/04/18 16:28:34 mike Exp $"
*
* AppSocket backend for the Common UNIX Printing System (CUPS).
*
FD_ZERO(&input);
FD_SET(fd, &input);
+#ifdef __hpux
+ if (select(fd + 1, (int *)&input, NULL, NULL, &timeout) > 0)
+#else
if (select(fd + 1, &input, NULL, NULL, &timeout) > 0)
+#endif /* __hpux */
{
/*
* Grab the data coming back and spit it out to stderr...
FD_ZERO(&input);
FD_SET(fd, &input);
+#ifdef __hpux
+ if (select(fd + 1, (int *)&input, NULL, NULL, &timeout) > 0)
+#else
if (select(fd + 1, &input, NULL, NULL, &timeout) > 0)
+#endif /* __hpux */
{
/*
* Grab the data coming back and spit it out to stderr...
/*
- * End of "$Id: socket.c,v 1.18 2001/04/12 17:25:03 mike Exp $".
+ * End of "$Id: socket.c,v 1.19 2001/04/18 16:28:34 mike Exp $".
*/
dnl
-dnl "$Id: configure.in,v 1.84 2001/04/18 12:55:35 mike Exp $"
+dnl "$Id: configure.in,v 1.85 2001/04/18 16:28:34 mike Exp $"
dnl
dnl Configuration script for the Common UNIX Printing System (CUPS).
dnl
OPTIM="+O2"
GSOPTIM="+O1"
fi
- OPTIM="-Ae +DAportable $OPTIM"
- GSOPTIM="-Ae +DAportable $GSOPTIM"
+ CFLAGS="-Ae $CFLAGS"
+ OPTIM="+DAportable $OPTIM"
+ GSOPTIM="+DAportable $GSOPTIM"
if test $PICFLAG = 1; then
OPTIM="+z $OPTIM"
GSOPTIM="+z $GSOPTIM"
AC_OUTPUT(Makedefs cups.sh)
dnl
-dnl End of "$Id: configure.in,v 1.84 2001/04/18 12:55:35 mike Exp $".
+dnl End of "$Id: configure.in,v 1.85 2001/04/18 16:28:34 mike Exp $".
dnl
/*
- * "$Id: ppd.c,v 1.51 2001/02/15 13:34:15 mike Exp $"
+ * "$Id: ppd.c,v 1.52 2001/04/18 16:28:34 mike Exp $"
*
* PPD file routines for the Common UNIX Printing System (CUPS).
*
* 'compare_strings()' - Compare two strings.
*/
-int /* O - Result of comparison */
+static int /* O - Result of comparison */
compare_strings(char *s, /* I - First string */
char *t) /* I - Second string */
{
/*
- * End of "$Id: ppd.c,v 1.51 2001/02/15 13:34:15 mike Exp $".
+ * End of "$Id: ppd.c,v 1.52 2001/04/18 16:28:34 mike Exp $".
*/