dcb8e1fa0452a3d31b678351c2297ad0255d3e4b |
|
07-Mar-2016 |
Theodore Ts'o <tytso@mit.edu> |
Merge branch 'maint' into next
|
0355d6d047884f5ba41ef526fc7d13fba1f6b258 |
|
02-Jan-2016 |
Theodore Ts'o <tytso@mit.edu> |
Fix build system to be compatible with BSD pmake This fixes a number of incompatibilities which caused maint branch to fail to build on on FreeBSD. Also fix the Makefile in the tests directory so that "make -jN check" works correctly on FreeBSD. Previously the Makefile in the tests directory used a construct which was specific to GNU Make, which which silently expanded to an empty list, which caused "make check" to be a no-op when running using BSD's pmake. This Makefile has been changed to use the != macro assignment syntax which is common to GNU make and BSD pmake. It's technically not completely portable (it will not be recognized by Solaris's ccs make, for example), but most other operating systems ship GNU make (Solaris, AIX), or BSD pmake (*BSD, Mac OS) as either the primary or alternative make utility that this should an acceptable compromise, since it makes running all of tests using something like "make -j8 check" or "make -j16 check" run *much* faster. There are still some caveats if using BSD pmake; in particular, if the configure script is run on a system which has GNU make (installed as gmake on FreeBSD for example), the configure script will find it, and enable some GNU make features in the Makefile, and the generated makefiles *must* be built using gmake. However, if isolated build jail / chroot is used which only has pmake, the Makefiles should now work with pmake. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
f34af41b72ed8ca29b4579a8967ced7b61924c71 |
|
12-Jul-2015 |
Theodore Ts'o <tytso@mit.edu> |
rename libquota.a to libsupport.a We will be using libsupport.a for e2fsprogs's internal support functions. It will contain the quota support functions, but we will also be moving code such as profile.c and plausible.c to libsupport. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
59a220dd9f0102f10a049e38949e96a8c85fe33a |
|
02-Jul-2015 |
Theodore Ts'o <tytso@mit.edu> |
Fix "make clean" and "make distclean" There were some generated files that weren't getting removed by the clean and distclean targets; fix this. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
ceff962c67f19724e6fffe92adfdfff0cd462722 |
|
23-May-2014 |
Theodore Ts'o <tytso@mit.edu> |
tst_libext2fs: add new debug program which used for libext2fs unit tests Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
fedfb27fe55f5fe643c1f110e55ee4413db8ec5b |
|
23-Feb-2014 |
Theodore Ts'o <tytso@mit.edu> |
Add coverage testing using gcov To check the coverage of e2fsprogs's regression test, do the following: configure --enable-gcov make -j8 ; make -j8 check ; make coverage.txt The coverage information will be the coverage.txt and *.gcov files in the build directories. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
5f16f6c337feca8bdfb728af8585626e72a69640 |
|
24-Oct-2013 |
Theodore Ts'o <tytso@mit.edu> |
Fix optional static code analysis using sparse Commit 832cb612: "e2fsprogs: add (optional) sparse checking to the build" breaks systems that are not using GNU make. In addition, it breaks if the developer tries to build in a subdirectory (i.e., if he or she tries running "make" in the misc or e2fsck or lib/ext2fs directory), since CHECK_CMD is not set. Fix this by moving the sparse setup to MCONFIG. Cc: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
147ba43de8aab8323e23f383216ff416c4314226 |
|
23-Oct-2013 |
Theodore Ts'o <tytso@mit.edu> |
Fix noquota build We need to build libquota even if the quota code is disabled. This fixes a build regression introduced by commit 43075b42bd: 'quota: fix disabling quota, add quota tests". Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
832cb612f8c1c10525fe438206d4fe5c6d38a4e7 |
|
12-Oct-2013 |
Darrick J. Wong <darrick.wong@oracle.com> |
e2fsprogs: add (optional) sparse checking to the build Run sparse against source files when building e2fsprogs with 'make C=1'. If instead C=2, it configures basic ext2 types for bitwise checking with sparse, which can help find the (many many) spots where conversion errors are (possibly) happening. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
58b3d8d3aec9398b8c0fdedd23434a885f037c02 |
|
12-May-2012 |
Matthias Andree <matthias.andree@gmx.de> |
Fix parallel (make -j) build Add a few dependencies where needed, so that "make -j17 check" now works. Signed-off-by: Matthias Andree <matthias.andree@gmx.de> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
d1154eb460efe588eaed3d439c1caaca149fa362 |
|
18-Sep-2011 |
Theodore Ts'o <tytso@mit.edu> |
Shorten compile commands run by the build system The DEFS line in MCONFIG had gotten so long that it exceeded 4k, and this was starting to cause some tools heartburn. It also made "make V=1" almost useless, since trying to following the individual commands run by make was lost in the noise of all of the defines. So fix this by putting the configure-generated defines in lib/config.h and the directory pathnames to lib/dirpaths.h. In addition, clean up some vestigal defines in configure.in and in the Makefiles to further shorten the cc command lines. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
f239fefc14226f655477179801c734749a04d4b4 |
|
20-Jul-2011 |
Aditya Kali <adityakali@google.com> |
e2fsprogs: add quota library to e2fsprogs This patch adds the quota library (ported form Jan Kara's quota-tools) in e2fsprogs in order to make quotas as a first class supported feature in Ext4. This patch also provides interface in lib/quota/mkquota.h that will be used by mke2fs, tune2fs, e2fsck, etc. to initialize and update quota files. This first version of the quota library does not support reading existing quota files. This support will be added in the near future. Thanks to Jan Kara for his work on quota-tools. Most of the files in this patch are taken as-is from quota tools and were simply modified to work with libext2fs in e2fsprogs. Signed-off-by: Aditya Kali <adityakali@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
db7cb4b4a6c50527c764e11c12b6caf4f207d46b |
|
16-Jun-2011 |
Andreas Dilger <adilger@whamcloud.com> |
check: build all dependencies before "make check" If "make check" is run on a clean repository, it fails due to missing dependencies for building the test programs. Have "make check" build all dependencies before starting the tests to ensure that it can finish without error. Signed-off-by: Andreas Dilger <adilger@whamcloud.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
3a0d5d396b2801682ad75acb8617d3a02895edba |
|
18-May-2010 |
Theodore Ts'o <tytso@mit.edu> |
Fix dpkg-buildpackage -j2 Add a dependency on subs to all-libs-recursive and all-progs-recursive to dpkg-buildpackage -j2, since it builds make target 'libs' explicitly, and we need to make sure the 'subs' target is run first. Addresses-Debian-Bug: #563487 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
39fd3d4f13d39cd59ea51350c80423c57b25b5dd |
|
14-May-2009 |
Scott James Remnant <scott@netsplit.com> |
configure.in: add --disable-libuuid option Add an option to switch between the private (in-tree) libuuid and public (in-system installed) library. The private version is still enabled by default. Signed-off-by: Scott James Remnant <scott@netsplit.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
14b596d40997c7e55ec8928bd222787f96808a2b |
|
22-Apr-2009 |
Theodore Ts'o <tytso@mit.edu> |
configure.in: add --disable-libblkid option Add an option to switch between the private (in-tree) libblkid and public (in-system installed) library. The private version is still enabled by default. If --disable-libblkid is specified the findfs(8) program, which is a variant of tune2fs, is also not built or installed. Signed-off-by: Karel Zak <kzak@redhat.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
f0eae15c36d3334c0461ba3f2d4d401a954902ab |
|
10-Oct-2008 |
Theodore Ts'o <tytso@mit.edu> |
Fix parallel build problem with util/subst Make sure util/subst is built before trying to build lib/et Addresses-Sourceforge-Bug: #2143281 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
60b30dbaa6672628f123e95bf8a8f0f37683ac4f |
|
01-Sep-2008 |
Theodore Ts'o <tytso@mit.edu> |
Fix e2fsprogs-libs build failure due to 'subs' target In e2fsprogs-libs the lib/ext2fs directory is not present, and we need to make sure the top-level Makefile doesn't blow up in it's not there. Addresses-Sourceforge-Bug: #2087502 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
749c4ad0fa377aa01362de7155ab47d131956b17 |
|
28-Aug-2008 |
Theodore Ts'o <tytso@mit.edu> |
Fix breakage caused by commit da17e370 (missing dependency in Makefile) Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
da17e370927a9cc7d578bd79a9a7acdf4684befd |
|
28-Aug-2008 |
Theodore Ts'o <tytso@mit.edu> |
Build lib/ext2fs/ext2_err.h early to avoid parallel build problems Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
24c9b55806b358e1a83e35d2e7cf0ba8839feea1 |
|
15-Jul-2008 |
Theodore Ts'o <tytso@mit.edu> |
Disable %.sh -> % GNU make rule in the top-level Makefile It's not needed for e2fsprogs, but one niche distribution likes to use configure.sh files which can cause GNU make to inappropriately fire an implicit rule to overwrite the configure file resulting in a fork bomb leading to the OOM crash. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
399033a6ab713bc1f8ebad90e47fced0e7491b62 |
|
29-Feb-2008 |
Theodore Ts'o <tytso@mit.edu> |
Merge branch 'maint'
|
1f803990b8ebd27f49904896a73d596d1deb7c20 |
|
29-Feb-2008 |
Mike Frysinger <vapier@users.sourceforge.net> |
Fix makefile dependency issues for various install targets Addresses-Sourceforge-Patches: #1903484 Addresses-Sourceforge-Patches: #1903466 Addresses-Sourceforge-Patches: #1903456 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
428f6b32a9029e1f0bc2559233954955a6aae64c |
|
28-Jan-2008 |
Theodore Ts'o <tytso@mit.edu> |
Merge branch 'maint' into next Conflicts: configure lib/ext2fs/ext2_fs.h misc/e2image.c
|
9c3ea642e36e7c0ab95f226b46573a5b40c2c551 |
|
01-Jan-2008 |
Theodore Ts'o <tytso@mit.edu> |
Fix Makefile race so that "make -j3 distclean" works correctly With this fix, "dpkg-buildpackage -j3" should work w/o problems for the e2fsprogs package. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
a98b51e9dd0384d37a4721d52f5f36a15c2ac94a |
|
04-Aug-2007 |
Theodore Ts'o <tytso@mit.edu> |
Miscellaneous Cleanups Signed-off-by: Andreas Dilger <adilger@clusterfs.com> Signed-off-by: Girish Shilamkar <girish@clusterfs.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
54833579eeb458273085b4f2c224fe12a4473c73 |
|
22-May-2007 |
Andreas Dilger <adilger@clusterfs.com> |
Add Makefile production rule for e2fsprogs.spec in case it gets deleted Signed-off-by: Andreas Dilger <adilger@clusterfs.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
90466c19c67730580285c1f34321cacee1ffea1d |
|
21-Jun-2006 |
Andreas Dilger <adilger@clusterfs.com> |
add "make rpm" target to top-level Makefile Signed-off-by: Andreas Dilger <adilger@clusterfs.com>
/external/e2fsprogs/Makefile.in
|
4ea7ea007bb227727ee1d4dca997c4f5b21d3a30 |
|
09-Apr-2006 |
Theodore Ts'o <tytso@mit.edu> |
Fix asm_types.h type conflicts This caused FTBFS bugs on AMD64 platforms, since it uses a different 64-bit type when compared with IA64, so we need to make our autoconfiguration system more intelligent. Addresses Debian Bugs: #360661, #360317 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
/external/e2fsprogs/Makefile.in
|
522798d3428807800d8471f5ac3050b82aa9de97 |
|
15-Dec-2004 |
Theodore Ts'o <tytso@mit.edu> |
Add install-strip and install-shlibs-strip targets Use Linux-kernel-style makefile output for "make install" Update intl/Makefile.in to version from gettext 0.14.1
/external/e2fsprogs/Makefile.in
|
605e6f0e24757e5e0713bd3206d09cb495d93ab7 |
|
01-Dec-2004 |
Theodore Ts'o <tytso@mit.edu> |
Make make distclean remove all generated files. Update the po and intl changelog files to indicate that we updated to gettext 0.14.1
/external/e2fsprogs/Makefile.in
|
47204ff9830b17fc6317f48e88d2039f57a5d10a |
|
30-Nov-2004 |
Theodore Ts'o <tytso@mit.edu> |
Use Linux-kernel-style makefile output to make it easier to see errors/warnings.
/external/e2fsprogs/Makefile.in
|
921f4ad53646091767de1e64c9b3332c85f37e5b |
|
19-Nov-2004 |
Theodore Ts'o <tytso@mit.edu> |
Remove support for EVMS 1.x plugin library.
/external/e2fsprogs/Makefile.in
|
56eb4d47492c975b25ab1737a6fffefc80e5c137 |
|
18-Sep-2004 |
Theodore Ts'o <tytso@mit.edu> |
Remove XSI:isms for greater portability. (Addresses Debian Bug #255589)
/external/e2fsprogs/Makefile.in
|
0ec1b153ba6291aac5faa00c197a71d1cb0165f5 |
|
01-Aug-2003 |
Matthias Andree <matthias.andree@gmx.de> |
Use $(MAKE) rather than hardcoded "make", to aid build process on systems that expect GNU make as "gmake".
/external/e2fsprogs/Makefile.in
|
d21ae6c5cd91c15eaff0118a22aaba95f0956935 |
|
05-May-2003 |
Theodore Ts'o <tytso@mit.edu> |
configure.in, configure, Makefile.in: Add --with-diet-libc convenience option. Add --disable-evms option.
/external/e2fsprogs/Makefile.in
|
ddc32a045bd3bd35968ace2dbe22179470baec0b |
|
04-May-2003 |
Theodore Ts'o <tytso@mit.edu> |
Add Czech translation. Remove "NYC" translation. Add Czech translation from Miloslav Trmac <mitr@volny.cz> Random NLS and other display fixes from Miloslav.
/external/e2fsprogs/Makefile.in
|
a04eba3f8868af1d9b7b504d3d430c55ed3dc777 |
|
03-May-2003 |
Theodore Ts'o <tytso@mit.edu> |
Update to gettext 0.11.5. We now enable NLS support by default. Fixed up support for using the internal intl library.
/external/e2fsprogs/Makefile.in
|
bff0cc950b835bef92ade333e97842d408a2d1a1 |
|
23-Mar-2003 |
Theodore Ts'o <tytso@mit.edu> |
Move tarball generation functions to util/gen-tarball
/external/e2fsprogs/Makefile.in
|
78130a21fdcd02b82df3d6f9ac3300d7e1101de9 |
|
14-Mar-2003 |
Theodore Ts'o <tytso@mit.edu> |
Add dependency to allow parallel makes to work correctly.
/external/e2fsprogs/Makefile.in
|
ed78c021c3b111d8ab9a51aef5d5156e3004083f |
|
06-Mar-2003 |
Theodore Ts'o <tytso@mit.edu> |
Fix up lots of portability problems that caused e2fsprogs not to build successfully under Solaris.
/external/e2fsprogs/Makefile.in
|
94ba8c750604d8d2487841a06cb930dd5f3bb43b |
|
02-Mar-2003 |
Theodore Ts'o <tytso@mit.edu> |
Changes to create a subset distribution which consists only of the et, ss, uuid, and blkid libraries. The configure script and top-level makefile were changed to support working with a subset distribution.
/external/e2fsprogs/Makefile.in
|
ed1b33e8fb310641684d68a177c940b58f2f529d |
|
02-Mar-2003 |
Theodore Ts'o <tytso@mit.edu> |
Minor bug fixes in the blkid library. Convert mke2fs, fsck, and tune2fs to use the blkid library.
/external/e2fsprogs/Makefile.in
|
e12f2ae74c2eb8997bf13adf8fdd7e7313971eae |
|
23-Jan-2003 |
Theodore Ts'o <tytso@mit.edu> |
Integrate new blkid library.
/external/e2fsprogs/Makefile.in
|
e6f2bda381e60cd4a65862013e35ce1d256a82d6 |
|
18-Aug-2002 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Revamp makefile so that it doesn't depend --enable-elf-shlibs. We always build the shared library, since it's meant to be used as a plugin library.
/external/e2fsprogs/Makefile.in
|
83d0b970b2ce11f07e626b8cd7cb6b1c7f13facf |
|
04-Aug-2001 |
Andreas Dilger <adilger@clusterfs.com> |
Add "*.orig" to "make clean" target, change explicit listing of ext2_types.h in "make distclean" to $(SUBS). Add $(SUBS) as a dependency to "make check" target.
/external/e2fsprogs/Makefile.in
|
990d96a9d03a496d7821fb7fbfe619e07eba0951 |
|
23-Jun-2001 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Avoid including BitKeeper files into the source tarball.
/external/e2fsprogs/Makefile.in
|
6579488028f0fcd8173f49f11971ee0a4f9c99cb |
|
14-Jun-2001 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, ext2_types.h.in: ext2_types.h.in: If linux/types.h has been defined, then don't try to redefine the typedefs. ChangeLog, Makefile.in: Makefile.in: Make the install target depend on $(SUBS) to accomodate the fools who want to compile and install e2fsprogs as root using just one command.
/external/e2fsprogs/Makefile.in
|
cdf186e47730f11c5663f7d0f2a431ebd7805230 |
|
14-Jun-2001 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, configure, configure.in: configure.in: Add --disable-resizer, --disable-imager, and --disable-debugfs switches, which allow people who are building boot floppies to build a very restricted e2fsprogs distribution. Note: these functions limit the functions in the shared library, so beware! Makefile.in, ChangeLog: Makefile.in: Don't recurse into debugfs and resize subdirectory if --disable-debugfs or --disable-resizer is given as a configuration option. ChangeLog, Makefile.in: Makefile.in: Don't build e2image if --disable-imager is specified to configure.
/external/e2fsprogs/Makefile.in
|
797f5ef14e92294b329e52971d467d7af5b2993e |
|
02-Jun-2001 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, wordwrap.pl: Makefile.in: Move include/asm/types.h.in to lib/ext2fs/ext2_fs.h.in. wordwrap.pl: Add some rules which help fix up the dependencies. Many files: Move include/asm/types.h.in to lib/ext2fs/ext2_fs.h.in.
/external/e2fsprogs/Makefile.in
|
90f33eba68252725740c343242b42108765a119d |
|
25-May-2001 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Makefile.in: Only exclude the top-level TODO file, not over the entire tree.
/external/e2fsprogs/Makefile.in
|
db653a8013b1be918675535bceae2a4f8f71f378 |
|
08-Feb-2001 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in, configure, configure.in: Update for initial finddev library.
/external/e2fsprogs/Makefile.in
|
aabd5359aa0e2b8a077814e3bd5574cdfefd7069 |
|
12-Jan-2001 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, Makefile.in: Makefile.in (PROG_SUBDIRS): Build lib/e2p before lib/ext2fs since libext2fs depends on libe2p.
/external/e2fsprogs/Makefile.in
|
3e377db29466e8a7d960df27fa5c0b933a3fa581 |
|
09-Dec-2000 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, MCONFIG.in, Makefile.in, Makefile.in.in: Fix so that top-level "make check" works correctly. e2image.c: Fix program name for e2image.
/external/e2fsprogs/Makefile.in
|
6928adc90ac88770e411cacb850616bf3516f165 |
|
26-May-2000 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, configure, configure.in: Add test for lseek64 and open64 ChangeLog, Makefile.in: Makefile.in: Fix makefile so that it's safe to build in parallel.
/external/e2fsprogs/Makefile.in
|
3eccb84d89ba36c9877311f2430de472ffd4d019 |
|
06-Apr-2000 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in, version.h: Makefile.in (source_tar_file): Remove the resize directory from the list of excluded files. version.h: Update version header for an WIP release.
/external/e2fsprogs/Makefile.in
|
286a31aa8a746337323b06ff1f35b9343186bfbe |
|
03-Apr-2000 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, Makefile.in: Makefile.in: Remove uneeded parenthesis around shell pipelines containing a "cd" command. Use && instead of ; so that if the "cd" fails, the makefile stops. ChangeLog: Fix typo.
/external/e2fsprogs/Makefile.in
|
1917875fcd16428d14eb5a86acf414472bc216f1 |
|
11-Feb-2000 |
Theodore Ts'o <tytso@mit.edu> |
Many files: unix.c (main): If compression is enabled on the filesystem, print a warning message (for now). message.c: Add new compression shortcut: @c == compress problem.c, problem.h (PR_1_COMPR_SET): Add new error code. pass1.c (check_blocks): If the inode has EXT2_COMPRBLK_FL flag set, check to see if the filesystem supports compression. If it does pass this information down to process_block() so it can treat the compressed block flag words correctly. If not, offer to clear the flag, since it shouldn't be set. (process_block): If an inode has the compressed inode flag set, allow EXT2FS_COMPRESSED_BLKADDR. pass1b.c (process_pass1b_block, delete_file_block, clone_file_block): pass2.c (deallocate_inode_block): Use HOLE_BLKADDR to check to see if the block can be skipped. ChangeLog, Makefile.in: Makefile.in: Exclude the internationalization files from being distributed. ChangeLog, configure, configure.in: configure.in: Add support for --enable-compression. This is experimental code only for now, which is why it's under --enable test. Once it's stable, it will always be compiled in. TODO: Commit additional TODO items.
/external/e2fsprogs/Makefile.in
|
5c36a2f85b4f8648ed7916c7e5d489dea09c1a37 |
|
19-Nov-1999 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, Makefile.in: Makefile.in (distclean): Remove TAGS and Makefile.in.old from the source directory. Also, when making the .exclude file for the source_tar_file, exclude those two files as well. Makefile.in (distclean): Remove TAGS and Makefile.in.old from the source directory.
/external/e2fsprogs/Makefile.in
|
3ac9f0efa1b5f24b0a04721addb96d1a604b3c83 |
|
19-Jul-1999 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Add flushb to list of files which are removed when doing a make clean. Add a distclean production which removes Makefile Add the doc substree to the clean and distclean rules.
/external/e2fsprogs/Makefile.in
|
f3b3dbbe60ce36f19862f26489cd3dcce1c61d76 |
|
19-Jul-1999 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Fix cleanup procedure to delete subst.conf properly.
/external/e2fsprogs/Makefile.in
|
66763262512e45ed86e56545848c1d4c91688f8d |
|
19-Jul-1999 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Add the -f option to rm when making the distribution_tar_file.
/external/e2fsprogs/Makefile.in
|
9d564f73f594282d87209313ea59e4ca08727ab3 |
|
03-Jul-1999 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, Makefile.in, configure.in, MCONFIG.in, configure, wordwrap.pl: Makefile.in (depend): Make "make depend" at the top-level automatically recurse through all subdirectories. configure.in: Test for perl since it's needed by wordwrap.pl MCONFIG.in (depend): Fix make-depend so that it the dependencies are automatically word-wrapped. Added the makefile macro $(PERL). wordwrap.pl: New file which does the word wrapping.
/external/e2fsprogs/Makefile.in
|
14790ed79b9eb34c87a413fbb178225d0f5ffc30 |
|
13-Jan-1999 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Add some files to the list of files to be excluded when building a source distribution file. configure: Update to match last configure.in changes. RELEASE-NOTES, e2fsprogs.lsm, e2fsprogs.spec, version.h: Update for e2fsprogs 1.14 release.
/external/e2fsprogs/Makefile.in
|
defde7840c538ca81519f6a0f354f763fb80a1a6 |
|
04-Jan-1999 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in, configure.in, ChangeLog, configure: Makefile.in: Move the generated types.h file from the linux/ directory to the asm/ directory. configure.in: Force Solaris to never use -static, due to its dynamic loader not being available to statically linked programs. Create the asm/ directory if needed. .del-types.h.in~ca55114a, .del-ext2_fs.h~7a460879, .del-types.h.in~7a460879: Move the types.h header file from linux/ to asm/.
/external/e2fsprogs/Makefile.in
|
556ad1327feb34ea5b711eb9c135f8e11415cf53 |
|
19-Dec-1998 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Update version information in ChangeLogs, release notes, documentation, etc. for release of version 1.13.
/external/e2fsprogs/Makefile.in
|
a4b2d3ce5eb85baa959a3cc19df9569f2b412935 |
|
03-Apr-1998 |
Theodore Ts'o <tytso@mit.edu> |
Many files: configure.in: Change how the installation directions are selected. Previously, we had prefix and usr_prefix, where prefix was '' and usr_prefix was /usr, and we then defined bindir, ubindir, libdir, ulibdir, etc. in terms of that. In autoconf 2.12, it's possible to override bindir, libdir, etc., and so in order to make our installation directory makefile variables more in line with autoconf 2.12, I've changed all of the various makefiles to use prefix and root_prefix, where the default Linux definitions are /usr and '', respectively. What used to be bindir is now root_bindir, and what used to be ubindir, is now bindir. MCONFIG.in: Change directories to match with new installation directory convention (see above). Add Makefile dependencies for makefile fragments, and define DEP_LIB_MAKEFILES which library makefiles can use to define DEP_MAKEFILES, so that the library makefiles will get regenerated when the makefile fragments change. Remove the cat?dir variables, since we aren't creating those directories any more. Makefile.in: Add top-level uninstall targets. e2fsprogs-1.12.spec: Add to the RPM package the e2label man page, and to reflect that fact that we now compile_et and mk_cmds for the development package. ChangeLog, Makefile.in: Makefile.in: Add uninstall target (which is a just a no-op). version.h, RELEASE-NOTES: Update to interim version numbers for release purposes.
/external/e2fsprogs/Makefile.in
|
bf2602bef6040fb958eea6088667f6203153e95e |
|
30-Mar-1998 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, Makefile.in, MCONFIG.in: Makefile.in: Use && after a cd command so that the right thing happens if the directory is missing. Don't compile man pages upon installation any more, since modern Linux systems don't have /usr/man/cat? anymore (they typically cache man pages in /var/catman and delete them if they haven't been used in a while, to save on disk space, and because CPU's are fast enough these days that you can get away with this). MCONFIG.in: Add a new makefile variable for the share directory (i.e., /usr/share). Make an autoconf magic make rule so that $(top_builddir)/util/subst.conf gets rebuilt automatically when necessary.
/external/e2fsprogs/Makefile.in
|
5be8dc2143c7b3b21a9b8fb56797dd855ee87560 |
|
01-Dec-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: dblist.c (ext2fs_get_num_dirs): Make ext2fs_get_num_dirs more paranoid about validating the directory counts from the block group information. all files: Don't include stdlib.h anymore; include it in ext2_fs.h, since that file requires stdlib.h ChangeLog, Makefile.in, dirinfo.c: dirinfo.c (e2fsck_add_dir_info): Use ext2fs_get_num_dirs instead of e2fsck_get_num_dirs, which has been removed. Makefile.in (PROGS): Remove @EXTRA_PROGS@, since we don't want to compile and install flushb. ChangeLog, configure.in: Remove @EXTRA_PROGS@, since we aren't using it in 2fsck/Makefile.in anymore ChangeLog, Makefile.in: Install debugfs in /sbin, instead of /usr/sbin. libext2fs.texinfo: Update version string to be 1.12 Makefile.in: Fix bug in find script which made the exclusion list, where a '-' was missing from an -name option.
/external/e2fsprogs/Makefile.in
|
7668d9b590befc2d574cab710c2b83c1226ddd15 |
|
20-Oct-1997 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Don't include the Makefile.pq and the powerquest directories in the tar file. Makefile.pq: Initial version of powerquest-special makefile
/external/e2fsprogs/Makefile.in
|
44339bdff87584b72a2ade7d3a1426e3335f2167 |
|
15-Oct-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Use new substitution technology which doesn't depend on shell scripts. (Faster, and better for MS-DOS port!)
/external/e2fsprogs/Makefile.in
|
bc210074ea643a0849aa446382eb6ff6b2f5591b |
|
17-Jun-1997 |
Theodore Ts'o <tytso@mit.edu> |
Makefile.in: Performed a "make depend" for the upcoming release Many files: Checkins for the 1.10 release.
/external/e2fsprogs/Makefile.in
|
05e112a11b6508c2b12d5d4ee0c322171db9b538 |
|
14-Jun-1997 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, Makefile.in, version.h: Allow people to set the version.h to something like 1.10-PLUS. .del-inodemap.c~24510e64, main.c, resize2fs.c, resize2fs.h: More interim work. All is functioning except progress meter.
/external/e2fsprogs/Makefile.in
|
24b2c7a7a14cec8480a75af7d535cf267e6abe1f |
|
07-Jun-1997 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, Makefile.in, configure.in: configure.in (rmakefile): Added (optional) private directory for resize2fs. Makefile.in: Change recursive descent rules to check to see if a directory exists before trying to make it. Many files: Initial checkin of work done to date.
/external/e2fsprogs/Makefile.in
|
9559ea33ebf9242d6ffbd09ec7b0996b4f594ef6 |
|
09-May-1997 |
Theodore Ts'o <tytso@mit.edu> |
ChangeLog, Makefile.in: Fix up makefile to work in new CVS development environment.
/external/e2fsprogs/Makefile.in
|
24757fa0468170e1420087eef36219650dba8c07 |
|
29-Apr-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Checked in e2fsprogs 1.08.
/external/e2fsprogs/Makefile.in
|
21c84b71e205b5ab13f14343da5645dcc985856d |
|
29-Apr-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Checked in e2fsprogs-1.07
/external/e2fsprogs/Makefile.in
|
5c576477ccb2f0ca8c5d5af2e2354fd8eeff1589 |
|
29-Apr-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Checked in e2fsprogs 1.06
/external/e2fsprogs/Makefile.in
|
fc6d9d519aef67735918bf02c0fa8c9222008f76 |
|
29-Apr-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Checked in e2fsprogs 1.05
/external/e2fsprogs/Makefile.in
|
a4d0961061c96531e31fccd6d702042a074f2514 |
|
29-Apr-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Checked in e2fsprogs 1.04.
/external/e2fsprogs/Makefile.in
|
74becf3c0a065f8d64e07ce4d31f9fe53be91d62 |
|
26-Apr-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Checkin of e2fsprogs 1.02.
/external/e2fsprogs/Makefile.in
|
50e1e10fa0ac12a3e2a9d20a75ee9041873cda96 |
|
26-Apr-1997 |
Theodore Ts'o <tytso@mit.edu> |
Many files: Checked in e2fsprogs 0.5c
/external/e2fsprogs/Makefile.in
|