diff options
author | Roland McGrath <roland@gnu.org> | 1995-05-20 00:13:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-05-20 00:13:43 +0000 |
commit | a2fe9c76a9d7645c63288eda807e01a6b1901d29 (patch) | |
tree | 68882cda9fe373eda0ecaa70503d34812186138d /Makeconfig | |
parent | 2b83a2a4d978012cdf78b648337c31091e20526d (diff) | |
download | glibc-a2fe9c76a9d7645c63288eda807e01a6b1901d29.tar glibc-a2fe9c76a9d7645c63288eda807e01a6b1901d29.tar.gz glibc-a2fe9c76a9d7645c63288eda807e01a6b1901d29.tar.bz2 glibc-a2fe9c76a9d7645c63288eda807e01a6b1901d29.zip |
Fri May 19 17:16:46 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* sysdeps/mach/hurd/i386/init-first.c: In cthreads case, handle
args on stack from kernel.
* posix/Makefile, sysdeps/alpha/Makefile,
* sysdeps/mach/hurd/Makefile, sysdeps/sparc/Makefile, Makefile,
* Makerules, Make-dist: Fix "cvs commit" cmds in rules to not fail
in the absence of CVS dirs.
* hurd/hurdstartup.c: Don't call __mach_init. Grok args from the
kernel on the stack properly.
* set-init.c: Never call _init/_fini; just run __libc_subinit.
* Makerules (LDFLAGS-c.so): Add -nostartfiles.
* mach/Machrules (LDFLAGS-$(interface.so)): Likewise.
* configure.in: Move defaulting of --with-elf and --with-gnu-*
based on host os outside the AC_CACHE_VAL for the sysdirs
calculation.
* Makeconfig (localedir, nlsdir): New variables.
* values.h: New file.
* Makefile (headers): Add values.h.
* locale/Makefile (distribute): Add error.h.
* locale/localedef.c: Include "error.h".
(main): Use error_message_count instead of warning_cntr.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makeconfig b/Makeconfig index f001982496..620f23d991 100644 --- a/Makeconfig +++ b/Makeconfig @@ -143,7 +143,7 @@ includedir = $(exec_prefix)/include endif # Where to install machine-independent data files. -# These are the timezone database, and eventually the locale database. +# These are the timezone database, and the locale database. ifndef datadir datadir = $(prefix)/share endif @@ -153,6 +153,18 @@ ifndef zonedir zonedir = $(datadir)/zoneinfo endif +# Where to install the locale data files (which are machine-independent). +ifndef localedir +localedir = $(datadir)/locale +endif + +# Where to install the locale charmap and message catalog files (which are +# machine-independent). +ifndef nlsdir +nlsdir = $(datadir)/nls +endif + + # Where to install programs. ifndef bindir bindir = $(exec_prefix)/bin |