diff options
| author | neilbrown <neilbrown> | 2005-12-20 04:12:42 +0000 |
|---|---|---|
| committer | neilbrown <neilbrown> | 2005-12-20 04:12:42 +0000 |
| commit | ac5b03be829b4c9369ebfb07a688308721103228 (patch) | |
| tree | 90fd0ee1a8e08c241bf3fd0d54690b888e4b5926 /utils/exportfs | |
| parent | 371ca25167a217d647971384c37aa3fcee8a4aef (diff) | |
| download | nfs-utils-ac5b03be829b4c9369ebfb07a688308721103228.tar.gz nfs-utils-ac5b03be829b4c9369ebfb07a688308721103228.tar.xz nfs-utils-ac5b03be829b4c9369ebfb07a688308721103228.zip | |
Autogen update
Diffstat (limited to 'utils/exportfs')
| -rw-r--r-- | utils/exportfs/Makefile.am | 15 | ||||
| -rw-r--r-- | utils/exportfs/exportfs.c | 4 |
2 files changed, 18 insertions, 1 deletions
diff --git a/utils/exportfs/Makefile.am b/utils/exportfs/Makefile.am new file mode 100644 index 0000000..d0226fc --- /dev/null +++ b/utils/exportfs/Makefile.am @@ -0,0 +1,15 @@ +## Process this file with automake to produce Makefile.in + +man5_MANS = exports.man +man7_MANS = nfsd.man +man8_MANS = exportfs.man + +EXTRA_DIST = $(man5_MANS) $(man7_MANS) $(man8_MANS) +sbin_PROGRAMS = exportfs +exportfs_SOURCES = exportfs.c +exportfs_LDADD = ../../support/export/libexport.a \ + ../../support/nfs/libnfs.a \ + ../../support/misc/libmisc.a \ + $(LIBWRAP) $(LIBNSL) + +MAINTAINERCLEANFILES = Makefile.in diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c index c7a9a0e..c3ba997 100644 --- a/utils/exportfs/exportfs.c +++ b/utils/exportfs/exportfs.c @@ -8,7 +8,9 @@ * Extensive changes, 1999, Neil Brown <neilb@cse.unsw.edu.au> */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <stdlib.h> #include <string.h> |
