fix some html entities

This commit is contained in:
Robin Gareus 2013-02-11 00:59:42 +01:00
parent 1cc38de2fd
commit 0e5a608a6d
3 changed files with 37 additions and 33 deletions

View File

@ -7,10 +7,10 @@ This includes:
* examples clients
* tools
They are installed in <PREFIX>/bin/
They are installed in &lt;PREFIX&gt;/bin/
# Libraries
libjack and libjackserver are installed in <PREFIX/lib/
libjack and libjackserver are installed in &lt;PREFIX&gt;/lib/
libtool-like install is made with .la files and symbolic links, like this:
@ -20,29 +20,29 @@ libtool-like install is made with .la files and symbolic links, like this:
libjack.so.0.0.28
## Drivers
jack drivers are installed into <PREFIX>/lib/jack/
jack drivers are installed into &lt;PREFIX&gt;/lib/jack/
## in-process clients
in-process clients are installed into <PREFIX>/lib/jack/
in-process clients are installed into &lt;PREFIX&gt;/lib/jack/
## D-Bus service file
If jackdbus is being installed, D-Bus service is installed too. This file instructs D-Bus session bus how to activate JACK controller object upon request.
By default org.jackaudio.service file is installed in <PREFIX>/share/dbus-1/services/
By default org.jackaudio.service file is installed in &lt;PREFIX&gt;/share/dbus-1/services/
However user may force using real D-Bus service directory by specifying --enable-pkg-config-dbus-service-dir
<PREFIX>/share/dbus-1/services/ will differ from one specified in pkg-config file of D-Bus when they are installed in different prefixes. If service file is installed in different prefix, D-Bus session bus daemon should be instructed to search in different directory (out of scope of JACK installation process, as implemented in distribution tarball).
&lt;PREFIX&gt;/share/dbus-1/services/ will differ from one specified in pkg-config file of D-Bus when they are installed in different prefixes. If service file is installed in different prefix, D-Bus session bus daemon should be instructed to search in different directory (out of scope of JACK installation process, as implemented in distribution tarball).
# Headers
They are installed in JACK specific header directory, <PREFIX>/include/jack/
They are installed in JACK specific header directory, &lt;PREFIX&gt;/include/jack/
# pkg-config
jack.pc is installed in <PREFIX>/lib/pkgconfig/
jack.pc is installed in &lt;PREFIX&gt;/lib/pkgconfig/
# User documentation
Man pages are installed in <PREFIX>/share/man/man1/
Man pages are installed in &lt;PREFIX&gt;/share/man/man1/
# Development documentation
HTML documentation is installed in JACK specific directory <PREFIX>/share/jack-audio-connection-kit
Index is of the HTML documentation is within <PREFIX>/share/jack-audio-connection-kit/reference/html/
HTML documentation is installed in JACK specific directory &lt;PREFIX&gt;/share/jack-audio-connection-kit
Index is of the HTML documentation is within &lt;PREFIX&gt;/share/jack-audio-connection-kit/reference/html/
Some unusual things related to installation relocatability:
* in-process clients and drivers are loaded from fixed path (<PREFIX>/lib/jack/), specified literally during build. Drivers load directory may be overridden using JACK_DRIVER_DIR environment variable. ATM there is no way to override in-process client directory.
* in-process clients and drivers are loaded from fixed path (&lt;PREFIX&gt;/lib/jack/), specified literally during build. Drivers load directory may be overridden using JACK_DRIVER_DIR environment variable. ATM there is no way to override in-process client directory.
* D-Bus session bus daemon configuration may need modification to be able to auto-activate JACK controller service.
* jack.pc file contains PREFIX

View File

