~ubuntu-branches/ubuntu/natty/flac/natty

« back to all changes in this revision

Viewing changes to config.rpath

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529225636-ljeff8xxip09qaap
Tags: 1.1.4-1
* New upstream release. closes: #405167, #411311
  - libOggFLAC and libOggFLAC++ have been merged into libFLAC, so
    remove their corresponding packages.
  - Because of the API changes required to effect the above, there has
    been yet another soname bump. libflac7 -> libflac8 and
    libflac++5 -> libflac++6. Emails have been dispatched to the
    maintainers of dependent packages.
* Some notes on patches that were removed:
  - 02_stdin_stdout, 06_manpage_mention_utf8_convert: merged upstream
  - 08_manpage_warnings: Upstream has changed the manpage so it defintely
    can't fit in in 80 cols, so just forget about it. We'll live.
  - 05_eof_warnings_are_errors: Upstream decided to add a -w option to
    flac to treat all warnings as errors. I am going to defer to that
    for now, but if people think it's stupid let me know and I'll port
    the patch forward.
  - 04_stack_smasher: was a backport from 1.1.3, so it's obsolete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# Output a system dependent set of variables, describing how to set the
3
3
# run time search path of shared libraries in an executable.
4
4
#
5
 
#   Copyright 1996-2002 Free Software Foundation, Inc.
 
5
#   Copyright 1996-2005 Free Software Foundation, Inc.
6
6
#   Taken from GNU libtool, 2001
7
7
#   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
8
8
#
9
 
#   This program is free software; you can redistribute it and/or modify
10
 
#   it under the terms of the GNU General Public License as published by
11
 
#   the Free Software Foundation; either version 2 of the License, or
12
 
#   (at your option) any later version.
13
 
#
14
 
#   This program is distributed in the hope that it will be useful, but
15
 
#   WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
 
#   General Public License for more details.
18
 
#
19
 
#   You should have received a copy of the GNU General Public License
20
 
#   along with this program; if not, write to the Free Software
21
 
#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
 
#
23
 
#   As a special exception to the GNU General Public License, if you
24
 
#   distribute this file as part of a program that contains a
25
 
#   configuration script generated by Autoconf, you may include it under
26
 
#   the same distribution terms that you use for the rest of that program.
 
9
#   This file is free software; the Free Software Foundation gives
 
10
#   unlimited permission to copy and/or distribute it, with or without
 
11
#   modifications, as long as this notice is preserved.
27
12
#
28
13
# The first argument passed to this file is the canonical host specification,
29
14
#    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
34
19
#
35
20
# The set of defined variables is at the end of this script.
36
21
 
 
22
# Known limitations:
 
23
# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer
 
24
#   than 256 bytes, otherwise the compiler driver will dump core. The only
 
25
#   known workaround is to choose shorter directory names for the build
 
26
#   directory and/or the installation directory.
 
27
 
37
28
# All known linkers require a `.a' archive for static linking (except M$VC,
38
29
# which needs '.lib').
39
30
libext=a
40
 
shlibext=
 
31
shrext=.so
41
32
 
42
33
host="$1"
43
34
host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
44
35
host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
45
36
host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
46
37
 
 
38
cc_basename=`echo "$CC" | sed -e 's%^.*/%%'`
 
39
 
 
40
# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC.
 
41
 
47
42
wl=
48
43
if test "$GCC" = yes; then
49
44
  wl='-Wl,'
50
45
else
51
46
  case "$host_os" in
52
 
    aix3* | aix4* | aix5*)
 
47
    aix*)
53
48
      wl='-Wl,'
54
49
      ;;
 
50
    darwin*)
 
51
      case "$cc_basename" in
 
52
        xlc*)
 
53
          wl='-Wl,'
 
54
          ;;
 
55
      esac
 
56
      ;;
 
57
    mingw* | pw32* | os2*)
 
58
      ;;
55
59
    hpux9* | hpux10* | hpux11*)
56
60
      wl='-Wl,'
57
61
      ;;
58
 
    irix5* | irix6*)
 
