diff options
author | Karel Zak <kzak@redhat.com> | 2006-12-07 00:26:31 +0100 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2006-12-07 00:26:31 +0100 |
commit | 756bfd018eb393640dad490df1a1ca840d9ee79b (patch) | |
tree | d95fd02eefcc647d4886761ccb74e976ee7aa32a /configure | |
parent | a47f2e66141271cde40ee5190acf93d7878bc93d (diff) | |
download | util-linux-old-756bfd018eb393640dad490df1a1ca840d9ee79b.tar.gz |
Imported from util-linux-2.12o tarball.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -12,6 +12,7 @@ # H4. For nls.h: do we have <locale.h>? # H5. For cal.c: do we have <langinfo.h>? # H6. For mkswap.c: do we have <sys/user.h> or <asm/page.h>? +# H6a For mkswap.c: do we have <uuid/uuid.h>? # H7. For nfsmount.c: do we have <rpcsvc/nfs_prot.h>? # H8. For nfsmount.h (nfsmount_xdr.c: int32_t): do we have <asm/types.h>? # H9. For raw.c: do we have <linux/raw.h>? @@ -164,6 +165,16 @@ else if ./testincl "asm/page.h"; then fi; fi # +# H6a. For mkswap.c: do we have <uuid/uuid.h>? +# +if ./testincl "uuid/uuid.h"; then + echo "#define HAVE_uuid_uuid_h" >> defines.h + echo "HAVE_UUID=yes" >> make_include +else + echo "HAVE_UUID=no" >> make_include +fi + +# # H7. For nfsmount.c: do we have <rpcsvc/nfs_prot.h>? # if ./testincl "rpcsvc/nfs_prot.h"; then |