* [Buildroot] svn commit: trunk/buildroot/package/neon
@ 2008-08-26 20:47 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2008-08-26 20:47 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-08-26 13:47:09 -0700 (Tue, 26 Aug 2008)
New Revision: 23218
Log:
neon: bump version
Fixes CVE-2008-3746.
Modified:
trunk/buildroot/package/neon/neon.mk
Changeset:
Modified: trunk/buildroot/package/neon/neon.mk
===================================================================
--- trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:05 UTC (rev 23217)
+++ trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:09 UTC (rev 23218)
@@ -3,7 +3,7 @@
# neon
#
#############################################################
-NEON_VERSION = 0.28.2
+NEON_VERSION = 0.28.3
NEON_SITE = http://www.webdav.org/neon/
NEON_INSTALL_STAGING = YES
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/neon
@ 2008-08-26 20:47 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2008-08-26 20:47 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-08-26 13:47:12 -0700 (Tue, 26 Aug 2008)
New Revision: 23219
Log:
neon: fix compilation without xml support
webdav needs xml support, so disable it if no xml support is selected,
otherwise configure could get confused about a host xml2-config script.
Modified:
trunk/buildroot/package/neon/neon.mk
Changeset:
Modified: trunk/buildroot/package/neon/neon.mk
===================================================================
--- trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:09 UTC (rev 23218)
+++ trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:12 UTC (rev 23219)
@@ -21,5 +21,9 @@
NEON_CONF_OPT+=--with-libxml2=no
NEON_DEPENDENCIES+=expat
endif
+ifeq ($(strip $(BR2_PACKAGE_NEON_NOXML)),y)
+# webdav needs xml support
+NEON_CONF_OPT+=--disable-webdav
+endif
$(eval $(call AUTOTARGETS,package,neon))
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/neon
@ 2008-08-26 20:47 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2008-08-26 20:47 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-08-26 13:47:15 -0700 (Tue, 26 Aug 2008)
New Revision: 23220
Log:
neon: strip target library
neon doesn't have an install-strip target, so do it afterwards instead.
Modified:
trunk/buildroot/package/neon/neon.mk
Changeset:
Modified: trunk/buildroot/package/neon/neon.mk
===================================================================
--- trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:12 UTC (rev 23219)
+++ trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:15 UTC (rev 23220)
@@ -27,3 +27,8 @@
endif
$(eval $(call AUTOTARGETS,package,neon))
+
+# neon doesn't have an install-strip target, so do it afterwards
+$(NEON_HOOK_POST_INSTALL): $(NEON_TARGET_INSTALL_TARGET)
+ $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libneon.so
+ touch $@
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/neon
@ 2008-08-26 20:47 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2008-08-26 20:47 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-08-26 13:47:19 -0700 (Tue, 26 Aug 2008)
New Revision: 23221
Log:
neon: uses pkgconfig so select it
Modified:
trunk/buildroot/package/neon/Config.in
trunk/buildroot/package/neon/neon.mk
Changeset:
Modified: trunk/buildroot/package/neon/Config.in
===================================================================
--- trunk/buildroot/package/neon/Config.in 2008-08-26 20:47:15 UTC (rev 23220)
+++ trunk/buildroot/package/neon/Config.in 2008-08-26 20:47:19 UTC (rev 23221)
@@ -1,5 +1,6 @@
config BR2_PACKAGE_NEON
bool "libneon"
+ select BR2_PACKAGE_PKGCONFIG
help
HTTP and WebDAV client library, with a C interface.
Modified: trunk/buildroot/package/neon/neon.mk
===================================================================
--- trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:15 UTC (rev 23220)
+++ trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:19 UTC (rev 23221)
@@ -11,6 +11,8 @@
NEON_INSTALL_TARGET_OPT=DESTDIR=$(TARGET_DIR) install
+NEON_DEPENDENCIES:=pkgconfig
+
ifeq ($(strip $(BR2_PACKAGE_NEON_LIBXML2)),y)
NEON_CONF_OPT+=--with-libxml2=yes
NEON_CONF_OPT+=--with-expat=no
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/neon
@ 2008-08-26 20:47 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2008-08-26 20:47 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-08-26 13:47:23 -0700 (Tue, 26 Aug 2008)
New Revision: 23222
Log:
neon: use := assignments
Modified:
trunk/buildroot/package/neon/neon.mk
Changeset:
Modified: trunk/buildroot/package/neon/neon.mk
===================================================================
--- trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:19 UTC (rev 23221)
+++ trunk/buildroot/package/neon/neon.mk 2008-08-26 20:47:23 UTC (rev 23222)
@@ -3,14 +3,12 @@
# neon
#
#############################################################
-NEON_VERSION = 0.28.3
-NEON_SITE = http://www.webdav.org/neon/
-NEON_INSTALL_STAGING = YES
+NEON_VERSION:=0.28.3
+NEON_SITE:=http://www.webdav.org/neon/
+NEON_INSTALL_STAGING:=YES
+NEON_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) install
+NEON_CONF_OPT:=--enable-shared --without-gssapi --disable-rpath
-NEON_CONF_OPT+=--enable-shared --without-gssapi --disable-rpath
-
-NEON_INSTALL_TARGET_OPT=DESTDIR=$(TARGET_DIR) install
-
NEON_DEPENDENCIES:=pkgconfig
ifeq ($(strip $(BR2_PACKAGE_NEON_LIBXML2)),y)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/neon
@ 2008-10-20 11:53 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2008-10-20 11:53 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-10-20 04:53:08 -0700 (Mon, 20 Oct 2008)
New Revision: 23743
Log:
neon: don't strip if BR2_ENABLE_DEBUG is enabled
Modified:
trunk/buildroot/package/neon/neon.mk
Changeset:
Modified: trunk/buildroot/package/neon/neon.mk
===================================================================
--- trunk/buildroot/package/neon/neon.mk 2008-10-20 11:53:05 UTC (rev 23742)
+++ trunk/buildroot/package/neon/neon.mk 2008-10-20 11:53:08 UTC (rev 23743)
@@ -28,7 +28,9 @@
$(eval $(call AUTOTARGETS,package,neon))
+ifeq ($(BR2_ENABLE_DEBUG),)
# neon doesn't have an install-strip target, so do it afterwards
$(NEON_HOOK_POST_INSTALL): $(NEON_TARGET_INSTALL_TARGET)
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libneon.so
touch $@
+endif
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/neon
@ 2008-12-31 18:22 nkukard at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: nkukard at uclibc.org @ 2008-12-31 18:22 UTC (permalink / raw)
To: buildroot
Author: nkukard
Date: 2008-12-31 18:22:43 +0000 (Wed, 31 Dec 2008)
New Revision: 24629
Log:
* Refined building of neon options
- Added support to build with or without zlib support
Modified:
trunk/buildroot/package/neon/Config.in
trunk/buildroot/package/neon/neon.mk
Changeset:
Modified: trunk/buildroot/package/neon/Config.in
===================================================================
--- trunk/buildroot/package/neon/Config.in 2008-12-31 18:12:22 UTC (rev 24628)
+++ trunk/buildroot/package/neon/Config.in 2008-12-31 18:22:43 UTC (rev 24629)
@@ -6,6 +6,13 @@
http://www.webdav.org/neon/
+config BR2_PACKAGE_NEON_ZLIB
+ bool "ZLIB support"
+ depends on BR2_PACKAGE_NEON
+ select BR2_PACKAGE_ZLIB
+ help
+ build with ZLIB support
+
choice
prompt "XML Support"
default BR2_PACKAGE_NEON_NOXML
Modified: trunk/buildroot/package/neon/neon.mk
===================================================================
--- trunk/buildroot/package/neon/neon.mk 2008-12-31 18:12:22 UTC (rev 24628)
+++ trunk/buildroot/package/neon/neon.mk 2008-12-31 18:22:43 UTC (rev 24629)
@@ -16,6 +16,12 @@
NEON_CONF_OPT+=--with-expat=no
NEON_DEPENDENCIES+=libxml2
endif
+ifeq ($(BR2_PACKAGE_NEON_ZLIB),y)
+NEON_CONF_OPT+=--with-zlib=$(STAGING_DIR)
+NEON_DEPENDENCIES+=zlib
+else
+NEON_CONF_OPT+=--without-zlib
+endif
ifeq ($(BR2_PACKAGE_NEON_EXPAT),y)
NEON_CONF_OPT+=--with-expat=$(STAGING_DIR)/usr/lib/libexpat.la
NEON_CONF_OPT+=--with-libxml2=no
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/neon
@ 2009-01-08 8:27 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2009-01-08 8:27 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-08 08:27:45 +0000 (Thu, 08 Jan 2009)
New Revision: 24718
Log:
neon: s/exapt/expat/
Modified:
trunk/buildroot/package/neon/Config.in
Changeset:
Modified: trunk/buildroot/package/neon/Config.in
===================================================================
--- trunk/buildroot/package/neon/Config.in 2009-01-08 08:27:18 UTC (rev 24717)
+++ trunk/buildroot/package/neon/Config.in 2009-01-08 08:27:45 UTC (rev 24718)
@@ -19,7 +19,7 @@
depends on BR2_PACKAGE_NEON
help
Select which XML library to use...
- expat use exapt
+ expat use expat
libxml2 use libxml2
none do not build with XML support
@@ -27,7 +27,7 @@
bool "expat"
depends on BR2_PACKAGE_EXPAT
help
- expat use exapt, a library for parsing XML.
+ expat use expat, a library for parsing XML.
config BR2_PACKAGE_NEON_LIBXML2
bool "libxml2"
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-01-08 8:27 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-26 20:47 [Buildroot] svn commit: trunk/buildroot/package/neon jacmet at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2009-01-08 8:27 jacmet at uclibc.org
2008-12-31 18:22 nkukard at uclibc.org
2008-10-20 11:53 jacmet at uclibc.org
2008-08-26 20:47 jacmet at uclibc.org
2008-08-26 20:47 jacmet at uclibc.org
2008-08-26 20:47 jacmet at uclibc.org
2008-08-26 20:47 jacmet at uclibc.org
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox