anusfoil commited on
Commit
4cef980
1 Parent(s): 67211b6

Upload 3363 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.gitattributes CHANGED
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ lam2/bin/python filter=lfs diff=lfs merge=lfs -text
37
+ lam2/bin/python3 filter=lfs diff=lfs merge=lfs -text
38
+ lam2/lib/python3.8/site-packages/aiohttp/_http_parser.cpython-38-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text
39
+ lam2/lib/python3.8/site-packages/faiss_gpu.libs/libgfortran-040039e1.so.5.0.0 filter=lfs diff=lfs merge=lfs -text
40
+ lam2/lib/python3.8/site-packages/h5py.libs/libhdf5-45610c27.so.200.2.0 filter=lfs diff=lfs merge=lfs -text
41
+ lam2/lib/python3.8/site-packages/msgpack/_cmsgpack.cpython-38-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text
42
+ lam2/lib/python3.8/site-packages/numpy.libs/libgfortran-040039e1.so.5.0.0 filter=lfs diff=lfs merge=lfs -text
43
+ lam2/lib/python3.8/site-packages/numpy.libs/libopenblas64_p-r0-742d56dc.3.20.so filter=lfs diff=lfs merge=lfs -text
44
+ lam2/lib/python3.8/site-packages/selenium/webdriver/common/linux/selenium-manager filter=lfs diff=lfs merge=lfs -text
45
+ lam2/lib/python3.8/site-packages/selenium/webdriver/common/macos/selenium-manager filter=lfs diff=lfs merge=lfs -text
46
+ lam2/lib/python3.8/site-packages/selenium/webdriver/common/windows/selenium-manager.exe filter=lfs diff=lfs merge=lfs -text
47
+ lam2/lib/python3.8/site-packages/tokenizers/tokenizers.cpython-38-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text
lam2/.DS_Store ADDED
Binary file (6.15 kB). View file
 
lam2/bin/.DS_Store ADDED
Binary file (6.15 kB). View file
 
