Jumbo patch:
* Imported beans and serialization * Updated IA-64 port * Miscellaneous bug fixes From-SVN: r34028
This commit is contained in:
@@ -99,6 +99,7 @@ OBJDUMP = @OBJDUMP@
|
||||
PACKAGE = @PACKAGE@
|
||||
PERL = @PERL@
|
||||
RANLIB = @RANLIB@
|
||||
SYSDEP_SOURCES = @SYSDEP_SOURCES@
|
||||
SYSTEMSPEC = @SYSTEMSPEC@
|
||||
THREADDEPS = @THREADDEPS@
|
||||
THREADINCS = @THREADINCS@
|
||||
@@ -127,7 +128,7 @@ DIST_COMMON = ./stamp-h.in Makefile.am Makefile.in config.h.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
@@ -224,7 +225,7 @@ distdir: $(DISTFILES)
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
if test -d $$d/$$file; then \
|
||||
cp -pr $$d/$$file $(distdir)/$$file; \
|
||||
cp -pr $$/$$file $(distdir)/$$file; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||
|
||||
@@ -344,8 +344,14 @@
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Define if gethostbyname_r is only declared if _REENTRANT is defined */
|
||||
#undef GETHOSTBYNAME_R_NEEDS_REENTRANT
|
||||
/* Required define if using POSIX threads */
|
||||
#undef _REENTRANT
|
||||
|
||||
/* Required define if using POSIX threads */
|
||||
#undef _POSIX_PTHREAD_SEMANTICS
|
||||
|
||||
/* Required define if using POSIX threads */
|
||||
#undef _REENTRANT
|
||||
|
||||
/* Define if struct hostent_data is defined in netdb.h */
|
||||
#undef HAVE_STRUCT_HOSTENT_DATA
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// default-signal.h - Catch runtime signals and turn them into exceptions.
|
||||
|
||||
/* Copyright (C) 1998, 1999 Free Software Foundation
|
||||
/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
|
||||
|
||||
This file is part of libgcj.
|
||||
|
||||
@@ -38,7 +38,7 @@ do \
|
||||
} \
|
||||
while (0)
|
||||
|
||||
#define MAKE_THROW_FRAME do {} while (0)
|
||||
#define MAKE_THROW_FRAME(_exception) do {} while (0)
|
||||
|
||||
#else /* SJLJ_EXCEPTIONS */
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ details. */
|
||||
#define SIGNAL_HANDLER(_name) \
|
||||
static void _name (int _dummy)
|
||||
|
||||
#define MAKE_THROW_FRAME \
|
||||
#define MAKE_THROW_FRAME(_exception) \
|
||||
do \
|
||||
{ \
|
||||
void **_p = (void **)&_dummy; \
|
||||
|
||||
Reference in New Issue
Block a user