You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/bin/bash
|
|
|
|
|
|
if [ -e "${CODEC_CHAIN_HOME}/usr/include/codec-chain/client.h" ]; then
|
|
|
echo "CFLAGS_CODEC_CHAIN := -DHAVE_CODEC_CHAIN -I${CODEC_CHAIN_HOME}/usr/include"
|
|
|
elif [ -e /usr/include/codec-chain/client.h ]; then
|
|
|
echo "CFLAGS_CODEC_CHAIN := -DHAVE_CODEC_CHAIN"
|
|
|
fi
|