mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
* extra-lib.mk: Skip the hair if $(object-suffixes-$(lib)) is empty.
* posix/glob.h [_AMIGA]: Remove `struct stat;' forward decl.
This commit is contained in:
parent
a5b7bf0e62
commit
a13dab1c0f
3 changed files with 11 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
||||||
Mon May 13 12:03:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
Mon May 13 12:03:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* extra-lib.mk: Skip the hair if $(object-suffixes-$(lib)) is empty.
|
||||||
|
|
||||||
|
* posix/glob.h [_AMIGA]: Remove `struct stat;' forward decl.
|
||||||
|
|
||||||
* configure.in (--with-fp): Note in help string that it's the default.
|
* configure.in (--with-fp): Note in help string that it's the default.
|
||||||
|
|
||||||
* locale/programs/ld-ctype.c (struct locale_ctype_t): Use u_int32_t
|
* locale/programs/ld-ctype.c (struct locale_ctype_t): Use u_int32_t
|
||||||
|
|
|
@ -10,6 +10,8 @@ extra-libs-left := $(filter-out $(lib),$(extra-libs-left))
|
||||||
|
|
||||||
object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
|
object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
|
||||||
|
|
||||||
|
ifneq (,$(object-suffixes-$(lib)))
|
||||||
|
|
||||||
# Make sure these are simply-expanded variables before we append to them,
|
# Make sure these are simply-expanded variables before we append to them,
|
||||||
# since we want the expressions we append to be expanded right now.
|
# since we want the expressions we append to be expanded right now.
|
||||||
install-lib := $(install-lib)
|
install-lib := $(install-lib)
|
||||||
|
@ -38,3 +40,5 @@ $(common-objpfx)$(patsubst %,$(libtype$o),$(lib:lib%=%)): \
|
||||||
endef
|
endef
|
||||||
object-suffixes-left = $(object-suffixes-$(lib))
|
object-suffixes-left = $(object-suffixes-$(lib))
|
||||||
include $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-$(lib)))
|
include $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-$(lib)))
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1991, 1992, 1995 Free Software Foundation, Inc.
|
/* Copyright (C) 1991, 1992, 1995, 1996 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public License as
|
modify it under the terms of the GNU Library General Public License as
|
||||||
|
@ -65,7 +65,9 @@ extern "C"
|
||||||
#define GLOB_NOMATCH 3 /* No matches found. */
|
#define GLOB_NOMATCH 3 /* No matches found. */
|
||||||
|
|
||||||
/* Structure describing a globbing run. */
|
/* Structure describing a globbing run. */
|
||||||
|
#ifndef _AMIGA /* Buggy compiler. */
|
||||||
struct stat;
|
struct stat;
|
||||||
|
#endif
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
int gl_pathc; /* Count of paths matched by the pattern. */
|
int gl_pathc; /* Count of paths matched by the pattern. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue