Revert manifest to default one
[external/cups.git] / config-scripts / cups-opsys.m4
1 dnl
2 dnl "$Id: cups-opsys.m4 9771 2011-05-12 05:21:56Z mike $"
3 dnl
4 dnl   Operating system stuff for CUPS.
5 dnl
6 dnl   Copyright 2007-2011 by Apple Inc.
7 dnl   Copyright 1997-2006 by Easy Software Products, all rights reserved.
8 dnl
9 dnl   These coded instructions, statements, and computer programs are the
10 dnl   property of Apple Inc. and are protected by Federal copyright
11 dnl   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
12 dnl   which should have been included with this file.  If this file is
13 dnl   file is missing or damaged, see the license at "http://www.cups.org/".
14 dnl
15
16 dnl Get the operating system, version number, and architecture...
17 uname=`uname`
18 uversion=`uname -r | sed -e '1,$s/^[[^0-9]]*\([[0-9]]*\)\.\([[0-9]]*\).*/\1\2/'`
19 uarch=`uname -m`
20
21 case "$uname" in
22         GNU* | GNU/*)
23                 uname="GNU"
24                 ;;
25         IRIX*)
26                 uname="IRIX"
27                 ;;
28         Linux*)
29                 uname="Linux"
30                 ;;
31 esac
32
33 dnl
34 dnl "$Id: cups-opsys.m4 9771 2011-05-12 05:21:56Z mike $"
35 dnl