**** BEGIN LOGGING AT Sun Jan 11 02:59:57 2009 Jan 11 03:09:11 nico * r13973 /packages/libs/sqlite3/Makefile: Jan 11 03:09:11 [cosmetic] sqlite3 fixes: Jan 11 03:09:11 - add a common default description for subpackages Jan 11 03:09:11 - use CONFIGURE_ARGS & CONFIGURE_VARS instead of a call to Build/Configure/Default Jan 11 03:09:11 - use INSTALL_DIR instead of 'mkdir -p' for dev stuff Jan 11 03:13:12 nico * r13974 /packages/libs/sqlite3/Makefile: oops, remove leftover from [13973] Jan 11 04:02:43 * russell_ is running into a build failure on x86-alix Jan 11 04:03:14 vm86.c:225: error: 'IF_MASK' undeclared (first use in this function) Jan 11 04:03:14 vm86.c:225: error: (Each undeclared identifier is reported only once Jan 11 04:03:14 vm86.c:225: error: for each function it appears in.) Jan 11 04:03:16 etc Jan 11 04:32:58 nico * r13975 /packages/net/peerguardian/patches/ (001-no_host_includes.patch 002-new_libipq.patch): refresh patches before upcoming fix Jan 11 04:37:46 nico * r13976 /packages/libs/libnetfilter-queue/Makefile: fix libnetfilter-queue: libtool linking libnetfilter-libipq with the host libc, cleanup Jan 11 04:44:02 nico * r13977 /packages/net/peerguardian/patches/002-new_libipq.patch: fix peerguardian: include missing 'linux/types.h' before using netfilter Jan 11 04:47:13 nico * r13978 /packages/libs/sqlite3/Makefile: fix sqlite3 on hosts where tclsh is installed Jan 11 06:17:26 nico * r13979 /packages/net/squid/ (Makefile patches/006-netfilter_missing_linux_types_h.patch): fix squid compile, cleanup Jan 11 11:40:52 perl is not building for me on an x86-alix compile Jan 11 11:45:51 or didn't, /me trying again Jan 11 11:47:26 sed: can't read files/config.sh-i486-openwrt-linux-uclibc.in: No such file or directory Jan 11 11:47:26 make[3]: *** [/aux/src/openwrt/build_dir/target-i386_uClibc-0.9.29/perl/perl-5.10.0/.configured-perl] Error 2 Jan 11 12:09:09 renaming the config.sh-i386-* to that name seems to fix it Jan 11 12:09:26 copying rather Jan 11 14:20:48 lars * r13980 /packages/Xorg/font/liberation-fonts-ttf/ (. Makefile): Add liberation fonts. Jan 11 14:45:28 florian * r13981 /packages/net/subversion/Makefile: Subversion should depend on libsasl2 (#4417) Jan 11 17:26:53 nico * r13982 /packages/libs/liboil/Makefile: Jan 11 17:26:53 liboil fixes: Jan 11 17:26:53 - add a workaround for building on arm Jan 11 17:26:53 - remove unneeded CONFIGURE stuff (libintl & libiconv not needed, uClibc now has all math functions, libnotimpl not needed anymore) Jan 11 17:28:03 nico * r13983 /trunk/toolchain/gdb/Makefile: gdb fixes: adjust --prefix & install in $(TOOLCHAIN_DIR)/usr/bin/ (like binutils & gcc) Jan 11 17:31:52 nico * r13984 /trunk/toolchain/Config.in: use different optimizations for x86 & x86_64 on uml Jan 11 17:50:39 florian * r13985 /packages/net/tcpdump/patches/001-remove_pcap_debug.patch: Refresh tcpdump patch (#4441) Jan 11 18:13:25 Hi every one Jan 11 18:13:32 fofware? Jan 11 18:13:40 can any one tell me how disable the default, route add default of openwrt ? Jan 11 18:14:17 what do you mean? Jan 11 18:15:03 hi xMff, i did a script to control multi wan connections Jan 11 18:15:10 welcome to #openwrt-devel! Jan 11 18:16:12 and openwrt, time on time add default route so Jan 11 18:16:15 yeah, that's udhcpc Jan 11 18:16:54 I think you need to edit it's default script so that it does not set default routes anymore Jan 11 18:16:58 ok, can I configure somethong to disable that? Jan 11 18:17:07 afaik no Jan 11 18:18:11 well, do you know the name of default script? Jan 11 18:18:39 /usr/share/udhcpc/default.script Jan 11 18:19:07 jejejjejej,thanks xMff very much Jan 11 18:25:07 hi all Jan 11 18:25:13 hey Jan 11 18:52:27 xMff, thanks very very very much, there was my problem Jan 11 18:54:48 np Jan 11 19:00:16 I'm trying to build a minimal version of gstreamer so that it can fit in flash. So I'd like to set up a Makefile to unpack and build it in a directory with a different name, say gstreamer-test. what should I put in the Makefile to do this? Jan 11 19:01:01 right now, it is unpacking the files to gstreamer-0.10.21, which is the default from the archive I believe Jan 11 19:04:59 you could change PKG_BUILD_DIR Jan 11 19:06:36 so could I add this: $(PKG_BUILD_DIR) = $(PKG_BUILD_DIR)/../gstreamer-test ? Jan 11 19:07:04 nope Jan 11 19:07:41 use something like PKG_BUILD_DIR:=$(BUILD_DIR)/testing/$(PKG_NAME)-$(PKG_VERSION) Jan 11 19:08:36 oh ok, I'll give that a try. thanks Jan 11 19:15:18 I couldnt get that to work - same error, "no rule to make target". and I couldn't see if/where it unpacked the archive Jan 11 19:23:22 how can I override the default archive extraction command using the Makefile? Jan 11 19:23:53 that seems to be the problem, as far as I can tell Jan 11 19:24:35 thats PKG_UNPACK Jan 11 19:25:03 is that the full command where I can set the destination? Jan 11 19:26:13 ok, I think I see how it might work... Jan 11 19:27:26 you can find the default values for that in include/unpack.mk Jan 11 19:29:10 thanks Jan 11 19:46:33 fyi, this looks like it's working: PKG_UNPACK:= mkdir $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION); \ Jan 11 19:46:33 tar -xvjf $(DL_DIR)/$(PKG_SOURCE) \ Jan 11 19:46:33 -C $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) \ Jan 11 19:46:33 --strip-components 1 \ Jan 11 19:46:34 gstreamer-$(PKG_VERSION)/ Jan 11 21:35:31 nbd * r13986 /trunk/include/kernel.mk: fix LINUX_KARCH for x86 Jan 11 21:42:49 Bartman007: Any chance you can post trendnet snapshots that do include the ath9k driver? Jan 11 21:43:30 I'd prefer official openwrt snapshots over uploading my own... integrity issue and all Jan 11 22:03:27 wiki won't let me change AtherosPort page. '/var/www/openwrt.org/wiki/data/pages/AtherosPort/current-locked Jan 11 22:14:34 mirko * r13987 /packages/lang/python/patches/080-distutils-dont_adjust_files.patch: do not "adjust" python files **** ENDING LOGGING AT Mon Jan 12 02:59:57 2009