diff options
Diffstat (limited to 'net/iaxmodem/files/configure')
-rw-r--r-- | net/iaxmodem/files/configure | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/net/iaxmodem/files/configure b/net/iaxmodem/files/configure deleted file mode 100644 index abc5f4f85174..000000000000 --- a/net/iaxmodem/files/configure +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -cd lib/libiax2 && \ -./configure CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" --disable-shared && \ -cd ../../lib/spandsp && \ -./configure CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" --disable-shared && \ -cd ../.. - -if [ $? != 0 ]; then - exit 1 -fi - -STEP1=`grep @VERSION@ lib/spandsp/config.status | sed 's/;.*//g'` -DSPVER=`echo "@VERSION@" | sed ${STEP1}` -if [ -n "${DSPVER}" ]; then - DSPVER="spandsp-${DSPVER}-snapshot-20060707+" -fi -STEP1=`grep @VERSION@ lib/libiax2/config.status | sed 's/;.*//g'` -IAXVER=`echo "@VERSION@" | sed ${STEP1}` -if [ -n "${IAXVER}" ]; then - IAXVER="libiax2-${IAXVER}-CVS-20060222+" -fi - -cat Makefile.in | sed -e "s/@DSPVER@/${DSPVER}/g" | \ - sed -e "s/@IAXVER@/${IAXVER}/g" > Makefile - -echo ${IAXVER} -echo ${DSPVER} - -exit $? - |