From be16842c8756bf527f35fabac4ecc5beb215c411 Mon Sep 17 00:00:00 2001 From: fulup Date: Sun, 2 Apr 2017 11:24:29 +0200 Subject: Fixed afb_service_call_sync added optional values retrieval within UCM get --- README.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 44b8ec2..fb98fc8 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,13 @@ AFB_daemon dependency on Standard Linux Distributions ``` # Might want to add following variables into ~/.bashrc # export CC=gcc-5; export CXX=g++-5 # if using gcc5 - echo "export DEST=$HOME/opt" >>~/.bashrc - echo "export LD_LIBRARY_PATH=$DEST/lib64" >>~/.bashrc - echo "export LIBRARY_PATH=$DEST/lib64" >>~/.bashrc - echo "export PKG_CONFIG_PATH=$DEST/lib64/pkgconfig" >>~/.bashrc - echo "export PATH=$DEST/bin:$PATH" >>~/.bashrc + + echo 'export LIBPOSTFIX=64'>>~/.bashrc + echo 'export DEST=$HOME/opt' >>~/.bashrc + echo 'export LD_LIBRARY_PATH=$DEST/lib${LIBPOSTFIX}' >>~/.bashrc + echo 'export LIBRARY_PATH=$DEST/lib${LIBPOSTFIX}' >>~/.bashrc + echo 'export PKG_CONFIG_PATH=$DEST/lib${LIBPOSTFIX}/pkgconfig' >>~/.bashrc + echo 'export PATH=$DEST/bin:$PATH' >>~/.bashrc source ~/.bashrc # install AGL pached version of LibMicroHttpd @@ -55,13 +57,6 @@ AFB_daemon dependency on Standard Linux Distributions make install ``` -Other Audio Binding Dependencies ----------------------------------- - afb-daemon - alsa-devel - - Edit CMakeList.txt to tune options - ``` # Compile binding -- cgit 1.2.3-korg