|
|
|
@ -3,9 +3,9 @@ |
|
|
|
|
include $(TOPDIR)/rules.mk |
|
|
|
|
|
|
|
|
|
PKG_NAME:=libdaemon
|
|
|
|
|
PKG_VERSION:=0.8
|
|
|
|
|
PKG_VERSION:=0.10
|
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
PKG_MD5SUM:=49cc7db480c6d7b8ca88b0db8ac275e7
|
|
|
|
|
PKG_MD5SUM:=6812a5e4063b5016f25e9a0cebbd3dd9
|
|
|
|
|
|
|
|
|
|
PKG_SOURCE_URL:=http://0pointer.de/lennart/projects/libdaemon/
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
@ -22,34 +22,34 @@ $(PKG_BUILD_DIR)/.configured: |
|
|
|
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
|
|
|
|
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
|
|
|
|
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
|
|
|
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
|
|
|
|
ac_cv_func_setpgrp_void=yes \
|
|
|
|
|
./configure \
|
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
|
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
|
--program-prefix="" \
|
|
|
|
|
--program-suffix="" \
|
|
|
|
|
--prefix=/usr \
|
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
|
--datadir=/usr/share \
|
|
|
|
|
--includedir=/usr/include \
|
|
|
|
|
--infodir=/usr/share/info \
|
|
|
|
|
--libdir=/usr/lib \
|
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
|
--localstatedir=/var \
|
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
|
$(DISABLE_LARGEFILE) \
|
|
|
|
|
$(DISABLE_NLS) \
|
|
|
|
|
--enable-shared \
|
|
|
|
|
--enable-static \
|
|
|
|
|
--disable-rpath \
|
|
|
|
|
--with-gnu-ld \
|
|
|
|
|
--disable-lynx \
|
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
|
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
|
--program-prefix="" \
|
|
|
|
|
--program-suffix="" \
|
|
|
|
|
--prefix=/usr \
|
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
|
--datadir=/usr/share \
|
|
|
|
|
--includedir=/usr/include \
|
|
|
|
|
--infodir=/usr/share/info \
|
|
|
|
|
--libdir=/usr/lib \
|
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
|
--localstatedir=/var \
|
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
|
$(DISABLE_LARGEFILE) \
|
|
|
|
|
$(DISABLE_NLS) \
|
|
|
|
|
--enable-shared \
|
|
|
|
|
--enable-static \
|
|
|
|
|
--disable-rpath \
|
|
|
|
|
--with-gnu-ld \
|
|
|
|
|
--disable-lynx \
|
|
|
|
|
);
|
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
|
|