aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/libgcrypt/libgcrypt-1.2.2/src/libgcrypt-config.in
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/libgcrypt/libgcrypt-1.2.2/src/libgcrypt-config.in')
-rw-r--r--[-rwxr-xr-x]linden/indra/libgcrypt/libgcrypt-1.2.2/src/libgcrypt-config.in326
1 files changed, 163 insertions, 163 deletions
diff --git a/linden/indra/libgcrypt/libgcrypt-1.2.2/src/libgcrypt-config.in b/linden/indra/libgcrypt/libgcrypt-1.2.2/src/libgcrypt-config.in
index fe9088b..eac12aa 100755..100644
--- a/linden/indra/libgcrypt/libgcrypt-1.2.2/src/libgcrypt-config.in
+++ b/linden/indra/libgcrypt/libgcrypt-1.2.2/src/libgcrypt-config.in
@@ -1,163 +1,163 @@
1#!/bin/sh 1#!/bin/sh
2# Copyright (C) 1999, 2002, 2003, 2004 Free Software Foundation, Inc. 2# Copyright (C) 1999, 2002, 2003, 2004 Free Software Foundation, Inc.
3# 3#
4# This file is free software; as a special exception the author gives 4# This file is free software; as a special exception the author gives
5# unlimited permission to copy and/or distribute it, with or without 5# unlimited permission to copy and/or distribute it, with or without
6# modifications, as long as this notice is preserved. 6# modifications, as long as this notice is preserved.
7# 7#
8# This file is distributed in the hope that it will be useful, but 8# This file is distributed in the hope that it will be useful, but
9# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the 9# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
10# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 11
12# General. 12# General.
13prefix="@prefix@" 13prefix="@prefix@"
14exec_prefix="@exec_prefix@" 14exec_prefix="@exec_prefix@"
15version="@VERSION@" 15version="@VERSION@"
16includedir="@includedir@" 16includedir="@includedir@"
17libdir="@libdir@" 17libdir="@libdir@"
18gpg_error_libs="@GPG_ERROR_LIBS@" 18gpg_error_libs="@GPG_ERROR_LIBS@"
19gpg_error_cflags="@GPG_ERROR_CFLAGS@" 19gpg_error_cflags="@GPG_ERROR_CFLAGS@"
20 20
21# libgcrypt values. 21# libgcrypt values.
22libs="@LIBGCRYPT_CONFIG_LIBS@" 22libs="@LIBGCRYPT_CONFIG_LIBS@"
23cflags="@LIBGCRYPT_CONFIG_CFLAGS@" 23cflags="@LIBGCRYPT_CONFIG_CFLAGS@"
24 24
25# API info 25# API info
26api_version="@LIBGCRYPT_CONFIG_API_VERSION@" 26api_version="@LIBGCRYPT_CONFIG_API_VERSION@"
27 27
28# Misc information. 28# Misc information.
29symmetric_ciphers="@LIBGCRYPT_CIPHERS@" 29symmetric_ciphers="@LIBGCRYPT_CIPHERS@"
30asymmetric_ciphers="@LIBGCRYPT_PUBKEY_CIPHERS@" 30asymmetric_ciphers="@LIBGCRYPT_PUBKEY_CIPHERS@"
31digests="@LIBGCRYPT_DIGESTS@" 31digests="@LIBGCRYPT_DIGESTS@"
32 32
33# State variables. 33# State variables.
34echo_libs=no 34echo_libs=no
35echo_cflags=no 35echo_cflags=no
36echo_prefix=no 36echo_prefix=no
37echo_algorithms=no 37echo_algorithms=no
38echo_exec_prefix=no 38echo_exec_prefix=no
39echo_version=no 39echo_version=no
40echo_api_version=no 40echo_api_version=no
41 41
42# Prints usage information. 42# Prints usage information.
43usage() 43usage()
44{ 44{
45 cat <<EOF 45 cat <<EOF
46Usage: $0 [OPTIONS] 46Usage: $0 [OPTIONS]
47Options: 47Options:
48 [--prefix] 48 [--prefix]
49 [--exec-prefix] 49 [--exec-prefix]
50 [--version] 50 [--version]
51 [--api-version] 51 [--api-version]
52 [--libs] 52 [--libs]
53 [--cflags] 53 [--cflags]
54 [--algorithms] 54 [--algorithms]
55EOF 55EOF
56 exit $1 56 exit $1
57} 57}
58 58
59if test $# -eq 0; then 59if test $# -eq 0; then
60 # Nothing to do. 60 # Nothing to do.
61 usage 1 1>&2 61 usage 1 1>&2
62fi 62fi
63 63
64while test $# -gt 0; do 64while test $# -gt 0; do
65 case "$1" in 65 case "$1" in
66 # Set up `optarg'. 66 # Set up `optarg'.
67 --*=*) 67 --*=*)
68 optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` 68 optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'`
69 ;; 69 ;;
70 *) 70 *)
71 optarg="" 71 optarg=""
72 ;; 72 ;;
73 esac 73 esac
74 74
75 case $1 in 75 case $1 in
76 --thread=*) 76 --thread=*)
77 echo "$0: --thread option obsolete: use the thread callback interface" 1>&2 77 echo "$0: --thread option obsolete: use the thread callback interface" 1>&2
78 # exit 1 <-- enable this for 1.2.0. 78 # exit 1 <-- enable this for 1.2.0.
79 ;; 79 ;;
80 --prefix=*) 80 --prefix=*)
81 # For compatibility reasons with old M4 macros, we ignore 81 # For compatibility reasons with old M4 macros, we ignore
82 # setting of prefix. 82 # setting of prefix.
83 ;; 83 ;;
84 --prefix) 84 --prefix)
85 echo_prefix=yes 85 echo_prefix=yes
86 ;; 86 ;;
87 --exec-prefix=*) 87 --exec-prefix=*)
88 ;; 88 ;;
89 --exec-prefix) 89 --exec-prefix)
90 echo_exec_prefix=yes 90 echo_exec_prefix=yes
91 ;; 91 ;;
92 --version) 92 --version)
93 echo_version=yes 93 echo_version=yes
94 ;; 94 ;;
95 --api-version) 95 --api-version)
96 echo_api_version=yes 96 echo_api_version=yes
97 ;; 97 ;;
98 --cflags) 98 --cflags)
99 echo_cflags=yes 99 echo_cflags=yes
100 ;; 100 ;;
101 --libs) 101 --libs)
102 echo_libs=yes 102 echo_libs=yes
103 ;; 103 ;;
104 --algorithms) 104 --algorithms)
105 echo_algorithms=yes 105 echo_algorithms=yes
106 ;; 106 ;;
107 *) 107 *)
108 usage 1 1>&2 108 usage 1 1>&2
109 ;; 109 ;;
110 esac 110 esac
111 shift 111 shift
112done 112done
113 113
114if test "$echo_prefix" = "yes"; then 114if test "$echo_prefix" = "yes"; then
115 echo "$prefix" 115 echo "$prefix"
116fi 116fi
117 117
118if test "$echo_exec_prefix" = "yes"; then 118if test "$echo_exec_prefix" = "yes"; then
119 echo "$exec_prefix" 119 echo "$exec_prefix"
120fi 120fi
121 121
122if test "$echo_cflags" = "yes"; then 122if test "$echo_cflags" = "yes"; then
123 includes="" 123 includes=""
124 cflags_final="$cflags" 124 cflags_final="$cflags"
125 125
126 # Set up `includes'. 126 # Set up `includes'.
127 if test "x$includedir" != "x/usr/include" -a "x$includedir" != "x/include"; then 127 if test "x$includedir" != "x/usr/include" -a "x$includedir" != "x/include"; then
128 includes="-I$includedir" 128 includes="-I$includedir"
129 fi 129 fi
130 # Set up `cflags_final'. 130 # Set up `cflags_final'.
131 cflags_final="$cflags_final $gpg_error_cflags" 131 cflags_final="$cflags_final $gpg_error_cflags"
132 132
133 echo "$includes $cflags_final" 133 echo "$includes $cflags_final"
134fi 134fi
135 135
136if test "$echo_libs" = "yes"; then 136if test "$echo_libs" = "yes"; then
137 libdirs="" 137 libdirs=""
138 libs_final="$libs" 138 libs_final="$libs"
139 139
140 # Set up `libdirs'. 140 # Set up `libdirs'.
141 if test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/lib"; then 141 if test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/lib"; then
142 libdirs="-L$libdir" 142 libdirs="-L$libdir"
143 fi 143 fi
144 144
145 # Set up `libs_final'. 145 # Set up `libs_final'.
146 libs_final="$libs_final $gpg_error_libs" 146 libs_final="$libs_final $gpg_error_libs"
147 147
148 echo "$libdirs $libs_final" 148 echo "$libdirs $libs_final"
149fi 149fi
150 150
151if test "$echo_version" = "yes"; then 151if test "$echo_version" = "yes"; then
152 echo "$version" 152 echo "$version"
153fi 153fi
154 154
155if test "$echo_api_version" = "yes"; then 155if test "$echo_api_version" = "yes"; then
156 echo "$api_version" 156 echo "$api_version"
157fi 157fi
158 158
159if test "$echo_algorithms" = "yes"; then 159if test "$echo_algorithms" = "yes"; then
160 echo "Symmetric cipher algorithms: $symmetric_ciphers" 160 echo "Symmetric cipher algorithms: $symmetric_ciphers"
161 echo "Public-key cipher algorithms: $asymmetric_ciphers" 161 echo "Public-key cipher algorithms: $asymmetric_ciphers"
162 echo "Message digest algorithms: $digests" 162 echo "Message digest algorithms: $digests"
163fi 163fi