Changeset 3099 for pjproject/trunk/aconfigure.ac
- Timestamp:
- Feb 12, 2010 2:12:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/aconfigure.ac
r3097 r3099 731 731 732 732 IPP_CFLAGS="-I$IPPROOT/include" 733 IPP_LDFLAGS="-L$IPPROOT/sharedlib" 734 IPP_LIBS="-lippsc${IPP_SUFFIX} -lipps${IPP_SUFFIX} -lippsr${IPP_SUFFIX} -lippcore${IPP_SUFFIX} -lguide" 733 IPP_LIBS="-lippsc${IPP_SUFFIX} -lipps${IPP_SUFFIX} -lippsr${IPP_SUFFIX} -lippcore${IPP_SUFFIX}" 734 735 # Some differences between Mac OS X and Linux 736 case $target in 737 *darwin* ) 738 IPP_LDFLAGS="-L$IPPROOT/Libraries -L$IPPROOT/lib" 739 ;; 740 *) 741 IPP_LDFLAGS="-L$IPPROOT/sharedlib" 742 IPP_LIBS="$IPP_LIBS -lguide" 743 ;; 744 esac 745 735 746 #IPP_LDFLAGS="-L$IPPROOT/sharedlib" 747 #Static: 736 748 #IPP_LIBS="-lippscmerged -lippsrmerged -lippsmerged -lippcore" 737 749 … … 787 799 elif test -d $IPPSAMPLES/speech-codecs/_bin; then 788 800 IPPVER=6 789 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/_bin/*gcc*/lib | head -1` 801 if test -d $IPPSAMPLES/speech-codecs/_bin/*gcc*; then 802 # gcc compiler 803 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/_bin/*gcc*/lib | head -1` 804 elif test -d $IPPSAMPLES/speech-codecs/_bin/*icc*; then 805 # icc compiler 806 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/_bin/*icc*/lib | head -1` 807 else 808 AC_MSG_FAILURE([Unable to find to find built binaries under $IPPSAMPLES/speech-codecs/{bin,_bin}. Have you built the IPP samples?]) 809 fi 790 810 else 791 811 AC_MSG_FAILURE([unable to find $IPPSAMPLES/speech-codecs/bin/*gcc*/lib or $IPPSAMPLES/speech-codecs/_bin/*gcc*/lib directory. Have you built the samples?])
Note: See TracChangeset
for help on using the changeset viewer.