]> git.ipfire.org Git - thirdparty/cups.git/blame - config-scripts/cups-opsys.m4
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / config-scripts / cups-opsys.m4
CommitLineData
ef416fc2 1dnl
c07d5b2d 2dnl "$Id: cups-opsys.m4 177 2006-06-21 00:20:03Z jlovell $"
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
25dnl Get the operating system and version number...
26uname=`uname`
fa73b229 27uversion=`uname -r | sed -e '1,$s/^[[^0-9]]*\([[0-9]]*\)\.\([[0-9]]*\).*/\1\2/'`
28
ef416fc2 29case "$uname" in
30 GNU* | GNU/*)
31 uname="GNU"
32 ;;
33 IRIX*)
34 uname="IRIX"
35 ;;
36 Linux*)
37 uname="Linux"
38 ;;
39esac
40
ef416fc2 41dnl
c07d5b2d 42dnl "$Id: cups-opsys.m4 177 2006-06-21 00:20:03Z jlovell $"
ef416fc2 43dnl