Update.
[platform/upstream/glibc.git] / sysdeps / unix / sysv / linux / configure
1  # Local configure fragment for sysdeps/unix/sysv/linux.
2
3 # On Linux, the default is to use libio instead of stdio.
4 test $stdio = default && stdio=libio
5
6 # Don't bother trying to generate any glue code to be compatible with the
7 # existing system library, because we are the only system library.
8 inhibit_glue=yes
9
10 if test -n "$sysheaders"; then
11   OLD_CPPFLAGS=$CPPFLAGS
12   CPPFLAGS="$CPPFLAGS $SYSINCLUDES"
13 fi
14 echo $ac_n "checking installed Linux kernel header files""... $ac_c" 1>&6
15 echo "configure:16: checking installed Linux kernel header files" >&5
16 if eval "test \"`echo '$''{'libc_cv_linux2010'+set}'`\" = set"; then
17   echo $ac_n "(cached) $ac_c" 1>&6
18 else
19   cat > conftest.$ac_ext <<EOF
20 #line 21 "configure"
21 #include "confdefs.h"
22 #include <linux/version.h>
23 #if !defined LINUX_VERSION_CODE || LINUX_VERSION_CODE <  (2 *65536+ 0 *256+ 10) /* 2.0.10 */
24 eat flaming death
25 #endif
26 EOF
27 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
28   egrep "eat flaming death" >/dev/null 2>&1; then
29   rm -rf conftest*
30   libc_cv_linux2010='TOO OLD!'
31 else
32   rm -rf conftest*
33   libc_cv_linux2010='2.0.10 or later'
34 fi
35 rm -f conftest*
36
37 fi
38
39 echo "$ac_t""$libc_cv_linux2010" 1>&6
40 if test "$libc_cv_linux2010" != '2.0.10 or later'; then
41   { echo "configure: error: GNU libc requires kernel header files from
42 Linux 2.0.10 or later to be installed before configuring.
43 The kernel header files are found usually in /usr/include/asm and
44 /usr/include/linux; make sure these directories use files from
45 Linux 2.0.10 or later.  This check uses <linux/version.h>, so
46 make sure that file was built correctly when installing the kernel header
47 files.  To use kernel headers not from /usr/include/linux, use the
48 configure option --with-headers." 1>&2; exit 1; }
49 fi
50
51 # If the user gave a minimal version number test whether the available
52 # kernel headers are young enough.  Additionally we have minimal
53 # kernel versions for some architectures.
54 case "$machine" in
55   mips*)
56     arch_minimum_kernel=2.2.15
57     ;;
58   sh*)
59     arch_minimum_kernel=2.3.99
60     ;;
61   ia64*)
62     arch_minimum_kernel=2.4.0
63     ;;
64   hppa*)
65     arch_minimum_kernel=2.3.99
66     ;;
67   *)
68     arch_minimum_kernel=2.0.10
69     ;;
70 esac
71 if test -n "$minimum_kernel"; then
72   
73   user_version=$((`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 65536 + \2 \* 256 + \3/'`))
74   arch_version=$((`echo "$arch_minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 65536 + \2 \* 256 + \3/'`))
75   
76   if test $user_version -lt $arch_version; then
77     echo "configure: warning: minimum kernel version reset to $arch_minimum_kernel" 1>&2
78     minimum_kernel=$arch_minimum_kernel
79   fi
80 else
81   if test $arch_minimum_kernel != '2.0.10'; then
82     minimum_kernel=$arch_minimum_kernel
83   fi
84 fi
85
86 if test -n "$minimum_kernel"; then
87   echo $ac_n "checking for kernel header at least $minimum_kernel""... $ac_c" 1>&6
88 echo "configure:89: checking for kernel header at least $minimum_kernel" >&5
89   decnum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/(\1 * 65536 + \2 * 256 + \3)/'`;
90   abinum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1,\2,\3/'`;
91   cat > conftest.$ac_ext <<EOF
92 #line 93 "configure"
93 #include "confdefs.h"
94 #include <linux/version.h>
95 #if LINUX_VERSION_CODE < $decnum
96 eat flaming death
97 #endif
98 EOF
99 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
100   egrep "eat flaming death" >/dev/null 2>&1; then
101   rm -rf conftest*
102   libc_minimum_kernel='too old!'
103 else
104   rm -rf conftest*
105   libc_minimum_kernel=ok
106 fi
107 rm -f conftest*
108
109   echo "$ac_t""$libc_minimum_kernel" 1>&6
110   if test "$libc_minimum_kernel" = ok; then
111     cat >> confdefs.h <<EOF
112 #define __LINUX_KERNEL_VERSION $decnum
113 EOF
114
115     cat >> confdefs.h <<EOF
116 #define __ABI_TAG_VERSION $abinum
117 EOF
118
119   else
120     { echo "configure: error: *** The available kernel headers are older than the requested
121 *** compatible kernel version" 1>&2; exit 1; }
122   fi
123 fi
124
125 if test -n "$sysheaders"; then
126   CPPFLAGS=$OLD_CPPFLAGS
127 fi
128 # The Linux filesystem standard prescribes where to place "essential"
129 # files.  I.e., when the installation prefix is "/usr" we have to place
130 # shared library objects and the configuration files on the root partition
131 # in /lib and /etc.
132 if test "$prefix" = "/usr" -o "$prefix" = "/usr/"; then
133   # 64bit libraries on sparc go to /lib64 and not /lib
134   if test "$machine" = "sparc/sparc64"; then
135     libc_cv_slibdir="/lib64"
136     if test "$libdir" = '${exec_prefix}/lib'; then
137       libdir='${exec_prefix}/lib64';
138       # Locale data can be shared between 32bit and 64bit libraries
139       libc_cv_localedir='${exec_prefix}/lib/locale'
140     fi
141   else
142     libc_cv_slibdir="/lib"
143   fi
144   # Allow the user to override the path with --sysconfdir
145   if test $sysconfdir = '${prefix}/etc'; then
146     libc_cv_sysconfdir=/etc
147   else
148     libc_cv_sysconfdir=$sysconfdir
149    fi
150   libc_cv_rootsbindir="/sbin"
151 fi
152
153 # Under Linux the LinuxThreads add-on should be available.
154 case $add_ons in
155   # It is available.  Good.
156   *linuxthreads*)
157     message=
158     ;;
159   *)
160     message="\
161 *** WARNING: Are you sure you do not want to use the \`linuxthreads'
162 *** add-on?"
163     ;;
164 esac
165
166 if test "$message"; then
167   if test $enable_sanity = yes; then
168     echo "\
169 *** You should not compile the GNU libc without the \`linuxthreads'
170 *** add-on.  Not using them risks being incompatible with the
171 *** libraries of other systems.  Consider getting the add-on and restarting
172 *** the configuration.
173 *** If you really mean to not use this add-on, run configure again
174 *** using the extra parameter \`--disable-sanity-checks'."
175     exit 1
176   else
177     echo "$message"
178   fi
179 fi
180
181 # One Linux we use ldconfig.
182 use_ldconfig=yes
183
184 # We need some extensions to the `ldd' script.
185
186 case "$machine" in
187   i[3456]86* | m68*)
188     ldd_rewrite_script=../sysdeps/unix/sysv/linux/ldd-rewrite.sed
189     ;;
190   sparc*)
191     ldd_rewrite_script=../sysdeps/unix/sysv/linux/sparc/ldd-rewrite.sed
192     ;;
193   *)
194     ;;
195 esac
196
197
198 if test $host = $build; then
199   # If $prefix/include/{net,scsi} are symlinks, make install will
200   # clobber what they're linked to (probably a kernel tree).
201   # test -L ought to work on all Linux boxes.
202   if test "x$prefix" != xNONE; then
203     ac_prefix=$prefix
204   else
205     ac_prefix=$ac_default_prefix
206   fi
207   echo $ac_n "checking for symlinks in ${ac_prefix}/include""... $ac_c" 1>&6
208 echo "configure:209: checking for symlinks in ${ac_prefix}/include" >&5
209   ac_message=
210   if test -L ${ac_prefix}/include/net; then
211     ac_message="$ac_message
212    ${ac_prefix}/include/net is a symlink"
213   fi
214   if test -L ${ac_prefix}/include/scsi; then
215     ac_message="$ac_message
216    ${ac_prefix}/include/scsi is a symlink"
217   fi
218   if test -n "$ac_message"; then
219     { echo "configure: error: $ac_message
220 \`make install' will destroy the target of the link(s).
221 Delete the links and re-run configure, or better still, move the entire
222 ${ac_prefix}/include directory out of the way." 1>&2; exit 1; }
223   else
224     echo "$ac_t""ok" 1>&6
225   fi
226 fi