Changeset 6d9a6f6 in freewrt


Ignore:
Timestamp:
Jun 26, 2007, 2:40:44 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
8bedfe5
Parents:
737fca2a
Message:
  • regenerate patches
  • build portmap without tcp_wrappers by default, can be enabled in menuconfig if someone desires

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

Location:
package
Files:
7 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • package/Depends.mk

    r737fca2a r6d9a6f6  
    100100palantir-compile: jpeg-compile
    101101peercast-compile: uclibc++-compile
     102ifneq ($(strip ${FWRT_PACKAGE_PORTMAP_LIBWRAP}),)
    102103portmap-compile: tcp_wrappers-compile
     104endif
    103105postgresql-compile: zlib-compile
    104106privoxy-compile: pcre-compile
  • package/portmap/Config.in

    r737fca2a r6d9a6f6  
    33        tristate
    44        default n
    5         select FWRT_PACKAGE_LIBWRAP
    65        help
    76          Portmap is a server that converts RPC (Remote Procedure Call) program
    87          numbers into DARPA protocol port numbers.  It must be running in order
    98          to make RPC calls.  Services that use RPC include NFS and NIS.
     9
     10config FWRT_PACKAGE_PORTMAP_LIBWRAP
     11        bool "  Use tcp_wrappers"
     12        default n
     13        select FWRT_PACKAGE_LIBWRAP
  • package/portmap/Makefile

    r737fca2a r6d9a6f6  
    1919$(eval $(call PKG_template,PORTMAP,portmap,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
    2020
    21 TCPPFLAGS+=             -DHOSTS_ACCESS -DFACILITY=LOG_DAEMON -DIGNORE_SIGCHLD
     21ifneq ($(strip ${FWRT_PACKAGE_PORTMAP_LIBWRAP}),)
     22TCPPFLAGS+=             -DHOSTS_ACCESS -DUSE_LIBWRAP
     23MAKE_FLAGS+=            WRAP_LIB='-L${STAGING_DIR}/usr/lib -lwrap'
     24else
     25MAKE_FLAGS+=            WRAP_LIB=
     26endif
     27TCPPFLAGS+=             -DFACILITY=LOG_DAEMON -DIGNORE_SIGCHLD
    2228BUILD_STYLE:=           auto
    2329MAKE_FLAGS+=            ${TARGET_CONFIGURE_OPTS} \
    24                         CFLAGS='${TCFLAGS} ${TCPPFLAGS}' \
    25                         WRAP_LIB="-L${STAGING_DIR}/usr/lib -lwrap" \
     30                        CFLAGS='${TCFLAGS} ${TCPPFLAGS}'
    2631
    2732do-install:
     
    3136            ${IDIR_PORTMAP}/etc/init.d/portmap
    3237        ${INSTALL_BIN} ${WRKBUILD}/portmap ${IDIR_PORTMAP}/usr/sbin/
     38ifneq ($(strip ${FWRT_PACKAGE_PORTMAP_LIBWRAP}),)
     39        echo 'Depends: libwrap' >>${IDIR_PORTMAP}/CONTROL/control
     40endif
    3341
    3442include ${TOPDIR}/mk/pkg-bottom.mk
  • package/portmap/ipkg/portmap.control

    r737fca2a r6d9a6f6  
    22Priority: optional
    33Section: net
    4 Depends: libwrap
    54Description: The RPC Portmapper
Note: See TracChangeset for help on using the changeset viewer.