Changeset 2781
- Timestamp:
- 06/13/07 17:35:41 (2 years ago)
- Files:
-
- trunk/freewrt/package/Depends.mk (modified) (1 diff)
- trunk/freewrt/package/subversion/Config.in (modified) (2 diffs)
- trunk/freewrt/package/subversion/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/package/Depends.mk
r2737 r2781 124 124 squid-compile: openssl-compile 125 125 ssltunnel-compile: openssl-compile ppp-compile 126 subversion-compile: apr-util-compile expat-compile apr-compile zlib-compile libiconv-compile 126 subversion-compile: apr-util-compile expat-compile apr-compile zlib-compile libiconv-compile neon-compile 127 127 syslog-ng-compile: libol-compile tcp_wrappers-compile 128 128 tcpdump-compile: libpcap-compile trunk/freewrt/package/subversion/Config.in
r2066 r2781 3 3 tristate 4 4 default n 5 select FWRT_PACKAGE_ZLIB6 select FWRT_PACKAGE_APR_UTIL7 select FWRT_PACKAGE_LIBICONV5 select FWRT_PACKAGE_ZLIB 6 select FWRT_PACKAGE_APR_UTIL 7 select FWRT_PACKAGE_LIBICONV 8 8 help 9 9 Subversion is an open source application for revision control. … … 11 11 http://subversion.tigris.org 12 12 13 config 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. 13 22 trunk/freewrt/package/subversion/Makefile
r2678 r2781 9 9 PKG_NAME:= subversion 10 10 PKG_VERSION:= 1.4.3 11 PKG_RELEASE:= 111 PKG_RELEASE:= 2 12 12 PKG_MD5SUM:= 6b991b63e3e1f69670c9e15708e40176 13 13 MASTER_SITES:= http://subversion.tigris.org/downloads/ … … 22 22 CONFIGURE_ARGS+= --disable-mod-activation 23 23 CONFIGURE_ARGS+= --disable-keychain 24 CONFIGURE_ARGS+= --without-neon25 24 CONFIGURE_ARGS+= --without-apxs 26 25 CONFIGURE_ARGS+= --without-swig … … 32 31 33 32 LIBS= -laprutil-0 -lapr-0 -lexpat -liconv 33 34 ifeq ($(FWRT_PACKAGE_SUBVERSION_NEON),n) 35 CONFIGURE_ARGS+= --without-neon 36 else 37 CONFIGURE_ARGS+= -disable-neon-version-check 38 LIBS+= -lneon 39 endif 34 40 35 41 ifeq ($(FWRT_PACKAGE_APR_THREADING),y)


