Imported Upstream version 3.1.2
[platform/upstream/libarchive.git] / build / autoconf / config.rpath
1 #! /bin/sh
2 #
3 # NOTE: This file was brought from
4 #       http://git.savannah.gnu.org/cgit/gnulib.git/plain/build-aux/config.rpath
5 #       You should sometimes check if the file is updated and bring it to
6 #       our trunk and copy this note to the top of that file.
7 #
8 # Output a system dependent set of variables, describing how to set the
9 # run time search path of shared libraries in an executable.
10 #
11 #   Copyright 1996-2011 Free Software Foundation, Inc.
12 #   Taken from GNU libtool, 2001
13 #   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
14 #
15 #   This file is free software; the Free Software Foundation gives
16 #   unlimited permission to copy and/or distribute it, with or without
17 #   modifications, as long as this notice is preserved.
18 #
19 # The first argument passed to this file is the canonical host specification,
20 #    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
21 # or
22 #    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
23 # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld
24 # should be set by the caller.
25 #
26 # The set of defined variables is at the end of this script.
27
28 # Known limitations:
29 # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer
30 #   than 256 bytes, otherwise the compiler driver will dump core. The only
31 #   known workaround is to choose shorter directory names for the build
32 #   directory and/or the installation directory.
33
34 # All known linkers require a `.a' archive for static linking (except MSVC,
35 # which needs '.lib').
36 libext=a
37 shrext=.so
38
39 host="$1"
40 host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
41 host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
42 host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
43
44 # Code taken from libtool.m4's _LT_CC_BASENAME.
45
46 for cc_temp in $CC""; do
47   case $cc_temp in
48     compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
49     distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
50     \-*) ;;
51     *) break;;
52   esac
53 done
54 cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
55
56 # Code taken from libtool.m4's _LT_COMPILER_PIC.
57
58 wl=
59 if test "$GCC" = yes; then
60   wl='-Wl,'
61 else
62   case "$host_os" in
63     aix*)
64       wl='-Wl,'
65       ;;
66     mingw* | cygwin* | pw32* | os2* | cegcc*)
67       ;;
68     hpux9* | hpux10* | hpux11*)
69       wl='-Wl,'
70       ;;
71     irix5* | irix6* | nonstopux*)
72       wl='-Wl,'
73       ;;
74     linux* | k*bsd*-gnu | kopensolaris*-gnu)
75       case $cc_basename in
76         ecc*)
77           wl='-Wl,'
78           ;;
79         icc* | ifort*)
80           wl='-Wl,'
81           ;;
82         lf95*)
83           wl='-Wl,'
84           ;;
85         nagfor*)
86           wl='-Wl,-Wl,,'
87           ;;
88         pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
89           wl='-Wl,'
90           ;;
91         ccc*)
92           wl='-Wl,'
93           ;;
94         xl* | bgxl* | bgf* | mpixl*)
95           wl='-Wl,'
96           ;;
97         como)
98           wl='-lopt='
99           ;;
100         *)
101           case `$CC -V 2>&1 | sed 5q` in
102             *Sun\ F* | *Sun*Fortran*)
103               wl=
104               ;;
105             *Sun\ C*)
106               wl='-Wl,'
107               ;;
108           esac
109           ;;
110       esac
111       ;;
112     newsos6)
113       ;;
114     *nto* | *qnx*)
115       ;;
116     osf3* | osf4* | osf5*)
117       wl='-Wl,'
118       ;;
119     rdos*)
120       ;;
121     solaris*)
122       case $cc_basename in
123         f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
124           wl='-Qoption ld '
125           ;;
126         *)
127           wl='-Wl,'
128           ;;
129       esac
130       ;;
131     sunos4*)
132       wl='-Qoption ld '
133       ;;
134     sysv4 | sysv4.2uw2* | sysv4.3*)
135       wl='-Wl,'
136       ;;
137     sysv4*MP*)
138       ;;
139     sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
140       wl='-Wl,'
141       ;;
142     unicos*)
143       wl='-Wl,'
144       ;;
145     uts4*)
146       ;;
147   esac
148 fi
149
150 # Code taken from libtool.m4's _LT_LINKER_SHLIBS.
151
152 hardcode_libdir_flag_spec=
153 hardcode_libdir_separator=
154 hardcode_direct=no
155 hardcode_minus_L=no
156
157 case "$host_os" in
158   cygwin* | mingw* | pw32* | cegcc*)
159     # FIXME: the MSVC++ port hasn't been tested in a loooong time
160     # When not using gcc, we currently assume that we are using
161     # Microsoft Visual C++.
162     if test "$GCC" != yes; then
163       with_gnu_ld=no
164     fi
165     ;;
166   interix*)
167     # we just hope/assume this is gcc and not c89 (= MSVC++)
168     with_gnu_ld=yes
169     ;;
170   openbsd*)
171     with_gnu_ld=no
172     ;;
173 esac
174
175 ld_shlibs=yes
176 if test "$with_gnu_ld" = yes; then
177   # Set some defaults for GNU ld with shared library support. These
178   # are reset later if shared libraries are not supported. Putting them
179   # here allows them to be overridden if necessary.
180   # Unlike libtool, we use -rpath here, not --rpath, since the documented
181   # option of GNU ld is called -rpath, not --rpath.
182   hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
183   case "$host_os" in
184     aix[3-9]*)
185       # On AIX/PPC, the GNU linker is very broken
186       if test "$host_cpu" != ia64; then
187         ld_shlibs=no
188       fi
189       ;;
190     amigaos*)
191       case "$host_cpu" in
192         powerpc)
193           ;;
194         m68k)
195           hardcode_libdir_flag_spec='-L$libdir'
196           hardcode_minus_L=yes
197           ;;
198       esac
199       ;;
200     beos*)
201       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
202         :
203       else
204         ld_shlibs=no
205       fi
206       ;;
207     cygwin* | mingw* | pw32* | cegcc*)
208       # hardcode_libdir_flag_spec is actually meaningless, as there is
209       # no search path for DLLs.
210       hardcode_libdir_flag_spec='-L$libdir'
211       if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
212         :
213       else
214         ld_shlibs=no
215       fi
216       ;;
217     haiku*)
218       ;;
219     interix[3-9]*)
220       hardcode_direct=no
221       hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
222       ;;
223     gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
224       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
225         :
226       else
227         ld_shlibs=no
228       fi
229       ;;
230     netbsd*)
231       ;;
232     solaris*)
233       if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
234         ld_shlibs=no
235       elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
236         :
237       else
238         ld_shlibs=no
239       fi
240       ;;
241     sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
242       case `$LD -v 2>&1` in
243         *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
244           ld_shlibs=no
245           ;;
246         *)
247           if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
248             hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
249           else
250             ld_shlibs=no
251           fi
252           ;;
253       esac
254       ;;
255     sunos4*)
256       hardcode_direct=yes
257       ;;
258     *)
259       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
260         :
261       else
262         ld_shlibs=no
263       fi
264       ;;
265   esac
266   if test "$ld_shlibs" = no; then
267     hardcode_libdir_flag_spec=
268   fi
269 else
270   case "$host_os" in
271     aix3*)
272       # Note: this linker hardcodes the directories in LIBPATH if there
273       # are no directories specified by -L.
274       hardcode_minus_L=yes
275       if test "$GCC" = yes; then
276         # Neither direct hardcoding nor static linking is supported with a
277         # broken collect2.
278         hardcode_direct=unsupported
279       fi
280       ;;
281     aix[4-9]*)
282       if test "$host_cpu" = ia64; then
283         # On IA64, the linker does run time linking by default, so we don't
284         # have to do anything special.
285         aix_use_runtimelinking=no
286       else
287         aix_use_runtimelinking=no
288         # Test if we are trying to use run time linking or normal
289         # AIX style linking. If -brtl is somewhere in LDFLAGS, we
290         # need to do runtime linking.
291         case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
292           for ld_flag in $LDFLAGS; do
293             if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
294               aix_use_runtimelinking=yes
295               break
296             fi
297           done
298           ;;
299         esac
300       fi
301       hardcode_direct=yes
302       hardcode_libdir_separator=':'
303       if test "$GCC" = yes; then
304         case $host_os in aix4.[012]|aix4.[012].*)
305           collect2name=`${CC} -print-prog-name=collect2`
306           if test -f "$collect2name" && \
307             strings "$collect2name" | grep resolve_lib_name >/dev/null
308           then
309             # We have reworked collect2
310             :
311           else
312             # We have old collect2
313             hardcode_direct=unsupported
314             hardcode_minus_L=yes
315             hardcode_libdir_flag_spec='-L$libdir'
316             hardcode_libdir_separator=
317           fi
318           ;;
319         esac
320       fi
321       # Begin _LT_AC_SYS_LIBPATH_AIX.
322       echo 'int main () { return 0; }' > conftest.c
323       ${CC} ${LDFLAGS} conftest.c -o conftest
324       aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
325 }'`
326       if test -z "$aix_libpath"; then
327         aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
328 }'`
329       fi
330       if test -z "$aix_libpath"; then
331         aix_libpath="/usr/lib:/lib"
332       fi
333       rm -f conftest.c conftest
334       # End _LT_AC_SYS_LIBPATH_AIX.
335       if test "$aix_use_runtimelinking" = yes; then
336         hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
337       else
338         if test "$host_cpu" = ia64; then
339           hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
340         else
341           hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
342         fi
343       fi
344       ;;
345     amigaos*)
346       case "$host_cpu" in
347         powerpc)
348           ;;
349         m68k)
350           hardcode_libdir_flag_spec='-L$libdir'
351           hardcode_minus_L=yes
352           ;;
353       esac
354       ;;
355     bsdi[45]*)
356       ;;
357     cygwin* | mingw* | pw32* | cegcc*)
358       # When not using gcc, we currently assume that we are using
359       # Microsoft Visual C++.
360       # hardcode_libdir_flag_spec is actually meaningless, as there is
361       # no search path for DLLs.
362       hardcode_libdir_flag_spec=' '
363       libext=lib
364       ;;
365     darwin* | rhapsody*)
366       hardcode_direct=no
367       if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then
368         :
369       else
370         ld_shlibs=no
371       fi
372       ;;
373     dgux*)
374       hardcode_libdir_flag_spec='-L$libdir'
375       ;;
376     freebsd2.2*)
377       hardcode_libdir_flag_spec='-R$libdir'
378       hardcode_direct=yes
379       ;;
380     freebsd2*)
381       hardcode_direct=yes
382       hardcode_minus_L=yes
383       ;;
384     freebsd* | dragonfly*)
385       hardcode_libdir_flag_spec='-R$libdir'
386       hardcode_direct=yes
387       ;;
388     hpux9*)
389       hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
390       hardcode_libdir_separator=:
391       hardcode_direct=yes
392       # hardcode_minus_L: Not really in the search PATH,
393       # but as the default location of the library.
394       hardcode_minus_L=yes
395       ;;
396     hpux10*)
397       if test "$with_gnu_ld" = no; then
398         hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
399         hardcode_libdir_separator=:
400         hardcode_direct=yes
401         # hardcode_minus_L: Not really in the search PATH,
402         # but as the default location of the library.
403         hardcode_minus_L=yes
404       fi
405       ;;
406     hpux11*)
407       if test "$with_gnu_ld" = no; then
408         hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
409         hardcode_libdir_separator=:
410         case $host_cpu in
411           hppa*64*|ia64*)
412             hardcode_direct=no
413             ;;
414           *)
415             hardcode_direct=yes
416             # hardcode_minus_L: Not really in the search PATH,
417             # but as the default location of the library.
418             hardcode_minus_L=yes
419             ;;
420         esac
421       fi
422       ;;
423     irix5* | irix6* | nonstopux*)
424       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
425       hardcode_libdir_separator=:
426       ;;
427     netbsd*)
428       hardcode_libdir_flag_spec='-R$libdir'
429       hardcode_direct=yes
430       ;;
431     newsos6)
432       hardcode_direct=yes
433       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
434       hardcode_libdir_separator=:
435       ;;
436     *nto* | *qnx*)
437       ;;
438     openbsd*)
439       if test -f /usr/libexec/ld.so; then
440         hardcode_direct=yes
441         if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
442           hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
443         else
444           case "$host_os" in
445             openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
446               hardcode_libdir_flag_spec='-R$libdir'
447               ;;
448             *)
449               hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
450               ;;
451           esac
452         fi
453       else
454         ld_shlibs=no
455       fi
456       ;;
457     os2*)
458       hardcode_libdir_flag_spec='-L$libdir'
459       hardcode_minus_L=yes
460       ;;
461     osf3*)
462       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
463       hardcode_libdir_separator=:
464       ;;
465     osf4* | osf5*)
466       if test "$GCC" = yes; then
467         hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
468       else
469         # Both cc and cxx compiler support -rpath directly
470         hardcode_libdir_flag_spec='-rpath $libdir'
471       fi
472       hardcode_libdir_separator=:
473       ;;
474     solaris*)
475       hardcode_libdir_flag_spec='-R$libdir'
476       ;;
477     sunos4*)
478       hardcode_libdir_flag_spec='-L$libdir'
479       hardcode_direct=yes
480       hardcode_minus_L=yes
481       ;;
482     sysv4)
483       case $host_vendor in
484         sni)
485           hardcode_direct=yes # is this really true???
486           ;;
487         siemens)
488           hardcode_direct=no
489           ;;
490         motorola)
491           hardcode_direct=no #Motorola manual says yes, but my tests say they lie
492           ;;
493       esac
494       ;;
495     sysv4.3*)
496       ;;
497     sysv4*MP*)
498       if test -d /usr/nec; then
499         ld_shlibs=yes
500       fi
501       ;;
502     sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
503       ;;
504     sysv5* | sco3.2v5* | sco5v6*)
505       hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
506       hardcode_libdir_separator=':'
507       ;;
508     uts4*)
509       hardcode_libdir_flag_spec='-L$libdir'
510       ;;
511     *)
512       ld_shlibs=no
513       ;;
514   esac
515 fi
516
517 # Check dynamic linker characteristics
518 # Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER.
519 # Unlike libtool.m4, here we don't care about _all_ names of the library, but
520 # only about the one the linker finds when passed -lNAME. This is the last
521 # element of library_names_spec in libtool.m4, or possibly two of them if the
522 # linker has special search rules.
523 library_names_spec=      # the last element of library_names_spec in libtool.m4
524 libname_spec='lib$name'
525 case "$host_os" in
526   aix3*)
527     library_names_spec='$libname.a'
528     ;;
529   aix[4-9]*)
530     library_names_spec='$libname$shrext'
531     ;;
532   amigaos*)
533     case "$host_cpu" in
534       powerpc*)
535         library_names_spec='$libname$shrext' ;;
536       m68k)
537         library_names_spec='$libname.a' ;;
538     esac
539     ;;
540   beos*)
541     library_names_spec='$libname$shrext'
542     ;;
543   bsdi[45]*)
544     library_names_spec='$libname$shrext'
545     ;;
546   cygwin* | mingw* | pw32* | cegcc*)
547     shrext=.dll
548     library_names_spec='$libname.dll.a $libname.lib'
549     ;;
550   darwin* | rhapsody*)
551     shrext=.dylib
552     library_names_spec='$libname$shrext'
553     ;;
554   dgux*)
555     library_names_spec='$libname$shrext'
556     ;;
557   freebsd* | dragonfly*)
558     case "$host_os" in
559       freebsd[123]*)
560         library_names_spec='$libname$shrext$versuffix' ;;
561       *)
562         library_names_spec='$libname$shrext' ;;
563     esac
564     ;;
565   gnu*)
566     library_names_spec='$libname$shrext'
567     ;;
568   haiku*)
569     library_names_spec='$libname$shrext'
570     ;;
571   hpux9* | hpux10* | hpux11*)
572     case $host_cpu in
573       ia64*)
574         shrext=.so
575         ;;
576       hppa*64*)
577         shrext=.sl
578         ;;
579       *)
580         shrext=.sl
581         ;;
582     esac
583     library_names_spec='$libname$shrext'
584     ;;
585   interix[3-9]*)
586     library_names_spec='$libname$shrext'
587     ;;
588   irix5* | irix6* | nonstopux*)
589     library_names_spec='$libname$shrext'
590     case "$host_os" in
591       irix5* | nonstopux*)
592         libsuff= shlibsuff=
593         ;;
594       *)
595         case $LD in
596           *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;;
597           *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;;
598           *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;;
599           *) libsuff= shlibsuff= ;;
600         esac
601         ;;
602     esac
603     ;;
604   linux*oldld* | linux*aout* | linux*coff*)
605     ;;
606   linux* | k*bsd*-gnu | kopensolaris*-gnu)
607     library_names_spec='$libname$shrext'
608     ;;
609   knetbsd*-gnu)
610     library_names_spec='$libname$shrext'
611     ;;
612   netbsd*)
613     library_names_spec='$libname$shrext'
614     ;;
615   newsos6)
616     library_names_spec='$libname$shrext'
617     ;;
618   *nto* | *qnx*)
619     library_names_spec='$libname$shrext'
620     ;;
621   openbsd*)
622     library_names_spec='$libname$shrext$versuffix'
623     ;;
624   os2*)
625     libname_spec='$name'
626     shrext=.dll
627     library_names_spec='$libname.a'
628     ;;
629   osf3* | osf4* | osf5*)
630     library_names_spec='$libname$shrext'
631     ;;
632   rdos*)
633     ;;
634   solaris*)
635     library_names_spec='$libname$shrext'
636     ;;
637   sunos4*)
638     library_names_spec='$libname$shrext$versuffix'
639     ;;
640   sysv4 | sysv4.3*)
641     library_names_spec='$libname$shrext'
642     ;;
643   sysv4*MP*)
644     library_names_spec='$libname$shrext'
645     ;;
646   sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
647     library_names_spec='$libname$shrext'
648     ;;
649   tpf*)
650     library_names_spec='$libname$shrext'
651     ;;
652   uts4*)
653     library_names_spec='$libname$shrext'
654     ;;
655 esac
656
657 sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
658 escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
659 shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
660 escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
661 escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
662 escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
663
664 LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
665
666 # How to pass a linker flag through the compiler.
667 wl="$escaped_wl"
668
669 # Static library suffix (normally "a").
670 libext="$libext"
671
672 # Shared library suffix (normally "so").
673 shlibext="$shlibext"
674
675 # Format of library name prefix.
676 libname_spec="$escaped_libname_spec"
677
678 # Library names that the linker finds when passed -lNAME.
679 library_names_spec="$escaped_library_names_spec"
680
681 # Flag to hardcode \$libdir into a binary during linking.
682 # This must work even if \$libdir does not exist.
683 hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
684
685 # Whether we need a single -rpath flag with a separated argument.
686 hardcode_libdir_separator="$hardcode_libdir_separator"
687
688 # Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
689 # resulting binary.
690 hardcode_direct="$hardcode_direct"
691
692 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
693 # resulting binary.
694 hardcode_minus_L="$hardcode_minus_L"
695
696 EOF