Remove some references to PortAudio.

Change-Id: Icfe9516ff814db5362aa345e6f527551dcb13935
Reviewed-on: https://code.wireshark.org/review/26946
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Gerald Combs 2018-04-14 18:41:05 -07:00 committed by Anders Broman
parent 4adaa3a4b1
commit 08c2344458
4 changed files with 9 additions and 33 deletions

View File

@ -312,28 +312,6 @@ http://www.lua.org/download.html[].
We provide a copy of the official package at
https://anonsvn.wireshark.org/wireshark-win32-libs/trunk/packages/[].
[[ChLibsPortAudio]]
=== PortAudio (optional)
The PortAudio library enables audio output for RTP streams.
[[ChLibsUnixPortAudio]]
==== Unix
If this library isn't already installed or available as a
package for your platform, you can get it at
http://www.portaudio.com/download.html[].
[[ChLibsWin32PortAudio]]
==== Win32 MSVC
The PortAudio sources are downloaded from
https://anonsvn.wireshark.org/wireshark-win32-libs/trunk/packages/[] and compiled
locally.
[[ChLibsMaxMindDB]]
=== MaxMindDB (optional)

View File

@ -378,7 +378,7 @@ Use the following command to install Wireshark under Gentoo Linux with all of
the extra features:
----
$ USE="c-ares ipv6 portaudio snmp ssl kerberos threads selinux" emerge wireshark
$ USE="c-ares ipv6 snmp ssl kerberos threads selinux" emerge wireshark
----
==== Installing from packages under FreeBSD

View File

@ -93,9 +93,8 @@ get_zlib_compiled_version_info(void)
*
* "append_info" is called at the end to append any additional
* information after the standard library information. This is
* required in order to, for example, put the Portaudio information
* at the end of the string, as we currently don't use Portaudio in
* TShark.
* required in order to, for example, put Qt information at the
* end of the string, as we don't use Qt in TShark.
*/
GString *
get_compiled_version_info(void (*prepend_info)(GString *),
@ -301,8 +300,8 @@ get_locale(void)
*
* "additional_info" is called at the end to append any additional
* information; this is required in order to, for example, put the
* Portaudio information at the end of the string, as we currently
* don't use Portaudio in TShark.
* libcap information at the end of the string, as we currently
* don't use libcap in TShark.
*/
GString *
get_runtime_version_info(void (*additional_info)(GString *))

View File

@ -27,9 +27,8 @@ extern "C" {
*
* "append_info" is called at the end to append any additional
* information after the standard library information. This is
* required in order to, for example, put the Portaudio information
* at the end of the string, as we currently don't use Portaudio in
* TShark.
* required in order to, for example, put Qt information at the
* end of the string, as we don't use Qt in TShark.
*/
GString *get_compiled_version_info(void (*prepend_info)(GString *),
void (*append_info)(GString *));
@ -40,8 +39,8 @@ GString *get_compiled_version_info(void (*prepend_info)(GString *),
*
* "additional_info" is called at the end to append any additional
* information; this is required in order to, for example, put the
* Portaudio information at the end of the string, as we currently
* don't use Portaudio in TShark.
* libcap information at the end of the string, as we currently
* don't use libcap in TShark.
*/
GString *get_runtime_version_info(void (*additional_info)(GString *));