| [3090] | 1 | #! /bin/sh
|
|---|
| 2 | # Configuration validation subroutine script.
|
|---|
| 3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
|---|
| 4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
|
|---|
| 5 | # Inc.
|
|---|
| 6 |
|
|---|
| 7 | timestamp='2006-09-20'
|
|---|
| 8 |
|
|---|
| 9 | # This file is (in principle) common to ALL GNU software.
|
|---|
| 10 | # The presence of a machine in this file suggests that SOME GNU software
|
|---|
| 11 | # can handle that machine. It does not imply ALL GNU software can.
|
|---|
| 12 | #
|
|---|
| 13 | # This file is free software; you can redistribute it and/or modify
|
|---|
| 14 | # it under the terms of the GNU General Public License as published by
|
|---|
| 15 | # the Free Software Foundation; either version 2 of the License, or
|
|---|
| 16 | # (at your option) any later version.
|
|---|
| 17 | #
|
|---|
| 18 | # This program is distributed in the hope that it will be useful,
|
|---|
| 19 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 21 | # GNU General Public License for more details.
|
|---|
| 22 | #
|
|---|
| 23 | # You should have received a copy of the GNU General Public License
|
|---|
| 24 | # along with this program; if not, write to the Free Software
|
|---|
| 25 | # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
|
|---|
| 26 | # 02110-1301, USA.
|
|---|
| 27 | #
|
|---|
| 28 | # As a special exception to the GNU General Public License, if you
|
|---|
| 29 | # distribute this file as part of a program that contains a
|
|---|
| 30 | # configuration script generated by Autoconf, you may include it under
|
|---|
| 31 | # the same distribution terms that you use for the rest of that program.
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 | # Please send patches to <[email protected]>. Submit a context
|
|---|
| 35 | # diff and a properly formatted ChangeLog entry.
|
|---|
| 36 | #
|
|---|
| 37 | # Configuration subroutine to validate and canonicalize a configuration type.
|
|---|
| 38 | # Supply the specified configuration type as an argument.
|
|---|
| |
|---|