Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 02 Jan 2022 15:44:24 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 257222] Cannot use libzfs.h from user space programs due to missing libnvpair.h and other dependencies
Message-ID:  <bug-257222-227-Zc3kOMbdif@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-257222-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-257222-227@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D257222

Michael Gmelin <grembo@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|Affects Only Me             |Affects Some People
             Status|Closed                      |Open
                 CC|                            |grembo@FreeBSD.org
         Resolution|Works As Intended           |---

--- Comment #2 from Michael Gmelin <grembo@FreeBSD.org> ---
(In reply to Alan Somers from comment #1)

Re-opening, as even if using libzfs_core.h kernel sources are required, so =
all
the problems described by the bug author still exist.

This is how /usr/include/libzfs_core.h begins:

```
#ifndef _LIBZFS_CORE_H
#define _LIBZFS_CORE_H

#include <libnvpair.h>
```


Minimal example:

```
$ cat >test.c <<EOF
#include <libzfs_core.h>

int main()
{

}
EOF

$ cc test.c
/usr/include/libzfs_core.h:32:10: fatal error: 'libnvpair.h' file not found
#include <libnvpair.h>
         ^~~~~~~~~~~~~
1 error generated.

$ find / -name libnvpair.h
/usr/src/sys/contrib/openzfs/include/libnvpair.h

Try adding it to the search path:

$ cc -I/usr/src/sys/contrib/openzfs/include test.c
tons of errors, many more include paths required...
```

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-257222-227-Zc3kOMbdif>