aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--pkgconfig/Makefile.am6
-rw-r--r--pkgconfig/gnunetmicrophone.pc.in12
-rw-r--r--pkgconfig/gnunetspeaker.pc.in12
4 files changed, 31 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9400835d0..2e191abf3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1414,6 +1414,7 @@ pkgconfig/gnunetgns.pc
1414pkgconfig/gnunethello.pc 1414pkgconfig/gnunethello.pc
1415pkgconfig/gnunetidentity.pc 1415pkgconfig/gnunetidentity.pc
1416pkgconfig/gnunetmesh.pc 1416pkgconfig/gnunetmesh.pc
1417pkgconfig/gnunetmicrophone.pc
1417pkgconfig/gnunetmulticast.pc 1418pkgconfig/gnunetmulticast.pc
1418pkgconfig/gnunetmysql.pc 1419pkgconfig/gnunetmysql.pc
1419pkgconfig/gnunetnamestore.pc 1420pkgconfig/gnunetnamestore.pc
@@ -1427,6 +1428,7 @@ pkgconfig/gnunetregex.pc
1427pkgconfig/gnunetrevocation.pc 1428pkgconfig/gnunetrevocation.pc
1428pkgconfig/gnunetscalarproduct.pc 1429pkgconfig/gnunetscalarproduct.pc
1429pkgconfig/gnunetset.pc 1430pkgconfig/gnunetset.pc
1431pkgconfig/gnunetspeaker.pc
1430pkgconfig/gnunetstatistics.pc 1432pkgconfig/gnunetstatistics.pc
1431pkgconfig/gnunettestbed.pc 1433pkgconfig/gnunettestbed.pc
1432pkgconfig/gnunettesting.pc 1434pkgconfig/gnunettesting.pc
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am
index c4a366b2f..068b0bbe1 100644
--- a/pkgconfig/Makefile.am
+++ b/pkgconfig/Makefile.am
@@ -19,7 +19,8 @@ pcfiles = \
19 gnunethello.pc \ 19 gnunethello.pc \
20 gnunetidentity.pc \ 20 gnunetidentity.pc \
21 gnunetmesh.pc \ 21 gnunetmesh.pc \
22 gnunetmulticast.pc.in \ 22 gnunetmicrophone.pc \
23 gnunetmulticast.pc \
23 gnunetmysql.pc \ 24 gnunetmysql.pc \
24 gnunetnamestore.pc \ 25 gnunetnamestore.pc \
25 gnunetnat.pc \ 26 gnunetnat.pc \
@@ -32,6 +33,7 @@ pcfiles = \
32 gnunetrevocation.pc \ 33 gnunetrevocation.pc \
33 gnunetscalarproduct.pc \ 34 gnunetscalarproduct.pc \
34 gnunetset.pc \ 35 gnunetset.pc \
36 gnunetspeaker.pc \
35 gnunetstatistics.pc \ 37 gnunetstatistics.pc \
36 gnunettestbed.pc \ 38 gnunettestbed.pc \
37 gnunettesting.pc \ 39 gnunettesting.pc \
@@ -73,6 +75,7 @@ EXTRA_DIST = \
73 gnunethello.pc.in \ 75 gnunethello.pc.in \
74 gnunetidentity.pc.in \ 76 gnunetidentity.pc.in \
75 gnunetmesh.pc.in \ 77 gnunetmesh.pc.in \
78 gnunetmicrophone.pc.in \
76 gnunetmulticast.pc.in \ 79 gnunetmulticast.pc.in \
77 gnunetmysql.pc.in \ 80 gnunetmysql.pc.in \
78 gnunetnamestore.pc.in \ 81 gnunetnamestore.pc.in \
@@ -86,6 +89,7 @@ EXTRA_DIST = \
86 gnunetrevocation.pc.in \ 89 gnunetrevocation.pc.in \
87 gnunetscalarproduct.pc.in \ 90 gnunetscalarproduct.pc.in \
88 gnunetset.pc.in \ 91 gnunetset.pc.in \
92 gnunetspeaker.pc.in \
89 gnunetstatistics.pc.in \ 93 gnunetstatistics.pc.in \
90 gnunettestbed.pc.in \ 94 gnunettestbed.pc.in \
91 gnunettesting.pc.in \ 95 gnunettesting.pc.in \
diff --git a/pkgconfig/gnunetmicrophone.pc.in b/pkgconfig/gnunetmicrophone.pc.in
new file mode 100644
index 000000000..fd39f51a8
--- /dev/null
+++ b/pkgconfig/gnunetmicrophone.pc.in
@@ -0,0 +1,12 @@
1prefix=@prefix@
2exec_prefix=@exec_prefix@
3libdir=@libdir@
4includedir=@includedir@
5
6Name: GNUnet MICROPHONE
7Description: library to access the system's microphone (recording of OPUS-encoded data)
8URL: https://gnunet.org
9Version: @VERSION@
10Requires:
11Libs: -L${libdir} -lgnunetmicrophone
12Cflags: -I${includedir}
diff --git a/pkgconfig/gnunetspeaker.pc.in b/pkgconfig/gnunetspeaker.pc.in
new file mode 100644
index 000000000..3d0ab7aec
--- /dev/null
+++ b/pkgconfig/gnunetspeaker.pc.in
@@ -0,0 +1,12 @@
1prefix=@prefix@
2exec_prefix=@exec_prefix@
3libdir=@libdir@
4includedir=@includedir@
5
6Name: GNUnet SPEAKER
7Description: library to access the system's speaker (playback of OPUS-encoded data)
8URL: https://gnunet.org
9Version: @VERSION@
10Requires:
11Libs: -L${libdir} -lgnunetspeaker
12Cflags: -I${includedir}