lam2/bin/Activate.ps1 ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <#
2
+ .Synopsis
3
+ Activate a Python virtual environment for the current PowerShell session.
4
+
5
+ .Description
6
+ Pushes the python executable for a virtual environment to the front of the
7
+ $Env:PATH environment variable and sets the prompt to signify that you are
8
+ in a Python virtual environment. Makes use of the command line switches as
9
+ well as the `pyvenv.cfg` file values present in the virtual environment.
10
+
11
+ .Parameter VenvDir
12
+ Path to the directory that contains the virtual environment to activate. The
13
+ default value for this is the parent of the directory that the Activate.ps1
14
+ script is located within.
15
+
16
+ .Parameter Prompt
17
+ The prompt prefix to display when this virtual environment is activated. By
18
+ default, this prompt is the name of the virtual environment folder (VenvDir)
19
+ surrounded by parentheses and followed by a single space (ie. '(.venv) ').
20
+
21
+ .Example
22
+ Activate.ps1
23
+ Activates the Python virtual environment that contains the Activate.ps1 script.
24
+
25
+ .Example
26
+ Activate.ps1 -Verbose
27
+ Activates the Python virtual environment that contains the Activate.ps1 script,
28
+ and shows extra information about the activation as it executes.
29
+
30
+ .Example
31
+ Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
32
+ Activates the Python virtual environment located in the specified location.
33
+
34
+ .Example
35
+ Activate.ps1 -Prompt "MyPython"
36
+ Activates the Python virtual environment that contains the Activate.ps1 script,
37
+ and prefixes the current prompt with the specified string (surrounded in
38
+ parentheses) while the virtual environment is active.
39
+
40
+ .Notes
41
+ On Windows, it may be required to enable this Activate.ps1 script by setting the
42
+ execution policy for the user. You can do this by issuing the following PowerShell
43
+ command:
44
+
45
+ PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
46
+
47
+ For more information on Execution Policies:
48
+ https://go.microsoft.com/fwlink/?LinkID=135170
49
+
50
+ #>
51
+ Param(
52
+ [Parameter(Mandatory = $false)]
53
+ [String]
54
+ $VenvDir,
55
+ [Parameter(Mandatory = $false)]
56
+ [String]
57
+ $Prompt
58
+ )
59
+
60
+ <# Function declarations --------------------------------------------------- #>
61
+
62
+ <#
63
+ .Synopsis
64
+ Remove all shell session elements added by the Activate script, including the
65
+ addition of the virtual environment's Python executable from the beginning of
66
+ the PATH variable.
67
+
68
+ .Parameter NonDestructive
69
+ If present, do not remove this function from the global namespace for the
70
+ session.
71
+
72
+ #>
73
+ function global:deactivate ([switch]$NonDestructive) {
74
+ # Revert to original values
75
+
76
+ # The prior prompt:
77
+ if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) {
78
+ Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt
79
+ Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT
80
+ }
81
+
82
+ # The prior PYTHONHOME:
83
+ if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) {
84
+ Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME
85
+ Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME
86
+ }
87
+
88
+ # The prior PATH:
89
+ if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) {
90
+ Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH
91
+ Remove-Item -Path Env:_OLD_VIRTUAL_PATH
92
+ }
93
+
94
+ # Just remove the VIRTUAL_ENV altogether:
95
+ if (Test-Path -Path Env:VIRTUAL_ENV) {
96
+ Remove-Item -Path env:VIRTUAL_ENV
97
+ }
98
+
99
+ # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether:
100
+ if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) {
101
+ Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force
102
+ }
103
+
104
+ # Leave deactivate function in the global namespace if requested:
105
+ if (-not $NonDestructive) {
106
+ Remove-Item -Path function:deactivate
107
+ }
108
+ }
109
+
110
+ <#
111
+ .Description
112
+ Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the
113
+ given folder, and returns them in a map.
114
+
115
+ For each line in the pyvenv.cfg file, if that line can be parsed into exactly
116
+ two strings separated by `=` (with any amount of whitespace surrounding the =)
117
+ then it is considered a `key = value` line. The left hand string is the key,
118
+ the right hand is the value.
119
+
120
+ If the value starts with a `'` or a `"` then the first and last character is
121
+ stripped from the value before being captured.
122
+
123
+ .Parameter ConfigDir
124
+ Path to the directory that contains the `pyvenv.cfg` file.
125
+ #>
126
+ function Get-PyVenvConfig(
127
+ [String]
128
+ $ConfigDir
129
+ ) {
130
+ Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg"
131
+
132
+ # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue).
133
+ $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue
134
+
135
+ # An empty map will be returned if no config file is found.
136
+ $pyvenvConfig = @{ }
137
+
138
+ if ($pyvenvConfigPath) {
139
+
140
+ Write-Verbose "File exists, parse `key = value` lines"
141
+ $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath
142
+
143
+ $pyvenvConfigContent | ForEach-Object {
144
+ $keyval = $PSItem -split "\s*=\s*", 2
145
+ if ($keyval[0] -and $keyval[1]) {
146
+ $val = $keyval[1]
147
+
148
+ # Remove extraneous quotations around a string value.
149
+ if ("'""".Contains($val.Substring(0, 1))) {
150
+ $val = $val.Substring(1, $val.Length - 2)
151
+ }
152
+
153
+ $pyvenvConfig[$keyval[0]] = $val
154
+ Write-Verbose "Adding Key: '$($keyval[0])'='$val'"
155
+ }
156
+ }
157
+ }
158
+ return $pyvenvConfig
159
+ }
160
+
161
+
162
+ <# Begin Activate script --------------------------------------------------- #>
163
+
164
+ # Determine the containing directory of this script
165
+ $VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
166
+ $VenvExecDir = Get-Item -Path $VenvExecPath
167
+
168
+ Write-Verbose "Activation script is located in path: '$VenvExecPath'"
169
+ Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)"
170
+ Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)"
171
+
172
+ # Set values required in priority: CmdLine, ConfigFile, Default
173
+ # First, get the location of the virtual environment, it might not be
174
+ # VenvExecDir if specified on the command line.
175
+ if ($VenvDir) {
176
+ Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values"
177
+ }
178
+ else {
179
+ Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir."
180
+ $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/")
181
+ Write-Verbose "VenvDir=$VenvDir"
182
+ }
183
+
184
+ # Next, read the `pyvenv.cfg` file to determine any required value such
185
+ # as `prompt`.
186
+ $pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir
187
+
188
+ # Next, set the prompt from the command line, or the config file, or
189
+ # just use the name of the virtual environment folder.
190
+ if ($Prompt) {
191
+ Write-Verbose "Prompt specified as argument, using '$Prompt'"
192
+ }
193
+ else {
194
+ Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value"
195
+ if ($pyvenvCfg -and $pyvenvCfg['prompt']) {
196
+ Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'"
197
+ $Prompt = $pyvenvCfg['prompt'];
198
+ }
199
+ else {
200
+ Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virutal environment)"
201
+ Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'"
202
+ $Prompt = Split-Path -Path $venvDir -Leaf
203
+ }
204
+ }
205
+
206
+ Write-Verbose "Prompt = '$Prompt'"
207
+ Write-Verbose "VenvDir='$VenvDir'"
208
+
209
+ # Deactivate any currently active virtual environment, but leave the
210
+ # deactivate function in place.
211
+ deactivate -nondestructive
212
+
213
+ # Now set the environment variable VIRTUAL_ENV, used by many tools to determine
214
+ # that there is an activated venv.
215
+ $env:VIRTUAL_ENV = $VenvDir
216
+
217
+ if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) {
218
+
219
+ Write-Verbose "Setting prompt to '$Prompt'"
220
+
221
+ # Set the prompt to include the env name
222
+ # Make sure _OLD_VIRTUAL_PROMPT is global
223
+ function global:_OLD_VIRTUAL_PROMPT { "" }
224
+ Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT
225
+ New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt
226
+
227
+ function global:prompt {
228
+ Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) "
229
+ _OLD_VIRTUAL_PROMPT
230
+ }
231
+ }
232
+
233
+ # Clear PYTHONHOME
234
+ if (Test-Path -Path Env:PYTHONHOME) {
235
+ Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME
236
+ Remove-Item -Path Env:PYTHONHOME
237
+ }
238
+
239
+ # Add the venv to the PATH
240
+ Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH
241
+ $Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH"
lam2/bin/Makefile ADDED
@@ -0,0 +1,1156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Makefile.in generated by automake 1.14.1 from Makefile.am.
2
+ # Makefile. Generated from Makefile.in by configure.
3
+
4
+ # Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
+
6
+ # This Makefile.in is free software; the Free Software Foundation
7
+ # gives unlimited permission to copy and/or distribute it,
8
+ # with or without modifications, as long as this notice is preserved.
9
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+
16
+
17
+ VPATH = sox-14.4.2
18
+ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+ am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
+ pkgdatadir = $(datadir)/sox
64
+ pkgincludedir = $(includedir)/sox
65
+ pkglibdir = $(libdir)/sox
66
+ pkglibexecdir = $(libexecdir)/sox
67
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
68
+ install_sh_DATA = $(install_sh) -c -m 644
69
+ install_sh_PROGRAM = $(install_sh) -c
70
+ install_sh_SCRIPT = $(install_sh) -c
71
+ INSTALL_HEADER = $(INSTALL_DATA)
72
+ transform = $(program_transform_name)
73
+ NORMAL_INSTALL = :
74
+ PRE_INSTALL = :
75
+ POST_INSTALL = :
76
+ NORMAL_UNINSTALL = :
77
+ PRE_UNINSTALL = :
78
+ POST_UNINSTALL = :
79
+ build_triplet = x86_64-unknown-linux-gnu
80
+ host_triplet = x86_64-unknown-linux-gnu
81
+ target_triplet = x86_64-unknown-linux-gnu
82
+ subdir = .
83
+ DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
84
+ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
85
+ $(top_srcdir)/configure $(am__configure_deps) \
86
+ $(srcdir)/sox.pc.in $(dist_man_MANS) COPYING compile \
87
+ config.guess config.sub depcomp install-sh missing ltmain.sh
88
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
89
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gcc_stack_protect.m4 \
90
+ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
91
+ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
92
+ $(top_srcdir)/m4/lt~obsolete.m4 \
93
+ $(top_srcdir)/m4/optional-fmt.m4 $(top_srcdir)/m4/sndfile.m4 \
94
+ $(top_srcdir)/configure.ac
95
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
96
+ $(ACLOCAL_M4)
97
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
98
+ configure.lineno config.status.lineno
99
+ mkinstalldirs = $(install_sh) -d
100
+ CONFIG_HEADER = $(top_builddir)/src/soxconfig.h
101
+ CONFIG_CLEAN_FILES = sox.pc
102
+ CONFIG_CLEAN_VPATH_FILES =
103
+ AM_V_P = $(am__v_P_$(V))
104
+ am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
105
+ am__v_P_0 = false
106
+ am__v_P_1 = :
107
+ AM_V_GEN = $(am__v_GEN_$(V))
108
+ am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
109
+ am__v_GEN_0 = @echo " GEN " $@;
110
+ am__v_GEN_1 =
111
+ AM_V_at = $(am__v_at_$(V))
112
+ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
113
+ am__v_at_0 = @
114
+ am__v_at_1 =
115
+ SOURCES =
116
+ DIST_SOURCES =
117
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
118
+ ctags-recursive dvi-recursive html-recursive info-recursive \
119
+ install-data-recursive install-dvi-recursive \
120
+ install-exec-recursive install-html-recursive \
121
+ install-info-recursive install-pdf-recursive \
122
+ install-ps-recursive install-recursive installcheck-recursive \
123
+ installdirs-recursive pdf-recursive ps-recursive \
124
+ tags-recursive uninstall-recursive
125
+ am__can_run_installinfo = \
126
+ case $$AM_UPDATE_INFO_DIR in \
127
+ n|no|NO) false;; \
128
+ *) (install-info --version) >/dev/null 2>&1;; \
129
+ esac
130
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
131
+ am__vpath_adj = case $$p in \
132
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
133
+ *) f=$$p;; \
134
+ esac;
135
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
136
+ am__install_max = 40
137
+ am__nobase_strip_setup = \
138
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
139
+ am__nobase_strip = \
140
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
141
+ am__nobase_list = $(am__nobase_strip_setup); \
142
+ for p in $$list; do echo "$$p $$p"; done | \
143
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
144
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
145
+ if (++n[$$2] == $(am__install_max)) \
146
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
147
+ END { for (dir in files) print dir, files[dir] }'
148
+ am__base_list = \
149
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
150
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
151
+ am__uninstall_files_from_dir = { \
152
+ test -z "$$files" \
153
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
154
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
155
+ $(am__cd) "$$dir" && rm -f $$files; }; \
156
+ }
157
+ man1dir = $(mandir)/man1
158
+ am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)" \
159
+ "$(DESTDIR)$(man7dir)" "$(DESTDIR)$(pkgconfigdir)"
160
+ man3dir = $(mandir)/man3
161
+ man7dir = $(mandir)/man7
162
+ NROFF = nroff
163
+ MANS = $(dist_man_MANS)
164
+ DATA = $(pkgconfig_DATA)
165
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
166
+ distclean-recursive maintainer-clean-recursive
167
+ am__recursive_targets = \
168
+ $(RECURSIVE_TARGETS) \
169
+ $(RECURSIVE_CLEAN_TARGETS) \
170
+ $(am__extra_recursive_targets)
171
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
172
+ cscope distdir dist dist-all distcheck
173
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
174
+ # Read a list of newline-separated strings from the standard input,
175
+ # and print each of them once, without duplicates. Input order is
176
+ # *not* preserved.
177
+ am__uniquify_input = $(AWK) '\
178
+ BEGIN { nonempty = 0; } \
179
+ { items[$$0] = 1; nonempty = 1; } \
180
+ END { if (nonempty) { for (i in items) print i; }; } \
181
+ '
182
+ # Make sure the list of sources is unique. This is necessary because,
183
+ # e.g., the same source file might be shared among _SOURCES variables
184
+ # for different programs/libraries.
185
+ am__define_uniq_tagged_files = \
186
+ list='$(am__tagged_files)'; \
187
+ unique=`for i in $$list; do \
188
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
189
+ done | $(am__uniquify_input)`
190
+ ETAGS = etags
191
+ CTAGS = ctags
192
+ CSCOPE = cscope
193
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
194
+ distdir = $(PACKAGE)-$(VERSION)
195
+ top_distdir = $(distdir)
196
+ am__remove_distdir = \
197
+ if test -d "$(distdir)"; then \
198
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
199
+ && rm -rf "$(distdir)" \
200
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
201
+ else :; fi
202
+ am__post_remove_distdir = $(am__remove_distdir)
203
+ am__relativize = \
204
+ dir0=`pwd`; \
205
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
206
+ sed_rest='s,^[^/]*/*,,'; \
207
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
208
+ sed_butlast='s,/*[^/]*$$,,'; \
209
+ while test -n "$$dir1"; do \
210
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
211
+ if test "$$first" != "."; then \
212
+ if test "$$first" = ".."; then \
213
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
214
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
215
+ else \
216
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
217
+ if test "$$first2" = "$$first"; then \
218
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
219
+ else \
220
+ dir2="../$$dir2"; \
221
+ fi; \
222
+ dir0="$$dir0"/"$$first"; \
223
+ fi; \
224
+ fi; \
225
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
226
+ done; \
227
+ reldir="$$dir2"
228
+ DIST_ARCHIVES = $(distdir).tar.gz
229
+ GZIP_ENV = --best
230
+ DIST_TARGETS = dist-gzip
231
+ distuninstallcheck_listfiles = find . -type f -print
232
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
233
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
234
+ distcleancheck_listfiles = find . -type f -print
235
+ ACLOCAL = ${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing aclocal-1.14
236
+ ALSA_CFLAGS =
237
+ ALSA_LIBS =
238
+ AMRNB_CFLAGS =
239
+ AMRNB_LIBS =
240
+ AMRWB_CFLAGS =
241
+ AMRWB_LIBS =
242
+ AMTAR = $${TAR-tar}
243
+ AM_DEFAULT_VERBOSITY = 0
244
+ AO_CFLAGS =
245
+ AO_LIBS =
246
+ APP_LDFLAGS =
247
+ AR = ar
248
+ AS = as
249
+ AUTOCONF = ${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing autoconf
250
+ AUTOHEADER = ${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing autoheader
251
+ AUTOMAKE = ${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing automake-1.14
252
+ AWK = gawk
253
+ CC = gcc
254
+ CCDEPMODE = depmode=gcc3
255
+ CFLAGS = -g -O2 -fstack-protector -Wall -W -Wmissing-prototypes -Wstrict-prototypes -pedantic -fopenmp
256
+ COREAUDIO_CFLAGS =
257
+ COREAUDIO_LIBS =
258
+ CPP = gcc -E
259
+ CPPFLAGS =
260
+ CYGPATH_W = echo
261
+ DEFS = -DHAVE_CONFIG_H
262
+ DEPDIR = .deps
263
+ DISTRO = not specified!
264
+ DLLTOOL = false
265
+ DSYMUTIL =
266
+ DUMPBIN =
267
+ ECHO_C =
268
+ ECHO_N = -n
269
+ ECHO_T =
270
+ EGREP = /usr/bin/grep -E
271
+ EXEEXT =
272
+ FGREP = /usr/bin/grep -F
273
+ FLAC_CFLAGS =
274
+ FLAC_LIBS =
275
+ GOMP_LIBS =
276
+ GREP = /usr/bin/grep
277
+ GSM_CFLAGS =
278
+ GSM_LIBS =
279
+ INSTALL = /usr/bin/install -c
280
+ INSTALL_DATA = ${INSTALL} -m 644
281
+ INSTALL_PROGRAM = ${INSTALL}
282
+ INSTALL_SCRIPT = ${INSTALL}
283
+ INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
284
+ LADSPA_PATH = ${exec_prefix}/lib/ladspa
285
+ LD = /usr/bin/ld -m elf_x86_64
286
+ LDFLAGS = -Wl,-z,defs
287
+ LIBGSM_LIBADD = ../libgsm/libgsm.la
288
+ LIBLPC10_LIBADD = ../lpc10/liblpc10.la
289
+ LIBLTDL =
290
+ LIBOBJS =
291
+ LIBS = -lm
292
+ LIBTOOL = $(SHELL) $(top_builddir)/libtool
293
+ LIBTOOLFLAGS = --silent
294
+ LIBTOOL_DEPS = sox-14.4.2/ltmain.sh
295
+ LIPO =
296
+ LN_S = ln -s
297
+ LPC10_CFLAGS =
298
+ LPC10_LIBS =
299
+ LTLIBOBJS =
300
+ MAGIC_LIBS =
301
+ MAKEINFO = ${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing makeinfo
302
+ MANIFEST_TOOL = :
303
+ MKDIR_P = /usr/bin/mkdir -p
304
+ MP3_CFLAGS =
305
+ MP3_LIBS =
306
+ NM = /usr/bin/nm -B
307
+ NMEDIT =
308
+ OBJDUMP = objdump
309
+ OBJEXT = o
310
+ OGG_VORBIS_CFLAGS =
311
+ OGG_VORBIS_LIBS =
312
+ OPENMP_CFLAGS = -fopenmp
313
+ OPUS_CFLAGS = -Wno-long-long
314
+ OPUS_LIBS =
315
+ OSS_CFLAGS =
316
+ OSS_LIBS =
317
+ OTOOL =
318
+ OTOOL64 =
319
+ PACKAGE = sox
320
+ PACKAGE_BUGREPORT = [email protected]
321
+ PACKAGE_NAME = SoX
322
+ PACKAGE_STRING = SoX 14.4.2
323
+ PACKAGE_TARNAME = sox
324
+ PACKAGE_URL =
325
+ PACKAGE_VERSION = 14.4.2
326
+ PATH_SEPARATOR = :
327
+ PKGCONFIGDIR = $(libdir)/pkgconfig
328
+ PKG_CONFIG = /usr/bin/pkg-config
329
+ PKG_CONFIG_LIBDIR =
330
+ PKG_CONFIG_PATH =
331
+ PLAYRECLINKS = yes
332
+ PNG_LIBS = -lpng -lz
333
+ PULSEAUDIO_CFLAGS =
334
+ PULSEAUDIO_LIBS =
335
+ RANLIB = ranlib
336
+ SED = /usr/bin/sed
337
+ SET_MAKE =
338
+ SHELL = /bin/sh
339
+ SHLIB_VERSION = 3:0:0
340
+ SNDFILE_CFLAGS =
341
+ SNDFILE_LIBS = -lsndfile
342
+ SNDIO_CFLAGS =
343
+ SNDIO_LIBS =
344
+ STRIP = strip
345
+ SUN_AUDIO_CFLAGS =
346
+ SUN_AUDIO_LIBS =
347
+ SYMLINKS = yes
348
+ VERSION = 14.4.2
349
+ WARN_CFLAGS = -Wtraditional-conversion
350
+ WAVEAUDIO_CFLAGS =
351
+ WAVEAUDIO_LIBS =
352
+ WAVPACK_CFLAGS =
353
+ WAVPACK_LIBS =
354
+ abs_builddir = /data/home/acw630/venvs/lam/bin
355
+ abs_srcdir = /data/home/acw630/venvs/lam/bin/sox-14.4.2
356
+ abs_top_builddir = /data/home/acw630/venvs/lam/bin
357
+ abs_top_srcdir = /data/home/acw630/venvs/lam/bin/sox-14.4.2
358
+ ac_ct_AR = ar
359
+ ac_ct_CC = gcc
360
+ ac_ct_DUMPBIN =
361
+ am__include = include
362
+ am__leading_dot = .
363
+ am__quote =
364
+ am__tar = $${TAR-tar} chof - "$$tardir"
365
+ am__untar = $${TAR-tar} xf -
366
+ bindir = ${exec_prefix}/bin
367
+ build = x86_64-unknown-linux-gnu
368
+ build_alias =
369
+ build_cpu = x86_64
370
+ build_os = linux-gnu
371
+ build_vendor = unknown
372
+ builddir = .
373
+ datadir = ${datarootdir}
374
+ datarootdir = ${prefix}/share
375
+ docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
376
+ dvidir = ${docdir}
377
+ exec_prefix = ${prefix}
378
+ host = x86_64-unknown-linux-gnu
379
+ host_alias =
380
+ host_cpu = x86_64
381
+ host_os = linux-gnu
382
+ host_vendor = unknown
383
+ htmldir = ${docdir}
384
+ includedir = ${prefix}/include
385
+ infodir = ${datarootdir}/info
386
+ install_sh = ${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/install-sh
387
+ libdir = ${exec_prefix}/lib
388
+ libexecdir = ${exec_prefix}/libexec
389
+ localedir = ${datarootdir}/locale
390
+ localstatedir = ${prefix}/var
391
+ mandir = ${datarootdir}/man
392
+ mkdir_p = $(MKDIR_P)
393
+ oldincludedir = /usr/include
394
+ pdfdir = ${docdir}
395
+ prefix = /data/home/acw630/venvs/lam/bin/sox-14.4.2
396
+ program_transform_name = s,x,x,
397
+ psdir = ${docdir}
398
+ sbindir = ${exec_prefix}/sbin
399
+ sharedstatedir = ${prefix}/com
400
+ srcdir = sox-14.4.2
401
+ sysconfdir = ${prefix}/etc
402
+ target = x86_64-unknown-linux-gnu
403
+ target_alias =
404
+ target_cpu = x86_64
405
+ target_os = linux-gnu
406
+ target_vendor = unknown
407
+ top_build_prefix =
408
+ top_builddir = .
409
+ top_srcdir = sox-14.4.2
410
+ ACLOCAL_AMFLAGS = -I m4
411
+ SUBDIRS = lpc10 libgsm src
412
+ DIST_SUBDIRS = lpc10 libgsm src msvc9 msvc10
413
+ RM = rm -f
414
+
415
+ # man pages are not considered to be sources, so need to add "dist_"
416
+ # prefix to ensure they are added to the distribution.
417
+ dist_man_MANS = sox.1 soxi.1 soxformat.7 libsox.3
418
+ EXTRA_DIST = sox.txt soxi.txt soxformat.txt libsox.txt \
419
+ CMakeLists.txt sox.pc.in LICENSE.GPL LICENSE.LGPL \
420
+ cygbuild README.win32 README.osx scripts/batch-example.bat \
421
+ README.sh FEATURES.in
422
+
423
+ pkgconfigdir = $(libdir)/pkgconfig
424
+ pkgconfig_DATA = sox.pc
425
+ DOCTXT = sox.txt soxi.txt soxformat.txt libsox.txt README
426
+ DOCPDF = sox.pdf soxi.pdf soxformat.pdf libsox.pdf
427
+
428
+ # Rule for making HTML man pages
429
+ #
430
+ # Get rid on unneeded Content-Type, man directory and manpage index in extension.
431
+ # e.g. ../man1/soxi.1.html becomes ../soxi.html
432
+ # Return to Main Contents and link to man2html are also modified.
433
+ FIXHTML = sed 's,<head>,&<link rel="stylesheet" href="http://sox.sourceforge.net/pub/skins/sox/sox.css" type="text/css"></link>,'
434
+ DOCHTML = sox.html soxi.html soxformat.html libsox.html
435
+ DISTCLEANFILES = $(DOCHTML) $(DOCPDF)
436
+ MAINTAINERCLEANFILES = $(DOCTXT)
437
+ all: all-recursive
438
+
439
+ .SUFFIXES:
440
+ .SUFFIXES: .1 .3 .7 .html .pdf .txt
441
+ am--refresh: Makefile
442
+ @:
443
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
444
+ @for dep in $?; do \
445
+ case '$(am__configure_deps)' in \
446
+ *$$dep*) \
447
+ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
448
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
449
+ && exit 0; \
450
+ exit 1;; \
451
+ esac; \
452
+ done; \
453
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
454
+ $(am__cd) $(top_srcdir) && \
455
+ $(AUTOMAKE) --gnu Makefile
456
+ .PRECIOUS: Makefile
457
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
458
+ @case '$?' in \
459
+ *config.status*) \
460
+ echo ' $(SHELL) ./config.status'; \
461
+ $(SHELL) ./config.status;; \
462
+ *) \
463
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
464
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
465
+ esac;
466
+
467
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
468
+ $(SHELL) ./config.status --recheck
469
+
470
+ $(top_srcdir)/configure: $(am__configure_deps)
471
+ $(am__cd) $(srcdir) && $(AUTOCONF)
472
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
473
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
474
+ $(am__aclocal_m4_deps):
475
+ sox.pc: $(top_builddir)/config.status $(srcdir)/sox.pc.in
476
+ cd $(top_builddir) && $(SHELL) ./config.status $@
477
+
478
+ mostlyclean-libtool:
479
+ -rm -f *.lo
480
+
481
+ clean-libtool:
482
+ -rm -rf .libs _libs
483
+
484
+ distclean-libtool:
485
+ -rm -f libtool config.lt
486
+ install-man1: $(dist_man_MANS)
487
+ @$(NORMAL_INSTALL)
488
+ @list1=''; \
489
+ list2='$(dist_man_MANS)'; \
490
+ test -n "$(man1dir)" \
491
+ && test -n "`echo $$list1$$list2`" \
492
+ || exit 0; \
493
+ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
494
+ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
495
+ { for i in $$list1; do echo "$$i"; done; \
496
+ if test -n "$$list2"; then \
497
+ for i in $$list2; do echo "$$i"; done \
498
+ | sed -n '/\.1[a-z]*$$/p'; \
499
+ fi; \
500
+ } | while read p; do \
501
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
502
+ echo "$$d$$p"; echo "$$p"; \
503
+ done | \
504
+ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
505
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
506
+ sed 'N;N;s,\n, ,g' | { \
507
+ list=; while read file base inst; do \
508
+ if test "$$base" = "$$inst"; then list="$$list $$file"; else \
509
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
510
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
511
+ fi; \
512
+ done; \
513
+ for i in $$list; do echo "$$i"; done | $(am__base_list) | \
514
+ while read files; do \
515
+ test -z "$$files" || { \
516
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
517
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
518
+ done; }
519
+
520
+ uninstall-man1:
521
+ @$(NORMAL_UNINSTALL)
522
+ @list=''; test -n "$(man1dir)" || exit 0; \
523
+ files=`{ for i in $$list; do echo "$$i"; done; \
524
+ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
525
+ sed -n '/\.1[a-z]*$$/p'; \
526
+ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
527
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
528
+ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
529
+ install-man3: $(dist_man_MANS)
530
+ @$(NORMAL_INSTALL)
531
+ @list1=''; \
532
+ list2='$(dist_man_MANS)'; \
533
+ test -n "$(man3dir)" \
534
+ && test -n "`echo $$list1$$list2`" \
535
+ || exit 0; \
536
+ echo " $(MKDIR_P) '$(DESTDIR)$(man3dir)'"; \
537
+ $(MKDIR_P) "$(DESTDIR)$(man3dir)" || exit 1; \
538
+ { for i in $$list1; do echo "$$i"; done; \
539
+ if test -n "$$list2"; then \
540
+ for i in $$list2; do echo "$$i"; done \
541
+ | sed -n '/\.3[a-z]*$$/p'; \
542
+ fi; \
543
+ } | while read p; do \
544
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
545
+ echo "$$d$$p"; echo "$$p"; \
546
+ done | \
547
+ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
548
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
549
+ sed 'N;N;s,\n, ,g' | { \
550
+ list=; while read file base inst; do \
551
+ if test "$$base" = "$$inst"; then list="$$list $$file"; else \
552
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
553
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst" || exit $$?; \
554
+ fi; \
555
+ done; \
556
+ for i in $$list; do echo "$$i"; done | $(am__base_list) | \
557
+ while read files; do \
558
+ test -z "$$files" || { \
559
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man3dir)'"; \
560
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(man3dir)" || exit $$?; }; \
561
+ done; }
562
+
563
+ uninstall-man3:
564
+ @$(NORMAL_UNINSTALL)
565
+ @list=''; test -n "$(man3dir)" || exit 0; \
566
+ files=`{ for i in $$list; do echo "$$i"; done; \
567
+ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
568
+ sed -n '/\.3[a-z]*$$/p'; \
569
+ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
570
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
571
+ dir='$(DESTDIR)$(man3dir)'; $(am__uninstall_files_from_dir)
572
+ install-man7: $(dist_man_MANS)
573
+ @$(NORMAL_INSTALL)
574
+ @list1=''; \
575
+ list2='$(dist_man_MANS)'; \
576
+ test -n "$(man7dir)" \
577
+ && test -n "`echo $$list1$$list2`" \
578
+ || exit 0; \
579
+ echo " $(MKDIR_P) '$(DESTDIR)$(man7dir)'"; \
580
+ $(MKDIR_P) "$(DESTDIR)$(man7dir)" || exit 1; \
581
+ { for i in $$list1; do echo "$$i"; done; \
582
+ if test -n "$$list2"; then \
583
+ for i in $$list2; do echo "$$i"; done \
584
+ | sed -n '/\.7[a-z]*$$/p'; \
585
+ fi; \
586
+ } | while read p; do \
587
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
588
+ echo "$$d$$p"; echo "$$p"; \
589
+ done | \
590
+ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^7][0-9a-z]*$$,7,;x' \
591
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
592
+ sed 'N;N;s,\n, ,g' | { \
593
+ list=; while read file base inst; do \
594
+ if test "$$base" = "$$inst"; then list="$$list $$file"; else \
595
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man7dir)/$$inst'"; \
596
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man7dir)/$$inst" || exit $$?; \
597
+ fi; \
598
+ done; \
599
+ for i in $$list; do echo "$$i"; done | $(am__base_list) | \
600
+ while read files; do \
601
+ test -z "$$files" || { \
602
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man7dir)'"; \
603
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(man7dir)" || exit $$?; }; \
604
+ done; }
605
+
606
+ uninstall-man7:
607
+ @$(NORMAL_UNINSTALL)
608
+ @list=''; test -n "$(man7dir)" || exit 0; \
609
+ files=`{ for i in $$list; do echo "$$i"; done; \
610
+ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
611
+ sed -n '/\.7[a-z]*$$/p'; \
612
+ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^7][0-9a-z]*$$,7,;x' \
613
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
614
+ dir='$(DESTDIR)$(man7dir)'; $(am__uninstall_files_from_dir)
615
+ install-pkgconfigDATA: $(pkgconfig_DATA)
616
+ @$(NORMAL_INSTALL)
617
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
618
+ if test -n "$$list"; then \
619
+ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
620
+ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
621
+ fi; \
622
+ for p in $$list; do \
623
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
624
+ echo "$$d$$p"; \
625
+ done | $(am__base_list) | \
626
+ while read files; do \
627
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
628
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
629
+ done
630
+
631
+ uninstall-pkgconfigDATA:
632
+ @$(NORMAL_UNINSTALL)
633
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
634
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
635
+ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
636
+
637
+ # This directory's subdirectories are mostly independent; you can cd
638
+ # into them and run 'make' without going through this Makefile.
639
+ # To change the values of 'make' variables: instead of editing Makefiles,
640
+ # (1) if the variable is set in 'config.status', edit 'config.status'
641
+ # (which will cause the Makefiles to be regenerated when you run 'make');
642
+ # (2) otherwise, pass the desired values on the 'make' command line.
643
+ $(am__recursive_targets):
644
+ @fail=; \
645
+ if $(am__make_keepgoing); then \
646
+ failcom='fail=yes'; \
647
+ else \
648
+ failcom='exit 1'; \
649
+ fi; \
650
+ dot_seen=no; \
651
+ target=`echo $@ | sed s/-recursive//`; \
652
+ case "$@" in \
653
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
654
+ *) list='$(SUBDIRS)' ;; \
655
+ esac; \
656
+ for subdir in $$list; do \
657
+ echo "Making $$target in $$subdir"; \
658
+ if test "$$subdir" = "."; then \
659
+ dot_seen=yes; \
660
+ local_target="$$target-am"; \
661
+ else \
662
+ local_target="$$target"; \
663
+ fi; \
664
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
665
+ || eval $$failcom; \
666
+ done; \
667
+ if test "$$dot_seen" = "no"; then \
668
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
669
+ fi; test -z "$$fail"
670
+
671
+ ID: $(am__tagged_files)
672
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
673
+ tags: tags-recursive
674
+ TAGS: tags
675
+
676
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
677
+ set x; \
678
+ here=`pwd`; \
679
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
680
+ include_option=--etags-include; \
681
+ empty_fix=.; \
682
+ else \
683
+ include_option=--include; \
684
+ empty_fix=; \
685
+ fi; \
686
+ list='$(SUBDIRS)'; for subdir in $$list; do \
687
+ if test "$$subdir" = .; then :; else \
688
+ test ! -f $$subdir/TAGS || \
689
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
690
+ fi; \
691
+ done; \
692
+ $(am__define_uniq_tagged_files); \
693
+ shift; \
694
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
695
+ test -n "$$unique" || unique=$$empty_fix; \
696
+ if test $$# -gt 0; then \
697
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
698
+ "$$@" $$unique; \
699
+ else \
700
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
701
+ $$unique; \
702
+ fi; \
703
+ fi
704
+ ctags: ctags-recursive
705
+
706
+ CTAGS: ctags
707
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
708
+ $(am__define_uniq_tagged_files); \
709
+ test -z "$(CTAGS_ARGS)$$unique" \
710
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
711
+ $$unique
712
+
713
+ GTAGS:
714
+ here=`$(am__cd) $(top_builddir) && pwd` \
715
+ && $(am__cd) $(top_srcdir) \
716
+ && gtags -i $(GTAGS_ARGS) "$$here"
717
+ cscope: cscope.files
718
+ test ! -s cscope.files \
719
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
720
+ clean-cscope:
721
+ -rm -f cscope.files
722
+ cscope.files: clean-cscope cscopelist
723
+ cscopelist: cscopelist-recursive
724
+
725
+ cscopelist-am: $(am__tagged_files)
726
+ list='$(am__tagged_files)'; \
727
+ case "$(srcdir)" in \
728
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
729
+ *) sdir=$(subdir)/$(srcdir) ;; \
730
+ esac; \
731
+ for i in $$list; do \
732
+ if test -f "$$i"; then \
733
+ echo "$(subdir)/$$i"; \
734
+ else \
735
+ echo "$$sdir/$$i"; \
736
+ fi; \
737
+ done >> $(top_builddir)/cscope.files
738
+
739
+ distclean-tags:
740
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
741
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
742
+
743
+ distdir: $(DISTFILES)
744
+ $(am__remove_distdir)
745
+ test -d "$(distdir)" || mkdir "$(distdir)"
746
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
747
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
748
+ list='$(DISTFILES)'; \
749
+ dist_files=`for file in $$list; do echo $$file; done | \
750
+ sed -e "s|^$$srcdirstrip/||;t" \
751
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
752
+ case $$dist_files in \
753
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
754
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
755
+ sort -u` ;; \
756
+ esac; \
757
+ for file in $$dist_files; do \
758
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
759
+ if test -d $$d/$$file; then \
760
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
761
+ if test -d "$(distdir)/$$file"; then \
762
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
763
+ fi; \
764
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
765
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
766
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
767
+ fi; \
768
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
769
+ else \
770
+ test -f "$(distdir)/$$file" \
771
+ || cp -p $$d/$$file "$(distdir)/$$file" \
772
+ || exit 1; \
773
+ fi; \
774
+ done
775
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
776
+ if test "$$subdir" = .; then :; else \
777
+ $(am__make_dryrun) \
778
+ || test -d "$(distdir)/$$subdir" \
779
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
780
+ || exit 1; \
781
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
782
+ $(am__relativize); \
783
+ new_distdir=$$reldir; \
784
+ dir1=$$subdir; dir2="$(top_distdir)"; \
785
+ $(am__relativize); \
786
+ new_top_distdir=$$reldir; \
787
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
788
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
789
+ ($(am__cd) $$subdir && \
790
+ $(MAKE) $(AM_MAKEFLAGS) \
791
+ top_distdir="$$new_top_distdir" \
792
+ distdir="$$new_distdir" \
793
+ am__remove_distdir=: \
794
+ am__skip_length_check=: \
795
+ am__skip_mode_fix=: \
796
+ distdir) \
797
+ || exit 1; \
798
+ fi; \
799
+ done
800
+ -test -n "$(am__skip_mode_fix)" \
801
+ || find "$(distdir)" -type d ! -perm -755 \
802
+ -exec chmod u+rwx,go+rx {} \; -o \
803
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
804
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
805
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
806
+ || chmod -R a+r "$(distdir)"
807
+ dist-gzip: distdir
808
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
809
+ $(am__post_remove_distdir)
810
+
811
+ dist-bzip2: distdir
812
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
813
+ $(am__post_remove_distdir)
814
+
815
+ dist-lzip: distdir
816
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
817
+ $(am__post_remove_distdir)
818
+
819
+ dist-xz: distdir
820
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
821
+ $(am__post_remove_distdir)
822
+
823
+ dist-tarZ: distdir
824
+ @echo WARNING: "Support for shar distribution archives is" \
825
+ "deprecated." >&2
826
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
827
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
828
+ $(am__post_remove_distdir)
829
+
830
+ dist-shar: distdir
831
+ @echo WARNING: "Support for distribution archives compressed with" \
832
+ "legacy program 'compress' is deprecated." >&2
833
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
834
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
835
+ $(am__post_remove_distdir)
836
+
837
+ dist-zip: distdir
838
+ -rm -f $(distdir).zip
839
+ zip -rq $(distdir).zip $(distdir)
840
+ $(am__post_remove_distdir)
841
+
842
+ dist dist-all:
843
+ $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
844
+ $(am__post_remove_distdir)
845
+
846
+ # This target untars the dist file and tries a VPATH configuration. Then
847
+ # it guarantees that the distribution is self-contained by making another
848
+ # tarfile.
849
+ distcheck: dist
850
+ case '$(DIST_ARCHIVES)' in \
851
+ *.tar.gz*) \
852
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
853
+ *.tar.bz2*) \
854
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
855
+ *.tar.lz*) \
856
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
857
+ *.tar.xz*) \
858
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
859
+ *.tar.Z*) \
860
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
861
+ *.shar.gz*) \
862
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
863
+ *.zip*) \
864
+ unzip $(distdir).zip ;;\
865
+ esac
866
+ chmod -R a-w $(distdir)
867
+ chmod u+w $(distdir)
868
+ mkdir $(distdir)/_build $(distdir)/_inst
869
+ chmod a-w $(distdir)
870
+ test -d $(distdir)/_build || exit 0; \
871
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
872
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
873
+ && am__cwd=`pwd` \
874
+ && $(am__cd) $(distdir)/_build \
875
+ && ../configure \
876
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
877
+ $(DISTCHECK_CONFIGURE_FLAGS) \
878
+ --srcdir=.. --prefix="$$dc_install_base" \
879
+ && $(MAKE) $(AM_MAKEFLAGS) \
880
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
881
+ && $(MAKE) $(AM_MAKEFLAGS) check \
882
+ && $(MAKE) $(AM_MAKEFLAGS) install \
883
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
884
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
885
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
886
+ distuninstallcheck \
887
+ && chmod -R a-w "$$dc_install_base" \
888
+ && ({ \
889
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
890
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
891
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
892
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
893
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
894
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
895
+ && rm -rf "$$dc_destdir" \
896
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
897
+ && rm -rf $(DIST_ARCHIVES) \
898
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
899
+ && cd "$$am__cwd" \
900
+ || exit 1
901
+ $(am__post_remove_distdir)
902
+ @(echo "$(distdir) archives ready for distribution: "; \
903
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
904
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
905
+ distuninstallcheck:
906
+ @test -n '$(distuninstallcheck_dir)' || { \
907
+ echo 'ERROR: trying to run $@ with an empty' \
908
+ '$$(distuninstallcheck_dir)' >&2; \
909
+ exit 1; \
910
+ }; \
911
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
912
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
913
+ exit 1; \
914
+ }; \
915
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
916
+ || { echo "ERROR: files left after uninstall:" ; \
917
+ if test -n "$(DESTDIR)"; then \
918
+ echo " (check DESTDIR support)"; \
919
+ fi ; \
920
+ $(distuninstallcheck_listfiles) ; \
921
+ exit 1; } >&2
922
+ distcleancheck: distclean
923
+ @if test '$(srcdir)' = . ; then \
924
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
925
+ exit 1 ; \
926
+ fi
927
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
928
+ || { echo "ERROR: files left in build directory after distclean:" ; \
929
+ $(distcleancheck_listfiles) ; \
930
+ exit 1; } >&2
931
+ check-am: all-am
932
+ check: check-recursive
933
+ all-am: Makefile $(MANS) $(DATA)
934
+ installdirs: installdirs-recursive
935
+ installdirs-am:
936
+ for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(man7dir)" "$(DESTDIR)$(pkgconfigdir)"; do \
937
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
938
+ done
939
+ install: install-recursive
940
+ install-exec: install-exec-recursive
941
+ install-data: install-data-recursive
942
+ uninstall: uninstall-recursive
943
+
944
+ install-am: all-am
945
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
946
+
947
+ installcheck: installcheck-recursive
948
+ install-strip:
949
+ if test -z '$(STRIP)'; then \
950
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
951
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
952
+ install; \
953
+ else \
954
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
955
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
956
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
957
+ fi
958
+ mostlyclean-generic:
959
+
960
+ clean-generic:
961
+
962
+ distclean-generic:
963
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
964
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
965
+ -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
966
+
967
+ maintainer-clean-generic:
968
+ @echo "This command is intended for maintainers to use"
969
+ @echo "it deletes files that may require special tools to rebuild."
970
+ -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
971
+ clean: clean-recursive
972
+
973
+ clean-am: clean-generic clean-libtool mostlyclean-am
974
+
975
+ distclean: distclean-recursive
976
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
977
+ -rm -f Makefile
978
+ distclean-am: clean-am distclean-generic distclean-libtool \
979
+ distclean-local distclean-tags
980
+
981
+ dvi: dvi-recursive
982
+
983
+ dvi-am:
984
+
985
+ html-am:
986
+
987
+ info: info-recursive
988
+
989
+ info-am:
990
+
991
+ install-data-am: install-man install-pkgconfigDATA
992
+ @$(NORMAL_INSTALL)
993
+ $(MAKE) $(AM_MAKEFLAGS) install-data-hook
994
+ install-dvi: install-dvi-recursive
995
+
996
+ install-dvi-am:
997
+
998
+ install-exec-am:
999
+
1000
+ install-html-am:
1001
+
1002
+ install-info: install-info-recursive
1003
+
1004
+ install-info-am:
1005
+
1006
+ install-man: install-man1 install-man3 install-man7
1007
+
1008
+ install-pdf-am:
1009
+
1010
+ install-ps: install-ps-recursive
1011
+
1012
+ install-ps-am:
1013
+
1014
+ installcheck-am:
1015
+
1016
+ maintainer-clean: maintainer-clean-recursive
1017
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
1018
+ -rm -rf $(top_srcdir)/autom4te.cache
1019
+ -rm -f Makefile
1020
+ maintainer-clean-am: distclean-am maintainer-clean-generic
1021
+
1022
+ mostlyclean: mostlyclean-recursive
1023
+
1024
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
1025
+
1026
+ pdf-am:
1027
+
1028
+ ps: ps-recursive
1029
+
1030
+ ps-am:
1031
+
1032
+ uninstall-am: uninstall-man uninstall-pkgconfigDATA
1033
+ @$(NORMAL_INSTALL)
1034
+ $(MAKE) $(AM_MAKEFLAGS) uninstall-hook
1035
+ uninstall-man: uninstall-man1 uninstall-man3 uninstall-man7
1036
+
1037
+ .MAKE: $(am__recursive_targets) install-am install-data-am \
1038
+ install-strip uninstall-am
1039
+
1040
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
1041
+ am--refresh check check-am clean clean-cscope clean-generic \
1042
+ clean-libtool cscope cscopelist-am ctags ctags-am dist \
1043
+ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
1044
+ dist-xz dist-zip distcheck distclean distclean-generic \
1045
+ distclean-libtool distclean-local distclean-tags \
1046
+ distcleancheck distdir distuninstallcheck dvi dvi-am html \
1047
+ html-am info info-am install install-am install-data \
1048
+ install-data-am install-data-hook install-dvi install-dvi-am \
1049
+ install-exec install-exec-am install-html install-html-am \
1050
+ install-info install-info-am install-man install-man1 \
1051
+ install-man3 install-man7 install-pdf install-pdf-am \
1052
+ install-pkgconfigDATA install-ps install-ps-am install-strip \
1053
+ installcheck installcheck-am installdirs installdirs-am \
1054
+ maintainer-clean maintainer-clean-generic mostlyclean \
1055
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1056
+ tags tags-am uninstall uninstall-am uninstall-hook \
1057
+ uninstall-man uninstall-man1 uninstall-man3 uninstall-man7 \
1058
+ uninstall-pkgconfigDATA
1059
+
1060
+
1061
+ play.1 rec.1: sox.1
1062
+ $(RM) $@ && $(LN_S) $< $@
1063
+
1064
+ README: README.sh FEATURES.in
1065
+ ./README.sh
1066
+
1067
+ # Rule for making text man pages. Uses GNU nroff's -c so not portable.
1068
+ .1.txt:
1069
+ tbl $(srcdir)/$< | nroff -man -c | sed "s/.//g" > $@
1070
+ .3.txt:
1071
+ tbl $(srcdir)/$< | nroff -man -c | sed "s/.//g" > $@
1072
+ .7.txt:
1073
+ tbl $(srcdir)/$< | nroff -man -c | sed "s/.//g" > $@
1074
+ txt: $(DOCTXT)
1075
+
1076
+ # Rule for making PDF man pages
1077
+ .1.pdf:
1078
+ pdfroff -t -man -Tps $(srcdir)/$< > $@
1079
+ .3.pdf:
1080
+ pdfroff -t -man -Tps $(srcdir)/$< > $@
1081
+ .7.pdf:
1082
+ pdfroff -t -man -Tps $(srcdir)/$< > $@
1083
+ pdf: $(DOCPDF)
1084
+
1085
+ install-pdf: pdf
1086
+ @$(NORMAL_INSTALL)
1087
+ test -z "$(pdfdir)" || $(MKDIR_P) "$(DESTDIR)$(pdfdir)"
1088
+ @list='$(DOCPDF)'; for p in $$list; do \
1089
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1090
+ f=$(am__strip_dir) \
1091
+ echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
1092
+ $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
1093
+ done
1094
+
1095
+ uninstall-pdf:
1096
+ @$(NORMAL_UNINSTALL)
1097
+ @list='$(DOCPDF)'; for p in $$list; do \
1098
+ f=$(am__strip_dir) \
1099
+ echo " $(RM) '$(DESTDIR)$(pdfdir)/$$f'"; \
1100
+ $(RM) "$(DESTDIR)$(pdfdir)/$$f"; \
1101
+ done
1102
+
1103
+ distclean-local:
1104
+ $(RM) mingw32-config.cache
1105
+ $(RM) -r -f soxpng
1106
+
1107
+ .1.html:
1108
+ groff -t -man -Thtml -P -Dsoxpng $(srcdir)/$< | $(FIXHTML) > $@
1109
+ .3.html:
1110
+ groff -t -man -Thtml -P -Dsoxpng $(srcdir)/$< | $(FIXHTML) > $@
1111
+ .7.html:
1112
+ groff -t -man -Thtml -P -Dsoxpng $(srcdir)/$< | $(FIXHTML) > $@
1113
+ html: $(DOCHTML)
1114
+
1115
+ install-html: html
1116
+ @$(NORMAL_INSTALL)
1117
+ test -z "$(htmldir)/soxpng" || $(MKDIR_P) "$(DESTDIR)$(htmldir)/soxpng"
1118
+ @list='$(DOCHTML)'; for p in $$list; do \
1119
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1120
+ f=$(am__strip_dir) \
1121
+ echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)//$$f'"; \
1122
+ $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
1123
+ done; \
1124
+ @for p in soxpng/*; do \
1125
+ if test -f "$$p"; then d=; else d="$(srcdir)"; fi; \
1126
+ f=$(am__strip_dir) \
1127
+ echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/soxpng/$$f'"; \
1128
+ $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/soxpng/$$f"; \
1129
+ done
1130
+
1131
+ uninstall-html:
1132
+ @$(NORMAL_UNINSTALL)
1133
+ @list='$(DOCHTML)'; for p in $$list; do \
1134
+ f=$(am__strip_dir) \
1135
+ echo " $(RM) '$(DESTDIR)$(htmldir)/$$f'"; \
1136
+ $(RM) "$(DESTDIR)$(htmldir)/$$f"; \
1137
+ done; \
1138
+ $(RM) -fr "$(DESTDIR)$(htmldir)/soxpng";
1139
+
1140
+ install-data-hook:
1141
+ cd $(DESTDIR)$(mandir)/man1 && $(RM) play.1 && $(LN_S) sox.1 play.1
1142
+ cd $(DESTDIR)$(mandir)/man1 && $(RM) rec.1 && $(LN_S) sox.1 rec.1
1143
+ cd $(DESTDIR)$(mandir)/man7 && $(RM) soxeffect.7 && $(LN_S) ../man1/sox.1 soxeffect.7
1144
+
1145
+ uninstall-hook:
1146
+ $(RM) $(DESTDIR)$(mandir)/man1/play.1
1147
+ $(RM) $(DESTDIR)$(mandir)/man1/rec.1
1148
+ $(RM) $(DESTDIR)$(mandir)/man7/soxeffect.7
1149
+
1150
+ # Automatically update libtool script if it gets out-of-date
1151
+ libtool: $(LIBTOOL_DEPS)
1152
+ $(SHELL) ./config.status --recheck
1153
+
1154
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
1155
+ # Otherwise a system limit (for SysV at least) may be exceeded.
1156
+ .NOEXPORT:
lam2/bin/accelerate ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from accelerate.commands.accelerate_cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/accelerate-launch ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from accelerate.commands.launch import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/activate ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file must be used with "source bin/activate" *from bash*
2
+ # you cannot run it directly
3
+
4
+ deactivate () {
5
+ # reset old environment variables
6
+ if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
7
+ PATH="${_OLD_VIRTUAL_PATH:-}"
8
+ export PATH
9
+ unset _OLD_VIRTUAL_PATH
10
+ fi
11
+ if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
12
+ PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
13
+ export PYTHONHOME
14
+ unset _OLD_VIRTUAL_PYTHONHOME
15
+ fi
16
+
17
+ # This should detect bash and zsh, which have a hash command that must
18
+ # be called to get it to forget past commands. Without forgetting
19
+ # past commands the $PATH changes we made may not be respected
20
+ if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
21
+ hash -r
22
+ fi
23
+
24
+ if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
25
+ PS1="${_OLD_VIRTUAL_PS1:-}"
26
+ export PS1
27
+ unset _OLD_VIRTUAL_PS1
28
+ fi
29
+
30
+ unset VIRTUAL_ENV
31
+ if [ ! "${1:-}" = "nondestructive" ] ; then
32
+ # Self destruct!
33
+ unset -f deactivate
34
+ fi
35
+ }
36
+
37
+ # unset irrelevant variables
38
+ deactivate nondestructive
39
+
40
+ VIRTUAL_ENV="/data/home/acw630/venvs/lam2"
41
+ export VIRTUAL_ENV
42
+
43
+ _OLD_VIRTUAL_PATH="$PATH"
44
+ PATH="$VIRTUAL_ENV/bin:$PATH"
45
+ export PATH
46
+
47
+ # unset PYTHONHOME if set
48
+ # this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
49
+ # could use `if (set -u; : $PYTHONHOME) ;` in bash
50
+ if [ -n "${PYTHONHOME:-}" ] ; then
51
+ _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
52
+ unset PYTHONHOME
53
+ fi
54
+
55
+ if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
56
+ _OLD_VIRTUAL_PS1="${PS1:-}"
57
+ if [ "x(lam) " != x ] ; then
58
+ PS1="(lam) ${PS1:-}"
59
+ else
60
+ if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then
61
+ # special case for Aspen magic directories
62
+ # see http://www.zetadev.com/software/aspen/
63
+ PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1"
64
+ else
65
+ PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1"
66
+ fi
67
+ fi
68
+ export PS1
69
+ fi
70
+
71
+ # This should detect bash and zsh, which have a hash command that must
72
+ # be called to get it to forget past commands. Without forgetting
73
+ # past commands the $PATH changes we made may not be respected
74
+ if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
75
+ hash -r
76
+ fi
lam2/bin/activate.fish ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file must be used with ". bin/activate.fish" *from fish* (http://fishshell.org)
2
+ # you cannot run it directly
3
+
4
+ function deactivate -d "Exit virtualenv and return to normal shell environment"
5
+ # reset old environment variables
6
+ if test -n "$_OLD_VIRTUAL_PATH"
7
+ set -gx PATH $_OLD_VIRTUAL_PATH
8
+ set -e _OLD_VIRTUAL_PATH
9
+ end
10
+ if test -n "$_OLD_VIRTUAL_PYTHONHOME"
11
+ set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
12
+ set -e _OLD_VIRTUAL_PYTHONHOME
13
+ end
14
+
15
+ if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
16
+ functions -e fish_prompt
17
+ set -e _OLD_FISH_PROMPT_OVERRIDE
18
+ functions -c _old_fish_prompt fish_prompt
19
+ functions -e _old_fish_prompt
20
+ end
21
+
22
+ set -e VIRTUAL_ENV
23
+ if test "$argv[1]" != "nondestructive"
24
+ # Self destruct!
25
+ functions -e deactivate
26
+ end
27
+ end
28
+
29
+ # unset irrelevant variables
30
+ deactivate nondestructive
31
+
32
+ set -gx VIRTUAL_ENV "/data/home/acw630/venvs/lam2"
33
+
34
+ set -gx _OLD_VIRTUAL_PATH $PATH
35
+ set -gx PATH "$VIRTUAL_ENV/bin" $PATH
36
+
37
+ # unset PYTHONHOME if set
38
+ if set -q PYTHONHOME
39
+ set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
40
+ set -e PYTHONHOME
41
+ end
42
+
43
+ if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
44
+ # fish uses a function instead of an env var to generate the prompt.
45
+
46
+ # save the current fish_prompt function as the function _old_fish_prompt
47
+ functions -c fish_prompt _old_fish_prompt
48
+
49
+ # with the original prompt function renamed, we can override with our own.
50
+ function fish_prompt
51
+ # Save the return status of the last command
52
+ set -l old_status $status
53
+
54
+ # Prompt override?
55
+ if test -n "(lam) "
56
+ printf "%s%s" "(lam) " (set_color normal)
57
+ else
58
+ # ...Otherwise, prepend env
59
+ set -l _checkbase (basename "$VIRTUAL_ENV")
60
+ if test $_checkbase = "__"
61
+ # special case for Aspen magic directories
62
+ # see http://www.zetadev.com/software/aspen/
63
+ printf "%s[%s]%s " (set_color -b blue white) (basename (dirname "$VIRTUAL_ENV")) (set_color normal)
64
+ else
65
+ printf "%s(%s)%s" (set_color -b blue white) (basename "$VIRTUAL_ENV") (set_color normal)
66
+ end
67
+ end
68
+
69
+ # Restore the return status of the previous command.
70
+ echo "exit $old_status" | .
71
+ _old_fish_prompt
72
+ end
73
+
74
+ set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
75
+ end
lam2/bin/cmake ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from cmake import cmake
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(cmake())
lam2/bin/config.log ADDED
The diff for this file is too large to render. See raw diff
 
lam2/bin/config.status ADDED
@@ -0,0 +1,2230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #! /bin/sh
2
+ # Generated by configure.
3
+ # Run this file to recreate the current configuration.
4
+ # Compiler output produced by configure, useful for debugging
5
+ # configure, is in config.log if it exists.
6
+
7
+ debug=false
8
+ ac_cs_recheck=false
9
+ ac_cs_silent=false
10
+
11
+ SHELL=${CONFIG_SHELL-/bin/sh}
12
+ export SHELL
13
+ ## -------------------- ##
14
+ ## M4sh Initialization. ##
15
+ ## -------------------- ##
16
+
17
+ # Be more Bourne compatible
18
+ DUALCASE=1; export DUALCASE # for MKS sh
19
+ if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20
+ emulate sh
21
+ NULLCMD=:
22
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
23
+ # is contrary to our usage. Disable this feature.
24
+ alias -g '${1+"$@"}'='"$@"'
25
+ setopt NO_GLOB_SUBST
26
+ else
27
+ case `(set -o) 2>/dev/null` in #(
28
+ *posix*) :
29
+ set -o posix ;; #(
30
+ *) :
31
+ ;;
32
+ esac
33
+ fi
34
+
35
+
36
+ as_nl='
37
+ '
38
+ export as_nl
39
+ # Printing a long string crashes Solaris 7 /usr/bin/printf.
40
+ as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
41
+ as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
42
+ as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
43
+ # Prefer a ksh shell builtin over an external printf program on Solaris,
44
+ # but without wasting forks for bash or zsh.
45
+ if test -z "$BASH_VERSION$ZSH_VERSION" \
46
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
47
+ as_echo='print -r --'
48
+ as_echo_n='print -rn --'
49
+ elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50
+ as_echo='printf %s\n'
51
+ as_echo_n='printf %s'
52
+ else
53
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54
+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55
+ as_echo_n='/usr/ucb/echo -n'
56
+ else
57
+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58
+ as_echo_n_body='eval
59
+ arg=$1;
60
+ case $arg in #(
61
+ *"$as_nl"*)
62
+ expr "X$arg" : "X\\(.*\\)$as_nl";
63
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64
+ esac;
65
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66
+ '
67
+ export as_echo_n_body
68
+ as_echo_n='sh -c $as_echo_n_body as_echo'
69
+ fi
70
+ export as_echo_body
71
+ as_echo='sh -c $as_echo_body as_echo'
72
+ fi
73
+
74
+ # The user is always right.
75
+ if test "${PATH_SEPARATOR+set}" != set; then
76
+ PATH_SEPARATOR=:
77
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79
+ PATH_SEPARATOR=';'
80
+ }
81
+ fi
82
+
83
+
84
+ # IFS
85
+ # We need space, tab and new line, in precisely that order. Quoting is
86
+ # there to prevent editors from complaining about space-tab.
87
+ # (If _AS_PATH_WALK were called with IFS unset, it would disable word
88
+ # splitting by setting IFS to empty value.)
89
+ IFS=" "" $as_nl"
90
+
91
+ # Find who we are. Look in the path if we contain no directory separator.
92
+ as_myself=
93
+ case $0 in #((
94
+ *[\\/]* ) as_myself=$0 ;;
95
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
96
+ for as_dir in $PATH
97
+ do
98
+ IFS=$as_save_IFS
99
+ test -z "$as_dir" && as_dir=.
100
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
101
+ done
102
+ IFS=$as_save_IFS
103
+
104
+ ;;
105
+ esac
106
+ # We did not find ourselves, most probably we were run as `sh COMMAND'
107
+ # in which case we are not to be found in the path.
108
+ if test "x$as_myself" = x; then
109
+ as_myself=$0
110
+ fi
111
+ if test ! -f "$as_myself"; then
112
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
113
+ exit 1
114
+ fi
115
+
116
+ # Unset variables that we do not need and which cause bugs (e.g. in
117
+ # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
118
+ # suppresses any "Segmentation fault" message there. '((' could
119
+ # trigger a bug in pdksh 5.2.14.
120
+ for as_var in BASH_ENV ENV MAIL MAILPATH
121
+ do eval test x\${$as_var+set} = xset \
122
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
123
+ done
124
+ PS1='$ '
125
+ PS2='> '
126
+ PS4='+ '
127
+
128
+ # NLS nuisances.
129
+ LC_ALL=C
130
+ export LC_ALL
131
+ LANGUAGE=C
132
+ export LANGUAGE
133
+
134
+ # CDPATH.
135
+ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
136
+
137
+
138
+ # as_fn_error STATUS ERROR [LINENO LOG_FD]
139
+ # ----------------------------------------
140
+ # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
141
+ # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
142
+ # script with STATUS, using 1 if that was 0.
143
+ as_fn_error ()
144
+ {
145
+ as_status=$1; test $as_status -eq 0 && as_status=1
146
+ if test "$4"; then
147
+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
148
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
149
+ fi
150
+ $as_echo "$as_me: error: $2" >&2
151
+ as_fn_exit $as_status
152
+ } # as_fn_error
153
+
154
+
155
+ # as_fn_set_status STATUS
156
+ # -----------------------
157
+ # Set $? to STATUS, without forking.
158
+ as_fn_set_status ()
159
+ {
160
+ return $1
161
+ } # as_fn_set_status
162
+
163
+ # as_fn_exit STATUS
164
+ # -----------------
165
+ # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
166
+ as_fn_exit ()
167
+ {
168
+ set +e
169
+ as_fn_set_status $1
170
+ exit $1
171
+ } # as_fn_exit
172
+
173
+ # as_fn_unset VAR
174
+ # ---------------
175
+ # Portably unset VAR.
176
+ as_fn_unset ()
177
+ {
178
+ { eval $1=; unset $1;}
179
+ }
180
+ as_unset=as_fn_unset
181
+ # as_fn_append VAR VALUE
182
+ # ----------------------
183
+ # Append the text in VALUE to the end of the definition contained in VAR. Take
184
+ # advantage of any shell optimizations that allow amortized linear growth over
185
+ # repeated appends, instead of the typical quadratic growth present in naive
186
+ # implementations.
187
+ if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
188
+ eval 'as_fn_append ()
189
+ {
190
+ eval $1+=\$2
191
+ }'
192
+ else
193
+ as_fn_append ()
194
+ {
195
+ eval $1=\$$1\$2
196
+ }
197
+ fi # as_fn_append
198
+
199
+ # as_fn_arith ARG...
200
+ # ------------------
201
+ # Perform arithmetic evaluation on the ARGs, and store the result in the
202
+ # global $as_val. Take advantage of shells that can avoid forks. The arguments
203
+ # must be portable across $(()) and expr.
204
+ if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
205
+ eval 'as_fn_arith ()
206
+ {
207
+ as_val=$(( $* ))
208
+ }'
209
+ else
210
+ as_fn_arith ()
211
+ {
212
+ as_val=`expr "$@" || test $? -eq 1`
213
+ }
214
+ fi # as_fn_arith
215
+
216
+
217
+ if expr a : '\(a\)' >/dev/null 2>&1 &&
218
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
219
+ as_expr=expr
220
+ else
221
+ as_expr=false
222
+ fi
223
+
224
+ if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
225
+ as_basename=basename
226
+ else
227
+ as_basename=false
228
+ fi
229
+
230
+ if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
231
+ as_dirname=dirname
232
+ else
233
+ as_dirname=false
234
+ fi
235
+
236
+ as_me=`$as_basename -- "$0" ||
237
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
238
+ X"$0" : 'X\(//\)$' \| \
239
+ X"$0" : 'X\(/\)' \| . 2>/dev/null ||
240
+ $as_echo X/"$0" |
241
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
242
+ s//\1/
243
+ q
244
+ }
245
+ /^X\/\(\/\/\)$/{
246
+ s//\1/
247
+ q
248
+ }
249
+ /^X\/\(\/\).*/{
250
+ s//\1/
251
+ q
252
+ }
253
+ s/.*/./; q'`
254
+
255
+ # Avoid depending upon Character Ranges.
256
+ as_cr_letters='abcdefghijklmnopqrstuvwxyz'
257
+ as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
258
+ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
259
+ as_cr_digits='0123456789'
260
+ as_cr_alnum=$as_cr_Letters$as_cr_digits
261
+
262
+ ECHO_C= ECHO_N= ECHO_T=
263
+ case `echo -n x` in #(((((
264
+ -n*)
265
+ case `echo 'xy\c'` in
266
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
267
+ xy) ECHO_C='\c';;
268
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
269
+ ECHO_T=' ';;
270
+ esac;;
271
+ *)
272
+ ECHO_N='-n';;
273
+ esac
274
+
275
+ rm -f conf$$ conf$$.exe conf$$.file
276
+ if test -d conf$$.dir; then
277
+ rm -f conf$$.dir/conf$$.file
278
+ else
279
+ rm -f conf$$.dir
280
+ mkdir conf$$.dir 2>/dev/null
281
+ fi
282
+ if (echo >conf$$.file) 2>/dev/null; then
283
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
284
+ as_ln_s='ln -s'
285
+ # ... but there are two gotchas:
286
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
287
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
288
+ # In both cases, we have to default to `cp -pR'.
289
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
290
+ as_ln_s='cp -pR'
291
+ elif ln conf$$.file conf$$ 2>/dev/null; then
292
+ as_ln_s=ln
293
+ else
294
+ as_ln_s='cp -pR'
295
+ fi
296
+ else
297
+ as_ln_s='cp -pR'
298
+ fi
299
+ rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
300
+ rmdir conf$$.dir 2>/dev/null
301
+
302
+
303
+ # as_fn_mkdir_p
304
+ # -------------
305
+ # Create "$as_dir" as a directory, including parents if necessary.
306
+ as_fn_mkdir_p ()
307
+ {
308
+
309
+ case $as_dir in #(
310
+ -*) as_dir=./$as_dir;;
311
+ esac
312
+ test -d "$as_dir" || eval $as_mkdir_p || {
313
+ as_dirs=
314
+ while :; do
315
+ case $as_dir in #(
316
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
317
+ *) as_qdir=$as_dir;;
318
+ esac
319
+ as_dirs="'$as_qdir' $as_dirs"
320
+ as_dir=`$as_dirname -- "$as_dir" ||
321
+ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
322
+ X"$as_dir" : 'X\(//\)[^/]' \| \
323
+ X"$as_dir" : 'X\(//\)$' \| \
324
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
325
+ $as_echo X"$as_dir" |
326
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
327
+ s//\1/
328
+ q
329
+ }
330
+ /^X\(\/\/\)[^/].*/{
331
+ s//\1/
332
+ q
333
+ }
334
+ /^X\(\/\/\)$/{
335
+ s//\1/
336
+ q
337
+ }
338
+ /^X\(\/\).*/{
339
+ s//\1/
340
+ q
341
+ }
342
+ s/.*/./; q'`
343
+ test -d "$as_dir" && break
344
+ done
345
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
346
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
347
+
348
+
349
+ } # as_fn_mkdir_p
350
+ if mkdir -p . 2>/dev/null; then
351
+ as_mkdir_p='mkdir -p "$as_dir"'
352
+ else
353
+ test -d ./-p && rmdir ./-p
354
+ as_mkdir_p=false
355
+ fi
356
+
357
+
358
+ # as_fn_executable_p FILE
359
+ # -----------------------
360
+ # Test if FILE is an executable regular file.
361
+ as_fn_executable_p ()
362
+ {
363
+ test -f "$1" && test -x "$1"
364
+ } # as_fn_executable_p
365
+ as_test_x='test -x'
366
+ as_executable_p=as_fn_executable_p
367
+
368
+ # Sed expression to map a string onto a valid CPP name.
369
+ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
370
+
371
+ # Sed expression to map a string onto a valid variable name.
372
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
373
+
374
+
375
+ exec 6>&1
376
+ ## ----------------------------------- ##
377
+ ## Main body of $CONFIG_STATUS script. ##
378
+ ## ----------------------------------- ##
379
+ # Save the log message, to keep $0 and so on meaningful, and to
380
+ # report actual input values of CONFIG_FILES etc. instead of their
381
+ # values after options handling.
382
+ ac_log="
383
+ This file was extended by SoX $as_me 14.4.2, which was
384
+ generated by GNU Autoconf 2.69. Invocation command line was
385
+
386
+ CONFIG_FILES = $CONFIG_FILES
387
+ CONFIG_HEADERS = $CONFIG_HEADERS
388
+ CONFIG_LINKS = $CONFIG_LINKS
389
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
390
+ $ $0 $@
391
+
392
+ on `(hostname || uname -n) 2>/dev/null | sed 1q`
393
+ "
394
+
395
+ # Files that config.status was made for.
396
+ config_files=" Makefile src/Makefile libgsm/Makefile lpc10/Makefile msvc9/Makefile msvc10/Makefile sox.pc"
397
+ config_headers=" src/soxconfig.h"
398
+ config_commands=" depfiles libtool"
399
+
400
+ ac_cs_usage="\
401
+ \`$as_me' instantiates files and other configuration actions
402
+ from templates according to the current configuration. Unless the files
403
+ and actions are specified as TAGs, all are instantiated by default.
404
+
405
+ Usage: $0 [OPTION]... [TAG]...
406
+
407
+ -h, --help print this help, then exit
408
+ -V, --version print version number and configuration settings, then exit
409
+ --config print configuration, then exit
410
+ -q, --quiet, --silent
411
+ do not print progress messages
412
+ -d, --debug don't remove temporary files
413
+ --recheck update $as_me by reconfiguring in the same conditions
414
+ --file=FILE[:TEMPLATE]
415
+ instantiate the configuration file FILE
416
+ --header=FILE[:TEMPLATE]
417
+ instantiate the configuration header FILE
418
+
419
+ Configuration files:
420
+ $config_files
421
+
422
+ Configuration headers:
423
+ $config_headers
424
+
425
+ Configuration commands:
426
+ $config_commands
427
+
428
+ Report bugs to <[email protected]>."
429
+
430
+ ac_cs_config="'--prefix=/data/home/acw630/venvs/lam/bin/sox-14.4.2'"
431
+ ac_cs_version="\
432
+ SoX config.status 14.4.2
433
+ configured by sox-14.4.2/configure, generated by GNU Autoconf 2.69,
434
+ with options \"$ac_cs_config\"
435
+
436
+ Copyright (C) 2012 Free Software Foundation, Inc.
437
+ This config.status script is free software; the Free Software Foundation
438
+ gives unlimited permission to copy, distribute and modify it."
439
+
440
+ ac_pwd='/data/home/acw630/venvs/lam/bin'
441
+ srcdir='sox-14.4.2'
442
+ INSTALL='/usr/bin/install -c'
443
+ MKDIR_P='/usr/bin/mkdir -p'
444
+ AWK='gawk'
445
+ test -n "$AWK" || AWK=awk
446
+ # The default lists apply if the user does not specify any file.
447
+ ac_need_defaults=:
448
+ while test $# != 0
449
+ do
450
+ case $1 in
451
+ --*=?*)
452
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
453
+ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
454
+ ac_shift=:
455
+ ;;
456
+ --*=)
457
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
458
+ ac_optarg=
459
+ ac_shift=:
460
+ ;;
461
+ *)
462
+ ac_option=$1
463
+ ac_optarg=$2
464
+ ac_shift=shift
465
+ ;;
466
+ esac
467
+
468
+ case $ac_option in
469
+ # Handling of the options.
470
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
471
+ ac_cs_recheck=: ;;
472
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
473
+ $as_echo "$ac_cs_version"; exit ;;
474
+ --config | --confi | --conf | --con | --co | --c )
475
+ $as_echo "$ac_cs_config"; exit ;;
476
+ --debug | --debu | --deb | --de | --d | -d )
477
+ debug=: ;;
478
+ --file | --fil | --fi | --f )
479
+ $ac_shift
480
+ case $ac_optarg in
481
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
482
+ '') as_fn_error $? "missing file argument" ;;
483
+ esac
484
+ as_fn_append CONFIG_FILES " '$ac_optarg'"
485
+ ac_need_defaults=false;;
486
+ --header | --heade | --head | --hea )
487
+ $ac_shift
488
+ case $ac_optarg in
489
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
490
+ esac
491
+ as_fn_append CONFIG_HEADERS " '$ac_optarg'"
492
+ ac_need_defaults=false;;
493
+ --he | --h)
494
+ # Conflict between --help and --header
495
+ as_fn_error $? "ambiguous option: \`$1'
496
+ Try \`$0 --help' for more information.";;
497
+ --help | --hel | -h )
498
+ $as_echo "$ac_cs_usage"; exit ;;
499
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
500
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
501
+ ac_cs_silent=: ;;
502
+
503
+ # This is an error.
504
+ -*) as_fn_error $? "unrecognized option: \`$1'
505
+ Try \`$0 --help' for more information." ;;
506
+
507
+ *) as_fn_append ac_config_targets " $1"
508
+ ac_need_defaults=false ;;
509
+
510
+ esac
511
+ shift
512
+ done
513
+
514
+ ac_configure_extra_args=
515
+
516
+ if $ac_cs_silent; then
517
+ exec 6>/dev/null
518
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
519
+ fi
520
+
521
+ if $ac_cs_recheck; then
522
+ set X /bin/sh 'sox-14.4.2/configure' '--prefix=/data/home/acw630/venvs/lam/bin/sox-14.4.2' $ac_configure_extra_args --no-create --no-recursion
523
+ shift
524
+ $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
525
+ CONFIG_SHELL='/bin/sh'
526
+ export CONFIG_SHELL
527
+ exec "$@"
528
+ fi
529
+
530
+ exec 5>>config.log
531
+ {
532
+ echo
533
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
534
+ ## Running $as_me. ##
535
+ _ASBOX
536
+ $as_echo "$ac_log"
537
+ } >&5
538
+
539
+ #
540
+ # INIT-COMMANDS
541
+ #
542
+ AMDEP_TRUE="" ac_aux_dir="sox-14.4.2"
543
+
544
+
545
+ # The HP-UX ksh and POSIX shell print the target directory to stdout
546
+ # if CDPATH is set.
547
+ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
548
+
549
+ sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
550
+ double_quote_subst='s/\(["`\\]\)/\\\1/g'
551
+ delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
552
+ macro_version='2.4.2'
553
+ macro_revision='1.3337'
554
+ AS='as'
555
+ DLLTOOL='false'
556
+ OBJDUMP='objdump'
557
+ enable_shared='yes'
558
+ enable_static='yes'
559
+ pic_mode='default'
560
+ enable_fast_install='yes'
561
+ SHELL='/bin/sh'
562
+ ECHO='printf %s\n'
563
+ PATH_SEPARATOR=':'
564
+ host_alias=''
565
+ host='x86_64-unknown-linux-gnu'
566
+ host_os='linux-gnu'
567
+ build_alias=''
568
+ build='x86_64-unknown-linux-gnu'
569
+ build_os='linux-gnu'
570
+ SED='/usr/bin/sed'
571
+ Xsed='/usr/bin/sed -e 1s/^X//'
572
+ GREP='/usr/bin/grep'
573
+ EGREP='/usr/bin/grep -E'
574
+ FGREP='/usr/bin/grep -F'
575
+ LD='/usr/bin/ld -m elf_x86_64'
576
+ NM='/usr/bin/nm -B'
577
+ LN_S='ln -s'
578
+ max_cmd_len='1572864'
579
+ ac_objext='o'
580
+ exeext=''
581
+ lt_unset='unset'
582
+ lt_SP2NL='tr \040 \012'
583
+ lt_NL2SP='tr \015\012 \040\040'
584
+ lt_cv_to_host_file_cmd='func_convert_file_noop'
585
+ lt_cv_to_tool_file_cmd='func_convert_file_noop'
586
+ reload_flag=' -r'
587
+ reload_cmds='$LD$reload_flag -o $output$reload_objs'
588
+ deplibs_check_method='pass_all'
589
+ file_magic_cmd='$MAGIC_CMD'
590
+ file_magic_glob=''
591
+ want_nocaseglob='no'
592
+ sharedlib_from_linklib_cmd='printf %s\n'
593
+ AR='ar'
594
+ AR_FLAGS='cru'
595
+ archiver_list_spec='@'
596
+ STRIP='strip'
597
+ RANLIB='ranlib'
598
+ old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'
599
+ old_postuninstall_cmds=''
600
+ old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
601
+ lock_old_archive_extraction='no'
602
+ CC='gcc'
603
+ CFLAGS='-g -O2 -fstack-protector -Wall -W -Wmissing-prototypes -Wstrict-prototypes -pedantic -fopenmp'
604
+ compiler='gcc'
605
+ GCC='yes'
606
+ lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
607
+ lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
608
+ lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
609
+ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
610
+ nm_file_list_spec='@'
611
+ lt_sysroot=''
612
+ objdir='.libs'
613
+ MAGIC_CMD='file'
614
+ lt_prog_compiler_no_builtin_flag=' -fno-builtin'
615
+ lt_prog_compiler_pic=' -fPIC -DPIC'
616
+ lt_prog_compiler_wl='-Wl,'
617
+ lt_prog_compiler_static='-static'
618
+ lt_cv_prog_compiler_c_o='yes'
619
+ need_locks='no'
620
+ MANIFEST_TOOL=':'
621
+ DSYMUTIL=''
622
+ NMEDIT=''
623
+ LIPO=''
624
+ OTOOL=''
625
+ OTOOL64=''
626
+ libext='a'
627
+ shrext_cmds='.so'
628
+ extract_expsyms_cmds=''
629
+ archive_cmds_need_lc='no'
630
+ enable_shared_with_static_runtimes='no'
631
+ export_dynamic_flag_spec='${wl}--export-dynamic'
632
+ whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
633
+ compiler_needs_object='no'
634
+ old_archive_from_new_cmds=''
635
+ old_archive_from_expsyms_cmds=''
636
+ archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
637
+ archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
638
+ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
639
+ echo "local: *; };" >> $output_objdir/$libname.ver~
640
+ $CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
641
+ module_cmds=''
642
+ module_expsym_cmds=''
643
+ with_gnu_ld='yes'
644
+ allow_undefined_flag=''
645
+ no_undefined_flag=''
646
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
647
+ hardcode_libdir_separator=''
648
+ hardcode_direct='no'
649
+ hardcode_direct_absolute='no'
650
+ hardcode_minus_L='no'
651
+ hardcode_shlibpath_var='unsupported'
652
+ hardcode_automatic='no'
653
+ inherit_rpath='no'
654
+ link_all_deplibs='unknown'
655
+ always_export_symbols='no'
656
+ export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
657
+ exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
658
+ include_expsyms=''
659
+ prelink_cmds=''
660
+ postlink_cmds=''
661
+ file_list_spec=''
662
+ variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
663
+ need_lib_prefix='no'
664
+ need_version='no'
665
+ version_type='linux'
666
+ runpath_var='LD_RUN_PATH'
667
+ shlibpath_var='LD_LIBRARY_PATH'
668
+ shlibpath_overrides_runpath='no'
669
+ libname_spec='lib$name'
670
+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
671
+ soname_spec='${libname}${release}${shared_ext}$major'
672
+ install_override_mode=''
673
+ postinstall_cmds=''
674
+ postuninstall_cmds=''
675
+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
676
+ finish_eval=''
677
+ hardcode_into_libs='yes'
678
+ sys_lib_search_path_spec='/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 '
679
+ sys_lib_dlsearch_path_spec='/lib64 /usr/lib64 /lib /usr/lib /usr/lib64//bind9-export/ /usr/lib64/mysql /usr/pgsql-9.5/lib/ '
680
+ hardcode_action='immediate'
681
+ enable_dlopen='yes'
682
+ enable_dlopen_self='yes'
683
+ enable_dlopen_self_static='no'
684
+ old_striplib='strip --strip-debug'
685
+ striplib='strip --strip-unneeded'
686
+
687
+ LTCC='gcc'
688
+ LTCFLAGS='-g -O2'
689
+ compiler='gcc'
690
+
691
+ # A function that is used when there is no print builtin or printf.
692
+ func_fallback_echo ()
693
+ {
694
+ eval 'cat <<_LTECHO_EOF
695
+ $1
696
+ _LTECHO_EOF'
697
+ }
698
+
699
+ # Quote evaled strings.
700
+ for var in AS DLLTOOL OBJDUMP SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix nm_file_list_spec lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do
701
+ case `eval \\$ECHO \\""\\$$var"\\"` in
702
+ *[\\\`\"\$]*)
703
+ eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\""
704
+ ;;
705
+ *)
706
+ eval "lt_$var=\\\"\$$var\\\""
707
+ ;;
708
+ esac
709
+ done
710
+
711
+ # Double-quote double-evaled strings.
712
+ for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec; do
713
+ case `eval \\$ECHO \\""\\$$var"\\"` in
714
+ *[\\\`\"\$]*)
715
+ eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
716
+ ;;
717
+ *)
718
+ eval "lt_$var=\\\"\$$var\\\""
719
+ ;;
720
+ esac
721
+ done
722
+
723
+ ac_aux_dir='sox-14.4.2'
724
+ xsi_shell='yes'
725
+ lt_shell_append='yes'
726
+
727
+ # See if we are running on zsh, and set the options which allow our
728
+ # commands through without removal of \ escapes INIT.
729
+ if test -n "${ZSH_VERSION+set}" ; then
730
+ setopt NO_GLOB_SUBST
731
+ fi
732
+
733
+
734
+ PACKAGE='sox'
735
+ VERSION='14.4.2'
736
+ TIMESTAMP=''
737
+ RM='rm -f'
738
+ ofile='libtool'
739
+
740
+
741
+
742
+
743
+
744
+ # Handling of arguments.
745
+ for ac_config_target in $ac_config_targets
746
+ do
747
+ case $ac_config_target in
748
+ "src/soxconfig.h") CONFIG_HEADERS="$CONFIG_HEADERS src/soxconfig.h" ;;
749
+ "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
750
+ "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
751
+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
752
+ "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
753
+ "libgsm/Makefile") CONFIG_FILES="$CONFIG_FILES libgsm/Makefile" ;;
754
+ "lpc10/Makefile") CONFIG_FILES="$CONFIG_FILES lpc10/Makefile" ;;
755
+ "msvc9/Makefile") CONFIG_FILES="$CONFIG_FILES msvc9/Makefile" ;;
756
+ "msvc10/Makefile") CONFIG_FILES="$CONFIG_FILES msvc10/Makefile" ;;
757
+ "sox.pc") CONFIG_FILES="$CONFIG_FILES sox.pc" ;;
758
+
759
+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
760
+ esac
761
+ done
762
+
763
+
764
+ # If the user did not use the arguments to specify the items to instantiate,
765
+ # then the envvar interface is used. Set only those that are not.
766
+ # We use the long form for the default assignment because of an extremely
767
+ # bizarre bug on SunOS 4.1.3.
768
+ if $ac_need_defaults; then
769
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
770
+ test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
771
+ test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
772
+ fi
773
+
774
+ # Have a temporary directory for convenience. Make it in the build tree
775
+ # simply because there is no reason against having it here, and in addition,
776
+ # creating and moving files from /tmp can sometimes cause problems.
777
+ # Hook for its removal unless debugging.
778
+ # Note that there is a small window in which the directory will not be cleaned:
779
+ # after its creation but before its name has been assigned to `$tmp'.
780
+ $debug ||
781
+ {
782
+ tmp= ac_tmp=
783
+ trap 'exit_status=$?
784
+ : "${ac_tmp:=$tmp}"
785
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
786
+ ' 0
787
+ trap 'as_fn_exit 1' 1 2 13 15
788
+ }
789
+ # Create a (secure) tmp directory for tmp files.
790
+
791
+ {
792
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
793
+ test -d "$tmp"
794
+ } ||
795
+ {
796
+ tmp=./conf$$-$RANDOM
797
+ (umask 077 && mkdir "$tmp")
798
+ } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
799
+ ac_tmp=$tmp
800
+
801
+ # Set up the scripts for CONFIG_FILES section.
802
+ # No need to generate them if there are no CONFIG_FILES.
803
+ # This happens for instance with `./config.status config.h'.
804
+ if test -n "$CONFIG_FILES"; then
805
+
806
+
807
+ ac_cr=`echo X | tr X '\015'`
808
+ # On cygwin, bash can eat \r inside `` if the user requested igncr.
809
+ # But we know of no other shell where ac_cr would be empty at this
810
+ # point, so we can use a bashism as a fallback.
811
+ if test "x$ac_cr" = x; then
812
+ eval ac_cr=\$\'\\r\'
813
+ fi
814
+ ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
815
+ if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
816
+ ac_cs_awk_cr='\\r'
817
+ else
818
+ ac_cs_awk_cr=$ac_cr
819
+ fi
820
+
821
+ echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
822
+ cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
823
+ S["am__EXEEXT_FALSE"]=""
824
+ S["am__EXEEXT_TRUE"]="#"
825
+ S["LTLIBOBJS"]=""
826
+ S["LIBOBJS"]=""
827
+ S["STATIC_LIBSOX_ONLY_FALSE"]=""
828
+ S["STATIC_LIBSOX_ONLY_TRUE"]="#"
829
+ S["PLAYRECLINKS"]="yes"
830
+ S["SYMLINKS"]="yes"
831
+ S["LPC10_LIBS"]=""
832
+ S["LPC10_CFLAGS"]=""
833
+ S["STATIC_LPC10_FALSE"]="#"
834
+ S["STATIC_LPC10_TRUE"]=""
835
+ S["HAVE_LPC10_FALSE"]="#"
836
+ S["HAVE_LPC10_TRUE"]=""
837
+ S["GSM_LIBS"]=""
838
+ S["GSM_CFLAGS"]=""
839
+ S["STATIC_GSM_FALSE"]="#"
840
+ S["STATIC_GSM_TRUE"]=""
841
+ S["HAVE_GSM_FALSE"]="#"
842
+ S["HAVE_GSM_TRUE"]=""
843
+ S["MP3_LIBS"]=""
844
+ S["MP3_CFLAGS"]=""
845
+ S["STATIC_MP3_FALSE"]=""
846
+ S["STATIC_MP3_TRUE"]="#"
847
+ S["HAVE_MP3_FALSE"]=""
848
+ S["HAVE_MP3_TRUE"]="#"
849
+ S["SUN_AUDIO_LIBS"]=""
850
+ S["SUN_AUDIO_CFLAGS"]=""
851
+ S["STATIC_SUN_AUDIO_FALSE"]=""
852
+ S["STATIC_SUN_AUDIO_TRUE"]="#"
853
+ S["HAVE_SUN_AUDIO_FALSE"]=""
854
+ S["HAVE_SUN_AUDIO_TRUE"]="#"
855
+ S["OSS_LIBS"]=""
856
+ S["OSS_CFLAGS"]=""
857
+ S["STATIC_OSS_FALSE"]="#"
858
+ S["STATIC_OSS_TRUE"]=""
859
+ S["HAVE_OSS_FALSE"]="#"
860
+ S["HAVE_OSS_TRUE"]=""
861
+ S["STATIC_SNDFILE_FALSE"]="#"
862
+ S["STATIC_SNDFILE_TRUE"]=""
863
+ S["HAVE_SNDFILE_FALSE"]="#"
864
+ S["HAVE_SNDFILE_TRUE"]=""
865
+ S["SNDFILE_LIBS"]="-lsndfile "
866
+ S["SNDFILE_CFLAGS"]=" "
867
+ S["WAVEAUDIO_LIBS"]=""
868
+ S["WAVEAUDIO_CFLAGS"]=""
869
+ S["STATIC_WAVEAUDIO_FALSE"]=""
870
+ S["STATIC_WAVEAUDIO_TRUE"]="#"
871
+ S["HAVE_WAVEAUDIO_FALSE"]=""
872
+ S["HAVE_WAVEAUDIO_TRUE"]="#"
873
+ S["PULSEAUDIO_LIBS"]=""
874
+ S["PULSEAUDIO_CFLAGS"]=""
875
+ S["STATIC_PULSEAUDIO_FALSE"]=""
876
+ S["STATIC_PULSEAUDIO_TRUE"]="#"
877
+ S["HAVE_PULSEAUDIO_FALSE"]=""
878
+ S["HAVE_PULSEAUDIO_TRUE"]="#"
879
+ S["AO_LIBS"]=""
880
+ S["AO_CFLAGS"]=""
881
+ S["STATIC_AO_FALSE"]=""
882
+ S["STATIC_AO_TRUE"]="#"
883
+ S["HAVE_AO_FALSE"]=""
884
+ S["HAVE_AO_TRUE"]="#"
885
+ S["ALSA_LIBS"]=""
886
+ S["ALSA_CFLAGS"]=""
887
+ S["STATIC_ALSA_FALSE"]=""
888
+ S["STATIC_ALSA_TRUE"]="#"
889
+ S["HAVE_ALSA_FALSE"]=""
890
+ S["HAVE_ALSA_TRUE"]="#"
891
+ S["COREAUDIO_LIBS"]=""
892
+ S["COREAUDIO_CFLAGS"]=""
893
+ S["STATIC_COREAUDIO_FALSE"]=""
894
+ S["STATIC_COREAUDIO_TRUE"]="#"
895
+ S["HAVE_COREAUDIO_FALSE"]=""
896
+ S["HAVE_COREAUDIO_TRUE"]="#"
897
+ S["SNDIO_LIBS"]=""
898
+ S["SNDIO_CFLAGS"]=""
899
+ S["STATIC_SNDIO_FALSE"]=""
900
+ S["STATIC_SNDIO_TRUE"]="#"
901
+ S["HAVE_SNDIO_FALSE"]=""
902
+ S["HAVE_SNDIO_TRUE"]="#"
903
+ S["WAVPACK_LIBS"]=""
904
+ S["WAVPACK_CFLAGS"]=""
905
+ S["STATIC_WAVPACK_FALSE"]=""
906
+ S["STATIC_WAVPACK_TRUE"]="#"
907
+ S["HAVE_WAVPACK_FALSE"]=""
908
+ S["HAVE_WAVPACK_TRUE"]="#"
909
+ S["AMRNB_LIBS"]=""
910
+ S["AMRNB_CFLAGS"]=""
911
+ S["STATIC_AMRNB_FALSE"]=""
912
+ S["STATIC_AMRNB_TRUE"]="#"
913
+ S["HAVE_AMRNB_FALSE"]=""
914
+ S["HAVE_AMRNB_TRUE"]="#"
915
+ S["AMRWB_LIBS"]=""
916
+ S["AMRWB_CFLAGS"]=""
917
+ S["STATIC_AMRWB_FALSE"]=""
918
+ S["STATIC_AMRWB_TRUE"]="#"
919
+ S["HAVE_AMRWB_FALSE"]=""
920
+ S["HAVE_AMRWB_TRUE"]="#"
921
+ S["FLAC_LIBS"]=""
922
+ S["FLAC_CFLAGS"]=""
923
+ S["STATIC_FLAC_FALSE"]=""
924
+ S["STATIC_FLAC_TRUE"]="#"
925
+ S["HAVE_FLAC_FALSE"]=""
926
+ S["HAVE_FLAC_TRUE"]="#"
927
+ S["STATIC_OPUS_FALSE"]=""
928
+ S["STATIC_OPUS_TRUE"]="#"
929
+ S["HAVE_OPUS_FALSE"]=""
930
+ S["HAVE_OPUS_TRUE"]="#"
931
+ S["OPUS_LIBS"]=""
932
+ S["OPUS_CFLAGS"]=" -Wno-long-long"
933
+ S["OGG_VORBIS_LIBS"]=""
934
+ S["OGG_VORBIS_CFLAGS"]=""
935
+ S["STATIC_OGG_VORBIS_FALSE"]=""
936
+ S["STATIC_OGG_VORBIS_TRUE"]="#"
937
+ S["HAVE_OGG_VORBIS_FALSE"]=""
938
+ S["HAVE_OGG_VORBIS_TRUE"]="#"
939
+ S["LIBLPC10_LIBADD"]="../lpc10/liblpc10.la"
940
+ S["EXTERNAL_LPC10_FALSE"]=""
941
+ S["EXTERNAL_LPC10_TRUE"]="#"
942
+ S["LIBGSM_LIBADD"]="../libgsm/libgsm.la"
943
+ S["EXTERNAL_GSM_FALSE"]=""
944
+ S["EXTERNAL_GSM_TRUE"]="#"
945
+ S["HAVE_ID3TAG_FALSE"]=""
946
+ S["HAVE_ID3TAG_TRUE"]="#"
947
+ S["LADSPA_PATH"]="${exec_prefix}/lib/ladspa"
948
+ S["PNG_LIBS"]=" -lpng -lz"
949
+ S["HAVE_PNG_FALSE"]="#"
950
+ S["HAVE_PNG_TRUE"]=""
951
+ S["MAGIC_LIBS"]=""
952
+ S["HAVE_MAGIC_FALSE"]=""
953
+ S["HAVE_MAGIC_TRUE"]="#"
954
+ S["GOMP_LIBS"]=""
955
+ S["OPENMP_CFLAGS"]="-fopenmp"
956
+ S["LIBLTDL"]=""
957
+ S["HAVE_WIN32_LTDL_FALSE"]=""
958
+ S["HAVE_WIN32_LTDL_TRUE"]="#"
959
+ S["HAVE_LIBLTDL_FALSE"]=""
960
+ S["HAVE_LIBLTDL_TRUE"]="#"
961
+ S["LIBTOOLFLAGS"]="--silent"
962
+ S["HAVE_DISTRO_FALSE"]=""
963
+ S["HAVE_DISTRO_TRUE"]="#"
964
+ S["DISTRO"]="not specified!"
965
+ S["WARN_CFLAGS"]="-Wtraditional-conversion"
966
+ S["APP_LDFLAGS"]=""
967
+ S["HAVE_WIN32_GLOB_FALSE"]=""
968
+ S["HAVE_WIN32_GLOB_TRUE"]="#"
969
+ S["PKGCONFIGDIR"]="$(libdir)/pkgconfig"
970
+ S["HAVE_PKGCONFIG_FALSE"]="#"
971
+ S["HAVE_PKGCONFIG_TRUE"]=""
972
+ S["PKG_CONFIG_LIBDIR"]=""
973
+ S["PKG_CONFIG_PATH"]=""
974
+ S["PKG_CONFIG"]="/usr/bin/pkg-config"
975
+ S["LIBTOOL_DEPS"]="sox-14.4.2/ltmain.sh"
976
+ S["CPP"]="gcc -E"
977
+ S["OTOOL64"]=""
978
+ S["OTOOL"]=""
979
+ S["LIPO"]=""
980
+ S["NMEDIT"]=""
981
+ S["DSYMUTIL"]=""
982
+ S["MANIFEST_TOOL"]=":"
983
+ S["RANLIB"]="ranlib"
984
+ S["ac_ct_AR"]="ar"
985
+ S["AR"]="ar"
986
+ S["NM"]="/usr/bin/nm -B"
987
+ S["ac_ct_DUMPBIN"]=""
988
+ S["DUMPBIN"]=""
989
+ S["LD"]="/usr/bin/ld -m elf_x86_64"
990
+ S["FGREP"]="/usr/bin/grep -F"
991
+ S["EGREP"]="/usr/bin/grep -E"
992
+ S["GREP"]="/usr/bin/grep"
993
+ S["SED"]="/usr/bin/sed"
994
+ S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
995
+ S["OBJDUMP"]="objdump"
996
+ S["DLLTOOL"]="false"
997
+ S["AS"]="as"
998
+ S["SHLIB_VERSION"]="3:0:0"
999
+ S["LN_S"]="ln -s"
1000
+ S["am__fastdepCC_FALSE"]="#"
1001
+ S["am__fastdepCC_TRUE"]=""
1002
+ S["CCDEPMODE"]="depmode=gcc3"
1003
+ S["am__nodep"]="_no"
1004
+ S["AMDEPBACKSLASH"]="\\"
1005
+ S["AMDEP_FALSE"]="#"
1006
+ S["AMDEP_TRUE"]=""
1007
+ S["am__quote"]=""
1008
+ S["am__include"]="include"
1009
+ S["DEPDIR"]=".deps"
1010
+ S["OBJEXT"]="o"
1011
+ S["EXEEXT"]=""
1012
+ S["ac_ct_CC"]="gcc"
1013
+ S["CPPFLAGS"]=""
1014
+ S["LDFLAGS"]=" -Wl,-z,defs"
1015
+ S["CFLAGS"]="-g -O2 -fstack-protector -Wall -W -Wmissing-prototypes -Wstrict-prototypes -pedantic -fopenmp"
1016
+ S["CC"]="gcc"
1017
+ S["AM_BACKSLASH"]="\\"
1018
+ S["AM_DEFAULT_VERBOSITY"]="0"
1019
+ S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)"
1020
+ S["AM_V"]="$(V)"
1021
+ S["am__untar"]="$${TAR-tar} xf -"
1022
+ S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
1023
+ S["AMTAR"]="$${TAR-tar}"
1024
+ S["am__leading_dot"]="."
1025
+ S["SET_MAKE"]=""
1026
+ S["AWK"]="gawk"
1027
+ S["mkdir_p"]="$(MKDIR_P)"
1028
+ S["MKDIR_P"]="/usr/bin/mkdir -p"
1029
+ S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
1030
+ S["STRIP"]="strip"
1031
+ S["install_sh"]="${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/install-sh"
1032
+ S["MAKEINFO"]="${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing makeinfo"
1033
+ S["AUTOHEADER"]="${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing autoheader"
1034
+ S["AUTOMAKE"]="${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing automake-1.14"
1035
+ S["AUTOCONF"]="${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing autoconf"
1036
+ S["ACLOCAL"]="${SHELL} /data/home/acw630/venvs/lam/bin/sox-14.4.2/missing aclocal-1.14"
1037
+ S["VERSION"]="14.4.2"
1038
+ S["PACKAGE"]="sox"
1039
+ S["CYGPATH_W"]="echo"
1040
+ S["am__isrc"]=" -I$(srcdir)"
1041
+ S["INSTALL_DATA"]="${INSTALL} -m 644"
1042
+ S["INSTALL_SCRIPT"]="${INSTALL}"
1043
+ S["INSTALL_PROGRAM"]="${INSTALL}"
1044
+ S["target_os"]="linux-gnu"
1045
+ S["target_vendor"]="unknown"
1046
+ S["target_cpu"]="x86_64"
1047
+ S["target"]="x86_64-unknown-linux-gnu"
1048
+ S["host_os"]="linux-gnu"
1049
+ S["host_vendor"]="unknown"
1050
+ S["host_cpu"]="x86_64"
1051
+ S["host"]="x86_64-unknown-linux-gnu"
1052
+ S["build_os"]="linux-gnu"
1053
+ S["build_vendor"]="unknown"
1054
+ S["build_cpu"]="x86_64"
1055
+ S["build"]="x86_64-unknown-linux-gnu"
1056
+ S["target_alias"]=""
1057
+ S["host_alias"]=""
1058
+ S["build_alias"]=""
1059
+ S["LIBS"]="-lm "
1060
+ S["ECHO_T"]=""
1061
+ S["ECHO_N"]="-n"
1062
+ S["ECHO_C"]=""
1063
+ S["DEFS"]="-DHAVE_CONFIG_H"
1064
+ S["mandir"]="${datarootdir}/man"
1065
+ S["localedir"]="${datarootdir}/locale"
1066
+ S["libdir"]="${exec_prefix}/lib"
1067
+ S["psdir"]="${docdir}"
1068
+ S["pdfdir"]="${docdir}"
1069
+ S["dvidir"]="${docdir}"
1070
+ S["htmldir"]="${docdir}"
1071
+ S["infodir"]="${datarootdir}/info"
1072
+ S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
1073
+ S["oldincludedir"]="/usr/include"
1074
+ S["includedir"]="${prefix}/include"
1075
+ S["localstatedir"]="${prefix}/var"
1076
+ S["sharedstatedir"]="${prefix}/com"
1077
+ S["sysconfdir"]="${prefix}/etc"
1078
+ S["datadir"]="${datarootdir}"
1079
+ S["datarootdir"]="${prefix}/share"
1080
+ S["libexecdir"]="${exec_prefix}/libexec"
1081
+ S["sbindir"]="${exec_prefix}/sbin"
1082
+ S["bindir"]="${exec_prefix}/bin"
1083
+ S["program_transform_name"]="s,x,x,"
1084
+ S["prefix"]="/data/home/acw630/venvs/lam/bin/sox-14.4.2"
1085
+ S["exec_prefix"]="${prefix}"
1086
+ S["PACKAGE_URL"]=""
1087
+ S["PACKAGE_BUGREPORT"]="[email protected]"
1088
+ S["PACKAGE_STRING"]="SoX 14.4.2"
1089
+ S["PACKAGE_VERSION"]="14.4.2"
1090
+ S["PACKAGE_TARNAME"]="sox"
1091
+ S["PACKAGE_NAME"]="SoX"
1092
+ S["PATH_SEPARATOR"]=":"
1093
+ S["SHELL"]="/bin/sh"
1094
+ _ACAWK
1095
+ cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
1096
+ for (key in S) S_is_set[key] = 1
1097
+ FS = ""
1098
+
1099
+ }
1100
+ {
1101
+ line = $ 0
1102
+ nfields = split(line, field, "@")
1103
+ substed = 0
1104
+ len = length(field[1])
1105
+ for (i = 2; i < nfields; i++) {
1106
+ key = field[i]
1107
+ keylen = length(key)
1108
+ if (S_is_set[key]) {
1109
+ value = S[key]
1110
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
1111
+ len += length(value) + length(field[++i])
1112
+ substed = 1
1113
+ } else
1114
+ len += 1 + keylen
1115
+ }
1116
+
1117
+ print line
1118
+ }
1119
+
1120
+ _ACAWK
1121
+ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
1122
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
1123
+ else
1124
+ cat
1125
+ fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
1126
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
1127
+ fi # test -n "$CONFIG_FILES"
1128
+
1129
+ # Set up the scripts for CONFIG_HEADERS section.
1130
+ # No need to generate them if there are no CONFIG_HEADERS.
1131
+ # This happens for instance with `./config.status Makefile'.
1132
+ if test -n "$CONFIG_HEADERS"; then
1133
+ cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
1134
+ BEGIN {
1135
+ D["PACKAGE_NAME"]=" \"SoX\""
1136
+ D["PACKAGE_TARNAME"]=" \"sox\""
1137
+ D["PACKAGE_VERSION"]=" \"14.4.2\""
1138
+ D["PACKAGE_STRING"]=" \"SoX 14.4.2\""
1139
+ D["PACKAGE_BUGREPORT"]=" \"[email protected]\""
1140
+ D["PACKAGE_URL"]=" \"\""
1141
+ D["PACKAGE"]=" \"sox\""
1142
+ D["VERSION"]=" \"14.4.2\""
1143
+ D["STDC_HEADERS"]=" 1"
1144
+ D["HAVE_SYS_TYPES_H"]=" 1"
1145
+ D["HAVE_SYS_STAT_H"]=" 1"
1146
+ D["HAVE_STDLIB_H"]=" 1"
1147
+ D["HAVE_STRING_H"]=" 1"
1148
+ D["HAVE_MEMORY_H"]=" 1"
1149
+ D["HAVE_STRINGS_H"]=" 1"
1150
+ D["HAVE_INTTYPES_H"]=" 1"
1151
+ D["HAVE_STDINT_H"]=" 1"
1152
+ D["HAVE_UNISTD_H"]=" 1"
1153
+ D["HAVE_DLFCN_H"]=" 1"
1154
+ D["LT_OBJDIR"]=" \".libs/\""
1155
+ D["ENABLE_SSP_CC"]=" 1"
1156
+ D["STDC_HEADERS"]=" 1"
1157
+ D["HAVE_FCNTL_H"]=" 1"
1158
+ D["HAVE_UNISTD_H"]=" 1"
1159
+ D["HAVE_BYTESWAP_H"]=" 1"
1160
+ D["HAVE_SYS_STAT_H"]=" 1"
1161
+ D["HAVE_SYS_TIME_H"]=" 1"
1162
+ D["HAVE_SYS_TIMEB_H"]=" 1"
1163
+ D["HAVE_SYS_TYPES_H"]=" 1"
1164
+ D["HAVE_SYS_UTSNAME_H"]=" 1"
1165
+ D["HAVE_TERMIOS_H"]=" 1"
1166
+ D["HAVE_GLOB_H"]=" 1"
1167
+ D["HAVE_FENV_H"]=" 1"
1168
+ D["HAVE_STRCASECMP"]=" 1"
1169
+ D["HAVE_STRDUP"]=" 1"
1170
+ D["HAVE_POPEN"]=" 1"
1171
+ D["HAVE_VSNPRINTF"]=" 1"
1172
+ D["HAVE_GETTIMEOFDAY"]=" 1"
1173
+ D["HAVE_MKSTEMP"]=" 1"
1174
+ D["HAVE_FMEMOPEN"]=" 1"
1175
+ D["HAVE_LRINT"]=" 1"
1176
+ D["HAVE_FSEEKO"]=" 1"
1177
+ D["HAVE_PNG_H"]=" 1"
1178
+ D["HAVE_PNG"]=" 1"
1179
+ D["HAVE_SNDFILE_H"]=" 1"
1180
+ D["HAVE_SNDFILE_1_0_18"]=" 1"
1181
+ D["HAVE_SFC_SET_SCALE_INT_FLOAT_WRITE"]=" 1"
1182
+ D["HAVE_SNDFILE"]=" 1"
1183
+ D["STATIC_SNDFILE"]=" 1"
1184
+ D["HAVE_SYS_SOUNDCARD_H"]=" 1"
1185
+ D["HAVE_OSS"]=" 1"
1186
+ D["STATIC_OSS"]=" 1"
1187
+ D["HAVE_GSM"]=" 1"
1188
+ D["STATIC_GSM"]=" 1"
1189
+ D["HAVE_LPC10"]=" 1"
1190
+ D["STATIC_LPC10"]=" 1"
1191
+ for (key in D) D_is_set[key] = 1
1192
+ FS = ""
1193
+ }
1194
+ /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
1195
+ line = $ 0
1196
+ split(line, arg, " ")
1197
+ if (arg[1] == "#") {
1198
+ defundef = arg[2]
1199
+ mac1 = arg[3]
1200
+ } else {
1201
+ defundef = substr(arg[1], 2)
1202
+ mac1 = arg[2]
1203
+ }
1204
+ split(mac1, mac2, "(") #)
1205
+ macro = mac2[1]
1206
+ prefix = substr(line, 1, index(line, defundef) - 1)
1207
+ if (D_is_set[macro]) {
1208
+ # Preserve the white space surrounding the "#".
1209
+ print prefix "define", macro P[macro] D[macro]
1210
+ next
1211
+ } else {
1212
+ # Replace #undef with comments. This is necessary, for example,
1213
+ # in the case of _POSIX_SOURCE, which is predefined and required
1214
+ # on some systems where configure will not decide to define it.
1215
+ if (defundef == "undef") {
1216
+ print "/*", prefix defundef, macro, "*/"
1217
+ next
1218
+ }
1219
+ }
1220
+ }
1221
+ { print }
1222
+ _ACAWK
1223
+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
1224
+ fi # test -n "$CONFIG_HEADERS"
1225
+
1226
+
1227
+ eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
1228
+ shift
1229
+ for ac_tag
1230
+ do
1231
+ case $ac_tag in
1232
+ :[FHLC]) ac_mode=$ac_tag; continue;;
1233
+ esac
1234
+ case $ac_mode$ac_tag in
1235
+ :[FHL]*:*);;
1236
+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
1237
+ :[FH]-) ac_tag=-:-;;
1238
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1239
+ esac
1240
+ ac_save_IFS=$IFS
1241
+ IFS=:
1242
+ set x $ac_tag
1243
+ IFS=$ac_save_IFS
1244
+ shift
1245
+ ac_file=$1
1246
+ shift
1247
+
1248
+ case $ac_mode in
1249
+ :L) ac_source=$1;;
1250
+ :[FH])
1251
+ ac_file_inputs=
1252
+ for ac_f
1253
+ do
1254
+ case $ac_f in
1255
+ -) ac_f="$ac_tmp/stdin";;
1256
+ *) # Look for the file first in the build tree, then in the source tree
1257
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
1258
+ # because $ac_f cannot contain `:'.
1259
+ test -f "$ac_f" ||
1260
+ case $ac_f in
1261
+ [\\/$]*) false;;
1262
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
1263
+ esac ||
1264
+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
1265
+ esac
1266
+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1267
+ as_fn_append ac_file_inputs " '$ac_f'"
1268
+ done
1269
+
1270
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
1271
+ # use $as_me), people would be surprised to read:
1272
+ # /* config.h. Generated by config.status. */
1273
+ configure_input='Generated from '`
1274
+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1275
+ `' by configure.'
1276
+ if test x"$ac_file" != x-; then
1277
+ configure_input="$ac_file. $configure_input"
1278
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1279
+ $as_echo "$as_me: creating $ac_file" >&6;}
1280
+ fi
1281
+ # Neutralize special characters interpreted by sed in replacement strings.
1282
+ case $configure_input in #(
1283
+ *\&* | *\|* | *\\* )
1284
+ ac_sed_conf_input=`$as_echo "$configure_input" |
1285
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
1286
+ *) ac_sed_conf_input=$configure_input;;
1287
+ esac
1288
+
1289
+ case $ac_tag in
1290
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
1291
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
1292
+ esac
1293
+ ;;
1294
+ esac
1295
+
1296
+ ac_dir=`$as_dirname -- "$ac_file" ||
1297
+ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1298
+ X"$ac_file" : 'X\(//\)[^/]' \| \
1299
+ X"$ac_file" : 'X\(//\)$' \| \
1300
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1301
+ $as_echo X"$ac_file" |
1302
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1303
+ s//\1/
1304
+ q
1305
+ }
1306
+ /^X\(\/\/\)[^/].*/{
1307
+ s//\1/
1308
+ q
1309
+ }
1310
+ /^X\(\/\/\)$/{
1311
+ s//\1/
1312
+ q
1313
+ }
1314
+ /^X\(\/\).*/{
1315
+ s//\1/
1316
+ q
1317
+ }
1318
+ s/.*/./; q'`
1319
+ as_dir="$ac_dir"; as_fn_mkdir_p
1320
+ ac_builddir=.
1321
+
1322
+ case "$ac_dir" in
1323
+ .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1324
+ *)
1325
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1326
+ # A ".." for each directory in $ac_dir_suffix.
1327
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1328
+ case $ac_top_builddir_sub in
1329
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1330
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1331
+ esac ;;
1332
+ esac
1333
+ ac_abs_top_builddir=$ac_pwd
1334
+ ac_abs_builddir=$ac_pwd$ac_dir_suffix
1335
+ # for backward compatibility:
1336
+ ac_top_builddir=$ac_top_build_prefix
1337
+
1338
+ case $srcdir in
1339
+ .) # We are building in place.
1340
+ ac_srcdir=.
1341
+ ac_top_srcdir=$ac_top_builddir_sub
1342
+ ac_abs_top_srcdir=$ac_pwd ;;
1343
+ [\\/]* | ?:[\\/]* ) # Absolute name.
1344
+ ac_srcdir=$srcdir$ac_dir_suffix;
1345
+ ac_top_srcdir=$srcdir
1346
+ ac_abs_top_srcdir=$srcdir ;;
1347
+ *) # Relative name.
1348
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1349
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
1350
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1351
+ esac
1352
+ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1353
+
1354
+
1355
+ case $ac_mode in
1356
+ :F)
1357
+ #
1358
+ # CONFIG_FILE
1359
+ #
1360
+
1361
+ case $INSTALL in
1362
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
1363
+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
1364
+ esac
1365
+ ac_MKDIR_P=$MKDIR_P
1366
+ case $MKDIR_P in
1367
+ [\\/$]* | ?:[\\/]* ) ;;
1368
+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
1369
+ esac
1370
+ # If the template does not know about datarootdir, expand it.
1371
+ # FIXME: This hack should be removed a few years after 2.60.
1372
+ ac_datarootdir_hack=; ac_datarootdir_seen=
1373
+ ac_sed_dataroot='
1374
+ /datarootdir/ {
1375
+ p
1376
+ q
1377
+ }
1378
+ /@datadir@/p
1379
+ /@docdir@/p
1380
+ /@infodir@/p
1381
+ /@localedir@/p
1382
+ /@mandir@/p'
1383
+ case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1384
+ *datarootdir*) ac_datarootdir_seen=yes;;
1385
+ *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1386
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1387
+ $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1388
+ ac_datarootdir_hack='
1389
+ s&@datadir@&${datarootdir}&g
1390
+ s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
1391
+ s&@infodir@&${datarootdir}/info&g
1392
+ s&@localedir@&${datarootdir}/locale&g
1393
+ s&@mandir@&${datarootdir}/man&g
1394
+ s&\${datarootdir}&${prefix}/share&g' ;;
1395
+ esac
1396
+ ac_sed_extra="
1397
+
1398
+ :t
1399
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1400
+ s|@configure_input@|$ac_sed_conf_input|;t t
1401
+ s&@top_builddir@&$ac_top_builddir_sub&;t t
1402
+ s&@top_build_prefix@&$ac_top_build_prefix&;t t
1403
+ s&@srcdir@&$ac_srcdir&;t t
1404
+ s&@abs_srcdir@&$ac_abs_srcdir&;t t
1405
+ s&@top_srcdir@&$ac_top_srcdir&;t t
1406
+ s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1407
+ s&@builddir@&$ac_builddir&;t t
1408
+ s&@abs_builddir@&$ac_abs_builddir&;t t
1409
+ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1410
+ s&@INSTALL@&$ac_INSTALL&;t t
1411
+ s&@MKDIR_P@&$ac_MKDIR_P&;t t
1412
+ $ac_datarootdir_hack
1413
+ "
1414
+ eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
1415
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1416
+
1417
+ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1418
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
1419
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
1420
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
1421
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1422
+ which seems to be undefined. Please make sure it is defined" >&5
1423
+ $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1424
+ which seems to be undefined. Please make sure it is defined" >&2;}
1425
+
1426
+ rm -f "$ac_tmp/stdin"
1427
+ case $ac_file in
1428
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
1429
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
1430
+ esac \
1431
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1432
+ ;;
1433
+ :H)
1434
+ #
1435
+ # CONFIG_HEADER
1436
+ #
1437
+ if test x"$ac_file" != x-; then
1438
+ {
1439
+ $as_echo "/* $configure_input */" \
1440
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
1441
+ } >"$ac_tmp/config.h" \
1442
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1443
+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
1444
+ { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1445
+ $as_echo "$as_me: $ac_file is unchanged" >&6;}
1446
+ else
1447
+ rm -f "$ac_file"
1448
+ mv "$ac_tmp/config.h" "$ac_file" \
1449
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1450
+ fi
1451
+ else
1452
+ $as_echo "/* $configure_input */" \
1453
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
1454
+ || as_fn_error $? "could not create -" "$LINENO" 5
1455
+ fi
1456
+ # Compute "$ac_file"'s index in $config_headers.
1457
+ _am_arg="$ac_file"
1458
+ _am_stamp_count=1
1459
+ for _am_header in $config_headers :; do
1460
+ case $_am_header in
1461
+ $_am_arg | $_am_arg:* )
1462
+ break ;;
1463
+ * )
1464
+ _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1465
+ esac
1466
+ done
1467
+ echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
1468
+ $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1469
+ X"$_am_arg" : 'X\(//\)[^/]' \| \
1470
+ X"$_am_arg" : 'X\(//\)$' \| \
1471
+ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
1472
+ $as_echo X"$_am_arg" |
1473
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1474
+ s//\1/
1475
+ q
1476
+ }
1477
+ /^X\(\/\/\)[^/].*/{
1478
+ s//\1/
1479
+ q
1480
+ }
1481
+ /^X\(\/\/\)$/{
1482
+ s//\1/
1483
+ q
1484
+ }
1485
+ /^X\(\/\).*/{
1486
+ s//\1/
1487
+ q
1488
+ }
1489
+ s/.*/./; q'`/stamp-h$_am_stamp_count
1490
+ ;;
1491
+
1492
+ :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1493
+ $as_echo "$as_me: executing $ac_file commands" >&6;}
1494
+ ;;
1495
+ esac
1496
+
1497
+
1498
+ case $ac_file$ac_mode in
1499
+ "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
1500
+ # Older Autoconf quotes --file arguments for eval, but not when files
1501
+ # are listed without --file. Let's play safe and only enable the eval
1502
+ # if we detect the quoting.
1503
+ case $CONFIG_FILES in
1504
+ *\'*) eval set x "$CONFIG_FILES" ;;
1505
+ *) set x $CONFIG_FILES ;;
1506
+ esac
1507
+ shift
1508
+ for mf
1509
+ do
1510
+ # Strip MF so we end up with the name of the file.
1511
+ mf=`echo "$mf" | sed -e 's/:.*$//'`
1512
+ # Check whether this is an Automake generated Makefile or not.
1513
+ # We used to match only the files named 'Makefile.in', but
1514
+ # some people rename them; so instead we look at the file content.
1515
+ # Grep'ing the first line is not enough: some people post-process
1516
+ # each Makefile.in and add a new line on top of each file to say so.
1517
+ # Grep'ing the whole file is not good either: AIX grep has a line
1518
+ # limit of 2048, but all sed's we know have understand at least 4000.
1519
+ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1520
+ dirpart=`$as_dirname -- "$mf" ||
1521
+ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1522
+ X"$mf" : 'X\(//\)[^/]' \| \
1523
+ X"$mf" : 'X\(//\)$' \| \
1524
+ X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1525
+ $as_echo X"$mf" |
1526
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1527
+ s//\1/
1528
+ q
1529
+ }
1530
+ /^X\(\/\/\)[^/].*/{
1531
+ s//\1/
1532
+ q
1533
+ }
1534
+ /^X\(\/\/\)$/{
1535
+ s//\1/
1536
+ q
1537
+ }
1538
+ /^X\(\/\).*/{
1539
+ s//\1/
1540
+ q
1541
+ }
1542
+ s/.*/./; q'`
1543
+ else
1544
+ continue
1545
+ fi
1546
+ # Extract the definition of DEPDIR, am__include, and am__quote
1547
+ # from the Makefile without running 'make'.
1548
+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1549
+ test -z "$DEPDIR" && continue
1550
+ am__include=`sed -n 's/^am__include = //p' < "$mf"`
1551
+ test -z "$am__include" && continue
1552
+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1553
+ # Find all dependency output files, they are included files with
1554
+ # $(DEPDIR) in their names. We invoke sed twice because it is the
1555
+ # simplest approach to changing $(DEPDIR) to its actual value in the
1556
+ # expansion.
1557
+ for file in `sed -n "
1558
+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1559
+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
1560
+ # Make sure the directory exists.
1561
+ test -f "$dirpart/$file" && continue
1562
+ fdir=`$as_dirname -- "$file" ||
1563
+ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1564
+ X"$file" : 'X\(//\)[^/]' \| \
1565
+ X"$file" : 'X\(//\)$' \| \
1566
+ X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1567
+ $as_echo X"$file" |
1568
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1569
+ s//\1/
1570
+ q
1571
+ }
1572
+ /^X\(\/\/\)[^/].*/{
1573
+ s//\1/
1574
+ q
1575
+ }
1576
+ /^X\(\/\/\)$/{
1577
+ s//\1/
1578
+ q
1579
+ }
1580
+ /^X\(\/\).*/{
1581
+ s//\1/
1582
+ q
1583
+ }
1584
+ s/.*/./; q'`
1585
+ as_dir=$dirpart/$fdir; as_fn_mkdir_p
1586
+ # echo "creating $dirpart/$file"
1587
+ echo '# dummy' > "$dirpart/$file"
1588
+ done
1589
+ done
1590
+ }
1591
+ ;;
1592
+ "libtool":C)
1593
+
1594
+ # See if we are running on zsh, and set the options which allow our
1595
+ # commands through without removal of \ escapes.
1596
+ if test -n "${ZSH_VERSION+set}" ; then
1597
+ setopt NO_GLOB_SUBST
1598
+ fi
1599
+
1600
+ cfgfile="${ofile}T"
1601
+ trap "$RM \"$cfgfile\"; exit 1" 1 2 15
1602
+ $RM "$cfgfile"
1603
+
1604
+ cat <<_LT_EOF >> "$cfgfile"
1605
+ #! $SHELL
1606
+
1607
+ # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
1608
+ # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
1609
+ # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
1610
+ # NOTE: Changes made to this file will be lost: look at ltmain.sh.
1611
+ #
1612
+ # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
1613
+ # 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1614
+ # Foundation, Inc.
1615
+ # Written by Gordon Matzigkeit, 1996
1616
+ #
1617
+ # This file is part of GNU Libtool.
1618
+ #
1619
+ # GNU Libtool is free software; you can redistribute it and/or
1620
+ # modify it under the terms of the GNU General Public License as
1621
+ # published by the Free Software Foundation; either version 2 of
1622
+ # the License, or (at your option) any later version.
1623
+ #
1624
+ # As a special exception to the GNU General Public License,
1625
+ # if you distribute this file as part of a program or library that
1626
+ # is built using GNU Libtool, you may include this file under the
1627
+ # same distribution terms that you use for the rest of that program.
1628
+ #
1629
+ # GNU Libtool is distributed in the hope that it will be useful,
1630
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
1631
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1632
+ # GNU General Public License for more details.
1633
+ #
1634
+ # You should have received a copy of the GNU General Public License
1635
+ # along with GNU Libtool; see the file COPYING. If not, a copy
1636
+ # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
1637
+ # obtained by writing to the Free Software Foundation, Inc.,
1638
+ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1639
+
1640
+
1641
+ # The names of the tagged configurations supported by this script.
1642
+ available_tags=""
1643
+
1644
+ # ### BEGIN LIBTOOL CONFIG
1645
+
1646
+ # Which release of libtool.m4 was used?
1647
+ macro_version=$macro_version
1648
+ macro_revision=$macro_revision
1649
+
1650
+ # Assembler program.
1651
+ AS=$lt_AS
1652
+
1653
+ # DLL creation program.
1654
+ DLLTOOL=$lt_DLLTOOL
1655
+
1656
+ # Object dumper program.
1657
+ OBJDUMP=$lt_OBJDUMP
1658
+
1659
+ # Whether or not to build shared libraries.
1660
+ build_libtool_libs=$enable_shared
1661
+
1662
+ # Whether or not to build static libraries.
1663
+ build_old_libs=$enable_static
1664
+
1665
+ # What type of objects to build.
1666
+ pic_mode=$pic_mode
1667
+
1668
+ # Whether or not to optimize for fast installation.
1669
+ fast_install=$enable_fast_install
1670
+
1671
+ # Shell to use when invoking shell scripts.
1672
+ SHELL=$lt_SHELL
1673
+
1674
+ # An echo program that protects backslashes.
1675
+ ECHO=$lt_ECHO
1676
+
1677
+ # The PATH separator for the build system.
1678
+ PATH_SEPARATOR=$lt_PATH_SEPARATOR
1679
+
1680
+ # The host system.
1681
+ host_alias=$host_alias
1682
+ host=$host
1683
+ host_os=$host_os
1684
+
1685
+ # The build system.
1686
+ build_alias=$build_alias
1687
+ build=$build
1688
+ build_os=$build_os
1689
+
1690
+ # A sed program that does not truncate output.
1691
+ SED=$lt_SED
1692
+
1693
+ # Sed that helps us avoid accidentally triggering echo(1) options like -n.
1694
+ Xsed="\$SED -e 1s/^X//"
1695
+
1696
+ # A grep program that handles long lines.
1697
+ GREP=$lt_GREP
1698
+
1699
+ # An ERE matcher.
1700
+ EGREP=$lt_EGREP
1701
+
1702
+ # A literal string matcher.
1703
+ FGREP=$lt_FGREP
1704
+
1705
+ # A BSD- or MS-compatible name lister.
1706
+ NM=$lt_NM
1707
+
1708
+ # Whether we need soft or hard links.
1709
+ LN_S=$lt_LN_S
1710
+
1711
+ # What is the maximum length of a command?
1712
+ max_cmd_len=$max_cmd_len
1713
+
1714
+ # Object file suffix (normally "o").
1715
+ objext=$ac_objext
1716
+
1717
+ # Executable file suffix (normally "").
1718
+ exeext=$exeext
1719
+
1720
+ # whether the shell understands "unset".
1721
+ lt_unset=$lt_unset
1722
+
1723
+ # turn spaces into newlines.
1724
+ SP2NL=$lt_lt_SP2NL
1725
+
1726
+ # turn newlines into spaces.
1727
+ NL2SP=$lt_lt_NL2SP
1728
+
1729
+ # convert \$build file names to \$host format.
1730
+ to_host_file_cmd=$lt_cv_to_host_file_cmd
1731
+
1732
+ # convert \$build files to toolchain format.
1733
+ to_tool_file_cmd=$lt_cv_to_tool_file_cmd
1734
+
1735
+ # Method to check whether dependent libraries are shared objects.
1736
+ deplibs_check_method=$lt_deplibs_check_method
1737
+
1738
+ # Command to use when deplibs_check_method = "file_magic".
1739
+ file_magic_cmd=$lt_file_magic_cmd
1740
+
1741
+ # How to find potential files when deplibs_check_method = "file_magic".
1742
+ file_magic_glob=$lt_file_magic_glob
1743
+
1744
+ # Find potential files using nocaseglob when deplibs_check_method = "file_magic".
1745
+ want_nocaseglob=$lt_want_nocaseglob
1746
+
1747
+ # Command to associate shared and link libraries.
1748
+ sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd
1749
+
1750
+ # The archiver.
1751
+ AR=$lt_AR
1752
+
1753
+ # Flags to create an archive.
1754
+ AR_FLAGS=$lt_AR_FLAGS
1755
+
1756
+ # How to feed a file listing to the archiver.
1757
+ archiver_list_spec=$lt_archiver_list_spec
1758
+
1759
+ # A symbol stripping program.
1760
+ STRIP=$lt_STRIP
1761
+
1762
+ # Commands used to install an old-style archive.
1763
+ RANLIB=$lt_RANLIB
1764
+ old_postinstall_cmds=$lt_old_postinstall_cmds
1765
+ old_postuninstall_cmds=$lt_old_postuninstall_cmds
1766
+
1767
+ # Whether to use a lock for old archive extraction.
1768
+ lock_old_archive_extraction=$lock_old_archive_extraction
1769
+
1770
+ # A C compiler.
1771
+ LTCC=$lt_CC
1772
+
1773
+ # LTCC compiler flags.
1774
+ LTCFLAGS=$lt_CFLAGS
1775
+
1776
+ # Take the output of nm and produce a listing of raw symbols and C names.
1777
+ global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
1778
+
1779
+ # Transform the output of nm in a proper C declaration.
1780
+ global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
1781
+
1782
+ # Transform the output of nm in a C name address pair.
1783
+ global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
1784
+
1785
+ # Transform the output of nm in a C name address pair when lib prefix is needed.
1786
+ global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
1787
+
1788
+ # Specify filename containing input files for \$NM.
1789
+ nm_file_list_spec=$lt_nm_file_list_spec
1790
+
1791
+ # The root where to search for dependent libraries,and in which our libraries should be installed.
1792
+ lt_sysroot=$lt_sysroot
1793
+
1794
+ # The name of the directory that contains temporary libtool files.
1795
+ objdir=$objdir
1796
+
1797
+ # Used to examine libraries when file_magic_cmd begins with "file".
1798
+ MAGIC_CMD=$MAGIC_CMD
1799
+
1800
+ # Must we lock files when doing compilation?
1801
+ need_locks=$lt_need_locks
1802
+
1803
+ # Manifest tool.
1804
+ MANIFEST_TOOL=$lt_MANIFEST_TOOL
1805
+
1806
+ # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
1807
+ DSYMUTIL=$lt_DSYMUTIL
1808
+
1809
+ # Tool to change global to local symbols on Mac OS X.
1810
+ NMEDIT=$lt_NMEDIT
1811
+
1812
+ # Tool to manipulate fat objects and archives on Mac OS X.
1813
+ LIPO=$lt_LIPO
1814
+
1815
+ # ldd/readelf like tool for Mach-O binaries on Mac OS X.
1816
+ OTOOL=$lt_OTOOL
1817
+
1818
+ # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
1819
+ OTOOL64=$lt_OTOOL64
1820
+
1821
+ # Old archive suffix (normally "a").
1822
+ libext=$libext
1823
+
1824
+ # Shared library suffix (normally ".so").
1825
+ shrext_cmds=$lt_shrext_cmds
1826
+
1827
+ # The commands to extract the exported symbol list from a shared archive.
1828
+ extract_expsyms_cmds=$lt_extract_expsyms_cmds
1829
+
1830
+ # Variables whose values should be saved in libtool wrapper scripts and
1831
+ # restored at link time.
1832
+ variables_saved_for_relink=$lt_variables_saved_for_relink
1833
+
1834
+ # Do we need the "lib" prefix for modules?
1835
+ need_lib_prefix=$need_lib_prefix
1836
+
1837
+ # Do we need a version for libraries?
1838
+ need_version=$need_version
1839
+
1840
+ # Library versioning type.
1841
+ version_type=$version_type
1842
+
1843
+ # Shared library runtime path variable.
1844
+ runpath_var=$runpath_var
1845
+
1846
+ # Shared library path variable.
1847
+ shlibpath_var=$shlibpath_var
1848
+
1849
+ # Is shlibpath searched before the hard-coded library search path?
1850
+ shlibpath_overrides_runpath=$shlibpath_overrides_runpath
1851
+
1852
+ # Format of library name prefix.
1853
+ libname_spec=$lt_libname_spec
1854
+
1855
+ # List of archive names. First name is the real one, the rest are links.
1856
+ # The last name is the one that the linker finds with -lNAME
1857
+ library_names_spec=$lt_library_names_spec
1858
+
1859
+ # The coded name of the library, if different from the real name.
1860
+ soname_spec=$lt_soname_spec
1861
+
1862
+ # Permission mode override for installation of shared libraries.
1863
+ install_override_mode=$lt_install_override_mode
1864
+
1865
+ # Command to use after installation of a shared archive.
1866
+ postinstall_cmds=$lt_postinstall_cmds
1867
+
1868
+ # Command to use after uninstallation of a shared archive.
1869
+ postuninstall_cmds=$lt_postuninstall_cmds
1870
+
1871
+ # Commands used to finish a libtool library installation in a directory.
1872
+ finish_cmds=$lt_finish_cmds
1873
+
1874
+ # As "finish_cmds", except a single script fragment to be evaled but
1875
+ # not shown.
1876
+ finish_eval=$lt_finish_eval
1877
+
1878
+ # Whether we should hardcode library paths into libraries.
1879
+ hardcode_into_libs=$hardcode_into_libs
1880
+
1881
+ # Compile-time system search path for libraries.
1882
+ sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
1883
+
1884
+ # Run-time system search path for libraries.
1885
+ sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
1886
+
1887
+ # Whether dlopen is supported.
1888
+ dlopen_support=$enable_dlopen
1889
+
1890
+ # Whether dlopen of programs is supported.
1891
+ dlopen_self=$enable_dlopen_self
1892
+
1893
+ # Whether dlopen of statically linked programs is supported.
1894
+ dlopen_self_static=$enable_dlopen_self_static
1895
+
1896
+ # Commands to strip libraries.
1897
+ old_striplib=$lt_old_striplib
1898
+ striplib=$lt_striplib
1899
+
1900
+
1901
+ # The linker used to build libraries.
1902
+ LD=$lt_LD
1903
+
1904
+ # How to create reloadable object files.
1905
+ reload_flag=$lt_reload_flag
1906
+ reload_cmds=$lt_reload_cmds
1907
+
1908
+ # Commands used to build an old-style archive.
1909
+ old_archive_cmds=$lt_old_archive_cmds
1910
+
1911
+ # A language specific compiler.
1912
+ CC=$lt_compiler
1913
+
1914
+ # Is the compiler the GNU compiler?
1915
+ with_gcc=$GCC
1916
+
1917
+ # Compiler flag to turn off builtin functions.
1918
+ no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
1919
+
1920
+ # Additional compiler flags for building library objects.
1921
+ pic_flag=$lt_lt_prog_compiler_pic
1922
+
1923
+ # How to pass a linker flag through the compiler.
1924
+ wl=$lt_lt_prog_compiler_wl
1925
+
1926
+ # Compiler flag to prevent dynamic linking.
1927
+ link_static_flag=$lt_lt_prog_compiler_static
1928
+
1929
+ # Does compiler simultaneously support -c and -o options?
1930
+ compiler_c_o=$lt_lt_cv_prog_compiler_c_o
1931
+
1932
+ # Whether or not to add -lc for building shared libraries.
1933
+ build_libtool_need_lc=$archive_cmds_need_lc
1934
+
1935
+ # Whether or not to disallow shared libs when runtime libs are static.
1936
+ allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
1937
+
1938
+ # Compiler flag to allow reflexive dlopens.
1939
+ export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
1940
+
1941
+ # Compiler flag to generate shared objects directly from archives.
1942
+ whole_archive_flag_spec=$lt_whole_archive_flag_spec
1943
+
1944
+ # Whether the compiler copes with passing no objects directly.
1945
+ compiler_needs_object=$lt_compiler_needs_object
1946
+
1947
+ # Create an old-style archive from a shared archive.
1948
+ old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
1949
+
1950
+ # Create a temporary old-style archive to link instead of a shared archive.
1951
+ old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
1952
+
1953
+ # Commands used to build a shared archive.
1954
+ archive_cmds=$lt_archive_cmds
1955
+ archive_expsym_cmds=$lt_archive_expsym_cmds
1956
+
1957
+ # Commands used to build a loadable module if different from building
1958
+ # a shared archive.
1959
+ module_cmds=$lt_module_cmds
1960
+ module_expsym_cmds=$lt_module_expsym_cmds
1961
+
1962
+ # Whether we are building with GNU ld or not.
1963
+ with_gnu_ld=$lt_with_gnu_ld
1964
+
1965
+ # Flag that allows shared libraries with undefined symbols to be built.
1966
+ allow_undefined_flag=$lt_allow_undefined_flag
1967
+
1968
+ # Flag that enforces no undefined symbols.
1969
+ no_undefined_flag=$lt_no_undefined_flag
1970
+
1971
+ # Flag to hardcode \$libdir into a binary during linking.
1972
+ # This must work even if \$libdir does not exist
1973
+ hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
1974
+
1975
+ # Whether we need a single "-rpath" flag with a separated argument.
1976
+ hardcode_libdir_separator=$lt_hardcode_libdir_separator
1977
+
1978
+ # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
1979
+ # DIR into the resulting binary.
1980
+ hardcode_direct=$hardcode_direct
1981
+
1982
+ # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
1983
+ # DIR into the resulting binary and the resulting library dependency is
1984
+ # "absolute",i.e impossible to change by setting \${shlibpath_var} if the
1985
+ # library is relocated.
1986
+ hardcode_direct_absolute=$hardcode_direct_absolute
1987
+
1988
+ # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
1989
+ # into the resulting binary.
1990
+ hardcode_minus_L=$hardcode_minus_L
1991
+
1992
+ # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
1993
+ # into the resulting binary.
1994
+ hardcode_shlibpath_var=$hardcode_shlibpath_var
1995
+
1996
+ # Set to "yes" if building a shared library automatically hardcodes DIR
1997
+ # into the library and all subsequent libraries and executables linked
1998
+ # against it.
1999
+ hardcode_automatic=$hardcode_automatic
2000
+
2001
+ # Set to yes if linker adds runtime paths of dependent libraries
2002
+ # to runtime path list.
2003
+ inherit_rpath=$inherit_rpath
2004
+
2005
+ # Whether libtool must link a program against all its dependency libraries.
2006
+ link_all_deplibs=$link_all_deplibs
2007
+
2008
+ # Set to "yes" if exported symbols are required.
2009
+ always_export_symbols=$always_export_symbols
2010
+
2011
+ # The commands to list exported symbols.
2012
+ export_symbols_cmds=$lt_export_symbols_cmds
2013
+
2014
+ # Symbols that should not be listed in the preloaded symbols.
2015
+ exclude_expsyms=$lt_exclude_expsyms
2016
+
2017
+ # Symbols that must always be exported.
2018
+ include_expsyms=$lt_include_expsyms
2019
+
2020
+ # Commands necessary for linking programs (against libraries) with templates.
2021
+ prelink_cmds=$lt_prelink_cmds
2022
+
2023
+ # Commands necessary for finishing linking programs.
2024
+ postlink_cmds=$lt_postlink_cmds
2025
+
2026
+ # Specify filename containing input files.
2027
+ file_list_spec=$lt_file_list_spec
2028
+
2029
+ # How to hardcode a shared library path into an executable.
2030
+ hardcode_action=$hardcode_action
2031
+
2032
+ # ### END LIBTOOL CONFIG
2033
+
2034
+ _LT_EOF
2035
+
2036
+ case $host_os in
2037
+ aix3*)
2038
+ cat <<\_LT_EOF >> "$cfgfile"
2039
+ # AIX sometimes has problems with the GCC collect2 program. For some
2040
+ # reason, if we set the COLLECT_NAMES environment variable, the problems
2041
+ # vanish in a puff of smoke.
2042
+ if test "X${COLLECT_NAMES+set}" != Xset; then
2043
+ COLLECT_NAMES=
2044
+ export COLLECT_NAMES
2045
+ fi
2046
+ _LT_EOF
2047
+ ;;
2048
+ esac
2049
+
2050
+
2051
+ ltmain="$ac_aux_dir/ltmain.sh"
2052
+
2053
+
2054
+ # We use sed instead of cat because bash on DJGPP gets confused if
2055
+ # if finds mixed CR/LF and LF-only lines. Since sed operates in
2056
+ # text mode, it properly converts lines to CR/LF. This bash problem
2057
+ # is reportedly fixed, but why not run on old versions too?
2058
+ sed '$q' "$ltmain" >> "$cfgfile" \
2059
+ || (rm -f "$cfgfile"; exit 1)
2060
+
2061
+ if test x"$xsi_shell" = xyes; then
2062
+ sed -e '/^func_dirname ()$/,/^} # func_dirname /c\
2063
+ func_dirname ()\
2064
+ {\
2065
+ \ case ${1} in\
2066
+ \ */*) func_dirname_result="${1%/*}${2}" ;;\
2067
+ \ * ) func_dirname_result="${3}" ;;\
2068
+ \ esac\
2069
+ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \
2070
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2071
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2072
+ test 0 -eq $? || _lt_function_replace_fail=:
2073
+
2074
+
2075
+ sed -e '/^func_basename ()$/,/^} # func_basename /c\
2076
+ func_basename ()\
2077
+ {\
2078
+ \ func_basename_result="${1##*/}"\
2079
+ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \
2080
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2081
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2082
+ test 0 -eq $? || _lt_function_replace_fail=:
2083
+
2084
+
2085
+ sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\
2086
+ func_dirname_and_basename ()\
2087
+ {\
2088
+ \ case ${1} in\
2089
+ \ */*) func_dirname_result="${1%/*}${2}" ;;\
2090
+ \ * ) func_dirname_result="${3}" ;;\
2091
+ \ esac\
2092
+ \ func_basename_result="${1##*/}"\
2093
+ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \
2094
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2095
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2096
+ test 0 -eq $? || _lt_function_replace_fail=:
2097
+
2098
+
2099
+ sed -e '/^func_stripname ()$/,/^} # func_stripname /c\
2100
+ func_stripname ()\
2101
+ {\
2102
+ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\
2103
+ \ # positional parameters, so assign one to ordinary parameter first.\
2104
+ \ func_stripname_result=${3}\
2105
+ \ func_stripname_result=${func_stripname_result#"${1}"}\
2106
+ \ func_stripname_result=${func_stripname_result%"${2}"}\
2107
+ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \
2108
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2109
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2110
+ test 0 -eq $? || _lt_function_replace_fail=:
2111
+
2112
+
2113
+ sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\
2114
+ func_split_long_opt ()\
2115
+ {\
2116
+ \ func_split_long_opt_name=${1%%=*}\
2117
+ \ func_split_long_opt_arg=${1#*=}\
2118
+ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \
2119
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2120
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2121
+ test 0 -eq $? || _lt_function_replace_fail=:
2122
+
2123
+
2124
+ sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\
2125
+ func_split_short_opt ()\
2126
+ {\
2127
+ \ func_split_short_opt_arg=${1#??}\
2128
+ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\
2129
+ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \
2130
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2131
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2132
+ test 0 -eq $? || _lt_function_replace_fail=:
2133
+
2134
+
2135
+ sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\
2136
+ func_lo2o ()\
2137
+ {\
2138
+ \ case ${1} in\
2139
+ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\
2140
+ \ *) func_lo2o_result=${1} ;;\
2141
+ \ esac\
2142
+ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \
2143
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2144
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2145
+ test 0 -eq $? || _lt_function_replace_fail=:
2146
+
2147
+
2148
+ sed -e '/^func_xform ()$/,/^} # func_xform /c\
2149
+ func_xform ()\
2150
+ {\
2151
+ func_xform_result=${1%.*}.lo\
2152
+ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \
2153
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2154
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2155
+ test 0 -eq $? || _lt_function_replace_fail=:
2156
+
2157
+
2158
+ sed -e '/^func_arith ()$/,/^} # func_arith /c\
2159
+ func_arith ()\
2160
+ {\
2161
+ func_arith_result=$(( $* ))\
2162
+ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \
2163
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2164
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2165
+ test 0 -eq $? || _lt_function_replace_fail=:
2166
+
2167
+
2168
+ sed -e '/^func_len ()$/,/^} # func_len /c\
2169
+ func_len ()\
2170
+ {\
2171
+ func_len_result=${#1}\
2172
+ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \
2173
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2174
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2175
+ test 0 -eq $? || _lt_function_replace_fail=:
2176
+
2177
+ fi
2178
+
2179
+ if test x"$lt_shell_append" = xyes; then
2180
+ sed -e '/^func_append ()$/,/^} # func_append /c\
2181
+ func_append ()\
2182
+ {\
2183
+ eval "${1}+=\\${2}"\
2184
+ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \
2185
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2186
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2187
+ test 0 -eq $? || _lt_function_replace_fail=:
2188
+
2189
+
2190
+ sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\
2191
+ func_append_quoted ()\
2192
+ {\
2193
+ \ func_quote_for_eval "${2}"\
2194
+ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\
2195
+ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \
2196
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2197
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2198
+ test 0 -eq $? || _lt_function_replace_fail=:
2199
+
2200
+
2201
+ # Save a `func_append' function call where possible by direct use of '+='
2202
+ sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
2203
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2204
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2205
+ test 0 -eq $? || _lt_function_replace_fail=:
2206
+ else
2207
+ # Save a `func_append' function call even when '+=' is not available
2208
+ sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
2209
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2210
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2211
+ test 0 -eq $? || _lt_function_replace_fail=:
2212
+ fi
2213
+
2214
+ if test x"$_lt_function_replace_fail" = x":"; then
2215
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5
2216
+ $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;}
2217
+ fi
2218
+
2219
+
2220
+ mv -f "$cfgfile" "$ofile" ||
2221
+ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
2222
+ chmod +x "$ofile"
2223
+
2224
+ ;;
2225
+
2226
+ esac
2227
+ done # for ac_tag
2228
+
2229
+
2230
+ as_fn_exit 0
lam2/bin/convert-caffe2-to-onnx ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from caffe2.python.onnx.bin.conversion import caffe2_to_onnx
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(caffe2_to_onnx())
lam2/bin/convert-onnx-to-caffe2 ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from caffe2.python.onnx.bin.conversion import onnx_to_caffe2
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(onnx_to_caffe2())
lam2/bin/ctest ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from cmake import ctest
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(ctest())
lam2/bin/diffusers-cli ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from diffusers.commands.diffusers_cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/easy_install ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from setuptools.command.easy_install import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/easy_install-3.8 ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from setuptools.command.easy_install import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/f2py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from numpy.f2py.f2py2e import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/f2py3.8 ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from numpy.f2py.f2py2e import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/fonttools ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from fontTools.__main__ import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/ftfy ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from ftfy.cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/gdown ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from gdown.__main__ import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/git-filter-repo ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from git_filter_repo import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/google-oauthlib-tool ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from google_auth_oauthlib.tool.__main__ import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/gradio ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from gradio.cli import cli
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(cli())
lam2/bin/httpx ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from httpx import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/huggingface-cli ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from huggingface_hub.commands.huggingface_cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/identify-cli ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from identify.cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/imageio_download_bin ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from imageio.__main__ import download_bin_main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(download_bin_main())
lam2/bin/imageio_remove_bin ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from imageio.__main__ import remove_bin_main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(remove_bin_main())
lam2/bin/ipython ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from IPython import start_ipython
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(start_ipython())
lam2/bin/ipython3 ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from IPython import start_ipython
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(start_ipython())
lam2/bin/isympy ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from isympy import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/jsonschema ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from jsonschema.cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/jupyter-dejavu ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from nbconvert.nbconvertapp import dejavu_main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(dejavu_main())
lam2/bin/jupyter-migrate ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from jupyter_core.migrate import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/jupyter-nbconvert ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from nbconvert.nbconvertapp import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/jupyter-run ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from jupyter_client.runapp import RunApp
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(RunApp.launch_instance())
lam2/bin/jupyter-troubleshoot ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from jupyter_core.troubleshoot import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
lam2/bin/jupyter-trust ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from nbformat.sign import TrustNotebookApp
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(TrustNotebookApp.launch_instance())
lam2/bin/kaggle ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # EASY-INSTALL-ENTRY-SCRIPT: 'kaggle==1.5.13','console_scripts','kaggle'
3
+ __requires__ = 'kaggle==1.5.13'
4
+ import re
5
+ import sys
6
+ from pkg_resources import load_entry_point
7
+
8
+ if __name__ == '__main__':
9
+ sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
10
+ sys.exit(
11
+ load_entry_point('kaggle==1.5.13', 'console_scripts', 'kaggle')()
12
+ )
lam2/bin/libtool ADDED
The diff for this file is too large to render. See raw diff
 
lam2/bin/lit ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/data/home/acw630/venvs/lam2/bin/python3
2
+ # EASY-INSTALL-ENTRY-SCRIPT: 'lit==16.0.0','console_scripts','lit'
3
+ __requires__ = 'lit==16.0.0'
4
+ import re
5
+ import sys
6
+ from pkg_resources import load_entry_point
7
+
8
+ if __name__ == '__main__':
9
+ sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
10
+ sys.exit(
11
+ load_entry_point('lit==16.0.0', 'console_scripts', 'lit')()
12
+ )
lam2/bin/lpc10/.deps/analys.Plo ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ analys.lo: ../sox-14.4.2/lpc10/analys.c /usr/include/stdc-predef.h \
2
+ ../sox-14.4.2/lpc10/f2c.h ../sox-14.4.2/lpc10/lpc10.h \
3
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \
4
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \
5
+ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \
6
+ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
7
+ /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \
8
+ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
9
+ /usr/include/bits/posix2_lim.h
10
+
11
+ /usr/include/stdc-predef.h:
12
+
13
+ ../sox-14.4.2/lpc10/f2c.h:
14
+
15
+ ../sox-14.4.2/lpc10/lpc10.h:
16
+
17
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h:
18
+
19
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h:
20
+
21
+ /usr/include/limits.h:
22
+
23
+ /usr/include/features.h:
24
+
25
+ /usr/include/sys/cdefs.h:
26
+
27
+ /usr/include/bits/wordsize.h:
28
+
29
+ /usr/include/gnu/stubs.h:
30
+
31
+ /usr/include/gnu/stubs-64.h:
32
+
33
+ /usr/include/bits/posix1_lim.h:
34
+
35
+ /usr/include/bits/local_lim.h:
36
+
37
+ /usr/include/linux/limits.h:
38
+
39
+ /usr/include/bits/posix2_lim.h:
lam2/bin/lpc10/.deps/bsynz.Plo ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ bsynz.lo: ../sox-14.4.2/lpc10/bsynz.c /usr/include/stdc-predef.h \
2
+ ../sox-14.4.2/lpc10/f2c.h ../sox-14.4.2/lpc10/lpc10.h \
3
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \
4
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \
5
+ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \
6
+ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
7
+ /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \
8
+ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
9
+ /usr/include/bits/posix2_lim.h
10
+
11
+ /usr/include/stdc-predef.h:
12
+
13
+ ../sox-14.4.2/lpc10/f2c.h:
14
+
15
+ ../sox-14.4.2/lpc10/lpc10.h:
16
+
17
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h:
18
+
19
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h:
20
+
21
+ /usr/include/limits.h:
22
+
23
+ /usr/include/features.h:
24
+
25
+ /usr/include/sys/cdefs.h:
26
+
27
+ /usr/include/bits/wordsize.h:
28
+
29
+ /usr/include/gnu/stubs.h:
30
+
31
+ /usr/include/gnu/stubs-64.h:
32
+
33
+ /usr/include/bits/posix1_lim.h:
34
+
35
+ /usr/include/bits/local_lim.h:
36
+
37
+ /usr/include/linux/limits.h:
38
+
39
+ /usr/include/bits/posix2_lim.h:
lam2/bin/lpc10/.deps/chanwr.Plo ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ chanwr.lo: ../sox-14.4.2/lpc10/chanwr.c /usr/include/stdc-predef.h \
2
+ ../sox-14.4.2/lpc10/f2c.h ../sox-14.4.2/lpc10/lpc10.h \
3
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \
4
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \
5
+ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \
6
+ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
7
+ /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \
8
+ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
9
+ /usr/include/bits/posix2_lim.h
10
+
11
+ /usr/include/stdc-predef.h:
12
+
13
+ ../sox-14.4.2/lpc10/f2c.h:
14
+
15
+ ../sox-14.4.2/lpc10/lpc10.h:
16
+
17
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h:
18
+
19
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h:
20
+
21
+ /usr/include/limits.h:
22
+
23
+ /usr/include/features.h:
24
+
25
+ /usr/include/sys/cdefs.h:
26
+
27
+ /usr/include/bits/wordsize.h:
28
+
29
+ /usr/include/gnu/stubs.h:
30
+
31
+ /usr/include/gnu/stubs-64.h:
32
+
33
+ /usr/include/bits/posix1_lim.h:
34
+
35
+ /usr/include/bits/local_lim.h:
36
+
37
+ /usr/include/linux/limits.h:
38
+
39
+ /usr/include/bits/posix2_lim.h:
lam2/bin/lpc10/.deps/dcbias.Plo ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ dcbias.lo: ../sox-14.4.2/lpc10/dcbias.c /usr/include/stdc-predef.h \
2
+ ../sox-14.4.2/lpc10/f2c.h ../sox-14.4.2/lpc10/lpc10.h \
3
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \
4
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \
5
+ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \
6
+ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
7
+ /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \
8
+ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
9
+ /usr/include/bits/posix2_lim.h
10
+
11
+ /usr/include/stdc-predef.h:
12
+
13
+ ../sox-14.4.2/lpc10/f2c.h:
14
+
15
+ ../sox-14.4.2/lpc10/lpc10.h:
16
+
17
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h:
18
+
19
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h:
20
+
21
+ /usr/include/limits.h:
22
+
23
+ /usr/include/features.h:
24
+
25
+ /usr/include/sys/cdefs.h:
26
+
27
+ /usr/include/bits/wordsize.h:
28
+
29
+ /usr/include/gnu/stubs.h:
30
+
31
+ /usr/include/gnu/stubs-64.h:
32
+
33
+ /usr/include/bits/posix1_lim.h:
34
+
35
+ /usr/include/bits/local_lim.h:
36
+
37
+ /usr/include/linux/limits.h:
38
+
39
+ /usr/include/bits/posix2_lim.h:
lam2/bin/lpc10/.deps/decode.Plo ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ decode.lo: ../sox-14.4.2/lpc10/decode.c /usr/include/stdc-predef.h \
2
+ ../sox-14.4.2/lpc10/f2c.h ../sox-14.4.2/lpc10/lpc10.h \
3
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \
4
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \
5
+ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \
6
+ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
7
+ /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \
8
+ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
9
+ /usr/include/bits/posix2_lim.h
10
+
11
+ /usr/include/stdc-predef.h:
12
+
13
+ ../sox-14.4.2/lpc10/f2c.h:
14
+
15
+ ../sox-14.4.2/lpc10/lpc10.h:
16
+
17
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h:
18
+
19
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h:
20
+
21
+ /usr/include/limits.h:
22
+
23
+ /usr/include/features.h:
24
+
25
+ /usr/include/sys/cdefs.h:
26
+
27
+ /usr/include/bits/wordsize.h:
28
+
29
+ /usr/include/gnu/stubs.h:
30
+
31
+ /usr/include/gnu/stubs-64.h:
32
+
33
+ /usr/include/bits/posix1_lim.h:
34
+
35
+ /usr/include/bits/local_lim.h:
36
+
37
+ /usr/include/linux/limits.h:
38
+
39
+ /usr/include/bits/posix2_lim.h:
lam2/bin/lpc10/.deps/deemp.Plo ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ deemp.lo: ../sox-14.4.2/lpc10/deemp.c /usr/include/stdc-predef.h \
2
+ ../sox-14.4.2/lpc10/f2c.h ../sox-14.4.2/lpc10/lpc10.h \
3
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h \
4
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h \
5
+ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \
6
+ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
7
+ /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \
8
+ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
9
+ /usr/include/bits/posix2_lim.h
10
+
11
+ /usr/include/stdc-predef.h:
12
+
13
+ ../sox-14.4.2/lpc10/f2c.h:
14
+
15
+ ../sox-14.4.2/lpc10/lpc10.h:
16
+
17
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/limits.h:
18
+
19
+ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/syslimits.h:
20
+
21
+ /usr/include/limits.h:
22
+
23
+ /usr/include/features.h:
24
+
25
+ /usr/include/sys/cdefs.h:
26
+
27
+ /usr/include/bits/wordsize.h:
28
+
29
+ /usr/include/gnu/stubs.h:
30
+
31
+ /usr/include/gnu/stubs-64.h:
32
+
33
+ /usr/include/bits/posix1_lim.h:
34
+
35
+ /usr/include/bits/local_lim.h:
36
+
37
+ /usr/include/linux/limits.h:
38
+
39
+ /usr/include/bits/posix2_lim.h: