diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-27 16:12:47 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-27 14:09:17 -0500 |
commit | 7aac6cb17b7320faf0483f39f20dc52adc379957 (patch) | |
tree | 72cc0b0455740ff9396b520dd468974f5f08d304 /configure | |
parent | ef7635eccc2f1e86e81d111481ef29134f9a8c55 (diff) |
make fmod also use FMOD_{LIBS,CFLAGS}
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1636,8 +1636,8 @@ for drv in $audio_drv_list; do def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` echo "$def=y" >> $config_host_mak if test "$drv" = "fmod"; then - echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_host_mak - echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_host_mak + echo "FMOD_LIBS=$fmod_lib" >> $config_host_mak + echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak elif test "$drv" = "oss"; then echo "CONFIG_OSS_LIB=$oss_lib" >> $config_host_mak fi |