~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to config.rpath

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

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-2003 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
#
34
34
#
35
35
# The set of defined variables is at the end of this script.
36
36
 
 
37
# Known limitations:
 
38
# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer
 
39
#   than 256 bytes, otherwise the compiler driver will dump core. The only
 
40
#   known workaround is to choose shorter directory names for the build
 
41
#   directory and/or the installation directory.
 
42
 
37
43
# All known linkers require a `.a' archive for static linking (except M$VC,
38
44
# which needs '.lib').
39
45
libext=a
40
 
shlibext=
 
46
shrext=.so
41
47
 
42
48
host="$1"
43
49
host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
44
50
host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
45
51
host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
46
52
 
 
53
# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC.
 
54
 
47
55
wl=
48
56
if test "$GCC" = yes; then
49
57
  wl='-Wl,'
50
58
else
51
59
  case "$host_os" in
52
 
    aix3* | aix4* | aix5*)
53
 
      if test "$host_cpu" = ia64; then
54
 
        wl='-Wl,'
55
 
      fi
 
60
    aix*)
 
61
      wl='-Wl,'
 
62
      ;;
 
63
    mingw* | pw32* | os2*)
56
64
      ;;
57
65
    hpux9* | hpux10* | hpux11*)
58
66
      wl='-Wl,'
59
67
      ;;
60
 
    irix5* | irix6*)
 
68
    irix5* | irix6* | nonstopux*)
61
69
      wl='-Wl,'
62
70
      ;;
 
71
    newsos6)
 
72
      ;;
63
73
    linux*)
64
 
      echo '__INTEL_COMPILER' > conftest.$ac_ext
65
 
      if $CC -E conftest.$ac_ext >/dev/null | grep __INTEL_COMPILER >/dev/null
66
 
      then
67
 
        :
68
 
      else
69
 
        # Intel icc
70
 
        wl='-Qoption,ld,'
71
 
      fi
 
74
      case $CC in
 
75
        icc|ecc)
 
76
          wl='-Wl,'
 
77
          ;;
 
78
        ccc)
 
79
          wl='-Wl,'
 
80
          ;;
 
81
      esac
72
82
      ;;
73
83
    osf3* | osf4* | osf5*)
74
84
      wl='-Wl,'
75
85
      ;;
 
86
    sco3.2v5*)
 
87
      ;;
76
88
    solaris*)
77
89
      wl='-Wl,'
78
90
      ;;
80
92
      wl='-Qoption ld '
81
93
      ;;
82
94
    sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
83
 
      if test "x$host_vendor" = xsni; then
84
 
        wl='-LD'
85
 
      else
86
 
        wl='-Wl,'
87
 
      fi
 
95
      wl='-Wl,'
 
96
      ;;
 
97
    sysv4*MP*)
 
98
      ;;
 
99
    uts4*)
88
100
      ;;
89
101
  esac
90
102
fi
91
103
 
 
104
# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS.
 
105
 
92
106
hardcode_libdir_flag_spec=
93
107
hardcode_libdir_separator=
94
108
hardcode_direct=no
95
109
hardcode_minus_L=no
96
110
 
97
111
case "$host_os" in
98
 
  cygwin* | mingw* | pw32* )
 
112
  cygwin* | mingw* | pw32*)
99
113
    # FIXME: the MSVC++ port hasn't been tested in a loooong time
100
114
    # When not using gcc, we currently assume that we are using
101
115
    # Microsoft Visual C++.
103
117
      with_gnu_ld=no
104
118
    fi
105
119
    ;;
 
120
  openbsd*)
 
121
    with_gnu_ld=no
 
122
    ;;
106
123
esac
107
124
 
108
125
ld_shlibs=yes
109
126
if test "$with_gnu_ld" = yes; then
110
127
  case "$host_os" in
111
128
    aix3* | aix4* | aix5*)
112
 
      # On AIX, the GNU linker is very broken
113
 
      ld_shlibs=no
 
129
      # On AIX/PPC, the GNU linker is very broken
 
