Changeset 2068

Show
Ignore:
Timestamp:
02/18/07 18:27:24 (2 years ago)
Author:
austriancoder
Message:
  • user can enable threading in apr * tab fixes * cleaner solution to get subversion compiling * fix of depends
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/mk/pkg-depend.mk

    r2065 r2068  
    44# material, please see the LICENCE file in the top-level directory 
    55# or at http://www.freewrt.org/licence for details. 
     6 
     7ifeq ($(FWRT_PACKAGE_APR_THREADING),y) 
     8apr-compile: libpthread-compile 
     9endif 
    610 
    711apr-util-compile: expat-compile apr-compile 
  • trunk/freewrt/package/apr/Config.in

    r1898 r2068  
    88          http://apr.apache.org 
    99 
    10  
     10config 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  
    33Section: lib 
    44Description: Apache Portable Runtime 
     5Depends: libpthread 
  • trunk/freewrt/package/subversion/Makefile

    r2059 r2068  
    77include ${TOPDIR}/rules.mk 
    88 
    9 PKG_NAME:=              subversion 
    10 PKG_VERSION:=           1.4.3 
    11 PKG_RELEASE:=           
    12 PKG_MD5SUM:=            6b991b63e3e1f69670c9e15708e40176 
    13 PKG_SOURCE_URL:=        http://subversion.tigris.org/downloads 
     9PKG_NAME:=             subversion 
     10PKG_VERSION:=          1.4.3 
     11PKG_RELEASE:=         
     12PKG_MD5SUM:=           6b991b63e3e1f69670c9e15708e40176 
     13PKG_SOURCE_URL:=       http://subversion.tigris.org/downloads 
    1414 
    1515include ${TOPDIR}/mk/package.mk 
     
    1717$(eval $(call PKG_template,SUBVERSION,$(PKG_NAME),${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 
    1818 
    19 CONFIGURE_STYLE:=       gnu 
     19CONFIGURE_STYLE:=      gnu 
    2020CONFIGURE_ARGS+=        --with-apr=${STAGING_DIR}/usr/bin/apr-config 
    2121CONFIGURE_ARGS+=        --with-apr-util=${STAGING_DIR}/usr/bin/apr-config 
     
    3131CONFIGURE_ARGS+=        --without-berkeley-db 
    3232 
    33 MAKE_FLAGS+=            LDFLAGS="-lexpat -laprutil-0 -liconv" 
     33LIBS=                   -laprutil-0 -lapr-0 -lexpat -liconv 
     34 
     35ifeq ($(FWRT_PACKAGE_APR_THREADING),y) 
     36LIBS+=                  -pthread 
     37endif 
     38 
     39CONFIGURE_ENV+=         LIBS='${LIBS}' 
     40 
    3441BUILD_STYLE:=           auto 
    3542INSTALL_STYLE:=         auto