]> git.ipfire.org Git - thirdparty/cups.git/blame - config-scripts/cups-opsys.m4
Load cups into easysw/current.
[thirdparty/cups.git] / config-scripts / cups-opsys.m4
CommitLineData
ef416fc2 1dnl
f7deaa1a 2dnl "$Id: cups-opsys.m4 6135 2006-12-06 18:22:38Z mike $"
ef416fc2 3dnl
4dnl Operating system stuff for the Common UNIX Printing System (CUPS).
5dnl
bd7854cb 6dnl Copyright 1997-2006 by Easy Software Products, all rights reserved.
ef416fc2 7dnl
8dnl These coded instructions, statements, and computer programs are the
9dnl property of Easy Software Products and are protected by Federal
10dnl copyright law. Distribution and use rights are outlined in the file
11dnl "LICENSE.txt" which should have been included with this file. If this
12dnl file is missing or damaged please contact Easy Software Products
13dnl at:
14dnl
15dnl Attn: CUPS Licensing Information
16dnl Easy Software Products
17dnl 44141 Airport View Drive, Suite 204
18dnl Hollywood, Maryland 20636 USA
19dnl
20dnl Voice: (301) 373-9600
21dnl EMail: cups-info@cups.org
22dnl WWW: http://www.cups.org
23dnl
24
b86bc4cf 25dnl Get the operating system, version number, and architecture...
ef416fc2 26uname=`uname`
fa73b229 27uversion=`uname -r | sed -e '1,$s/^[[^0-9]]*\([[0-9]]*\)\.\([[0-9]]*\).*/\1\2/'`
b86bc4cf 28uarch=`uname -m`
fa73b229 29
ef416fc2 30case "$uname" in
31 GNU* | GNU/*)
32 uname="GNU"
33 ;;
34 IRIX*)
35 uname="IRIX"
36 ;;
37 Linux*)
38 uname="Linux"
39 ;;
40esac
41
ef416fc2 42dnl
f7deaa1a 43dnl "$Id: cups-opsys.m4 6135 2006-12-06 18:22:38Z mike $"
ef416fc2 44dnl