aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-08-02build using CFLAGS passed in at configureHEADmasterTheodore Ts'o1-0/+1
In order to build xfsprogs in a hermetic build, we need be able to pass in -I and -L flags to the compiler and linker, respectively. This needs to be used by the configure script, but we also need to make sure these flags are used by the Makefiles as well. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-07-22configure.in: declare a requirement for at least autoconf 2.50Theodore Ts'o1-0/+1
On Debian/Ubuntu systems, if autoconf version 2.13 is installed, autoconf will try to automatically figure out whether autoconf 2.13 or something more modern is required (since the autoconf maintainers, curses be upon them, didn't bother to maintain compatibility between autoconf 2.13 and 2.50). Unfortunately, the hueristics aren't perfect, and although the configure.in file looks superficially like it will be compatible with autoconf 2.13, it isn't. You will end up with a number of very subtle compilation failures if you use autoconf 2.13. So declare a requirement for autoconf 2.50 using AC_PREREQ(2.50). Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Signed-off-by: Christoph Hellwig <hch@lst.de>
2011-07-20dmapi: don't hard code the shell binaryAlex Elder2-1/+1
(This is just replicating the change that Dave Chinner made in xfsprogs, xfsdump, and xfstests.) Recent changes to debian unstable user space have caused the xfsdump build to break as certain shell functionality is being assumed by libtool and friends. The configure scripts test and select the correct shell, but the input files ignore this and hard code the shell to use and hence now break. Fix this by using the shell that the configure scripts decide is the right one to use. Signed-off-by: Alex Elder <aelder@sgi.com>
2010-08-03dmapi: fix depend targetsAlex Elder1-3/+4
There's no need to re-make the dependency files all the time. Make it so the "depend" target rebuilds the ".dep" file only if necessary. Signed-off-by: Alex Elder <aelder@sgi.com> Reviewed-by: Dave Chinner <david@fromorbit.com>
2010-02-13dmapi: digitally sign release tagsAlex Elder1-2/+2
Arrange for the commit marking a new release to include a "Signed-off-by" line, and have the corresponding tag include a digital signature. Signed-off-by: Alex Elder <aelder@sgi.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
2010-02-13dmapi: Fix a build warningAlex Elder1-1/+3
Fix a build warning. Signed-off-by: Alex Elder <aelder@sgi.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
2009-06-05add -x flags to include/install-shRobert Herndon1-0/+0
Signed-off-by: Robert Herndon <rherndon@sgi.com>
2009-05-052.2.10 releasev2.2.10Felix Blyakher2-1/+1
2009-05-02add release.shChristoph Hellwig2-1/+26
Add a little script to automate releases. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Felix Blyakher <felixb@sgi.com>
2009-04-29bump version and update CHANGESChristoph Hellwig2-1/+6
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Eric Sandeen <sandeen@sandeen.net> Acked-by: Felix Blyakher <felixb@sgi.com>
2009-04-29add .gitignoreChristoph Hellwig1-0/+39
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Eric Sandeen <sandeen@sandeen.net> Acked-by: Felix Blyakher <felixb@sgi.com>
2009-04-29keep autoconf-generated files over make distcleanChristoph Hellwig1-11/+14
We do want to ship the autoconf-generated files over make distclean and pick them up in Makepkgs so that a user compiling the program doesn't require autoconf. For that split up make distclean from make realclean and exclude the files we want to keep form the former. To make this easier to maintain adher to stricter rules of use for CONFIGURE and LDIRT. CONFIGURE now includes all generated files from autoconf (or for it like our copied install-sh) and gets only removed on make realclean, but added to LSRCFILES so that Makepkgs can pick it up. Everything else than needs to be removed on a realclean gets assigned to LDIRT. Also split up the configure rule into one to generate the configure script and one to run it. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Mike Frysinger <vapier@gentoo.org>
2009-03-25automake and libtool fixesAndreas Gruenbacher6-364/+20
Remove aclocal.m4 from the repository and generate it when needed. Move the AC_PROG_LIBTOOL autoconf macro and use libtoolize according to the libtool info pages. 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> Signed-off-by: Christoph Hellwig <hch@lst.de>
2009-03-23fix tarball names generated by MakepkgsChristoph Hellwig3-3/+3
Currently Makepkgs generates the source tarball as dmapi-version.src.tar.gz, which is not what we used for recent releases and not what most other open source packages do. Change it to dmapi-version.tar.gz, and rename the binary tarball to dmapi-version.bin.tar.gz Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Eric Sandeen <sandeen@sandeen.net>
2009-03-16Fix cross-compile issues with libtool and compiler.Barry Naujok3-9/+4
This is equivalent to commit de7b3f6 from Barry Naujok <bnaujok@sgi.com> in the acl package/ Signed-off-by: Andreas Gruenbacher <agruen@suse.de> Signed-off-by: Christoph Hellwig <hch@lst.de>
2009-02-26specfile: remove Distribution/Packager tag; use rpm macrosJan Engelhardt1-3/+1
There exist a number of rpm specfile tags that make it possible to mislead users of the produced RPM package, because its presence overrides anything that has been specified in ~/.rpmmacros (or the configuration files of the build system used). Such is especially annoying when Packager:/Vendor: is put in specfiles, because it is then almost impossible to get the name/email of the person who _really_ did the packaging (assuming s/he set it in their .rpmmacros). Such similarly applies to the Distribution: tag, which is why I suggest its removal and let the build systems provide the proper string instead. Also make use of rpm macros in one place. Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Reviewed-by: Christoph Hellwig <hch@lst.de>
2009-02-042.2.9 releasev2.2.9Felix Blyakher1-1/+1
2009-01-30bump version and update CHANGESChristoph Hellwig2-1/+4
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Felix Blyakher <felixb@sgi.com>
2009-01-25only symlink development libraries when neededMike Frysinger1-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>
2009-01-08fix include/ symlink creation (again)Eric Sandeen1-2/+2
We need the "default" target first, otherwise a simple "make -C include" only ran the xfs target, missing disk, and failures ensued. Reviewed-by: Christoph Hellwig <hch@infradead.org>
2008-12-30fix parallel installs in include/ dirsEric Sandeen1-3/+4
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>
2008-12-30fix up xfs-cmds build after the parallel-festEric Sandeen1-1/+1
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>
2008-11-21Allow parallel builds of xfs-cmds.Barry Naujok4-23/+40
Merge of master-melb:xfs-cmds:32514a by kenmcd. Allow parallel builds of xfs-cmds
2008-03-03Debian and version updatesBarry Naujok1-0/+1
Merge of master-melb:xfs-cmds:30604a by kenmcd. Debian update for uploaders
2007-06-28make sure the library link respects LDFLAGSBarry Naujok1-0/+1
Merge of master-melb:xfs-cmds:29016a by kenmcd. make sure the library link respects LDFLAGS
2007-06-28Update dmapi specfile for dmapi-devel requiring xfsprogs-develBarry Naujok1-2/+2
Merge of master-melb:xfs-cmds:29012a by kenmcd. dmapi-devel RPM should Require: xfsprogs-devel
2007-05-28Update debian changelogsBarry Naujok2-4/+5
Merge of master-melb:xfs-cmds:28713a by kenmcd. Update debian changelogs
2007-02-09A dmapi enabled xfs filesytem can be mounted with any of the alias mountVlad Apostolov3-1/+6
options "dmapi", "xdsm" or "dmi". Libdm is missing a check for "dmi" hence the failure with the test 144. Merge of master-melb:xfs-cmds:28053a by kenmcd. pv 960369, rv dgc - libdm is missing a check for "dmi" mount option in get_mnt()
2006-08-21Fix symlink detection in userspace MakefilesNathan Scott1-3/+5
Merge of master-melb:xfs-cmds:26825a by kenmcd.
2006-08-04Merge the uid/gid username/groupname install target fixup to all packages.Nathan Scott2-9/+12
Merge of master-melb:xfs-cmds:26582a by kenmcd.
2006-07-14fix make depend for libtool librariesTim Shimmin3-14/+25
Merge of master-melb:xfs-cmds:26539a by kenmcd.
2006-07-04some Makefile dependency fixesTim Shimmin4-2/+17
Merge of master-melb:xfs-cmds:26405a by kenmcd. bump version# for depend changes
2006-05-02Allow LDFLAGS to come from build env, for the Gentoo fringe dwellers.Nathan Scott2-1/+2
Merge of master-melb:xfs-cmds:25860a by kenmcd.
2006-04-04fix lib64 installsTim Shimmin7-36/+147
Merge of master-melb:xfs-cmds:25657a by kenmcd.
2006-03-28Debian packaging updates for DMAPI userspace package.Nathan Scott9-26/+42
Merge of master-melb:xfs-cmds:25585a by kenmcd.
2006-03-22Fix up changelog date on debian build file.Nathan Scott1-1/+1
Merge of master-melb:xfs-cmds:25534a by kenmcd.
2006-03-20Some Debian packaging issues resolved in dmapi package.Nathan Scott5-6/+17
Merge of master-melb:xfs-cmds:25508a by kenmcd.
2006-01-31Minor updates - spec file usr/grp fixups on install, double-free cleanup in ↵Nathan Scott1-0/+3
libattr for non-alloca platforms. Merge of master-melb:xfs-cmds:25070a by kenmcd.
2005-11-21Bump dmapi userspace package version number.Nathan Scott3-1/+12
Merge of master-melb:xfs-cmds:24520a by kenmcd.
2005-11-21Resolve getdents/getdents64 and various build issues from libdm using kernel ↵Nathan Scott6-43/+311
types directly. Merge of master-melb:xfs-cmds:24519a by kenmcd.
2005-11-10Bump version numbers of userspace packages to note copyright/license updates.Nathan Scott3-3/+7
Merge of master-melb:xfs-cmds:24344a by kenmcd.
2005-11-09Update copyright annotations and license boilerplates to correspond with SGI ↵Nathan Scott22-592/+204
Legals preferences. Merge of master-melb:xfs-cmds:24332a by kenmcd.
2005-11-09Update copyright annotations and license boilerplates to correspond with SGI ↵Nathan Scott10-280/+0
Legals preferences. Merge of master-melb:xfs-cmds:24326a by kenmcd.
2005-11-07Keep packaging scripts in sync across all of the packages were maintaining hereNathan Scott3-6/+19
Merge of master-melb:xfs-cmds:24301a by kenmcd.
2005-05-23Remove dm_fsfid from libdmDean Roehrich3-40/+33
Update to match the kernel version
2005-04-21Merge in a debian packaging control file for DMAPI.Nathan Scott1-1/+1
Merge of master-melb:xfs-cmds:22307a by kenmcd.
2005-04-21Merge in a debian packaging changelog entry for DMAPI.Nathan Scott1-1/+1
Merge of master-melb:xfs-cmds:22306a by kenmcd.
2005-04-18check whether we actually have an rpm binary before lookin at its versionChristoph Hellwig2-4/+4
check whether we actually have an rpm binary before lookin at its version
2005-03-08Fix up some autoconf macros to get freebsd builds working again.Nathan Scott2-2/+2
Merge of master-melb:xfs-cmds:21750a by kenmcd.
2005-02-21Propogae last BSD build/configure fix to all places its useful.Nathan Scott2-6/+6
Merge of master-melb:xfs-cmds:21571a by kenmcd.
2004-10-04Fix DMAPI userspace source to include fewer kernel headers directly, and ↵Nathan Scott3-13/+8
include XFS headers via the usual libxfs.h interface.
2004-09-30Keep userspace packaging in sync, portability changes and dmapi headers.Nathan Scott10-94/+238
Merge of xfs-cmds-melb:slinx:19611a by kenmcd.
2004-07-09Fix up configure problems in xfstests and xfsprogs.Nathan Scott1-1/+1
2004-05-25prep dmapi library for new dmapi on 2.4 kernelDean Roehrich1-9/+13
find new dmapi device on 2.4 kernel
2004-04-30Sync up different copies of the m4 macros, noop change for this package.Nathan Scott1-2/+2
2004-04-27Update DMAPI debian packaging.Nathan Scott1-0/+6
2004-04-21Update dmapi lib versionDean Roehrich2-1/+4
update version
2004-04-20For 2.6 kernel, libdm should look for /dev/dmapiDean Roehrich1-1/+1
For 2.6 kernel, libdm should look for /dev/dmapi
2004-01-19Fix up autoconf/configure issues, esp. mishandling the AC_CHECK_SIZEOF macro.Nathan Scott2-4/+4
2003-12-05Sync up with recent kernel changes, noop for userspaceNathan Scott1-2/+2
2003-11-02Debian packaging update to close out an old DMAPI package-naming request. ↵Nathan Scott5-21/+43
Only affects Debian.
2003-10-17Update libdm for new dmapi device used in 2.6.Dean Roehrich2-5/+11
update version for move of dmapi device.
2003-10-08Default package version to 1, not 0, to follow conventionEric Sandeen1-1/+1
2003-09-22Sync dmapi userspace header with recent kernel changesNathan Scott1-0/+5
2003-08-29Sync some dmapi-related header changes with userspace, all a no-op for the ↵Nathan Scott1-4/+4
user tools
2003-08-24Clarify the configure message for when pre-xfsctl libxfs.h versions are ↵Nathan Scott2-14/+14
being used for builds
2003-07-07Dont rebuild .pot file always, for fresh checkouts it will be readonlyNathan Scott1-2/+2
2003-07-07Fix userspace build so that msgmerge is not always run. Originally by Steve ↵Nathan Scott1-3/+6
Langasek.
2003-05-14Sync up minor differences between configure scripts (uuid, libtool checks), ↵Nathan Scott3-13/+70
add in configurable package version number suffixes.
2003-04-29Bunch of configure updates for dmapi to allow packages to better be keptNathan Scott16-192/+513
in sync in this area. Add an aclocal.m4 build target for top level directory.
2003-04-16Keep build files in sync -- merge Russells whitespace changes to other files.Nathan Scott2-17/+17
2003-04-14dmapi/xfsdump configure fixes, some xfs_copy fixups.Nathan Scott4-14/+45
dmapi package configure fixes.
2003-03-31Minor userspace build changes, keeping packages in sync.Nathan Scott6-13/+17
2003-03-26Minor packaging related cleanups and updates.Nathan Scott5-8/+14
2003-03-26Merge back some spec file cleanups after investigating a mysteriousNathan Scott3-53/+33
build problem for the internal SGI builds. Merge of xfs-cmds-lbs:slinx:142673a by nathans. Fix Makepkgs scripts to be able to propogate make errors back to the caller.
2003-03-18Sync up userspace dmapi.h with kernel.Nathan Scott1-5/+10
2003-02-10Revert INSTALL_MAN buildmacro change - dopey, was causing install hangs.Nathan Scott1-1/+1
2003-02-06Push Steves INSTALL_LINGUAS shell macro fix to other buildmacros files, andNathan Scott1-5/+7
make a similar fixup for the INSTALL_MAN macro.
2003-01-08Fix a merge botch after recent build changes. (attr -> xfs - thanks Olaf).Nathan Scott1-1/+1
2002-12-16Sync up with recent DMAPI kernel header changes.Nathan Scott1-1/+1
2002-12-01Updates to acl/attr I18N (final). Sync up dmapi scripts with the I18NNathan Scott4-43/+79
aware versions - dmapi doesn't have any strings, so this is just keeping scripts in sync. Sync up dmapi scripts with the I18N aware versions - dmapi doesn't have any strings (just a library), so this is just keeping scripts in sync.
2002-11-05Remove "Distribution" tag from RPMs, let rpm set it more flexiblyEric Sandeen1-1/+0
via rpmmacros, etc. (We did have an environment var that could set it, but that's not "the rpm way.")
2002-10-31Fix up spec files:Eric Sandeen1-2/+2
Make packager, vendor consistent, as Silicon Graphics, Inc. Remove Copyright: tag, as this seems to actually be an alias for License, and add a License: GPL tag. (Otherwise querying the package whould show "License: Copyright Silicon Graphics..." which really doesn't make sense)
2002-09-03Do a better job of cleaning up after autoconf.Nathan Scott1-0/+1
2002-08-23trivial change allowing LIBTOOL var to specify where libtool lives, justNathan Scott1-2/+2
the same as we do for other build tools.
2002-07-29sync up with recent changes to the corresponding kernel code.Nathan Scott2-72/+78
2002-07-16match include/linux/dmapi_kern.hDean Roehrich1-148/+148
2002-07-16Use rpmbuild for building rpmsEric Sandeen4-2/+16
2002-07-05Build infrastructure updates so that configure options can be used toNathan Scott10-79/+58
specify paths rather than semi-hard-coded path names controlled by the PREFIX/ROOT_PREFIX environment variables; eg. now allows /lib64 and /lib32 as alternate library install paths, which some folks need.
2002-06-19synchronize libdm dmapi_kern.h with linux dmapi_kern.hDean Roehrich1-4/+0
2002-06-18In dm_handle_to_path(), use getmntent() to walk through the filesystems,Dean Roehrich7-36/+96
looking for one with an fshandle that matches that of the object we're trying to find. Open that path so we have a filedescriptor, and hence a valid vfsmount structure, to give to dm_open_by_handle(). This simplifies a mess on the kernel side. No Message Supplied
2002-06-13use dm_mode_t rather than mode_t in dmapiDean Roehrich1-4/+4
2002-06-12coupla updates so I can upload the new version to the debian servers.Nathan Scott2-2/+6
2002-06-12No Message SuppliedDean Roehrich7-324/+341
2002-06-05Make scripts executable again... sigh...Eric Sandeen0-0/+0
2002-06-04Update copyright dates (again)Eric Sandeen31-31/+31
2002-06-04Undoes mod: xfs-cmds:slinx:120772aEric Sandeen31-31/+31
Undo xfs-cmds:slinx:120772a, inadvertently whacked a previous mod.
2002-06-04Update copyright datesEric Sandeen31-31/+31
2002-05-14Make xfs symlink in include/ dir so we can find xfs/dmapi.hEric Sandeen2-1/+4
2002-04-13bump version number, build updates to fix a cflags propogation issueNathan Scott5-12/+21
which was recently introduced.
2002-04-05incorporate Andreas' makedepend realtive-path change everywhere.Nathan Scott1-4/+10
2002-04-05needs to be in magic format for upload.Nathan Scott4-154/+183
2002-04-03sync up with minor build changes from other packages, noop for dmapi.Nathan Scott1-33/+37
2002-04-01use LTLIBS instead of LDLIBS in LTLIBRARY build, allowing malloc debugNathan Scott1-1/+1
libraries to be linked in again. qa tripped over this.
2002-03-21dm_handle_to_path() will now work in most cases, and in the other casesDean Roehrich10-25/+74
there's just a little more grunt work that has to be done in the library. If the directory that contains some component of the path has never had a lookup performed on it, then the kernel won't have that dir in its dcache. In that case it'll create an anonymous dentry for the filesystem's root dir, and the library detects that this happened. If the library detects that an anonymous dentry was created, then it returns an error indicating that it didn't find the path. Before I take this another step, I'd like to know if this scenario happens in actual practice. I'm betting the directory of interest has almost always been loaded into the dcache by a user process before the HSM uses dm_handle_to_path(). We'll see. It seems that ioctl(XFS_IOC_OPEN_BY_HANDLE) would have the same restriction, though it looks like it's never used in a case where the path hasn't already been accessed. This mod also removes libdm's dependence on libhandle. update revision
2002-02-25Merge of xfs-cmds-2.4.18:slinx:112273a by nathans.Nathan Scott2-1/+2
sync up with patch from AndreasG, mainly creates libattr.rpm/deb.
2002-02-25Merge of xfs-cmds-2.4.18:slinx:111136a by nathans.Nathan Scott6-10/+30
bump to version 2.0.0 for extended attribute and other interface changes.
2001-12-06match linux/include/linux/dmapi_kern.hDean Roehrich1-43/+16
2001-12-05update for 0.3.0 release.Nathan Scott1-0/+8
2001-12-05No Message SuppliedDean Roehrich3-3/+8
2001-12-04find the dmapi device in its new locationDean Roehrich1-1/+1
2001-10-30No Message SuppliedDean Roehrich1-16/+17
2001-09-12No Message SuppliedDean Roehrich16-244/+259
2001-09-12Make install-sh posix compliant so ash as /bin/sh works.Nathan Scott1-1/+1
2001-08-13No Message SuppliedDean Roehrich1-0/+3
2001-08-04don't use -f to "hostname", its not portable.Nathan Scott1-1/+1
2001-08-02additional diagnostic messages when we can't find headers/libs we need.Nathan Scott1-0/+1
2001-08-01add -fno-strict-aliasing for shared lib objects, rationalise multipleNathan Scott1-6/+8
dirt entries and cosmetic change in libtool macro ordering.
2001-07-31I noticed that my programs were not linking with the shared libs. ApparentlyDean Roehrich1-1/+5
if you say something like (from the dmapi tests stuff): gcc -g -O2 -o dm_handle dm_handle.o libdmtest.a -ldm -lhandle it will link with whatever it finds in /usr/lib. If there are no shared libs there then it'll link with the static libs. When I add a symlink to make libdm.so and libhandle.so appear in /usr/lib then I am able to link to the shared libs. No Message Supplied
2001-07-26bump revision to indicate we're done with libtool changes now.Nathan Scott4-2/+11
2001-07-26use the same symlink trick we just put int for .a, in the .la install case.Nathan Scott1-6/+5
2001-07-25change the so_dot_version mode back to 644Dean Roehrich1-1/+1
2001-07-24fix the AC_ARG_ENABLE macro for --enable-shared.Dean Roehrich2-3/+9
2001-07-23install static libs and libtool archives into /usr/lib, not /lib.Nathan Scott4-5/+16
2001-07-20tidy up handling of workarounds for debstd symlink handling wierdness.Nathan Scott3-15/+21
2001-07-19teach install-sh about the libtool library file. It'll source it inDean Roehrich3-13/+118
to figure out what libtool built. It'll install the library pieces appropriately
2001-07-19add headerDean Roehrich1-0/+1
2001-07-19Checked standards compliance - update standards version to 3.5.5.Nathan Scott2-1/+2
2001-07-19change the way we interact with libtool and do .deb packaging forNathan Scott16-175/+177
consistency between all packages.
2001-07-18update versionDean Roehrich3-11/+4
2001-06-13add libtool stuff to LSRCFILES and LDIRTDean Roehrich8-12/+112
2001-06-12use . ./VERSION rather than . VERSIONIvan Rayner1-1/+1
2001-05-09remove -Wno-parentheses - compiles fine without it.Nathan Scott1-2/+2
2001-05-07in the absence of any compeling information to suggest otherwise, fallNathan Scott1-1/+1
back to installing man pages in /usr/share/man, rather than /usr/man.
2001-03-29make clean before proceeding to do a build to ensure no leftoversNathan Scott1-58/+55
corrupt subsequent invocations (for rpm builds).
2001-03-29change over to ia64 friendly syscall() instead of _syscall* macrosAndrew Gildfind1-7/+5
2001-03-20change sed subsitution from ./rpmmacros to rpmmacros ... this fixes cmd build Russell Cattelan1-1/+1
with rpm 4.0.2
2001-03-01make sure all build leftovers are cleaned up.Nathan Scott1-1/+1
2001-03-01ensure make clean gets rid of all build leftovers.Nathan Scott1-1/+1
2001-02-28libdm touch-upsDean Roehrich4-101/+17
place dmapi.h in /usr/include/xfs
2001-02-19explicitly include stdarg.h for recent glibc 2.2.2 changes to stdio.h.Nathan Scott1-0/+1
2001-01-30roll minor version for packaging changes.Nathan Scott4-5/+17
2001-01-29fix use of potentially uninitialised variable in deciding where to putNathan Scott1-0/+1
man pages and how to build them.
2001-01-25set the distribution environment variable before configure step.Nathan Scott2-5/+3
2001-01-25little out of date - sync up with other Makepkgs.Nathan Scott4-5/+15
2001-01-17initial version for reworked dmapi build environment.Nathan Scott45-56/+4328
2001-01-17cmd/dmapi/libdm/linux/dmapi_lib.h 1.1 Renamed to cmd/dmapi/libdm/dmapi_lib.hNathan Scott1-0/+36
2001-01-17cmd/dmapi/libdm/linux/dmapi_lib.c 1.1 Renamed to cmd/dmapi/libdm/dmapi_lib.cNathan Scott1-0/+517
2001-01-17cmd/xfsprogs/libdm/Makefile 1.1 Renamed to cmd/dmapi/libdm/MakefileNathan Scott14-0/+1717