62
    irix5* | irix6* | nonstopux*)
59
63
      wl='-Wl,'
60
64
      ;;
 
65
    newsos6)
 
66
      ;;
61
67
    linux*)
62
 
      echo '__INTEL_COMPILER' > conftest.$ac_ext
63
 
      if $CC -E conftest.$ac_ext >/dev/null | grep __INTEL_COMPILER >/dev/null
64
 
      then
65
 
        :
66
 
      else
67
 
        # Intel icc
68
 
        wl='-Qoption,ld,'
69
 
      fi
 
68
      case $cc_basename in
 
69
        icc* | ecc*)
 
70
          wl='-Wl,'
 
71
          ;;
 
72
        pgcc | pgf77 | pgf90)
 
73
          wl='-Wl,'
 
74
          ;;
 
75
        ccc*)
 
76
          wl='-Wl,'
 
77
          ;;
 
78
        como)
 
79
          wl='-lopt='
 
80
          ;;
 
81
      esac
70
82
      ;;
71
83
    osf3* | osf4* | osf5*)
72
84
      wl='-Wl,'
73
85
      ;;
 
86
    sco3.2v5*)
 
87
      ;;
74
88
    solaris*)
75
89
      wl='-Wl,'
76
90
      ;;
78
92
      wl='-Qoption ld '
79
93
      ;;
80
94
    sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
81
 
      if test "x$host_vendor" = xsni; then
82
 
        wl='-LD'
83
 
      else
84
 
        wl='-Wl,'
85
 
      fi
 
95
      wl='-Wl,'
 
96
      ;;
 
97
    sysv4*MP*)
 
98
      ;;
 
99
    unicos*)
 
100
      wl='-Wl,'
 
101
      ;;
 
102
    uts4*)
86
103
      ;;
87
104
  esac
88
105
fi
89
106
 
 
107
# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS.
 
108
 
90
109
hardcode_libdir_flag_spec=
91
110
hardcode_libdir_separator=
92
111
hardcode_direct=no
110
129
if test "$with_gnu_ld" = yes; then
111
130
  case "$host_os" in
112
131
    aix3* | aix4* | aix5*)
113
 
      # On AIX, the GNU linker is very broken
114
 
      ld_shlibs=no
 
132
      # On AIX/PPC, the GNU linker is very broken
 
133
      if test "$host_cpu" != ia64; then
 
134
        ld_shlibs=no
 
135
      fi
115
136
      ;;
116
137
    amigaos*)
117
138
      hardcode_libdir_flag_spec='-L$libdir'
120
141
      # that the semantics of dynamic libraries on AmigaOS, at least up
121
142
      # to version 4, is to share data among multiple programs linked
122
143
      # with the same dynamic library.  Since this doesn't match the
123
 
      # behavior of shared libraries on other platforms, we can use
 
144
      # behavior of shared libraries on other platforms, we cannot use
124
145
      # them.
125
146
      ld_shlibs=no
126
147
      ;;
127
148
    beos*)
128
 
      if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
 
149
      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
129
150
        :
130
151
      else
131
152
        ld_shlibs=no
135
156
      # hardcode_libdir_flag_spec is actually meaningless, as there is
136
157
      # no search path for DLLs.
137
158
      hardcode_libdir_flag_spec='-L$libdir'
 
159
      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
 
160
        :
 
161
      else
 
162
        ld_shlibs=no
 
163
      fi
 
164
      ;;
 
165
    netbsd*)
138
166
      ;;
139
167
    solaris* | sysv5*)
140
 
      if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
 
168
      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
141
169
        ld_shlibs=no
142
 
      elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
 
170
      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
143
171
        :
144
172
      else
145
173
        ld_shlibs=no
148
176
    sunos4*)
149
177
      hardcode_direct=yes
150
178
      ;;
 
179
    linux*)
 
180
      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
181
        :
 
182
      else
 
183
        ld_shlibs=no
 
184
      fi
 
185
      ;;
151
186
    *)
152
 
      if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
 
187
      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