130
      if test "$host_cpu" != ia64; then
 
131
        ld_shlibs=no
 
132
      fi
114
133
      ;;
115
134
    amigaos*)
116
135
      hardcode_libdir_flag_spec='-L$libdir'
124
143
      ld_shlibs=no
125
144
      ;;
126
145
    beos*)
127
 
      if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
 
146
      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
128
147
        :
129
148
      else
130
149
        ld_shlibs=no
134
153
      # hardcode_libdir_flag_spec is actually meaningless, as there is
135
154
      # no search path for DLLs.
136
155
      hardcode_libdir_flag_spec='-L$libdir'
 
156
      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
 
157
        :
 
158
      else
 
159
        ld_shlibs=no
 
160
      fi
 
161
      ;;
 
162
    netbsd*)
137
163
      ;;
138
164
    solaris* | sysv5*)
139
 
      if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
 
165
      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
140
166
        ld_shlibs=no
141
 
      elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
 
167
      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
142
168
        :
143
169
      else
144
170
        ld_shlibs=no
148
174
      hardcode_direct=yes
149
175
      ;;
150
176
    *)
151
 
      if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
 
177
      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
152
178
        :
153
179
      else
154
180
        ld_shlibs=no
156
182
      ;;
157
183
  esac
158
184
  if test "$ld_shlibs" = yes; then
 
185
    # Unlike libtool, we use -rpath here, not --rpath, since the documented
 
186
    # option of GNU ld is called -rpath, not --rpath.
159
187
    hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
160
188
  fi
161
189
else
171
199
      fi
172
200
      ;;
173
201
    aix4* | aix5*)
174
 
      hardcode_libdir_separator=':'
175
 
      if test "$GCC" = yes; then
176
 
        collect2name=`${CC} -print-prog-name=collect2`
177
 
        if test -f "$collect2name" && \
178
 
          strings "$collect2name" | grep resolve_lib_name >/dev/null
179
 
        then
180
 
          # We have reworked collect2
181
 
          hardcode_direct=yes
182
 
        else
183
 
          # We have old collect2
184
 
          hardcode_direct=unsupported
185
 
          hardcode_minus_L=yes
186
 
          hardcode_libdir_flag_spec='-L$libdir'
187
 
          hardcode_libdir_separator=
188
 
        fi
189
 
      else
190
 
        hardcode_direct=yes
191
 
      fi
192
202
      if test "$host_cpu" = ia64; then
193
203
        # On IA64, the linker does run time linking by default, so we don't
194
204
        # have to do anything special.
195
205
        aix_use_runtimelinking=no
196
206
      else
197
 
        # Test if we are trying to use run time linking, or normal AIX style linking.
198
 
        # If -brtl is somewhere in LDFLAGS, we need to do run time linking.
199
207
        aix_use_runtimelinking=no
200
 
        for ld_flag in $LDFLAGS; do
201
 
          if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl" ); then
202
 
            aix_use_runtimelinking=yes
203
 
            break
 
208
        # Test if we are trying to use run time linking or normal
 
209
        # AIX style linking. If -brtl is somewhere in LDFLAGS, we
 
210
        # need to do runtime linking.
 
211
        case $host_os in aix4.[23]|aix4.[23].*|aix5*)
 
212
          for ld_flag in $LDFLAGS; do
 
213
            if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
 
214
              aix_use_runtimelinking=yes
 
215
              break
 
216
            fi
 
217
          done
 
218
        esac
 
219
      fi
 
220
      hardcode_direct=yes
 
221
      hardcode_libdir_separator=':'
 
222
      if test "$GCC" = yes; then
 
223
        case $host_os in aix4.[012]|aix4.[012].*)
 
224
          collect2name=`${CC} -print-prog-name=collect2`
 
225
          if test -f "$collect2name" && \
 
226
            strings "$collect2name" | grep resolve_lib_name >/dev/null
 
227
          then
 
228
            # We have reworked collect2
 
229
            hardcode_direct=yes
 
