CHANGES IN CUPS V1.1.13
+ - Added --with-optim="flags" option to configure script.
+ - Updated the Italian message translations.
+ - Updated the cups.list file to install the correct
+ files.
+ - The pstoraster filter accessed the third element of a
+ 2 element array.
- The scheduler did not setup a status pipe for polling
processes, so error messages went to whatever file
descriptor 2 was pointing to when they were started.
dnl
-dnl "$Id: cups-common.m4,v 1.12.2.5 2002/01/12 21:31:51 mike Exp $"
+dnl "$Id: cups-common.m4,v 1.12.2.6 2002/01/14 20:36:31 mike Exp $"
dnl
dnl Common configuration stuff for the Common UNIX Printing System (CUPS).
dnl
dnl WWW: http://www.cups.org
dnl
+dnl We need at least autoconf 2.13...
+AC_PREREQ(2.13)
+
+dnl Set the name of the config header file...
AC_CONFIG_HEADER(config.h)
CUPS_VERSION="1.2.0a1"
dnl Default compiler flags...
CFLAGS="${CFLAGS:=}"
+CPPFLAGS="${CPPFLAGS:=}"
CXXFLAGS="${CXXFLAGS:=}"
LDFLAGS="${LDFLAGS:=}"
AC_SUBST(ARFLAGS)
dnl
-dnl End of "$Id: cups-common.m4,v 1.12.2.5 2002/01/12 21:31:51 mike Exp $".
+dnl End of "$Id: cups-common.m4,v 1.12.2.6 2002/01/14 20:36:31 mike Exp $".
dnl
dnl
-dnl "$Id: cups-compiler.m4,v 1.9.2.2 2002/01/02 18:50:23 mike Exp $"
+dnl "$Id: cups-compiler.m4,v 1.9.2.3 2002/01/14 20:36:31 mike Exp $"
dnl
dnl Common configuration stuff for the Common UNIX Printing System (CUPS).
dnl
OPTIM="-g"
fi])
+AC_ARG_WITH(optim, [ --with-optim=\"flags\" set optimization flags ])
+
dnl Update compiler options...
if test -n "$GCC"; then
# Starting with GCC 3.0, you must link C++ programs against either
CXX="$CC"
if test -z "$OPTIM"; then
- if test $uname = HP-UX; then
- # GCC under HP-UX has bugs with -O2
- OPTIM="-O1"
+ if test "x$with_optim" = x; then
+ if test $uname = HP-UX; then
+ # GCC under HP-UX has bugs with -O2
+ OPTIM="-O1"
+ else
+ OPTIM="-O2"
+ fi
else
- OPTIM="-O2"
+ OPTIM="$with_optim $OPTIM"
fi
fi
case $uname in
AIX*)
if test -z "$OPTIM"; then
- OPTIM="-O2 -qmaxmem=6000"
+ if test "x$with_optim" = x; then
+ OPTIM="-O2 -qmaxmem=6000"
+ else
+ OPTIM="$with_optim $OPTIM"
+ fi
fi
;;
HP-UX*)
if test -z "$OPTIM"; then
- OPTIM="+O2"
+ if test "x$with_optim" = x; then
+ OPTIM="+O2"
+ else
+ OPTIM="$with_optim $OPTIM"
+ fi
fi
CFLAGS="-Ae $CFLAGS"
- OPTIM="+DAportable $OPTIM"
+ if test "x$with_optim" = x; then
+ OPTIM="+DAportable $OPTIM"
+ fi
if test $PICFLAG = 1; then
OPTIM="+z $OPTIM"
;;
IRIX*)
if test -z "$OPTIM"; then
- OPTIM="-O2"
+ if test "x$with_optim" = x; then
+ OPTIM="-O2"
+ else
+ OPTIM="$with_optim $OPTIM"
+ fi
fi
- if test $uversion -ge 62; then
+ if test $uversion -ge 62 -a "x$with_optim" = x; then
OPTIM="$OPTIM -n32 -mips3"
fi
SunOS*)
# Solaris
if test -z "$OPTIM"; then
- OPTIM="-xO4"
+ if test "x$with_optim" = x; then
+ OPTIM="-xO4"
+ else
+ OPTIM="$with_optim $OPTIM"
+ fi
fi
- OPTIM="$OPTIM -xarch=generic"
+ if test "x$with_optim" = x; then
+ OPTIM="$OPTIM -xarch=generic"
+ fi
if test $PICFLAG = 1; then
OPTIM="-KPIC $OPTIM"
UNIX_SVR*)
# UnixWare
if test -z "$OPTIM"; then
- OPTIM="-O"
+ if test "x$with_optim" = x; then
+ OPTIM="-O"
+ else
+ OPTIM="$with_optim $OPTIM"
+ fi
fi
if test $PICFLAG = 1; then
esac
dnl
-dnl End of "$Id: cups-compiler.m4,v 1.9.2.2 2002/01/02 18:50:23 mike Exp $".
+dnl End of "$Id: cups-compiler.m4,v 1.9.2.3 2002/01/14 20:36:31 mike Exp $".
dnl
dnl
-dnl "$Id: cups-openslp.m4,v 1.2.2.2 2002/01/02 18:50:23 mike Exp $"
+dnl "$Id: cups-openslp.m4,v 1.2.2.3 2002/01/14 20:36:31 mike Exp $"
dnl
dnl OpenSLP configuration stuff for the Common UNIX Printing System (CUPS).
dnl
dnl
AC_ARG_ENABLE(slp, [ --enable-slp turn on SLP support [default=yes]])
-AC_ARG_WITH(openslp-libs, [ --with-openslp-libs set directory for OpenSLP library],
+AC_ARG_WITH(openslp-libs, [ --with-openslp-libs set directory for OpenSLP library],
LDFLAGS="-L$withval $LDFLAGS"
DSOFLAGS="-L$withval $DSOFLAGS",)
-AC_ARG_WITH(openslp-includes, [ --with-openslp-includes set directory for OpenSLP includes],
+AC_ARG_WITH(openslp-includes, [ --with-openslp-includes set directory for OpenSLP includes],
CFLAGS="-I$withval $CFLAGS"
CXXFLAGS="-I$withval $CXXFLAGS",)
dnl
-dnl End of "$Id: cups-openslp.m4,v 1.2.2.2 2002/01/02 18:50:23 mike Exp $".
+dnl End of "$Id: cups-openslp.m4,v 1.2.2.3 2002/01/14 20:36:31 mike Exp $".
dnl
dnl
-dnl "$Id: cups-openssl.m4,v 1.4.2.2 2002/01/02 18:50:23 mike Exp $"
+dnl "$Id: cups-openssl.m4,v 1.4.2.3 2002/01/14 20:36:31 mike Exp $"
dnl
dnl OpenSSL stuff for the Common UNIX Printing System (CUPS).
dnl
dnl
AC_ARG_ENABLE(ssl, [ --enable-ssl turn on SSL/TLS support [default=yes]])
-AC_ARG_WITH(openssl-libs, [ --with-openssl-libs set directory for OpenSSL library],
+AC_ARG_WITH(openssl-libs, [ --with-openssl-libs set directory for OpenSSL library],
LDFLAGS="-L$withval $LDFLAGS"
DSOFLAGS="-L$withval $DSOFLAGS",)
AC_ARG_WITH(openssl-includes, [ --with-openssl-includes set directory for OpenSSL includes],
AC_SUBST(SSLLIBS)
dnl
-dnl End of "$Id: cups-openssl.m4,v 1.4.2.2 2002/01/02 18:50:23 mike Exp $".
+dnl End of "$Id: cups-openssl.m4,v 1.4.2.3 2002/01/14 20:36:31 mike Exp $".
dnl
dnl
-dnl "$Id: cups-sharedlibs.m4,v 1.6.2.2 2002/01/02 18:50:24 mike Exp $"
+dnl "$Id: cups-sharedlibs.m4,v 1.6.2.3 2002/01/14 20:36:31 mike Exp $"
dnl
dnl Shared library support for the Common UNIX Printing System (CUPS).
dnl
DSO="ld"
DSOFLAGS="$DSOFLAGS -b -z +h \$@"
;;
- OSF1* | Linux* | IRIX* | FreeBSD* | NetBSD* | OpenBSD*)
+ IRIX*)
+ LIBCUPS="libcups.so.3"
+ LIBCUPSIMAGE="libcupsimage.so.3"
+ DSO="\$(CC)"
+ DSOFLAGS="$DSOFLAGS -Wl,-rpath,\$(libdir),-set_version,sgi3.0,-soname,\$@ -shared \$(OPTIM)"
+ ;;
+ OSF1* | Linux*)
LIBCUPS="libcups.so.3"
LIBCUPSIMAGE="libcupsimage.so.3"
DSO="\$(CC)"
DSOFLAGS="$DSOFLAGS -Wl,-soname,\$@ -shared \$(OPTIM)"
;;
- Darwin*)
+ *BSD* | Darwin*)
LIBCUPS="libcups.3.dylib"
LIBCUPSIMAGE="libcupsimage.3.dylib"
DSO="ld"
LINKCUPS="$LINKCUPS \$(SSLLIBS)"
else
if test $uname = AIX; then
-
LINKCUPS="-L../cups -lcups_s"
LINKCUPSIMAGE="-L../filter -lcupsimage_s"
else
DSOFLAGS="-R$libdir $DSOFLAGS"
LDFLAGS="$LDFLAGS -R$libdir"
;;
- FreeBSD* | NetBSD* | OpenBSD*)
+ *BSD* | Darwin*)
# *BSD
DSOFLAGS="-Wl,-R$libdir $DSOFLAGS"
LDFLAGS="$LDFLAGS -Wl,-R$libdir"
AC_SUBST(IMGLIBS)
dnl
-dnl End of "$Id: cups-sharedlibs.m4,v 1.6.2.2 2002/01/02 18:50:24 mike Exp $".
+dnl End of "$Id: cups-sharedlibs.m4,v 1.6.2.3 2002/01/14 20:36:31 mike Exp $".
dnl
#
-# "$Id: cups.list.in,v 1.13.2.4 2002/01/02 18:04:17 mike Exp $"
+# "$Id: cups.list.in,v 1.13.2.5 2002/01/14 20:36:30 mike Exp $"
#
# ESP Package Manager (EPM) file list for the Common UNIX Printing
# System (CUPS).
f 0555 root sys $SERVERBIN/filter/imagetops filter/imagetops
f 0555 root sys $SERVERBIN/filter/pstops filter/pstops
f 0555 root sys $SERVERBIN/filter/texttops filter/texttops
+f 0555 root sys $SERVERBIN/filter/rastertodymo filter/rastertodymo
f 0555 root sys $SERVERBIN/filter/rastertoepson filter/rastertoepson
f 0555 root sys $SERVERBIN/filter/rastertohp filter/rastertohp
f 0555 root sys $SERVERBIN/filter/hpgltops filter/hpgltops
# Data files
f 0444 root sys $LOCALEDIR/C/cups_C locale/C/cups_C
+f 0444 root sys $LOCALEDIR/cs/cups_cs locale/cs/cups_cs
f 0444 root sys $LOCALEDIR/de/cups_de locale/de/cups_de
f 0444 root sys $LOCALEDIR/en/cups_en locale/en/cups_en
f 0444 root sys $LOCALEDIR/es/cups_es locale/es/cups_es
f 0444 root sys $DATADIR/charsets/windows-1257 data/windows-1257
f 0444 root sys $DATADIR/charsets/windows-1258 data/windows-1258
f 0444 root sys $DATADIR/charsets/iso-8859-1 data/iso-8859-1
-f 0444 root sys $DATADIR/charsets/iso-8859-14 data/iso-8859-14
-f 0444 root sys $DATADIR/charsets/iso-8859-15 data/iso-8859-15
f 0444 root sys $DATADIR/charsets/iso-8859-2 data/iso-8859-2
f 0444 root sys $DATADIR/charsets/iso-8859-3 data/iso-8859-3
f 0444 root sys $DATADIR/charsets/iso-8859-4 data/iso-8859-4
f 0444 root sys $DATADIR/charsets/iso-8859-7 data/iso-8859-7
f 0444 root sys $DATADIR/charsets/iso-8859-8 data/iso-8859-8
f 0444 root sys $DATADIR/charsets/iso-8859-9 data/iso-8859-9
+f 0444 root sys $DATADIR/charsets/iso-8859-10 data/iso-8859-10
+f 0444 root sys $DATADIR/charsets/iso-8859-13 data/iso-8859-13
+f 0444 root sys $DATADIR/charsets/iso-8859-14 data/iso-8859-14
+f 0444 root sys $DATADIR/charsets/iso-8859-15 data/iso-8859-15
f 0444 root sys $DATADIR/charsets/utf-8 data/utf-8
d 0555 root sys $DATADIR/data -
# Config files
d 0555 root sys $SERVERROOT -
-d 0711 root sys $SERVERROOT/certs -
+d 0711 $CUPS_USER $CUPS_GROUP $SERVERROOT/certs -
d 0755 root sys $SERVERROOT/interfaces -
d 0755 root sys $SERVERROOT/ppd -
-c 0644 root sys $SERVERROOT conf/*.conf
-c 0644 root sys $SERVERROOT/mime.convs conf/mime.convs
-c 0644 root sys $SERVERROOT/mime.types conf/mime.types
+c 0600 root sys $SERVERROOT conf/*.conf
+c 0600 root sys $SERVERROOT/mime.convs conf/mime.convs
+c 0600 root sys $SERVERROOT/mime.types conf/mime.types
%system linux
d 0555 root sys $PAMDIR -
# Documentation files
d 0555 root sys $DOCDIR -
-f 0444 root sys $DOCDIR/cups.css doc/cups.css
+f 0444 root sys $DOCDIR doc/*.css
f 0444 root sys $DOCDIR doc/*.html
f 0444 root sys $DOCDIR doc/*.pdf
d 0555 root sys $DOCDIR/images -
i 0555 root sys cups cups.sh
#
-# End of "$Id: cups.list.in,v 1.13.2.4 2002/01/02 18:04:17 mike Exp $".
+# End of "$Id: cups.list.in,v 1.13.2.5 2002/01/14 20:36:30 mike Exp $".
#
iso-8859-1
-Procedi
+Continua
Annulla
-Aiuto
-Esci
-Chiudi
-Sì
-No
-Attivo
+Aiuto
+Esci
+Chiudi
+Sì
+No
+Attivo
Inattivo
-Salva
-Scarta
-Standard
-Opzioni
-Più Informazioni
-Nero
-Colore
-Ciano
-Fucsia
-Giallo
-Copyright 1993-2002 di Easy Software Products, tutti i diritti riservati.
+Salva
+Abbandona
+Predefinito
+Opzioni
+Maggiori informazioni
+Nero
+Colore
+Ciano
+Fucsia
+Giallo
+Copyright 1993-2002 Easy Software Products, tutti i diritti riservati.
Generale
-Stampante
+Stampante
Immagini
HP-GL/2
-Extra
-Documento
-Altro
-Stampa delle pagine:
-Intero Documento
-Stampa intervallo:
-Ordine inverso:
-Formato della pagina:
- 1-Up
- 2-Up
- 4-Up
-Scaling dell'immagine:
-Usa formato naturale dell'immagine
-Zoom in percentuale
-Zoom in PPI
-Immagine riflessa:
-Saturazione del colore:
-Tonalità del colore:
-Adatta alla pagina:
-Ombreggiatura:
-Larghezza della penna:
-Correzione Gamma:
-Luminosità:
-Aggiungi
-Cancella
-Modifica
-URI della stampante
-Nome della stampante
-Collocazione della stampante
-Informazioni sulla stampante
-Produttore e modello della stampante
-URI Del Dispositivo
-Preparazione della pagina
-Stampa della Pagina
-Inizializzazione Stampante
-Condizione della stampante
-Sto accettando le richieste di stampa
-Non sto accettando le richieste di stampa
-Richieste di stampa
-Codice categoria
-Locale
-Remoto
+Extra
+Documento
+Altro
+Stampa delle pagine:
+Intero Documento
+Stampa intervallo:
+Ordine inverso:
+Formato della pagina:
+ 1-Up
+ 2-Up
+ 4-Up
+Dimensione dell'immagine:
+Usa dimensione originale dell'immagine
+Zoom in percentuale
+Zoom in PPI
+Immagine riflessa:
+Saturazione del colore:
+Tonalità del colore:
+Adatta alla pagina:
+Ombreggiatura:
+Larghezza della penna:
+Correzione gamma:
+Luminosità:
+Aggiungi
+Cancella
+Modifica
+URI della stampante
+Nome della stampante
+Collocazione della stampante
+Informazioni sulla stampante
+Produttore e modello della stampante
+URI del dispositivo
+Preparazione della pagina
+Stampa della pagina
+Inizializzazione della stampante
+Stato della stampante
+Accettazione dei lavori di stampa abilitata
+Accettazione dei lavori di stampa disabilitata
+Richieste di stampa
+Categoria
+Locale
+Remoto
Fronte-retro
-Sto cucendo con punti metallici
+Spillatura in corso
Copie veloci
Copie fascicolate
Perforazione delle pagine (per fascicolatura)
-Inserendo copertina
-Applicando fascicolatura
-Ordinando
-Piccolo (fino a 9.5x1în)
-Medio (9.5x1în - 13x19in)
-Grande (13x19in e più grande)
-Formato personalizzato
-Idle
-Elaborando
-Arrestato
-Tutto
-Dispari
+Inserimento copertina in corso
+Fascicolatura in corso
+Ordinamento in corso
+Piccolo (fino a 9.5x14")
+Medio (da 9.5x14" a 13x19")
+Grande (13x19" o maggiore)
+Formato personalizzato
+In attesa
+In elaborazione
+Fermo
+Tutto
+Dispari
Pari
-Più Scuro Più Luminoso
-Formato del supporto
-Tipo del supporto
-Sorgente del supporto
-Orientamento:
-Verticale
-Orizzontale
-Condizione di lavoro
-Nome di lavoro
-Nome dell' utente
-Priorita'
+Più scuro Più chiaro
+Formato del supporto
+Tipo del supporto
+Sorgente del supporto
+Orientamento:
+Verticale
+Orizzontale
+Stato del processo
+Nome del processo
+Nome dell'utente
+Priorità
Copie
Dimensioni del file
In attesa
Modo stampa
Risoluzione
Testo
-Speciale stampa
+Stampa di qualità
Margini
-Sinistra
-Destra
+Sinistro
+Destro
Inferiore
Superiore
-Nome(s)
+Nome/i file
Stampa
-400 Il vostro browser ha trasmesso una richiesta che questo server non ha capito
-Questo server non ha potuto verificare che siete autorizzati ad accedere alla risorsa.
-Dovete pagare accedere a questo server.
-Non avete il permesso di accedere alla risorsa richiesta su questo server.
-La risorsa chiesta non è stata trovata su questo server.
-Il metodo richiesto non è consentito con la risorsa desiderata.
-Una rappresentazione adatta per la risorsa non è stata trovata su questo server.
+400 Il vostro browser ha inviato una richiesta che non può essere eseguita su questo server.
+Questo server non ha potuto verificare la vostra autorizzazione ad accedere alla risorsa.
+L'accesso a questo servizio è a pagamento.
+Non avete il permesso di accedere alla risorsa richiesta su questo server.
+La risorsa richiesta non è disponibile su questo server.
+Il metodo richiesto non è consentito con la risorsa selezionata.
+Una rappresentazione adatta per la risorsa non è disponibile su questo server.
Non avete il permesso utilizzare questo server come proxy.
-La richiesta ha impiegato troppo tempo per essere completata ed è stata abbandonata.
-La risorsa chiesta ha più di un valore.
-La risorsa chiesta non e' piu' disponibile e non è stata ancora rimpiazzata.
-Il metodo chiesto richiede un campo "Content-Length" valido.
-I prerequisiti per la richiesta non sono soddisfatti.
-La richiesta è troppo grande per essere elaborata da questo server.
-L'URI della richiesta è troppo grande per essere elaborato da questo server.
-Il formato della richiesta non è capito da questo server.
-426 An upgrade to a secure connection is required. If you are seeing this message in a web browser then it does not support HTTP encryption upgrades.
-500 Il server ha rilevato un errore non recuperabile e non può elaborare la vostra richiesta.
-Il metodo chiesto non è implementato da questo server.
+La richiesta ha impiegato troppo tempo per essere completata ed è stata annullata.
+La risorsa richiesta ha più di un valore.
+La risorsa richiesta non è più disponibile e non è stata ancora sostituita.
+Il metodo chiesto richiede un campo "Content-Length" valido.
+I prerequisiti per la richiesta non possono essere soddisfatti.
+La richiesta è troppo grande per essere eseguita da questo server.
+L'URI richiesta è troppo grande per essere eseguita da questo server.
+Il formato della richiesta non è valido su questo server.
+426 È richiesto il passaggio ad una connessione sicura. Se state leggendo questo messaggio nella finestra del vostro browser web vuol dire che non è in grado di supportare il funzionamento con HTTP crittografato.
+500 Il server ha rilevato un errore non recuperabile e non può eseguire la vostra richiesta.
+Il metodo richiesto non è implementato da questo server.
Il proxy server ha ricevuto una risposta non valida da un server di livello superiore.
-La risorsa chiesta è attualmente non disponibile su questo server.
-Il proxy server ha impiegato troppo tempo per rispondere a questo server.
-Questo server non supporta la versione HTTP richiesta dal vostro browser.
+La risorsa richiesta non è attualmente disponibile su questo server.
+Il proxy server ha impiegato troppo tempo per rispondere a questo server.
+Questo server non supporta la versione HTTP richiesta dal vostro browser.