diff options
author | Christopher Faylor <me@cgf.cx> | 2002-06-06 01:49:56 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-06-06 01:49:56 +0000 |
commit | f7a7cc906744610f140bd40d0246a992fa6d40c3 (patch) | |
tree | 4caf50de4e5fdcf0b86ff6ed332f18aaaebff918 /winsup | |
parent | 784e340c03456ae1b979d8d7e72e551681aafa46 (diff) | |
download | cygnal-f7a7cc906744610f140bd40d0246a992fa6d40c3.tar.gz cygnal-f7a7cc906744610f140bd40d0246a992fa6d40c3.tar.bz2 cygnal-f7a7cc906744610f140bd40d0246a992fa6d40c3.zip |
* child_info.h (CHILD_INFO_MAGIC): Oops. Revert previous change. gcc 3.1 bug?
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/Makefile.in | 4 | ||||
-rw-r--r-- | winsup/cygwin/child_info.h | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index ea68c77b6..48a5f8955 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,10 @@ 2002-06-05 Christopher Faylor <cgf@redhat.com> + * child_info.h (CHILD_INFO_MAGIC): Oops. Revert previous change. gcc + 3.1 bug? + +2002-06-05 Christopher Faylor <cgf@redhat.com> + * child_info.h (CHILD_INFO_MAGIC): Update. 2002-06-05 Christopher Faylor <cgf@redhat.com> diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 420ac8daf..7a04b566d 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -276,10 +276,10 @@ version.cc winver.o: winver_stamp @ : shared_info_magic.h: cygmagic shared_info.h - /bin/sh ${word 1,$^} $@ "$(CXX) -x c++" ${word 2,$^} MOUNT_MAGIC 'class mount_info' SHARED_MAGIC 'class shared_info' + /bin/sh ${word 1,$^} $@ "$(CXX) -x c" ${word 2,$^} MOUNT_MAGIC 'class mount_info' SHARED_MAGIC 'class shared_info' child_info_magic.h: cygmagic child_info.h - /bin/sh ${word 1,$^} $@ "$(CXX) -x c++" ${word 2,$^} CHILD_INFO_MAGIC 'class child_info' + /bin/sh ${word 1,$^} $@ "$(CXX) -x c" ${word 2,$^} CHILD_INFO_MAGIC 'class child_info' dcrt0.o sigproc.o: child_info_magic.h diff --git a/winsup/cygwin/child_info.h b/winsup/cygwin/child_info.h index 1f095e233..fdfaa28ca 100644 --- a/winsup/cygwin/child_info.h +++ b/winsup/cygwin/child_info.h @@ -28,7 +28,7 @@ enum #define EXEC_MAGIC_SIZE sizeof(child_info) -#define CURR_CHILD_INFO_MAGIC 0xaec3 +#define CURR_CHILD_INFO_MAGIC 0x8b3c /* NOTE: Do not make gratuitous changes to the names or organization of the below class. The layout is checksummed to determine compatibility between |