230
          else
 
231
            # We have old collect2
 
232
            hardcode_direct=unsupported
 
233
            hardcode_minus_L=yes
 
234
            hardcode_libdir_flag_spec='-L$libdir'
 
235
            hardcode_libdir_separator=
204
236
          fi
205
 
        done
206
 
      fi
 
237
        esac
 
238
      fi
 
239
      # Begin _LT_AC_SYS_LIBPATH_AIX.
 
240
      echo 'int main () { return 0; }' > conftest.c
 
241
      ${CC} ${LDFLAGS} conftest.c -o conftest
 
242
      aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
243
}'`
 
244
      if test -z "$aix_libpath"; then
 
245
        aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
 
246
}'`
 
247
      fi
 
248
      if test -z "$aix_libpath"; then
 
249
        aix_libpath="/usr/lib:/lib"
 
250
      fi
 
251
      rm -f conftest.c conftest
 
252
      # End _LT_AC_SYS_LIBPATH_AIX.
207
253
      if test "$aix_use_runtimelinking" = yes; then
208
 
        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib'
 
254
        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
209
255
      else
210
256
        if test "$host_cpu" = ia64; then
211
257
          hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
212
258
        else
213
 
          hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib'
 
259
          hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
214
260
        fi
215
261
      fi
216
262
      ;;
220
266
      # see comment about different semantics on the GNU ld section
221
267
      ld_shlibs=no
222
268
      ;;
 
269
    bsdi4*)
 
270
      ;;
223
271
    cygwin* | mingw* | pw32*)
224
272
      # When not using gcc, we currently assume that we are using
225
273
      # Microsoft Visual C++.
229
277
      libext=lib
230
278
      ;;
231
279
    darwin* | rhapsody*)
232
 
      hardcode_direct=yes
 
280
      if $CC -v 2>&1 | grep 'Apple' >/dev/null ; then
 
281
        hardcode_direct=no
 
282
      fi
 
283
      ;;
 
284
    dgux*)
 
285
      hardcode_libdir_flag_spec='-L$libdir'
233
286
      ;;
234
287
    freebsd1*)
235
288
      ld_shlibs=no
246
299
      hardcode_libdir_flag_spec='-R$libdir'
247
300
      hardcode_direct=yes
248
301
      ;;
249
 
    hpux9* | hpux10* | hpux11*)
 
302
    hpux9*)
250
303
      hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
251
304
      hardcode_libdir_separator=:
252
305
      hardcode_direct=yes
253
 
      hardcode_minus_L=yes # Not in the search PATH, but as the default
254
 
                           # location of the library.
255
 
      ;;
256
 
    irix5* | irix6*)
 
306
      # hardcode_minus_L: Not really in the search PATH,
 
307
      # but as the default location of the library.
 
308
      hardcode_minus_L=yes
 
309
      ;;
 
310
    hpux10* | hpux11*)
 
311
      if test "$with_gnu_ld" = no; then
 
312
        case "$host_cpu" in
 
313
          hppa*64*)
 
314
            hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
 
315
            hardcode_libdir_separator=:
 
316
            hardcode_direct=no
 
317
            ;;
 
318
          ia64*)
 
319
            hardcode_libdir_flag_spec='-L$libdir'
 
320
            hardcode_direct=no
 
321
            # hardcode_minus_L: Not really in the search PATH,
 
322
            # but as the default location of the library.
 
323
            hardcode_minus_L=yes
 
324
            ;;
 
325
          *)
 
326
            hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
 
327
            hardcode_libdir_separator=:
 
328
            hardcode_direct=yes
 
329
            # hardcode_minus_L: Not really in the search PATH,
 
330
            # but as the default location of the library.
 
331
            hardcode_minus_L=yes
 
332
            ;;
 
333
        esac
 
334
      fi
 
335
      ;;
 
336
    irix5* | irix6* | nonstopux*)
257
337
      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
258
338
      hardcode_libdir_separator=:
259
339
      ;;
