-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/tags/release-1.1.2@4306 a1ca3aef-8c08-0410-bb20-df032aa958be
- Loading branch information
msweet
committed
May 10, 2013
0 parents
commit 6a383a4
Showing
1,172 changed files
with
436,939 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
CREDITS.txt - 01/27/2000 | ||
------------------------ | ||
|
||
Few projects are completed by one person, and CUPS is no exception. We'd | ||
like to thank the following individuals for their contributions: | ||
|
||
Nathaniel Barbour - Lots of testing and feedback. | ||
N. Becker - setsid(). | ||
Jean-Eric Cuendet - GhostScript filters for CUPS. | ||
Van Dang - HTTP and IPP policeman. | ||
Dr. ZP Han - setgid()/setuid(). | ||
Guy Harris - *BSD shared libraries and lots of other fixes. | ||
Wang Jian - CUPS RPM corrections. | ||
Roderick Johnstone - Beta tester of the millenium. | ||
Sergey V. Kovalyov - ESP Print Pro and CUPS beta tester. | ||
Mark Lawrence - Microsoft interoperability testing. | ||
Jason McMullan - Original CUPS RPM distributions. | ||
Wes Morgan - *BSD fixes. | ||
Ulrich Oldendorf - German locale. | ||
Petter Reinholdtsen - HP-UX compiler stuff. | ||
Stuart Stevens - HP JetDirect IPP information. | ||
Kiko - Bug fixes. | ||
L. Peter Deutsch - MD5 code. | ||
|
||
If I've missed someone, please let me know by sending an email to | ||
"mike@easysw.com". |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
# | ||
# "$Id$" | ||
# | ||
# Common makefile definitions for the Common UNIX Printing System (CUPS). | ||
# | ||
# Copyright 1997-2000 by Easy Software Products, all rights reserved. | ||
# | ||
# These coded instructions, statements, and computer programs are the | ||
# property of Easy Software Products and are protected by Federal | ||
# copyright law. Distribution and use rights are outlined in the file | ||
# "LICENSE.txt" which should have been included with this file. If this | ||
# file is missing or damaged please contact Easy Software Products | ||
# at: | ||
# | ||
# Attn: CUPS Licensing Information | ||
# Easy Software Products | ||
# 44141 Airport View Drive, Suite 204 | ||
# Hollywood, Maryland 20636-3111 USA | ||
# | ||
# Voice: (301) 373-9603 | ||
# EMail: cups-info@cups.org | ||
# WWW: http://www.cups.org | ||
# | ||
|
||
# | ||
# Programs... | ||
# | ||
|
||
AR = @AR@ | ||
AWK = @AWK@ | ||
CC = @LIBTOOL@ @CC@ | ||
CHMOD = @CHMOD@ | ||
CHOWN = @CHOWN@ | ||
CP = @CP@ | ||
CXX = @LIBTOOL@ @CXX@ | ||
DSO = @DSO@ | ||
HTMLDOC = @HTMLDOC@ | ||
LIBTOOL = @LIBTOOL@ | ||
LN = /bin/ln -sf | ||
MKDIR = @MKDIR@ -p | ||
MV = @MV@ | ||
NROFF = @NROFF@ | ||
RANLIB = @RANLIB@ | ||
RM = @RM@ -f | ||
SED = @SED@ | ||
SHELL = /bin/sh | ||
|
||
# | ||
# Installation programs... | ||
# | ||
|
||
INSTALL_BIN = $(LIBTOOL) $(CP) | ||
INSTALL_DATA = $(CP) | ||
INSTALL_LIB = $(LIBTOOL) $(CP) | ||
INSTALL_MAN = $(CP) | ||
INSTALL_SCRIPT = $(CP) | ||
INSTALL_SYSV = @INSTALL_SYSV@ | ||
|
||
# | ||
# Libraries... | ||
# | ||
|
||
LIBCUPS = @LIBCUPS@ | ||
LIBCUPSIMAGE = @LIBCUPSIMAGE@ | ||
LIBJPEG = @LIBJPEG@ | ||
LIBPNG = @LIBPNG@ | ||
LIBTIFF = @LIBTIFF@ | ||
LIBZ = @LIBZ@ | ||
|
||
# | ||
# Program options... | ||
# | ||
# OPTIM defines the common compiler optimization/debugging options. | ||
# OPTIONS defines other compile-time options (currently only -dDEBUG for | ||
# extra debug info) | ||
# | ||
|
||
ARFLAGS = crvs | ||
CFLAGS = @CFLAGS@ $(OPTIM) -I.. $(OPTIONS) | ||
CXXFLAGS = @CXXFLAGS@ $(OPTIM) -I.. $(OPTIONS) | ||
DSOLIBS = @DSOLIBS@ | ||
IMGLIBS = @IMGLIBS@ -lm | ||
LDFLAGS = @LDFLAGS@ $(OPTIM) | ||
LINKCUPS = @LINKCUPS@ | ||
LINKCUPSIMAGE = @LINKCUPSIMAGE@ | ||
LIBS = $(LINKCUPS) $(NETLIBS) @LIBS@ | ||
NETLIBS = @NETLIBS@ | ||
OPTIM = @OPTIM@ | ||
OPTIONS = | ||
|
||
# | ||
# Directories... | ||
# | ||
# The first section uses the GNU names (which are *extremely* | ||
# difficult to find in a makefile because they are lowercase...) | ||
# We have to define these first because autoconf uses ${prefix} | ||
# and ${exec_prefix} for most of the other directories... | ||
# | ||
# This is immediately followed by definition in ALL CAPS for the | ||
# needed directories... | ||
# | ||
|
||
bindir = @bindir@ | ||
datadir = @datadir@ | ||
exec_prefix = @exec_prefix@ | ||
includedir = @includedir@ | ||
infodir = @infodir@ | ||
libdir = @libdir@ | ||
libexecdir = @libexecdir@ | ||
localstatedir = @localstatedir@ | ||
mandir = @mandir@ | ||
oldincludedir = @oldincludedir@ | ||
prefix = @prefix@ | ||
sbindir = @sbindir@ | ||
sharedstatedir = @sharedstatedir@ | ||
srcdir = @srcdir@ | ||
sysconfdir = @sysconfdir@ | ||
top_srcdir = @top_srcdir@ | ||
|
||
BINDIR = @bindir@ | ||
DATADIR = @CUPS_DATADIR@ | ||
DOCDIR = @CUPS_DOCROOT@ | ||
INCLUDEDIR = $(includedir) | ||
INITDIR = @INITDIR@ | ||
INITDDIR = @INITDDIR@ | ||
LIBDIR = $(libdir) | ||
LOCALEDIR = @CUPS_LOCALEDIR@ | ||
LOGDIR = @CUPS_LOGDIR@ | ||
MANDIR = @mandir@ | ||
PAMDIR = @PAMDIR@ | ||
REQUESTS = @CUPS_REQUESTS@ | ||
SBINDIR = @sbindir@ | ||
SERVERBIN = @CUPS_SERVERBIN@ | ||
SERVERROOT = @CUPS_SERVERROOT@ | ||
|
||
CAT1EXT = @CAT1EXT@ | ||
CAT5EXT = @CAT5EXT@ | ||
CAT8EXT = @CAT8EXT@ | ||
|
||
# | ||
# Rules... | ||
# | ||
|
||
.SILENT: | ||
.SUFFIXES: .a .c .cxx .h .man .o .0 .1 .5 .8 .z | ||
.c.o: | ||
echo Compiling $<... | ||
$(CC) $(CFLAGS) -c $< | ||
.cxx.o: | ||
echo Compiling $<... | ||
$(CXX) $(CXXFLAGS) -c $< | ||
.man.0 .man.1 .man.5 .man.8: | ||
echo Formatting $<... | ||
$(RM) $@ | ||
$(NROFF) -man $< >$@ | ||
.man.z: | ||
echo Formatting $<... | ||
$(RM) $@ t.z | ||
$(NROFF) -man $< >t | ||
pack -f t | ||
$(MV) t.z $@ | ||
|
||
# | ||
# End of "$Id$" | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
# | ||
# "$Id$" | ||
# | ||
# Top-level Makefile for the Common UNIX Printing System (CUPS). | ||
# | ||
# Copyright 1997-2000 by Easy Software Products, all rights reserved. | ||
# | ||
# These coded instructions, statements, and computer programs are the | ||
# property of Easy Software Products and are protected by Federal | ||
# copyright law. Distribution and use rights are outlined in the file | ||
# "LICENSE.txt" which should have been included with this file. If this | ||
# file is missing or damaged please contact Easy Software Products | ||
# at: | ||
# | ||
# Attn: CUPS Licensing Information | ||
# Easy Software Products | ||
# 44141 Airport View Drive, Suite 204 | ||
# Hollywood, Maryland 20636-3111 USA | ||
# | ||
# Voice: (301) 373-9603 | ||
# EMail: cups-info@cups.org | ||
# WWW: http://www.cups.org | ||
# | ||
|
||
include Makedefs | ||
|
||
# | ||
# Directories to make... | ||
# | ||
|
||
DIRS = cups backend berkeley cgi-bin filter man pdftops pstoraster \ | ||
scheduler systemv | ||
|
||
# | ||
# Make all targets... | ||
# | ||
|
||
all: | ||
for dir in $(DIRS); do\ | ||
echo Making all in $$dir... ;\ | ||
(cd $$dir ; $(MAKE) $(MFLAGS)) || exit 1;\ | ||
done | ||
|
||
# | ||
# Remove object and target files... | ||
# | ||
|
||
clean: | ||
for dir in $(DIRS); do\ | ||
echo Cleaning in $$dir... ;\ | ||
(cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\ | ||
done | ||
|
||
# | ||
# Install object and target files... | ||
# | ||
|
||
install: | ||
for dir in $(DIRS); do\ | ||
echo Installing in $$dir... ;\ | ||
(cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\ | ||
done | ||
echo Installing in conf... | ||
(cd conf; $(MAKE) $(MFLAGS) install) | ||
echo Installing in data... | ||
(cd data; $(MAKE) $(MFLAGS) install) | ||
echo Installing in doc... | ||
(cd doc; $(MAKE) $(MFLAGS) install) | ||
echo Installing in fonts... | ||
(cd fonts; $(MAKE) $(MFLAGS) install) | ||
echo Installing in locale... | ||
(cd locale; $(MAKE) $(MFLAGS) install) | ||
echo Installing in templates... | ||
(cd templates; $(MAKE) $(MFLAGS) install) | ||
echo Installing startup script... | ||
if test "x$INITDIR" != "x"; then \ | ||
$(INSTALL_SCRIPT) cups.sh $prefix/$INITDIR/init.d/cups; \ | ||
$(CHMOD) ugo+rx $prefix/$INITDIR/init.d/cups; \ | ||
ln -s $INITDDIR/cups $prefix/$INITDIR/rc0.d/K00cups; \ | ||
ln -s $INITDDIR/cups $prefix/$INITDIR/rc2.d/S99cups; \ | ||
fi | ||
|
||
# | ||
# Make software distributions using EPM (http://www.easysw.com/epm)... | ||
# | ||
|
||
EPMFLAGS = -v \ | ||
BINDIR=$(BINDIR) DATADIR=$(DATADIR) \ | ||
DOCDIR=$(DOCDIR) ESP_ROOT=$(ESP_ROOT) \ | ||
INCLUDEDIR=$(INCLUDEDIR) LIBDIR=$(LIBDIR) \ | ||
LOCALEDIR=$(LOCALEDIR) LOGDIR=$(LOGDIR) \ | ||
MANDIR=$(MANDIR) PAMDIR=$(PAMDIR) \ | ||
REQUESTS=$(REQUESTS) SBINDIR=$(SBINDIR) \ | ||
SERVERBIN=$(SERVERBIN) SERVERROOT=$(SERVERROOT) | ||
|
||
epm: | ||
epm $(EPMFLAGS) cups | ||
|
||
rpm: | ||
epm $(EPMFLAGS) -f rpm cups | ||
|
||
deb: | ||
epm $(EPMFLAGS) -f deb cups | ||
|
||
depot: | ||
epm $(EPMFLAGS) -f depot cups | ||
|
||
pkg: | ||
epm $(EPMFLAGS) -f pkg cups | ||
|
||
tardist: | ||
epm $(EPMFLAGS) -f tardist cups | ||
|
||
# | ||
# End of "$Id$". | ||
# |
Oops, something went wrong.