summaryrefslogtreecommitdiff
path: root/config.make.in
diff options
context:
space:
mode:
Diffstat (limited to 'config.make.in')
-rw-r--r--config.make.in50
1 files changed, 38 insertions, 12 deletions
diff --git a/config.make.in b/config.make.in
index 0f3d0b66..fe4b1e65 100644
--- a/config.make.in
+++ b/config.make.in
@@ -1,29 +1,39 @@
# @configure_input@
+# What version of the Hurd is this?
+hurd-version := @PACKAGE_VERSION@
+
# Machine architecture.
machine = @host_cpu@
asm_syntax = @asm_syntax@
+# Build options.
+build-profiled = @enable_profile@
+build-static = @enable_static_progs@
+boot-store-types = @boot_store_types@
+
# Prefix prepended to names of machine-independent installed files.
prefix = @prefix@
# Prefix prepended to names of machine-dependent installed files.
exec_prefix = @exec_prefix@
# Directories where things get installed.
-hurddir = $(exec_prefix)/hurd
-libdir = $(exec_prefix)/lib
-bindir = $(exec_prefix)/bin
-sbindir = $(exec_prefix)/sbin
-includedir = $(exec_prefix)/include
-libexecdir = $(exec_prefix)/libexec
-infodir = $(prefix)/info
-sysconfdir = $(prefix)/etc
-localstatedir = $(prefix)/var
-sharedstatedir = $(prefix)/com
+hurddir = ${exec_prefix}/hurd
+libdir = @libdir@
+bindir = @bindir@
+sbindir = @sbindir@
+includedir = @includedir@
+libexecdir = @libexecdir@
+bootdir = ${exec_prefix}/boot
+infodir = @infodir@
+sysconfdir = @sysconfdir@
+localstatedir = @localstatedir@
+sharedstatedir = @sharedstatedir@
+datadir = @datadir@
# All of those directories together:
installationdirlist = $(hurddir) $(libdir) $(bindir) $(sbindir) \
- $(includedir) $(libexecdir) $(infodir) $(sysconfdir) \
+ $(includedir) $(libexecdir) $(bootdir) $(infodir) $(sysconfdir) \
$(localstatedir) $(sharedstatedir)
@@ -36,16 +46,32 @@ AR = @AR@
RANLIB = @RANLIB@
MIG = @MIG@
MIGCOM = $(MIG) -cc cat - /dev/null
+AWK = @AWK@
-# Compilation flags. Append these to the definitions already made by
+# Compilation flags. Append these to the definitions already made by
# the specific Makefile.
CPPFLAGS += @CPPFLAGS@ @DEFS@
CFLAGS += @CFLAGS@
LDFLAGS += @LDFLAGS@
+gnu89-inline-CFLAGS = @libc_cv_gnu89_inline@
+
+# `yes' or `no' to indicate if ld --version-script is available.
+VERSIONING = @VERSIONING@
+
# If a separate libcrypt is available, use it.
LIBCRYPT = @LIBCRYPT@
+# How to link against Parted libraries, if at all.
+PARTED_LIBS = @PARTED_LIBS@
+
+# How to compile and link against ncursesw.
+LIBNCURSESW = @LIBNCURSESW@
+NCURSESW_INCLUDE = @NCURSESW_INCLUDE@
+
+# Whether Sun RPC support is available.
+HAVE_SUN_RPC = @HAVE_SUN_RPC@
+
# Installation tools.
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@