Browse Source

-add missing pkgconfig generations

Christian Grothoff 10 years ago
parent
commit
0221a112ac

+ 12 - 1
configure.ac

@@ -1394,28 +1394,39 @@ src/util/resolver.conf
 src/vpn/Makefile
 src/vpn/vpn.conf
 pkgconfig/Makefile
-pkgconfig/gnunetats.pc
 pkgconfig/gnunetarm.pc
+pkgconfig/gnunetats.pc
 pkgconfig/gnunetblock.pc
+pkgconfig/gnunetconsensus.pc
+pkgconfig/gnunetconversation.pc
 pkgconfig/gnunetcore.pc
 pkgconfig/gnunetdatacache.pc
 pkgconfig/gnunetdatastore.pc
 pkgconfig/gnunetdht.pc
 pkgconfig/gnunetdns.pc
 pkgconfig/gnunetdnsparser.pc
+pkgconfig/gnunetdnsstub.pc
 pkgconfig/gnunetdv.pc
+pkgconfig/gnunetenv.pc
 pkgconfig/gnunetfragmentation.pc
 pkgconfig/gnunetfs.pc
 pkgconfig/gnunetgns.pc
 pkgconfig/gnunethello.pc
+pkgconfig/gnunetidentity.pc
 pkgconfig/gnunetmesh.pc
+pkgconfig/gnunetmulticast.pc
 pkgconfig/gnunetmysql.pc
 pkgconfig/gnunetnamestore.pc
 pkgconfig/gnunetnat.pc
 pkgconfig/gnunetnse.pc
 pkgconfig/gnunetpeerinfo.pc
 pkgconfig/gnunetpostgres.pc
+pkgconfig/gnunetpsyc.pc
+pkgconfig/gnunetpsycstore.pc
 pkgconfig/gnunetregex.pc
+pkgconfig/gnunetrevocation.pc
+pkgconfig/gnunetscalarproduct.pc
+pkgconfig/gnunetset.pc
 pkgconfig/gnunetstatistics.pc
 pkgconfig/gnunettestbed.pc
 pkgconfig/gnunettesting.pc

+ 23 - 3
pkgconfig/Makefile.am

@@ -1,26 +1,37 @@
 pcfiles = \
-       gnunetats.pc \
        gnunetarm.pc \
+       gnunetats.pc \
        gnunetblock.pc \
+       gnunetconsensus.pc \
+       gnunetconversation.pc \
        gnunetcore.pc \
        gnunetdatacache.pc \
        gnunetdatastore.pc \
        gnunetdht.pc \
        gnunetdns.pc \
        gnunetdnsparser.pc \
+       gnunetdnsstub.pc \
        gnunetdv.pc \
+       gnunetenv.pc \
        gnunetfragmentation.pc \
        gnunetfs.pc \
        gnunetgns.pc \
        gnunethello.pc \
+       gnunetidentity.pc \
        gnunetmesh.pc \
+       gnunetmulticast.pc.in \
        gnunetmysql.pc \
        gnunetnamestore.pc \
        gnunetnat.pc \
        gnunetnse.pc \
        gnunetpeerinfo.pc \
        gnunetpostgres.pc \
+       gnunetpsyc.pc \
+       gnunetpsycstore.pc \
        gnunetregex.pc \
+       gnunetrevocation.pc \
+       gnunetscalarproduct.pc \
+       gnunetset.pc \
        gnunetstatistics.pc \
        gnunettestbed.pc \
        gnunettesting.pc \
@@ -45,28 +56,37 @@ EXTRA_DIST = \
        gnunetarm.pc.in \
        gnunetats.pc.in \
        gnunetblock.pc.in \
+       gnunetconsensus.pc.in \
+       gnunetconversation.pc.in \
        gnunetcore.pc.in \
        gnunetdatacache.pc.in \
        gnunetdatastore.pc.in \
        gnunetdht.pc.in \
        gnunetdns.pc.in \
        gnunetdnsparser.pc.in \
+       gnunetdnsstub.pc.in \
        gnunetdv.pc.in \
+       gnunetenv.pc.in \
        gnunetfragmentation.pc.in \
        gnunetfs.pc.in \
        gnunetgns.pc.in \
        gnunethello.pc.in \
-       gnunetlockmanager.pc.in \
+       gnunetidentity.pc.in \
        gnunetmesh.pc.in \
+       gnunetmulticast.pc.in \
        gnunetmysql.pc.in \
        gnunetnamestore.pc.in \
        gnunetnat.pc.in \
        gnunetnse.pc.in \
        gnunetpeerinfo.pc.in \
        gnunetpostgres.pc.in \
+       gnunetpsyc.pc.in \
+       gnunetpsycstore.pc.in \
        gnunetregex.pc.in \
+       gnunetrevocation.pc.in \
+       gnunetscalarproduct.pc.in \
+       gnunetset.pc.in \
        gnunetstatistics.pc.in \
-       gnunetstream.pc.in \
        gnunettestbed.pc.in \
        gnunettesting.pc.in \
        gnunettransport.pc.in \

+ 12 - 0
pkgconfig/gnunetconsensus.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet CONSENSUS
+Description: library to calculate a set union for a group of peers (multiparty consensus)
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetconsensus
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetconversation.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet CONVERSATION
+Description: library to transmit voice data over GNUnet
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetconversation
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetdnsstub.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet DNS stub
+Description: Provides API for asynchronous DNS resolution (DNS stub resolver)
+URL: http://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetdnsstub
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetenv.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet ENV
+Description: library to manipulate PSYC environments
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetenv
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetidentity.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet IDENTITY
+Description: library to access and organize private keys of the user's egos
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetidentity
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetmulticast.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet MULTICAST
+Description: library to multicast messages to a group of peers
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetmulticast
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetpsyc.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet PSYC
+Description: library for PSYC multicast channel management
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetpsyc
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetpsycstore.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet PSYCSTORE
+Description: library to for persistent storage of PSYC messages
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetpsycstore
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetrevocation.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet REVOCATION
+Description: library to perform key revocation in GNUnet
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetrevocation
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetscalarproduct.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet SCALARPRODUCT
+Description: library to perform privacy-preserving scalar product between two peers
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetscalarproduct
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetset.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet SET
+Description: library to perform set computations (union, intersection) between two peers
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetset
+Cflags: -I${includedir}