Changeset 3217

Show
Ignore:
Timestamp:
07/15/07 02:43:21 (1 year ago)
Author:
wbx
Message:

do not use g++, otherwise libstc++ is linked in automatically (reported via irc by wunderkin, disable some stuff and reorder configure statements, update to latest version

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/asterisk/Makefile

    r3156 r3217  
    88 
    99PKG_NAME:=              asterisk 
    10 PKG_VERSION:=           1.4.6 
     10PKG_VERSION:=           1.4.7.1 
    1111PKG_RELEASE:=           1 
    12 PKG_MD5SUM:=            579b154c9045a69945b8547e590c25a1 
     12PKG_MD5SUM:=            8c471ff5328c08bf2dc5c6f5c6f3e048 
    1313MASTER_SITES:=          http://ftp.digium.com/pub/asterisk/ \ 
    1414                        ftp://ftp.digium.com/pub/asterisk/ 
     
    4949SUB_INSTALLS-${FWRT_PACKAGE_ASTERISK_MEETME}+=          asterisk-meetme-install 
    5050 
    51 CONFIGURE_ARGS=         --without-kde --without-qt \ 
    52                         --with-z=${STAGING_DIR}/usr \ 
     51CONFIGURE_ARGS=         --with-z=${STAGING_DIR}/usr \ 
    5352                        --with-ncurses=${STAGING_DIR}/usr \ 
    5453                        --with-ssl=${STAGING_DIR}/usr \ 
     54                        --without-asound \ 
    5555                        --without-curses \ 
    5656                        --without-gnutls \ 
    57                         --without-asound \ 
    58                         --with-curl=${STAGING_DIR}/usr \ 
     57                        --without-h323 \ 
    5958                        --without-iksemel \ 
    6059                        --without-imap \ 
    6160                        --without-isdnnet \ 
     61                        --without-kde \ 
    6262                        --without-misdn \ 
    6363                        --without-nbs \ 
     
    6969                        --without-pri \ 
    7070                        --without-pwlib \ 
     71                        --without-qt \ 
    7172                        --without-suppserv \ 
    7273                        --without-tds \ 
     
    99100ifneq (${FWRT_PACKAGE_ASTERISK_CURL},) 
    100101CONFIGURE_ARGS+=        --with-curl=${STAGING_DIR}/usr 
     102else 
     103CONFIGURE_ARGS+=        --without-curl 
    101104endif 
    102105ifneq (${FWRT_PACKAGE_ASTERISK_MEETME},) 
     
    126129                        DESTDIR="$(WRKINST)" \ 
    127130                        OPTIMIZE="-Os" \ 
     131                        CXX="${TARGET_CC}" \ 
    128132                        CFLAGS="" \ 
    129133                        STRIP="${TARGET_CROSS}strip" \