@ -25,7 +25,7 @@ This pages summarizes "changes" in JACK client API between version 1 and 2
* `T jack_clock_source_name `- not public
* `T jack_default_server_name `- not public
* `T jack_destroy_shm `- not public
* `T jack_dump_timestamps `- public in <jack/timestamps.h>
* `T jack_dump_timestamps `- public in &lt;jack/timestamps.h&gt;
* `T jack_generate_unique_id `- not public
* `T jack_get_free_shm_info `- not public
* `T jack_get_mhz `- not public
@ -35,7 +35,7 @@ This pages summarizes "changes" in JACK client API between version 1 and 2
* `T jack_get_process_done_fd `- not public
* `T jack_hpet_init `- not public
* `T jack_init_time `- not public
* `T jack_init_timestamps `- public in <jack/timestamps.h>
* `T jack_init_timestamps `- public in &lt;jack/timestamps.h&gt;
* `T jack_initialize_shm `- not public
* `T jack_messagebuffer_add `- not public
* `T jack_messagebuffer_exit `- not public
@ -49,14 +49,14 @@ This pages summarizes "changes" in JACK client API between version 1 and 2
* `T jack_register_server `- not public
* `T jack_release_shm `- not public
* `T jack_release_shm_info `- not public
* `T jack_reset_timestamps `- public in <jack/timestamps.h>
* `T jack_reset_timestamps `- public in &lt;jack/timestamps.h&gt;
* `T jack_resize_shm `- not public
* `T jack_server_dir `- not public
* `T jack_set_clock_source `- not public
* `T jack_shmalloc `- not public
* `T jack_start_freewheel `- not public
* `T jack_stop_freewheel `- not public
* `T jack_timestamp `- public in <jack/timestamps.h>
* `T jack_timestamp `- public in &lt;jack/timestamps.h&gt;
* `T jack_transport_copy_position `- not public
* `T jack_unregister_server `- not public
* `T jack_user_dir `- not public
@ -78,10 +78,14 @@ This pages summarizes "changes" in JACK client API between version 1 and 2
* `T jack_tls_set(unsigned int, void*) `- not public
* `T set_threaded_log_function `- not public
nm -CDg 1/usr/lib/libjack.so | grep -v ' U '|sed 's/^[0-9a-f]* //'|sort> jack1.syms
nm -CDg 2/usr/lib/libjack.so | grep -v ' U '|sed 's/^[0-9a-f]* //'|sort> jack2.syms
diff -u jack1.syms jack2.syms > jack12.diff
grep '^-[A-Z]' jack12.diff | sed 's/^-//'
grep '^+[A-Z]' jack12.diff | sed 's/^+//'|grep -v ::
for i in `grep '^+[A-Z]' jack12.diff | grep -v :: | sed 's/^+. \([^ (]*\).*/\1/'` ; do echo "searching for $i ..." ; find 2 -type f -exec grep -Hn $i {} \; ; done|grep -v 'Binary file'
for i in `grep '^-[A-Z]' jack12.diff | sed 's/^-. //'` ; do echo "searching for $i ..." ; find 1 -type f -exec grep -Hn $i {} \; ; done|grep -v 'Binary file'
nm -CDg 1/usr/lib/libjack.so | grep -v ' U '|sed 's/^[0-9a-f]* //'|sort> jack1.syms
nm -CDg 2/usr/lib/libjack.so | grep -v ' U '|sed 's/^[0-9a-f]* //'|sort> jack2.syms
diff -u jack1.syms jack2.syms > jack12.diff
grep '^-[A-Z]' jack12.diff | sed 's/^-//'
grep '^+[A-Z]' jack12.diff | sed 's/^+//'|grep -v ::
for i in `grep '^+[A-Z]' jack12.diff | grep -v :: | sed 's/^+. \([^ (]*\).*/\1/'` ; do echo "searching for $i ..." ; find 2 -type f -exec grep -Hn $i {} \; ; done|grep -v 'Binary file'
for i in `grep '^-[A-Z]' jack12.diff | sed 's/^-. //'` ; do echo "searching for $i ..." ; find 1 -type f -exec grep -Hn $i {} \; ; done|grep -v 'Binary file'

View File

@ -64,16 +64,16 @@ This should work nicely for example.
# Complete option List
-j <jack name>::
reports a different name to jack
-d <alsa_device>::
-c <channels>::
-p <period_size>::
-n <num_period>::
-r <sample_rate>::
-m <max_diff>::
-t <target_delay>::
-f <catch_factor>::
-j <jack name>::
reports a different name to jack
-d <alsa_device>::
-c <channels>::
-p <period_size>::
-n <num_period>::
-r <sample_rate>::
-m <max_diff>::
-t <target_delay>::
-f <catch_factor>::
Please note that the period size and numperiods dont directly realate to
the latency of alsa_in and alsa_out.