153
188
        :
154
189
      else
155
190
        ld_shlibs=no
157
192
      ;;
158
193
  esac
159
194
  if test "$ld_shlibs" = yes; then
 
195
    # Unlike libtool, we use -rpath here, not --rpath, since the documented
 
196
    # option of GNU ld is called -rpath, not --rpath.
160
197
    hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
161
198
  fi
162
199
else
209
246
          fi
210
247
        esac
211
248
      fi
 
249
      # Begin _LT_AC_SYS_LIBPATH_AIX.
 
250
      echo 'int main () { return 0; }' > conftest.c
 
251
      ${CC} ${LDFLAGS} conftest.c -o conftest
 
252
      aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
253
}'`
 
254
      if test -z "$aix_libpath"; then
 
255
        aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
256
}'`
 
257
      fi
 
258
      if test -z "$aix_libpath"; then
 
259
        aix_libpath="/usr/lib:/lib"
 
260
      fi
 
261
      rm -f conftest.c conftest
 
262
      # End _LT_AC_SYS_LIBPATH_AIX.
212
263
      if test "$aix_use_runtimelinking" = yes; then
213
 
        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib'
 
264
        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
214
265
      else
215
266
        if test "$host_cpu" = ia64; then
216
267
          hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
217
268
        else
218
 
          hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib'
 
269
          hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
219
270
        fi
220
271
      fi
221
272
      ;;
225
276
      # see comment about different semantics on the GNU ld section
226
277
      ld_shlibs=no
227
278
      ;;
 
279
    bsdi[45]*)
 
280
      ;;
228
281
    cygwin* | mingw* | pw32*)
229
282
      # When not using gcc, we currently assume that we are using
230
283
      # Microsoft Visual C++.
234
287
      libext=lib
235
288
      ;;
236
289
    darwin* | rhapsody*)
237
 
      hardcode_direct=yes
 
290
      hardcode_direct=no
 
291
      if test "$GCC" = yes ; then
 
292
        :
 
293
      else
 
294
        case "$cc_basename" in
 
295
          xlc*)
 
296
            ;;
 
297
          *)
 
298
            ld_shlibs=no
 
299
            ;;
 
300
        esac
 
301
      fi
 
302
      ;;
 
303
    dgux*)
 
304
      hardcode_libdir_flag_spec='-L$libdir'
238
305
      ;;
239
306
    freebsd1*)
240
307
      ld_shlibs=no
247
314
      hardcode_direct=yes
248
315
      hardcode_minus_L=yes
249
316
      ;;
250
 
    freebsd*)
 
317
    freebsd* | kfreebsd*-gnu | dragonfly*)
251
318
      hardcode_libdir_flag_spec='-R$libdir'
252
319
      hardcode_direct=yes
253
320
      ;;
254
 
    hpux9* | hpux10* | hpux11*)
 
321
    hpux9*)
255
322
      hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
256
323
      hardcode_libdir_separator=:
257
324
      hardcode_direct=yes
258
 
      hardcode_minus_L=yes # Not in the search PATH, but as the default
259
 
                           # location of the library.
260
 
      ;;
261
 
    irix5* | irix6*)
 
325
      # hardcode_minus_L: Not really in the search PATH,
 
326
      # but as the default location of the library.
 
327
      hardcode_minus_L=yes
 
328
      ;;
 
329
    hpux10* | hpux11*)
 
330
      if test "$with_gnu_ld" = no; then
 
331
        case "$host_cpu" in
 
332
          hppa*64*)
 
333
            hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
 
334
            hardcode_libdir_separator=:
 
335
            hardcode_direct=no
 
336
            ;;
 
337
          ia64*)
 
338
            hardcode_libdir_flag_spec='-L$libdir'
 
339
            hardcode_direct=no
 
340
            # hardcode_minus_L: Not really in the search PATH,
 
341
            # but as the default location of the library.
 
342
            hardcode_minus_L=yes
 
343
            ;;
 
344
          *)
 
345
            hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
 
346
            hardcode_libdir_separator=:
 
