Mercurial > hg > audiodb
annotate power.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 | cc2b97d020b1 |
children |
rev | line source |
---|---|
mas01cr@498 | 1 extern "C" { |
mas01cr@498 | 2 #include "audioDB_API.h" |
mas01cr@509 | 3 } |
mas01cr@498 | 4 #include "audioDB-internals.h" |
mas01cr@498 | 5 |
mas01cr@498 | 6 int audiodb_power(adb_t *adb) { |
mas01cr@498 | 7 if(!(adb->flags & O_RDWR)) { |
mas01cr@498 | 8 return 1; |
mas01cr@498 | 9 } |
mas01cr@498 | 10 if(adb->header->length > 0) { |
mas01cr@498 | 11 return 1; |
mas01cr@498 | 12 } |
mas01cr@498 | 13 |
mas01cr@509 | 14 adb->header->flags |= ADB_HEADER_FLAG_POWER; |
mas01cr@498 | 15 return audiodb_sync_header(adb); |
mas01cr@498 | 16 } |