Browse Source

-add missing pkgconfig generations

Christian Grothoff 10 years ago
parent
commit
528841dd59
4 changed files with 31 additions and 1 deletions
  1. 2 0
      configure.ac
  2. 5 1
      pkgconfig/Makefile.am
  3. 12 0
      pkgconfig/gnunetmicrophone.pc.in
  4. 12 0
      pkgconfig/gnunetspeaker.pc.in

+ 2 - 0
configure.ac

@@ -1414,6 +1414,7 @@ pkgconfig/gnunetgns.pc
 pkgconfig/gnunethello.pc
 pkgconfig/gnunetidentity.pc
 pkgconfig/gnunetmesh.pc
+pkgconfig/gnunetmicrophone.pc
 pkgconfig/gnunetmulticast.pc
 pkgconfig/gnunetmysql.pc
 pkgconfig/gnunetnamestore.pc
@@ -1427,6 +1428,7 @@ pkgconfig/gnunetregex.pc
 pkgconfig/gnunetrevocation.pc
 pkgconfig/gnunetscalarproduct.pc
 pkgconfig/gnunetset.pc
+pkgconfig/gnunetspeaker.pc
 pkgconfig/gnunetstatistics.pc
 pkgconfig/gnunettestbed.pc
 pkgconfig/gnunettesting.pc

+ 5 - 1
pkgconfig/Makefile.am

@@ -19,7 +19,8 @@ pcfiles = \
        gnunethello.pc \
        gnunetidentity.pc \
        gnunetmesh.pc \
-       gnunetmulticast.pc.in \
+       gnunetmicrophone.pc \
+       gnunetmulticast.pc \
        gnunetmysql.pc \
        gnunetnamestore.pc \
        gnunetnat.pc \
@@ -32,6 +33,7 @@ pcfiles = \
        gnunetrevocation.pc \
        gnunetscalarproduct.pc \
        gnunetset.pc \
+       gnunetspeaker.pc \
        gnunetstatistics.pc \
        gnunettestbed.pc \
        gnunettesting.pc \
@@ -73,6 +75,7 @@ EXTRA_DIST = \
        gnunethello.pc.in \
        gnunetidentity.pc.in \
        gnunetmesh.pc.in \
+       gnunetmicrophone.pc.in \
        gnunetmulticast.pc.in \
        gnunetmysql.pc.in \
        gnunetnamestore.pc.in \
@@ -86,6 +89,7 @@ EXTRA_DIST = \
        gnunetrevocation.pc.in \
        gnunetscalarproduct.pc.in \
        gnunetset.pc.in \
+       gnunetspeaker.pc.in \
        gnunetstatistics.pc.in \
        gnunettestbed.pc.in \
        gnunettesting.pc.in \

+ 12 - 0
pkgconfig/gnunetmicrophone.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet MICROPHONE
+Description: library to access the system's microphone (recording of OPUS-encoded data)
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetmicrophone
+Cflags: -I${includedir}

+ 12 - 0
pkgconfig/gnunetspeaker.pc.in

@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: GNUnet SPEAKER
+Description: library to access the system's speaker (playback of OPUS-encoded data)
+URL: https://gnunet.org
+Version: @VERSION@
+Requires:
+Libs: -L${libdir} -lgnunetspeaker
+Cflags: -I${includedir}