Changeset 80accbf in freewrt for package


Ignore:
Timestamp:
Jun 27, 2007, 12:42:26 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
4e6ad57
Parents:
b99bf9e
Message:

this had a hidden dependency on tcp_wrappers which I just commented out
if someone wants to add it back, make a Config.in option like portmap
has one, remove the hash marks before the few lines in Makefile, and
make sure Depends: in the control file is generated correctly (or ask me,
but I hate tcp_wrappers)

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

Location:
package/nfs-server
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • package/nfs-server/Makefile

    rb99bf9e r80accbf  
    99PKG_NAME:=              nfs-server
    1010PKG_VERSION:=           2.2beta47
    11 PKG_RELEASE:=           8
     11PKG_RELEASE:=           9
    1212PKG_MD5SUM:=            79a29fe9f79b2f3241d4915767b8c511
    1313MASTER_SITES:=          http://ftp.debian.org/debian/pool/main/n/nfs-user-server/
     
    1818$(eval $(call PKG_template,NFS_SERVER,nfs-server,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
    1919
     20#ifeq ($(strip ${FWRT_PACKAGE_NFS_SERVER_TCPWRAPPERS}),y)
     21#TCPPFLAGS+=            -DHOSTS_ACCESS
     22#LIBWRAP_LIB=           -lwrap
     23#else
     24LIBWRAP_LIB=
     25#endif
     26
    2027CONFIGURE_STYLE:=       gnu
    2128BUILD_STYLE:=           auto
     29XAKE_FLAGS+=            LIBWRAP_LIB='${LIBWRAP_LIB}'
    2230
    2331do-install:
  • package/nfs-server/extra/site.h

    rb99bf9e r80accbf  
    3232
    3333/*
    34  * if HOSTS_ACCESS is defined, ugidd uses host access control
    35  * provided by libwrap.a from tcp_wrappers
    36  */
    37 #define HOSTS_ACCESS
    38 
    39 /*
    4034 * Define correct ownership of export control file
    4135 */
  • package/nfs-server/extra/site.mk

    rb99bf9e r80accbf  
    66UGIDD_PROG=
    77UGIDD_MAN=
    8 # Location of tcp_wrapper library
    9 LIBWRAP_DIR=-L/usr/share/stuff/src/openwrt/experimental/buildroot/build_mipsel/staging_dir/lib
    10 LIBWRAP_LIB=-lwrap
    118DEVTAB_FILE=
Note: See TracChangeset for help on using the changeset viewer.