diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-12-07 16:35:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-12-07 16:35:21 +0000 |
commit | b38bb8ca8c9a7652087405d851e9ba6c55305854 (patch) | |
tree | ef870fdb1626fb059d837310bd7dcaf8b69149fc | |
parent | a94b2ac0aaa1026e421389745d473e93fe56218f (diff) | |
download | glibc-b38bb8ca8c9a7652087405d851e9ba6c55305854.tar glibc-b38bb8ca8c9a7652087405d851e9ba6c55305854.tar.gz glibc-b38bb8ca8c9a7652087405d851e9ba6c55305854.tar.bz2 glibc-b38bb8ca8c9a7652087405d851e9ba6c55305854.zip |
* configure.in: Disable --disable-static.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.in | 8 |
2 files changed, 7 insertions, 3 deletions
@@ -19,6 +19,8 @@ * Makeconfig (link-libc-static): Don't use link-libc since this includes the shared object. Use gnulib only. + * configure.in: Disable --disable-static. + 1998-12-07 12:06 Ulrich Drepper <drepper@cygnus.com> * po/de.po: Update from translation team. diff --git a/configure.in b/configure.in index 7486197c1b..2bb29d4cb1 100644 --- a/configure.in +++ b/configure.in @@ -70,9 +70,11 @@ AC_ARG_ENABLE(sanity-checks, dnl dnl Arguments to enable or disable building the static, shared, profiled, dnl and -fomit-frame-pointer libraries. -AC_ARG_ENABLE(static, dnl -[ --enable-static build static library [default=yes]], - static=$enableval, static=yes) +dnl I've disabled this for now since we cannot build glibc without static +dnl libraries built in the moment. +dnl AC_ARG_ENABLE(static, dnl +dnl [ --enable-static build static library [default=yes]], +dnl static=$enableval, static=yes) AC_ARG_ENABLE(shared, dnl [ --enable-shared build shared library [default=yes if GNU ld & ELF]], shared=$enableval, shared=default) |