Mercurial > hg > audiodb
view close.cpp @ 611:957dd4fb2599
Update install target to be mildly useful
- parametrize install location in the normal PREFIX / EXEC_PREFIX way;
- write and use an install-time pkg-config file generator;
- rearrange the SONAME stuff so that ldconfig -n does roughly the right thing;
- install the manpage while we're at it.
author | mas01cr |
---|---|
date | Tue, 01 Sep 2009 14:17:55 +0000 |
parents | 4eedc18634f5 |
children | b1723ae7675e |
line wrap: on
line source
extern "C" { #include "audioDB_API.h" } #include "audioDB-internals.h" void audiodb_close(adb_t *adb) { free(adb->path); free(adb->header); delete adb->keys; delete adb->keymap; delete adb->track_lengths; delete adb->track_offsets; if(adb->cached_lsh) { delete adb->cached_lsh; } divest_lock(adb->fd); close(adb->fd); free(adb); }