diff options
author | Theodore Ts'o <tytso@mit.edu> | 1998-04-03 16:07:06 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 1998-04-03 16:07:06 +0000 |
commit | d171c5b5ee86f87f028fe62d684659f249b9e334 (patch) | |
tree | fcc7bc4bf5964d386a564be857dc20795b07a778 /include/linux | |
parent | 7e44f24237285e809a9f6752e5c960a421e4e998 (diff) | |
download | e2fsprogs-d171c5b5ee86f87f028fe62d684659f249b9e334.tar.gz |
ChangeLog, subst.conf.in:
Add substitution for @datadir@
ChangeLog, Makefile.in:
Change to use new installation directory variables convention. Fix
uninstall rules to take $(DESTDIR) into account. Remove cat8dir from
the installdirs target, since modern man package don't necessarily put
the cat directory in /usr/man/cat?.
ChangeLog, .del-types.h.in~7a460879:
types.h.in: Add a signed keyword to the __s64 definition.
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ChangeLog | 4 | ||||
-rw-r--r-- | include/linux/types.h.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/ChangeLog b/include/linux/ChangeLog index 256687ac..afb28286 100644 --- a/include/linux/ChangeLog +++ b/include/linux/ChangeLog @@ -1,3 +1,7 @@ +1998-03-30 Theodore Ts'o <tytso@rsts-11.mit.edu> + + * types.h.in: Add a signed keyword to the __s64 definition. + 1998-03-23 Theodore Ts'o <tytso@rsts-11.mit.edu> * ext2_fs.h: Update to latest 2.1.90+diffs version of ext2_fs.h diff --git a/include/linux/types.h.in b/include/linux/types.h.in index ee5f24d0..19ed906b 100644 --- a/include/linux/types.h.in +++ b/include/linux/types.h.in @@ -11,7 +11,7 @@ typedef unsigned int __u64; typedef long __s64; typedef unsigned long __u64; #elif (@SIZEOF_LONG_LONG@ == 8) -typedef long long __s64; +typedef __signed__ long long __s64; typedef unsigned long long __u64; #endif |