347
            hardcode_direct=yes
 
348
            # hardcode_minus_L: Not really in the search PATH,
 
349
            # but as the default location of the library.
 
350
            hardcode_minus_L=yes
 
351
            ;;
 
352
        esac
 
353
      fi
 
354
      ;;
 
355
    irix5* | irix6* | nonstopux*)
262
356
      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
263
357
      hardcode_libdir_separator=:
264
358
      ;;
314
408
      hardcode_minus_L=yes
315
409
      ;;
316
410
    sysv4)
317
 
      if test "x$host_vendor" = xsno; then
318
 
        hardcode_direct=yes # is this really true???
319
 
      else
320
 
        hardcode_direct=no # Motorola manual says yes, but my tests say they lie
321
 
      fi
 
411
      case $host_vendor in
 
412
        sni)
 
413
          hardcode_direct=yes # is this really true???
 
414
          ;;
 
415
        siemens)
 
416
          hardcode_direct=no
 
417
          ;;
 
418
        motorola)
 
419
          hardcode_direct=no #Motorola manual says yes, but my tests say they lie
 
420
          ;;
 
421
      esac
322
422
      ;;
323
423
    sysv4.3*)
324
424
      ;;
325
 
    sysv5*)
326
 
      hardcode_libdir_flag_spec=
327
 
      ;;
328
 
    uts4*)
329
 
      hardcode_libdir_flag_spec='-L$libdir'
330
 
      ;;
331
 
    dgux*)
332
 
      hardcode_libdir_flag_spec='-L$libdir'
333
 
      ;;
334
425
    sysv4*MP*)
335
426
      if test -d /usr/nec; then
336
427
        ld_shlibs=yes
340
431
      hardcode_direct=yes
341
432
      hardcode_minus_L=no
342
433
      ;;
343
 
    sysv5uw7* | unixware7*)
 
434
    sysv5OpenUNIX8* | sysv5UnixWare7* |  sysv5uw[78]* | unixware7*)
 
435
      ;;
 
436
    sysv5*)
 
437
      hardcode_libdir_flag_spec=
 
438
      ;;
 
439
    uts4*)
 
440
      hardcode_libdir_flag_spec='-L$libdir'
344
441
      ;;
345
442
    *)
346
443
      ld_shlibs=no
349
446
fi
350
447
 
351
448
# Check dynamic linker characteristics
 
449
# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER.
352
450
libname_spec='lib$name'
353
 
sys_lib_dlsearch_path_spec="/lib /usr/lib"
354
 
sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
355
451
case "$host_os" in
356
452
  aix3*)
357
 
    shlibext=so
358
453
    ;;
359
454
  aix4* | aix5*)
360
 
    shlibext=so
361
455
    ;;
362
456
  amigaos*)
363
 
    shlibext=ixlibrary
364
457
    ;;
365
458
  beos*)
366
 
    shlibext=so
367
459
    ;;
368
 
  bsdi4*)
369
 
    shlibext=so
370
 
    sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
371
 
    sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
 
460
  bsdi[45]*)
372
461
    ;;
373
462
  cygwin* | mingw* | pw32*)
374
 
    case $GCC,$host_os in
375
 
      yes,cygwin*)
376
 
        shlibext=dll.a
377
 
        ;;
378
 
      yes,mingw*)
379
 
        shlibext=dll
380
 
        sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g"`
381
 
        ;;
382
 
      yes,pw32*)
383
 
        shlibext=dll
384
 
        ;;
385
 
      *)
386
 
        shlibext=dll
387
 
        ;;
388
 
    esac
 
463
    shrext=.dll
389
464
    ;;
390
465
  darwin* | rhapsody*)
391
 
    shlibext=dylib
 
466
    shrext=.dylib
 
467
    ;;
 
468
  dgux*)
392
469
    ;;
393
470
  freebsd1*)
394
471
    ;;
 
472
  kfreebsd*-gnu)
 
473
    ;;
395
474
  freebsd*)
396
 
    shlibext=so
397
475
    ;;
