diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-10-31 00:37:58 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-10-31 00:37:58 +0000 |
| commit | a8a61ee991f2644e1a7e71d04bd4a052d5a287e0 (patch) | |
| tree | 175bdeac1f31f1569e82e26f6f44a886b001cc31 | |
| parent | 42f77d4eb027afed4f4ef80f10c16112c2b7fe2b (diff) | |
| download | rockbox-a8a61ee991f2644e1a7e71d04bd4a052d5a287e0.zip rockbox-a8a61ee991f2644e1a7e71d04bd4a052d5a287e0.tar.gz rockbox-a8a61ee991f2644e1a7e71d04bd4a052d5a287e0.tar.bz2 rockbox-a8a61ee991f2644e1a7e71d04bd4a052d5a287e0.tar.xz | |
Oops, fix red - only include ascodec-target.h when HAVE_AS3514 is defined
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18941 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/ascodec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/export/ascodec.h b/firmware/export/ascodec.h index b8bab8a..93cd767 100644 --- a/firmware/export/ascodec.h +++ b/firmware/export/ascodec.h @@ -22,6 +22,10 @@ #ifndef _ASCODEC_H #define _ASCODEC_H +#include "config.h" + +#ifdef HAVE_AS3514 #include "ascodec-target.h" +#endif #endif |