Update README.md

This commit is contained in:
Mike Brady 2016-07-04 15:57:49 +01:00 committed by GitHub
parent 7a71687a9b
commit d94f668213

View file

@ -28,4 +28,11 @@ $ sudo make install
```
$ sudo ldconfig -v
```
That's it.
That's it the library can now be linked to via `pkg-config`: the module name is `alac`, thus:
```
PKG_CHECK_MODULES([ALAC], [alac], [LIBS="${ALAC_LIBS} ${LIBS}"])
```
should work. If you are using `AC_CHECK_LIB`, something like this will work:
```
AC_CHECK_LIB([alac], [BitBufferInit], , AC_MSG_ERROR(Apple ALAC Decoder support requires the alac library!))
```