All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel
@ 2017-11-02 15:07 Steve Dickson
  2017-11-02 15:07 ` [PATCH 1/2] nfs-utils: Remove dependency on libnfsidmap-devel package Steve Dickson
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Steve Dickson @ 2017-11-02 15:07 UTC (permalink / raw)
  To: Linux NFS Mailing list

With commit a867b45e (Release: 2.2.1) libnfsidmap-devel
is now compiled and installed by nfs-utils. So the programs
that are dependent libnfsidmap-devel need to look 
inward verse outward for header files. 

Justin Mitchell (1):
  nfs-utils: Remove dependency on libnfsidmap-devel package

Steve Dickson (1):
  gitignore: ignore files generated by libnfsidmap compilation

 .gitignore                      |  1 +
 configure.ac                    |  2 ++
 support/nfsidmap/libnfsidmap.pc | 11 -----------
 3 files changed, 3 insertions(+), 11 deletions(-)
 delete mode 100644 support/nfsidmap/libnfsidmap.pc

-- 
2.13.6


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] nfs-utils: Remove dependency on libnfsidmap-devel package
  2017-11-02 15:07 [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel Steve Dickson
@ 2017-11-02 15:07 ` Steve Dickson
  2017-11-02 15:07 ` [PATCH 2/2] gitignore: ignore files generated by libnfsidmap compilation Steve Dickson
  2017-11-02 17:23 ` [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel Steve Dickson
  2 siblings, 0 replies; 4+ messages in thread
From: Steve Dickson @ 2017-11-02 15:07 UTC (permalink / raw)
  To: Linux NFS Mailing list

From: Justin Mitchell <jumitche@redhat.com>

With commit a867b45 (Release: 2.2.1) the libnfsidmap-devel
package is now build from with the nfs-utils source tree.
So the programs dependent on libnfsidmap-devel need to
look inward verses outward for the nfsidmap.h header file.

Signed-off-by: Steve Dickson <steved@redhat.com>
---
 configure.ac | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configure.ac b/configure.ac
index 9b2a502..c7651f2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -441,6 +441,8 @@ if test -n "$path_plugins" ; then
 fi
 AM_CONDITIONAL(PATH_PLUGINS, test -n "$path_plugins")
 
+AC_SUBST(AM_CPPFLAGS, "$AM_CPPFLAGS -I../../support/nfsidmap")
+
 dnl Check for IPv6 support
 AC_IPV6
 
-- 
2.13.6


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] gitignore: ignore files generated by libnfsidmap compilation
  2017-11-02 15:07 [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel Steve Dickson
  2017-11-02 15:07 ` [PATCH 1/2] nfs-utils: Remove dependency on libnfsidmap-devel package Steve Dickson
@ 2017-11-02 15:07 ` Steve Dickson
  2017-11-02 17:23 ` [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel Steve Dickson
  2 siblings, 0 replies; 4+ messages in thread
From: Steve Dickson @ 2017-11-02 15:07 UTC (permalink / raw)
  To: Linux NFS Mailing list

libnfsidmap.pc is generated during the compiling of libnfsidmap
which needed to be ignored.

Signed-off-by: Steve Dickson <steved@redhat.com>
---
 .gitignore                      |  1 +
 support/nfsidmap/libnfsidmap.pc | 11 -----------
 2 files changed, 1 insertion(+), 11 deletions(-)
 delete mode 100644 support/nfsidmap/libnfsidmap.pc

diff --git a/.gitignore b/.gitignore
index 540737d..f17db9c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,6 +35,7 @@ support/include/stamp-h1
 *.o
 *.lo
 *.la
+*.pc
 .libs
 lib*.a
 test-driver
diff --git a/support/nfsidmap/libnfsidmap.pc b/support/nfsidmap/libnfsidmap.pc
deleted file mode 100644
index 5ec28ae..0000000
--- a/support/nfsidmap/libnfsidmap.pc
+++ /dev/null
@@ -1,11 +0,0 @@
-prefix=/usr
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib64
-includedir=${prefix}/include
-
-Name: libnfsidmap
-Description: Library that handles mapping between names and ids for NFSv4.
-Requires:
-Version: 2.1.1
-Libs: -L${exec_prefix}/lib64 -lnfsidmap
-Cflags: -I${prefix}/include
-- 
2.13.6


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel
  2017-11-02 15:07 [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel Steve Dickson
  2017-11-02 15:07 ` [PATCH 1/2] nfs-utils: Remove dependency on libnfsidmap-devel package Steve Dickson
  2017-11-02 15:07 ` [PATCH 2/2] gitignore: ignore files generated by libnfsidmap compilation Steve Dickson
@ 2017-11-02 17:23 ` Steve Dickson
  2 siblings, 0 replies; 4+ messages in thread
From: Steve Dickson @ 2017-11-02 17:23 UTC (permalink / raw)
  To: Linux NFS Mailing list



On 11/02/2017 11:07 AM, Steve Dickson wrote:
> With commit a867b45e (Release: 2.2.1) libnfsidmap-devel
> is now compiled and installed by nfs-utils. So the programs
> that are dependent libnfsidmap-devel need to look 
> inward verse outward for header files. 
> 
> Justin Mitchell (1):
>   nfs-utils: Remove dependency on libnfsidmap-devel package
> 
> Steve Dickson (1):
>   gitignore: ignore files generated by libnfsidmap compilation
> 
>  .gitignore                      |  1 +
>  configure.ac                    |  2 ++
>  support/nfsidmap/libnfsidmap.pc | 11 -----------
>  3 files changed, 3 insertions(+), 11 deletions(-)
>  delete mode 100644 support/nfsidmap/libnfsidmap.pc
> 
Both committed! 

steved.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-11-02 17:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-02 15:07 [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel Steve Dickson
2017-11-02 15:07 ` [PATCH 1/2] nfs-utils: Remove dependency on libnfsidmap-devel package Steve Dickson
2017-11-02 15:07 ` [PATCH 2/2] gitignore: ignore files generated by libnfsidmap compilation Steve Dickson
2017-11-02 17:23 ` [PATCH 0/2] nfs-utils: Remove dependency on libnfsidmap-devel Steve Dickson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.