about summary refs log tree commit diff
path: root/config.make.in
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-03-10 04:12:12 +0000
committerRoland McGrath <roland@gnu.org>1995-03-10 04:12:12 +0000
commitff3d7ed36ae26261cc1c76e5f03ee053d65f9229 (patch)
treed3d4e3f17f3c4e7b6ff183615531400397655767 /config.make.in
parentd8cc5f0c6a4c3efe88076c05c4e42cf2108b3763 (diff)
downloadglibc-ff3d7ed36ae26261cc1c76e5f03ee053d65f9229.tar.gz
glibc-ff3d7ed36ae26261cc1c76e5f03ee053d65f9229.tar.xz
glibc-ff3d7ed36ae26261cc1c76e5f03ee053d65f9229.zip
* configure.in: Use AC_CHECK_TOOL for CC, AR, RANLIB. Accept args
 	--enable-shared, --enable-profile, --enable-omitfp; pass settings
 	through to config.make.
	* config.make.in (build-shared, build-profile, build-omitfp): New
 	config vars.
Diffstat (limited to 'config.make.in')
-rw-r--r--config.make.in12
1 files changed, 10 insertions, 2 deletions
diff --git a/config.make.in b/config.make.in
index b2105e01af..ba5b891b0d 100644
--- a/config.make.in
+++ b/config.make.in
@@ -2,18 +2,26 @@
 # From $Id$.
 # Don't edit this file.  Put configuration parameters in configparms instead.
 
+# Installation prefixes.
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+# System configuration.
 config-machine = @host_cpu@
 config-vendor = @host_vendor@
 config-os = @host_os@
 config-sysdirs = @sysnames@
 
-prefix = @prefix@
-exec_prefix = @exec_prefix@
 config-defines = @DEFS@
+
+# Configureation options.
 gnu-as = @gnu_as@
 gnu-ld = @gnu_ld@
 elf = @elf@
 weak-symbols = @weak@
+build-shared = @shared@
+build-profile = @profile@
+build-omitfp = @omitfp@
 
 CC = @CC@
 AR = @AR@