diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-06 11:57:56 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-06 11:57:56 +0000 |
commit | 0882d4382df1b5e3228e7373bb48cd60a48593b6 (patch) | |
tree | 61d627d0913d15e99ea6a237fa60b5d65b87a3ab | |
parent | 6bd63ea09c4c2b2913f250807e3fd1d60761bd6d (diff) | |
download | ATCD-0882d4382df1b5e3228e7373bb48cd60a48593b6.tar.gz |
ChangeLogTag: Fri Aug 06 06:55:49 1999 Jody Hagins <jody@atdesk.com>
-rw-r--r-- | ChangeLog-99b | 15 | ||||
-rw-r--r-- | include/makeinclude/rules.local.GNU | 5 |
2 files changed, 13 insertions, 7 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index be8473a4cee..dc5ae064dd6 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,10 +1,15 @@ +Fri Aug 06 06:55:49 1999 Jody Hagins <jody@atdesk.com> + + * include/makeinclude/rules.local.GNU (depend.local): added + ACE_DEPEND_SED_CMD hook, so that users can add sed scripts. + Thu Aug 5 22:26:18 1999 Douglas C. Schmidt <schmidt@mambo.cs.wustl.edu> - * ace/OS.h (ACE_OS): Added support for strptime() for platforms that lack it. - Thanks to Kevin Lyda <kevin.lyda@trintech.com> for contributing - this. Note that if a platform fails to compile because it - doesn't support this function, please enable ACE_LACKS_STRPTIME - in the config.h file and send us email. + * ace/OS.h (ACE_OS): Added support for strptime() for platforms that + lack it. Thanks to Kevin Lyda <kevin.lyda@trintech.com> for + contributing this. Note that if a platform fails to compile + because it doesn't support this function, please enable + ACE_LACKS_STRPTIME in the config.h file and send us email. Thu Aug 05 21:37:05 1999 David L. Levine <levine@cs.wustl.edu> diff --git a/include/makeinclude/rules.local.GNU b/include/makeinclude/rules.local.GNU index 5af8b175996..46b190e81e8 100644 --- a/include/makeinclude/rules.local.GNU +++ b/include/makeinclude/rules.local.GNU @@ -197,14 +197,15 @@ depend.local: $(MAKEFILE) @cat $(MAKEFILE) | \ sed -e "s;$(TAO_ROOT);\$$(TAO_ROOT);g" \ -e "s;$(ACE_ROOT);\$$(ACE_ROOT);g" \ + $(ACE_DEPEND_SED_CMD) \ -e '/$$(ACE_ROOT)\/ace\/config[^\.]*\.h/d' \ -e "s; /[-a-zA-Z0-9_./]*\.h;;g" \ -e "s;\([-a-zA-Z0-9._]*\)\.o:;.obj/\1.o .obj/\1.$(SOEXT) $(VSHDIR)\1.o $(VSHDIR)\1.$(SOEXT):;" \ > $(MAKEFILE).new @cat $(MAKEFILE).new >$(MAKEFILE) @$(RM) $(MAKEFILE).new - @if cmp -s $(MAKEFILE) $(MAKEFILE).old ;\ - then echo "Makefile dependencies unchanged." ;\ + @if cmp -s $(MAKEFILE) $(MAKEFILE).old ;\ + then echo "Makefile dependencies unchanged." ;\ else \ echo "Makefile dependencies updated." ;\ fi ;\ |