Changeset 2068
- Timestamp:
- 02/18/07 18:27:24 (2 years ago)
- Files:
-
- trunk/freewrt/mk/pkg-depend.mk (modified) (1 diff)
- trunk/freewrt/package/apr/Config.in (modified) (1 diff)
- trunk/freewrt/package/apr/ipkg/apr.control (modified) (1 diff)
- trunk/freewrt/package/subversion/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/mk/pkg-depend.mk
r2065 r2068 4 4 # material, please see the LICENCE file in the top-level directory 5 5 # or at http://www.freewrt.org/licence for details. 6 7 ifeq ($(FWRT_PACKAGE_APR_THREADING),y) 8 apr-compile: libpthread-compile 9 endif 6 10 7 11 apr-util-compile: expat-compile apr-compile trunk/freewrt/package/apr/Config.in
r1898 r2068 8 8 http://apr.apache.org 9 9 10 10 config FWRT_PACKAGE_APR_THREADING 11 prompt " Enable threading support" 12 bool 13 default n 14 depends FWRT_PACKAGE_APR 15 help 16 Enable threading support in APR. trunk/freewrt/package/apr/ipkg/apr.control
r1898 r2068 3 3 Section: lib 4 4 Description: Apache Portable Runtime 5 Depends: libpthread trunk/freewrt/package/subversion/Makefile
r2059 r2068 7 7 include ${TOPDIR}/rules.mk 8 8 9 PKG_NAME:= subversion10 PKG_VERSION:= 1.4.311 PKG_RELEASE:= 112 PKG_MD5SUM:= 6b991b63e3e1f69670c9e15708e4017613 PKG_SOURCE_URL:= http://subversion.tigris.org/downloads9 PKG_NAME:= subversion 10 PKG_VERSION:= 1.4.3 11 PKG_RELEASE:= 1 12 PKG_MD5SUM:= 6b991b63e3e1f69670c9e15708e40176 13 PKG_SOURCE_URL:= http://subversion.tigris.org/downloads 14 14 15 15 include ${TOPDIR}/mk/package.mk … … 17 17 $(eval $(call PKG_template,SUBVERSION,$(PKG_NAME),${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 18 18 19 CONFIGURE_STYLE:= gnu19 CONFIGURE_STYLE:= gnu 20 20 CONFIGURE_ARGS+= --with-apr=${STAGING_DIR}/usr/bin/apr-config 21 21 CONFIGURE_ARGS+= --with-apr-util=${STAGING_DIR}/usr/bin/apr-config … … 31 31 CONFIGURE_ARGS+= --without-berkeley-db 32 32 33 MAKE_FLAGS+= LDFLAGS="-lexpat -laprutil-0 -liconv" 33 LIBS= -laprutil-0 -lapr-0 -lexpat -liconv 34 35 ifeq ($(FWRT_PACKAGE_APR_THREADING),y) 36 LIBS+= -pthread 37 endif 38 39 CONFIGURE_ENV+= LIBS='${LIBS}' 40 34 41 BUILD_STYLE:= auto 35 42 INSTALL_STYLE:= auto


