summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Split doc/{COPYING => COPYING, COPYING.LGPL}Andreas Gruenbacher2009-03-133-531/+531
| | | | | | | | Split into separate files for the GPL and LGPL to make things slightly more obvious. Also updates the surface mail address according to the FSF's latest template, and fixes a left-over reference to the ``GNU Library General Public License'', which is now known as the ``GNU Lesser General Public License''.
* Fix wrong license notices; add missing noticesAndreas Gruenbacher2009-03-13120-517/+1127
| | | | | | | | | | | Some of the license notices are referring to GPLv2.1. This is wrong; the proper licenses that the notices should refer to are GPLv2, and LGPLv2.1. Fix this mistake. Add missing license notices to a whole bunch of files which didn't indicate their license. Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* More libtoolize fixesAndreas Gruenbacher2009-03-104-7/+14
| | | | | | | | | | | | | | Recent versions of libtool behave slightly differently, which causes some breakage in how libtoolize was used here. Make sure that libtoolize adds the auxiliary files (config.guess and config.sub). Move install-sh into include/ so that libtoolize does not destroy it. Split up the ``make clean'' and ``make distclean'' targets: the former removes all files generated during a build. The latter removes all files generated by libtoolize, autoconf, and configure as well. Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* Whitespace cleanupsAndreas Gruenbacher2009-03-101-11/+11
|
* Add more generated files to .gitignore, and sort the fileAndreas Gruenbacher2009-03-101-16/+22
|
* Remove redundant AC_PROG_LIBTOOL invocationAndreas Gruenbacher2009-03-081-2/+0
|
* Automake and libtool fixesAndreas Gruenbacher2009-02-274-367/+12
| | | | | | | | Remove aclocal.m4 from the repository and generate it when needed. Add the AC_PROG_LIBTOOL autoconf macro and use libtoolize according to the libtool info pages. Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* Define ENABLE_GETTEXT with --enable-gettextAndreas Gruenbacher2009-02-271-0/+2
| | | | | | | When --enable-gettext is specified, make sure that ENABLE_GETTEXT gets defined in config.h. Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* Make sure we respect LINGUAS #205948 by Arvid NorlanderAndreas Gruenbacher2009-02-261-1/+1
| | | | | | Patch from Gentoo via Mike Frysinger <vapier@gentoo.org>. Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* Fix cross-compile issues with libtool and compiler.Barry Naujok2009-02-263-9/+4
| | | | | | | | This is equivalent to commit de7b3f6 from Barry Naujok <bnaujok@sgi.com> in the acl package, and part of the Gentoo package, as pointed out by Mike Frysinger <vapier@gentoo.org>. Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* Make this test readdir order independentAndreas Gruenbacher2009-02-232-6/+10
| | | | | | | | When reading directories, different filesystems return files in different orders. Some tests depended on a specific order; remove this dependency by sorting the results before checking them. Signed-off: Andreas Gruenbacher <agruen@suse.de>
* Add top-level nfs-tests and root-tests targetsAndreas Gruenbacher2009-02-231-3/+3
|
* acl: fix setfacl segfault when using only "--" as parameterEric Sandeen2009-02-231-0/+2
| | | | | | | | | Resolves Red Hat bug: 430458 - execute command "setfacl -- --test" will occur Segmentation Fault From: Jiri Moskovcak <jmoskovc@redhat.com> Signed-off-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* acl: add make tests target and use make to run testsBrandon Philips2009-02-232-3/+28
| | | | | | | | | | | | | The tests are difficult to run. So, this patch adds a Make target that sets up the path and runs *.test files in the test/ directory. nfs specific tests can be ran from the test directory by running `make nfs-tests` tests requiring root can be ran from the test directory by running `make root-tests` Signed-off-by: Brandon Philips <bphilips@suse.de>
* acl: add short option support to the acl commandsEric Sandeen2009-02-234-28/+31
| | | | | | | | | | | | Resolves Red Hat bugs: rh#204087 - getfacl/setfacl should support -n rh#457244 - setfacl does not recognize -v and -h Folds in [PATCH] Manpage documents -r instead of -t now From: Jiri Moskovcak <jmoskovc@redhat.com> Signed-off-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* acl: Return error status on setfacl failuresEric Sandeen2009-02-231-1/+3
| | | | | | | | | Resolves Red Hat bug: rh#368451 - setfacl returns 0 even though it fails From: Jiri Moskovcak <jmoskovc@redhat.com> Signed-off-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* acl: fix setfacl for long utf8 filenamesEric Sandeen2009-02-232-1/+21
| | | | | | | | | | | | Resolved Red Hat bugs: rh#183181 - Bad: utf8 long filenames - invalid argument rh#287701 - PATH_MAX patch seems incomplete From: Andrey <afletdinov@dc.baikal.ru> From: Thomas Woerner <twoerner@redhat.com> Signed-off-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Andreas Gruenbacher <agruen@suse.de> Acked-by: Brandon Philips <bphilips@suse.de>
* acl: add getfacl -R -L -P testsBrandon Philips2009-02-231-0/+194
| | | | | | Test fixes to walk_tree.c by Andreas. Signed-off-by: Brandon Philips <bphilips@suse.de>
* acl: minor fix to cp.testBrandon Philips2009-02-231-1/+1
| | | | | | X -> x Signed-off-by: Brandon Philips <bphilips@suse.de>
* acl: move nfs tests to their own folderBrandon Philips2009-02-232-7/+7
| | | | | | | Since these tests require nfs mounts to run move them into a seperate folder so they don't run by default. Signed-off-by: Brandon Philips <bphilips@suse.de>
* acl: move root tests to their own folderBrandon Philips2009-02-232-46/+46
| | | | | | | Since these tests require root perms to run move them into a seperate folder so they don't run by default. Signed-off-by: Brandon Philips <bphilips@suse.de>
* Create two ENV variables TUSER and TGROUP to get the user/group running the testBrandon Philips2009-02-231-0/+3
| | | | | Signed-off-by: Brandon Philips <bphilips@suse.de> Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* Update the run script to a more recent versionAndreas Gruenbacher2009-02-231-18/+69
| | | | | | | | | | | | | Avoid a warning: main::process_test() called too early to check prototype at ./run line 47. main::process_test() called too early to check prototype at ./run line 60. Add a >~ test line that is similar to > but is interpreted as a regular expression. Signed-off-by: Brandon Philips <bphilips@suse.de> Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
* Add .gitignore fileAndreas Gruenbacher2009-02-231-0/+28
|
* only symlink development libraries when neededMike Frysinger2009-01-251-1/+3
| | | | | | | | We dont want to generate symlinks when the libdir is the same as the devlibdir, otherwise we clobber the real files with broken symlinks. Reviewed-by: Christoph Hellwig <hch@lst.de> Acked-by: Nathan Scott <nscott@aconex.com>
* fix include/ symlink creation (again)Eric Sandeen2009-01-081-2/+2
| | | | | | | | We need the "default" target first, otherwise a simple "make -C include" only ran the sys target, missing disk, and failures ensued. Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Reviewed-by:Christoph Hellwig <hch@infradead.org>
* fix number of arguments to AC_DEFINEMike Frysinger2008-12-301-1/+1
| | | | | | | | | | | aclocal hates when you only specify one parameter to AC_DEFINE ... simple patch to add the other two parameters fixes for acl and xfstests [hch: added nfs4acl] Reviewed-by: Christoph Hellwig <hch@lst.de>
* fix parallel installs in include/ dirsEric Sandeen2008-12-301-4/+5
| | | | | | | | | | | | | This is for http://oss.sgi.com/bugzilla/show_bug.cgi?id=759 "fix parallel issue with include/ symlinks" Doing something like "make -j2 install install-dev" would lead to a race of removing & creating symlinks in include/ Thanks to Mike for reporting & suggesting the fix. Reported-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
* fix up xfs-cmds build after the parallel-festEric Sandeen2008-12-302-1/+6
| | | | | | | | | | | | | | | | | | My big parallel build patch lost the "make configure" target. This broke Makepkgs... Now, IMHO, running configure from make is a little bass-ackwards; I'd probably prefer to have Makepkgs explicitly run: autoconf; configure --myoptions; make but for now, this adds back in a workable "make configure" target. Also fixed "make install-lib" for acl, which was failing in the man subdir. Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Reviewed-by: Christoph Hellwig <hch@lst.de>
* Allow parallel builds of xfs-cmds.Barry Naujok2008-11-214-26/+52
| | | | | | Merge of master-melb:xfs-cmds:32514a by kenmcd. Allow parallel builds of xfs-cmsd
* Fix up tree walking code for handling symlinks etc.Tim Shimmin2008-09-102-2/+14
| | | | | | Merge of master-melb:xfs-cmds:32095a by kenmcd. Fix up tree walking code for handling symlinks etc.
* acl debian changesAnibal Monsalve Salazar2008-04-246-9/+62
| | | | | | Merge of master-melb:xfs-cmds:30989a by kenmcd. acl debian changes
* Debian and version updatesBarry Naujok2008-03-031-0/+1
| | | | | | Merge of master-melb:xfs-cmds:30604a by kenmcd. Debian update for uploaders
* Fix NULL pointer access / segmentation fault in setfaclTim Shimmin2008-02-262-9/+16
| | | | | | Merge of master-melb:xfs-cmds:30556a by kenmcd. Fix NULL pointer access / segmentation fault in setfacl
* Add new header files to include/Makefile for acl and attrBarry Naujok2008-02-111-1/+1
| | | | | | Merge of master-melb:xfs-cmds:30471a by kenmcd. Add new header files to include/Makefile
* Add some code to the tree walking to better handle file descriptors.Tim Shimmin2007-12-047-53/+199
| | | | Merge of master-melb:xfs-cmds:30195a by kenmcd.
* Update man pages about tree walking and symlinks.Tim Shimmin2007-12-033-8/+17
| | | | | | Merge of master-melb:xfs-cmds:30185a by kenmcd. Update man pages about tree walking and symlinks.
* fix up tree walking code with symlinks for acl commandsTim Shimmin2007-11-2110-192/+200
| | | | Merge of master-melb:xfs-cmds:30109a by kenmcd.
* Update acl.5 man page to clarify the relationship betweenTim Shimmin2007-09-202-12/+20
| | | | | | | the file permissions and the *OBJ ACL entries. Merge of master-melb:xfs-cmds:29736a by kenmcd. Mention acl.5 man page change.
* Update version numbers for acl and attrBarry Naujok2007-09-112-6/+9
| | | | | | Merge of master-melb:xfs-cmds:29643a by kenmcd. Bump to version 2.2.45
* Fix symlink handling in getfattr, getfacl and setfaclBarry Naujok2007-09-112-18/+18
| | | | | | Merge of master-melb:xfs-cmds:29637a by kenmcd. Fix symlink handling in getfacl
* make sure the library link respects LDFLAGSBarry Naujok2007-06-281-0/+1
| | | | | | Merge of master-melb:xfs-cmds:29016a by kenmcd. make sure the library link respects LDFLAGS
* Add Spanish and Galician translations.Tim Shimmin2007-03-275-2/+690
| | | | | | Merge of master-melb:xfs-cmds:28306a by kenmcd. Bump verion# for Spanish and Galician translations.
* Use libtool correctly when cross-compilingBarry Naujok2007-01-233-5/+4
| | | | | | Merge of master-melb:xfs-cmds:27985a by kenmcd. Use libtool correctly when cross-compiling
* Fix a build issue on GNU/kFreeBSD, thanks to Petr Salinger.Lachlan McIlroy2006-12-095-1/+17
| | | | | Also updates Debian packaging. Merge of master-melb:xfs-cmds:27678a by kenmcd.
* Fix symlink detection in userspace MakefilesNathan Scott2006-08-211-3/+5
| | | | Merge of master-melb:xfs-cmds:26825a by kenmcd.
* Update debian packaging for acl.Nathan Scott2006-08-042-2/+3
| | | | Merge of master-melb:xfs-cmds:26591a by kenmcd.
* Merge the uid/gid username/groupname install target fixup to all packages.Nathan Scott2006-08-042-7/+7
| | | | Merge of master-melb:xfs-cmds:26582a by kenmcd.
* fix make depend for libtool librariesTim Shimmin2006-07-143-7/+18
| | | | Merge of master-melb:xfs-cmds:26539a by kenmcd.
* Update acl package to better integrate into the Ubuntu localisation ↵Nathan Scott2006-07-059-293/+53
| | | | | | up-to-dated-ness tracking system (Rosetta). Merge of master-melb:xfs-cmds:26416a by kenmcd.