4 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
5 # Use is subject to license terms.
8 # Copyright 2001, 2002, 2003 by the Massachusetts Institute of Technology.
11 # Export of this software from the United States of America may
12 # require a specific license from the United States Government.
13 # It is the responsibility of any person or organization contemplating
14 # export to obtain such a license before exporting.
16 # WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
17 # distribute this software and its documentation for any purpose and
18 # without fee is hereby granted, provided that the above copyright
19 # notice appear in all copies and that both that copyright notice and
20 # this permission notice appear in supporting documentation, and that
21 # the name of M.I.T. not be used in advertising or publicity pertaining
22 # to distribution of the software without specific, written prior
23 # permission. Furthermore if you modify this software you must label
24 # your software as modified software and not distribute it in such a
25 # fashion that it might be confused with the original M.I.T. software.
26 # M.I.T. makes no representations about the suitability of
27 # this software for any purpose. It is provided "as is" without express
28 # or implied warranty.
32 # Configurable parameters set by autoconf
33 version_string
="Solaris Kerberos (based on MIT Kerberos 5 release 1.6.3)"
37 includedir
=${prefix}/include
/kerberosv5
38 libdir
=${exec_prefix}/lib
40 # Defaults for program
44 vendor_string
="Sun Microsystems, Inc."
47 # Yes, we are sloppy, library specifications can come before options
48 while test $# != 0; do
84 echo "$0: Unknown option \`$1' -- use \`--help' for usage"
90 # If required options - provide help
91 if test -z "$do_all" -a -z "$do_version" -a -z "$do_vendor" -a -z "$do_prefix" -a -z "$do_vendor" -a -z "$do_exec_prefix" -a -z "$do_cflags" -a -z "$do_libs"; then
96 if test -n "$do_help"; then
97 echo "Usage: $0 [OPTIONS] [LIBRARIES]"
100 echo " [--all] Display version, vendor, and various values"
101 echo " [--version] Version information"
102 echo " [--vendor] Vendor information"
103 echo " [--prefix] Kerberos installed prefix"
104 echo " [--exec-prefix] Kerberos installed exec_prefix"
105 echo " [--cflags] Compile time CFLAGS"
106 echo " [--libs] List libraries required to link [LIBRARIES]"
108 echo " krb5 Kerberos 5 application"
109 echo " gssapi GSSAPI application"
114 if test -n "$do_all"; then
120 title_version
="Version: "
121 title_prefix
="Prefix: "
122 title_exec_prefix
="Exec_prefix: "
123 title_vendor
="Vendor: "
128 if test -n "$do_version"; then
129 echo "$title_version$version_string"
133 if test -n "$do_vendor"; then
134 echo "$title_vendor$vendor_string"
138 if test -n "$do_prefix"; then
139 echo "$title_prefix$prefix"
143 if test -n "$do_exec_prefix"; then
144 echo "$title_exec_prefix$exec_prefix"
148 if test -n "$do_cflags"; then
149 echo "-I${includedir}"
152 if test -n "$do_libs"; then
153 lib_flags
="-L$libdir"
155 if test $library = 'gssapi'; then
156 lib_flags
="$lib_flags -lgss"
160 if test $library = 'krb5'; then
161 lib_flags
="$lib_flags -lkrb5"