diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-28 17:34:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-28 17:34:53 +0000 |
commit | 1f749a3ba208fd615b5524eb6bbeea212211ff1a (patch) | |
tree | c96fb0fa27afb98d3e6ef86b8b4a73a8bec0c4c4 /sysdeps/unix/sysv/sysv4/solaris2/configure | |
parent | 744541835ff4c65c32cf5ce4c08b070d5f50d0ba (diff) | |
download | glibc-1f749a3ba208fd615b5524eb6bbeea212211ff1a.tar.gz |
Update.
* sysdeps/unix/sysv/sysv4/solaris2/configure.in: New file.
* sysdeps/unix/sysv/sysv4/solaris2/configure: New file.
* sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c: New file.
Patch by Jeff Bailey <jbailey@phn.ca>.
Diffstat (limited to 'sysdeps/unix/sysv/sysv4/solaris2/configure')
-rwxr-xr-x | sysdeps/unix/sysv/sysv4/solaris2/configure | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/sysv4/solaris2/configure b/sysdeps/unix/sysv/sysv4/solaris2/configure new file mode 100755 index 0000000000..9dc976812c --- /dev/null +++ b/sysdeps/unix/sysv/sysv4/solaris2/configure @@ -0,0 +1,31 @@ + # Local configure fragment for sysdeps/unix/sysv/sysv4/solaris2 + +# Concensus on stdio is that it's broken. +test $stdio = default && stdio=libio + +# Crypt is your friend. +case $add_ons in + *crypt*) + message= + ;; + *) + message="\ +*** WARNING: +*** Are you sure you do not want to use the \`crypt' add-on?" + ;; +esac + +if test "$message"; then + if test $enable_sanity = yes; then + echo "\ +*** You should not compile the GNU libc without the \`crypt' add-on. +*** Not using them risks to be incompatible with the libraries of +*** other systems. Consider getting the add-on and restart the +*** configuration. +*** If you reall mean to avoid this add-on run configure again, now +*** using the extra parameter \`--disable-sanity-checks'." + exit 1 + else + echo "$message" + fi +fi |