This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: (libf2c) libu77 struct timezone configuration fix


>>>>> "Jeff" == Jeffrey A Law <law@upchuck.cygnus.com> writes:

 Jeff> Some systems simply don't define a struct timezone.  It simply doesn't
 Jeff> exist (or you have to turn on magic BLAH_SOURCE macros to expose it).
 Jeff> Thus trying to declare a variable of that type loses badly.

Sure, that's not an issue.

 Jeff> As to not putting it in aclocal.m4, I've got no strong opinions
 Jeff> on that.

ISTM that it makes maintenance harder.  Given it's there, this should
be added.

1999-04-15  Dave Love  <fx@gnu.org>

	* libU77/Makefile.in (${srcdir}/configure): Depend on aclocal.m4.
	(${srcdir}/stamp-h.in): Likewise.

Index: Makefile.in
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/libf2c/libU77/Makefile.in,v
retrieving revision 1.13
diff -u -p -r1.13 Makefile.in
--- Makefile.in	1999/03/06 00:02:54	1.13
+++ Makefile.in	1999/04/15 18:57:05
@@ -1,5 +1,5 @@
 # Makefile for GNU F77 compiler runtime, libc interface.
-# Copyright (C) 1995-1998 Free Software Foundation, Inc.
+# Copyright (C) 1995-1999 Free Software Foundation, Inc.
 #   Contributed by Dave Love (d.love@dl.ac.uk).
 #
 #This file is part of the GNU Fortran libU77 library.
@@ -96,11 +96,11 @@ config.status: configure
 	CONFIG_SITE=no-such-file CC='$(CC)' AR='$(AR)' CFLAGS='$(CFLAGS)' \
 	  CPPFLAGS='$(CPPFLAGS)' $(SHELL) config.status --recheck
 
-${srcdir}/configure: configure.in
+${srcdir}/configure: configure.in aclocal.m4
 	cd ${srcdir} && autoconf
 
 ${srcdir}/config.hin: stamp-h.in
-${srcdir}/stamp-h.in: configure.in acconfig.h
+${srcdir}/stamp-h.in: configure.in aclocal.m4 acconfig.h
 	cd ${srcdir} && autoheader
 	echo timestamp > ${srcdir}/stamp-h.in

 >> BTW, presumably dmg would appreciate such changes for the canonical
 >> libf2c.

 Jeff> I already brought this up with Craig -- it's not an issue for
 Jeff> libU77 stuff.

Sorry, I must have got confused about what I was replying to.  I meant
it in connexion with the [de]time stuff.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]