Changeset 9e2aa42 in freewrt


Ignore:
Timestamp:
Jun 13, 2007, 5:35:41 PM (18 years ago)
Author:
Christian Gmeiner <austriancoder@…>
Children:
9e65756
Parents:
9b003d8
Message:

should fix #304

git-svn-id: svn://www.freewrt.org/trunk/freewrt@2781 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
package
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • package/Depends.mk

    r9b003d8 r9e2aa42  
    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
  • package/subversion/Config.in

    r9b003d8 r9e2aa42  
    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
  • package/subversion/Makefile

    r9b003d8 r9e2aa42  
    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)
Note: See TracChangeset for help on using the changeset viewer.