diff options
author | jlam <jlam> | 2001-01-30 16:37:55 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-01-30 16:37:55 +0000 |
commit | 02d1b80410fdf4fd572e5e74417978a7e97acfb3 (patch) | |
tree | ed248be6cfcf4373bf80396c97f0f2b1fb91dbf4 /print/xpp/patches | |
parent | 548b7b58603450707469396dec75fa99a70c615f (diff) | |
download | pkgsrc-02d1b80410fdf4fd572e5e74417978a7e97acfb3.tar.gz |
Update xpp to 1.0. Changes from version 0.7:
- Let jobs from standard input get the name "STDIN" instead of
"(stdin)", because the parantheses caused problems with Samba
or Windows servers.
- Let the first printer be selected when CUPS does not report a
default printer
- Banner page support
- Raw output support
- Renamed "Cancel" button of main window to "Close"
- Added comment in "Instances" to tell the user that he has to
copy an existing instance of the desired printer when he wants
to add an instance.
- Support for adding, copying, renaming, and deleting printer
instances.
- Rearranged option widgets for media settings on the "Basic" tab
of the "Options" dialog: Now there is a seperate widget for the
media type and widgets for options which are not supported
according to the PPD file are grayed out.
- Fixed bug of the duplex widget on the "Basic" tab of the
"Options" dialog: The widget was sometimes linked to the
"Duplexer installed?" option.
- All sliders for numerical options (both CUPS and CUPS-O-MATIC)
have fields for typing the values now.
Diffstat (limited to 'print/xpp/patches')
-rw-r--r-- | print/xpp/patches/patch-aa | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/print/xpp/patches/patch-aa b/print/xpp/patches/patch-aa new file mode 100644 index 00000000000..adf0159747d --- /dev/null +++ b/print/xpp/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1 2001/01/30 16:37:57 jlam Exp $ + +--- configure.in.orig Fri Jan 26 19:17:37 2001 ++++ configure.in +@@ -37,6 +37,8 @@ + AC_CHECK_LIB(Xext, main,,,$LIBS) + dnl Replace `main' with a function in -lcups: + dnl AC_CHECK_LIB(cups, main) ++dnl Replace `main' with a function in -lm: ++AC_CHECK_LIB(m, main) + dnl Replace `main' with a function in -lGL: + AC_CHECK_LIB(GL, main) + dnl Replace `main' with a function in -lGLU: +@@ -47,8 +49,6 @@ + AC_CHECK_LIB(fltk, main,LIBS="$LIBFLTKA $LIBS",,$LIBS) + dnl Replace `main' with a function in -lfltk: + dnl AC_CHECK_LIB(fltk, main,,,$LIBS) +-dnl Replace `main' with a function in -lm: +-AC_CHECK_LIB(m, main) + dnl Checks for header files. + AC_HEADER_STDC + AC_CHECK_HEADERS(cups/cups.h FL/Fl.H) |