267
347
      hardcode_libdir_separator=:
268
348
      ;;
269
349
    openbsd*)
270
 
      hardcode_libdir_flag_spec='-R$libdir'
271
350
      hardcode_direct=yes
 
351
      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 
352
        hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
 
353
      else
 
354
        case "$host_os" in
 
355
          openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
 
356
            hardcode_libdir_flag_spec='-R$libdir'
 
357
            ;;
 
358
          *)
 
359
            hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
 
360
            ;;
 
361
        esac
 
362
      fi
272
363
      ;;
273
364
    os2*)
274
365
      hardcode_libdir_flag_spec='-L$libdir'
298
389
      hardcode_minus_L=yes
299
390
      ;;
300
391
    sysv4)
301
 
      if test "x$host_vendor" = xsno; then
302
 
        hardcode_direct=yes # is this really true???
303
 
      else
304
 
        hardcode_direct=no # Motorola manual says yes, but my tests say they lie
305
 
      fi
 
392
      case $host_vendor in
 
393
        sni)
 
394
          hardcode_direct=yes # is this really true???
 
395
          ;;
 
396
        siemens)
 
397
          hardcode_direct=no
 
398
          ;;
 
399
        motorola)
 
400
          hardcode_direct=no #Motorola manual says yes, but my tests say they lie
 
401
          ;;
 
402
      esac
306
403
      ;;
307
404
    sysv4.3*)
308
405
      ;;
309
 
    sysv5*)
310
 
      hardcode_libdir_flag_spec=
311
 
      ;;
312
 
    uts4*)
313
 
      hardcode_libdir_flag_spec='-L$libdir'
314
 
      ;;
315
 
    dgux*)
316
 
      hardcode_libdir_flag_spec='-L$libdir'
317
 
      ;;
318
406
    sysv4*MP*)
319
407
      if test -d /usr/nec; then
320
408
        ld_shlibs=yes
324
412
      hardcode_direct=yes
325
413
      hardcode_minus_L=no
326
414
      ;;
327
 
    sysv5uw7* | unixware7*)
 
415
    sysv5OpenUNIX8* | sysv5UnixWare7* |  sysv5uw[78]* | unixware7*)
 
416
      ;;
 
417
    sysv5*)
 
418
      hardcode_libdir_flag_spec=
 
419
      ;;
 
420
    uts4*)
 
421
      hardcode_libdir_flag_spec='-L$libdir'
328
422
      ;;
329
423
    *)
330
424
      ld_shlibs=no
333
427
fi
334
428
 
335
429
# Check dynamic linker characteristics
 
430
# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER.
336
431
libname_spec='lib$name'
337
 
sys_lib_dlsearch_path_spec="/lib /usr/lib"
338
 
sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
339
432
case "$host_os" in
340
433
  aix3*)
341
 
    shlibext=so
342
434
    ;;
343
435
  aix4* | aix5*)
344
 
    shlibext=so
345
436
    ;;
346
437
  amigaos*)
347
 
    shlibext=ixlibrary
348
438
    ;;
349
439
  beos*)
350
 
    shlibext=so
351
440
    ;;
352
441
  bsdi4*)
353
 
    shlibext=so
354
 
    sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
355
 
    sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
356
442
    ;;
357
443
  cygwin* | mingw* | pw32*)
358
 
    case $GCC,$host_os in
359
 
      yes,cygwin*)
360
 
        shlibext=dll.a
361
 
        ;;
362
 
      yes,mingw*)
363
 
        shlibext=dll
364
 
        sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g"`
365
 
        ;;
366
 
      yes,pw32*)
367
 
        shlibext=dll
368
 
        ;;
369
 
      *)
370
 
        shlibext=dll
371
 
        ;;
372
 
    esac
 
444
    shrext=.dll
373
445
    ;;
374
446
  darwin* | rhapsody*)
375
 
    shlibext=dylib
 
447
    shrext=.dylib
 
448
    ;;
 
449
  dgux*)
376
450
    ;;
