Changeset 2781

Show
Ignore:
Timestamp:
06/13/07 17:35:41 (2 years ago)
Author:
austriancoder
Message:

should fix #304

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/Depends.mk

    r2737 r2781  
    124124squid-compile: openssl-compile 
    125125ssltunnel-compile: openssl-compile ppp-compile 
    126 subversion-compile: apr-util-compile expat-compile apr-compile zlib-compile libiconv-compile 
     126subversion-compile: apr-util-compile expat-compile apr-compile zlib-compile libiconv-compile neon-compile 
    127127syslog-ng-compile: libol-compile tcp_wrappers-compile 
    128128tcpdump-compile: libpcap-compile 
  • trunk/freewrt/package/subversion/Config.in

    r2066 r2781  
    33        tristate 
    44        default n 
    5         select FWRT_PACKAGE_ZLIB 
    6         select FWRT_PACKAGE_APR_UTIL 
    7         select FWRT_PACKAGE_LIBICONV 
     5       select FWRT_PACKAGE_ZLIB 
     6       select FWRT_PACKAGE_APR_UTIL 
     7       select FWRT_PACKAGE_LIBICONV 
    88        help 
    99          Subversion is an open source application for revision control. 
     
    1111          http://subversion.tigris.org 
    1212 
     13config FWRT_PACKAGE_SUBVERSION_NEON 
     14        prompt "  Enable interaction with remote repositories over WebDAV" 
     15        bool 
     16        default n 
     17        depends FWRT_PACKAGE_SUBVERSION 
     18        select FWRT_PACKAGE_NEON 
     19        help 
     20         Allows a Subversion client to interact with remote 
     21         repositories over the Internet via a WebDAV based protocol. 
    1322 
  • trunk/freewrt/package/subversion/Makefile

    r2678 r2781  
    99PKG_NAME:=              subversion 
    1010PKG_VERSION:=           1.4.3 
    11 PKG_RELEASE:=           1 
     11PKG_RELEASE:=           2 
    1212PKG_MD5SUM:=            6b991b63e3e1f69670c9e15708e40176 
    1313MASTER_SITES:=          http://subversion.tigris.org/downloads/ 
     
    2222CONFIGURE_ARGS+=        --disable-mod-activation 
    2323CONFIGURE_ARGS+=        --disable-keychain 
    24 CONFIGURE_ARGS+=        --without-neon 
    2524CONFIGURE_ARGS+=        --without-apxs 
    2625CONFIGURE_ARGS+=        --without-swig 
     
    3231 
    3332LIBS=                   -laprutil-0 -lapr-0 -lexpat -liconv 
     33 
     34ifeq ($(FWRT_PACKAGE_SUBVERSION_NEON),n) 
     35CONFIGURE_ARGS+=        --without-neon 
     36else 
     37CONFIGURE_ARGS+=        -disable-neon-version-check 
     38LIBS+=                  -lneon 
     39endif 
    3440 
    3541ifeq ($(FWRT_PACKAGE_APR_THREADING),y)