freebsd-dev/rpm/generic
Turbo Fredriksson c3f8dc2a48 Add a pkgconfig file
Providing a pkg-config file makes is easy for 3rd party applications
to link against the libzfs libraries.  It also allows the libzfs
developers to modify the list of required libraries and cflags
without breaking existing applications.

The following example illustrates how pkg-config can be used:

cc `pkg-config --cflags --libs libzfs` -o myapp myapp.c

/*
 * myapp.c
 */
void main()
{
	libzfs_handle_t *hdl;

	hdl = libzfs_init();
	if (hdl)
		libzfs_fini(hdl);
}

Signed-off-by: Turbo Fredriksson <turbo@bayour.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes: #585
2014-08-28 07:59:43 -07:00
..
.gitignore
Makefile.am
zfs-dkms.spec.in Fix DKMS package upgrade and packager 2014-05-30 11:23:48 -07:00
zfs-kmod.spec.in Tag zfs-0.6.3 2014-06-12 13:34:38 -07:00
zfs.spec.in Add a pkgconfig file 2014-08-28 07:59:43 -07:00