377
451
  freebsd1*)
378
452
    ;;
379
453
  freebsd*)
380
 
    shlibext=so
381
454
    ;;
382
455
  gnu*)
383
 
    shlibext=so
384
456
    ;;
385
457
  hpux9* | hpux10* | hpux11*)
386
 
    shlibext=sl
 
458
    case "$host_cpu" in
 
459
      ia64*)
 
460
        shrext=.so
 
461
        ;;
 
462
      hppa*64*)
 
463
        shrext=.sl
 
464
        ;;
 
465
      *)
 
466
        shrext=.sl
 
467
        ;;
 
468
    esac
387
469
    ;;
388
 
  irix5* | irix6*)
389
 
    shlibext=so
 
470
  irix5* | irix6* | nonstopux*)
390
471
    case "$host_os" in
391
 
      irix5*)
 
472
      irix5* | nonstopux*)
392
473
        libsuff= shlibsuff=
393
474
        ;;
394
475
      *)
395
476
        case $LD in
396
 
          *-32|*"-32 ") libsuff= shlibsuff= ;;
397
 
          *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 ;;
398
 
          *-64|*"-64 ") libsuff=64 shlibsuff=64 ;;
 
477
          *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;;
 
478
          *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;;
 
479
          *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;;
399
480
          *) libsuff= shlibsuff= ;;
400
481
        esac
401
482
        ;;
402
483
    esac
403
 
    sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
404
 
    sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
405
 
    ;;
406
 
  linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
407
 
    ;;
408
 
  linux-gnu*)
409
 
    shlibext=so
 
484
    ;;
 
485
  linux*oldld* | linux*aout* | linux*coff*)
 
486
    ;;
 
487
  linux*)
410
488
    ;;
411
489
  netbsd*)
412
 
    shlibext=so
413
490
    ;;
414
491
  newsos6)
415
 
    shlibext=so
 
492
    ;;
 
493
  nto-qnx)
416
494
    ;;
417
495
  openbsd*)
418
 
    shlibext=so
419
496
    ;;
420
497
  os2*)
421
498
    libname_spec='$name'
422
 
    shlibext=dll
 
499
    shrext=.dll
423
500
    ;;
424
501
  osf3* | osf4* | osf5*)
425
 
    shlibext=so
426
 
    sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
427
 
    sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
428
502
    ;;
429
503
  sco3.2v5*)
430
 
    shlibext=so
431
504
    ;;
432
505
  solaris*)
433
 
    shlibext=so
434
506
    ;;
435
507
  sunos4*)
436
 
    shlibext=so
437
508
    ;;
438
509
  sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
439
 
    shlibext=so
440
 
    case "$host_vendor" in
441
 
      motorola)
442
 
        sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
443
 
        ;;
444
 
    esac
 
510
    ;;
 
511
  sysv4*MP*)
445
512
    ;;
446
513
  uts4*)
447
 
    shlibext=so
448
 
    ;;
449
 
  dgux*)
450
 
    shlibext=so
451
 
    ;;
452
 
  sysv4*MP*)
453
 
    if test -d /usr/nec; then
454
 
      shlibext=so
455
 
    fi
456
514
    ;;
457
515
esac
458
516
 
459
517
sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
460
518
escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
 
519
shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
461
520
escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
462
 
escaped_sys_lib_search_path_spec=`echo "X$sys_lib_search_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
463
 
escaped_sys_lib_dlsearch_path_spec=`echo "X$sys_lib_dlsearch_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
464
521
 
465
522
sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
466
523
 
488
545
# resulting binary.
489
546
hardcode_minus_L="$hardcode_minus_L"
490
547
 
491
 
# Compile-time system search path for libraries
492
 
sys_lib_search_path_spec="$escaped_sys_lib_search_path_spec"
493
 
 
494
 
# Run-time system search path for libraries
495
 
sys_lib_dlsearch_path_spec="$escaped_sys_lib_dlsearch_path_spec"
496
 
 
497
548
EOF