398
476
  gnu*)
399
 
    shlibext=so
400
477
    ;;
401
478
  hpux9* | hpux10* | hpux11*)
402
 
    shlibext=sl
 
479
    case "$host_cpu" in
 
480
      ia64*)
 
481
        shrext=.so
 
482
        ;;
 
483
      hppa*64*)
 
484
        shrext=.sl
 
485
        ;;
 
486
      *)
 
487
        shrext=.sl
 
488
        ;;
 
489
    esac
403
490
    ;;
404
 
  irix5* | irix6*)
405
 
    shlibext=so
 
491
  irix5* | irix6* | nonstopux*)
406
492
    case "$host_os" in
407
 
      irix5*)
 
493
      irix5* | nonstopux*)
408
494
        libsuff= shlibsuff=
409
495
        ;;
410
496
      *)
411
497
        case $LD in
412
 
          *-32|*"-32 ") libsuff= shlibsuff= ;;
413
 
          *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 ;;
414
 
          *-64|*"-64 ") libsuff=64 shlibsuff=64 ;;
 
498
          *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;;
 
499
          *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;;
 
500
          *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;;
415
501
          *) libsuff= shlibsuff= ;;
416
502
        esac
417
503
        ;;
418
504
    esac
419
 
    sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
420
 
    sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
421
 
    ;;
422
 
  linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
423
 
    ;;
424
 
  linux-gnu*)
425
 
    shlibext=so
 
505
    ;;
 
506
  linux*oldld* | linux*aout* | linux*coff*)
 
507
    ;;
 
508
  linux*)
 
509
    ;;
 
510
  knetbsd*-gnu)
426
511
    ;;
427
512
  netbsd*)
428
 
    shlibext=so
429
513
    ;;
430
514
  newsos6)
431
 
    shlibext=so
 
515
    ;;
 
516
  nto-qnx*)
432
517
    ;;
433
518
  openbsd*)
434
 
    shlibext=so
435
519
    ;;
436
520
  os2*)
437
521
    libname_spec='$name'
438
 
    shlibext=dll
 
522
    shrext=.dll
439
523
    ;;
440
524
  osf3* | osf4* | osf5*)
441
 
    shlibext=so
442
 
    sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
443
 
    sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
444
525
    ;;
445
526
  sco3.2v5*)
446
 
    shlibext=so
447
527
    ;;
448
528
  solaris*)
449
 
    shlibext=so
450
529
    ;;
451
530
  sunos4*)
452
 
    shlibext=so
453
531
    ;;
454
532
  sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
455
 
    shlibext=so
456
 
    case "$host_vendor" in
457
 
      motorola)
458
 
        sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
459
 
        ;;
460
 
    esac
 
533
    ;;
 
534
  sysv4*MP*)
461
535
    ;;
462
536
  uts4*)
463
 
    shlibext=so
464
 
    ;;
465
 
  dgux*)
466
 
    shlibext=so
467
 
    ;;
468
 
  sysv4*MP*)
469
 
    if test -d /usr/nec; then
470
 
      shlibext=so
471
 
    fi
472
537
    ;;
473
538
esac
474
539
 
475
540
sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
476
541
escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
 
542
shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
477
543
escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
478
 
escaped_sys_lib_search_path_spec=`echo "X$sys_lib_search_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
479
 
escaped_sys_lib_dlsearch_path_spec=`echo "X$sys_lib_dlsearch_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
480
544
 
481
 
sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
 
545
LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
482
546
 
483
547
# How to pass a linker flag through the compiler.
484
548
wl="$escaped_wl"
504
568
# resulting binary.
505
569
hardcode_minus_L="$hardcode_minus_L"
506
570
 
507
 
# Compile-time system search path for libraries
508
 
sys_lib_search_path_spec="$escaped_sys_lib_search_path_spec"
509
 
 
510
 
# Run-time system search path for libraries
511
 
sys_lib_dlsearch_path_spec="$escaped_sys_lib_dlsearch_path_spec"
512
 
 
513
571
EOF