Feed for discussion General in project QNX Community pkgsrc Project. http://community.qnx.com/sf/discussion/do/listTopics/projects.pkgsrc/discussion.general Posts for General post121621: Re: Kerberos on 6.5 http://community.qnx.com/sf/go/post121621 Thank you for the information Will. I'll dive into this and see where I can get! Mon, 11 Oct 2021 14:53:19 GMT http://community.qnx.com/sf/go/post121621 Carlton Nix 2021-10-11T14:53:19Z post121618: Re: Kerberos on 6.5 http://community.qnx.com/sf/go/post121618 Hi Carlton, I can't offer any guarantees for QNX 6.5, but I can pass along the patch we use for MIT krb5 to build for QNX 6.6. It may not work out of the box but hopefully it'll give you a leg up. Our build system is derived from Arch Linux's makepkg, so the build instruction we use were originally sourced from https://github.com/archlinux/svntogit-packages/tree/packages/krb5/trunk . Our system is currently building krb5 version 1.19.1 and requires libldap (from openldap) to be available in the environment. ---- # Build environment CARCH="ntox86" CHOST="x86-unknown-nto-qnx" CBUILD="x86_64-unknown-linux-gnu" export CC=qcc export CXX=QCC export CFLAGS="-O2" export AR="${CARCH}-ar" export AS="${CARCH}-as" export ELFEDIT="${CARCH}-elfedit" export LD="${CARCH}-ld" export NM="${CARCH}-nm" export OBJDUMP="${CARCH}-objdump" export OBJCOPY="${CARCH}-objcopy" export RANLIB="${CARCH}-ranlib" export SIZE="${CARCH}-size" export STRINGS="${CARCH}-strings" export STRIP="${CARCH}-strip" # Config overrides export CFLAGS+=" -fno-strict-aliasing -fstack-protector-all" export krb5_cv_attr_constructor_destructor=yes,yes export ac_cv_func_regcomp=no export ac_cv_printf_positional=no # Prepare sources # cf https://bugs.gentoo.org/show_bug.cgi?id=448778 patch -Np1 < krb5-config_LDFLAGS.patch # QNX cross-build fixes patch -Np1 < qnx-port.patch # FS#25384 sed -i "/KRB5ROOT=/s/\/local//" src/util/ac_check_krb5.m4 # Configure and build ./configure --build=${CBUILD} --host=${CHOST} \ --prefix=/usr \ --sbindir=/usr/bin \ --sysconfdir=/etc \ --localstatedir=/var/lib \ --enable-shared \ --disable-rpath \ --without-tcl \ --enable-dns-for-realm \ --with-ldap \ --without-system-verto make ---- I hope this is of some help. Good luck! -Will Fri, 08 Oct 2021 01:45:20 GMT http://community.qnx.com/sf/go/post121618 Will Miles 2021-10-08T01:45:20Z post121617: Kerberos on 6.5 http://community.qnx.com/sf/go/post121617 Hello, I'm trying to get a working Kerberos implementation on QNX 6.5. I found both heimdal and mit-krb in pkgsrc but neither build. Ultimately this is for a Samba 3.6 compile that utilizes Active Directory. I feel that mit-krb is my best bet but compiling with default configuration results in "Shared libraries are not supported on this platform". Trying to compile with static libraries results in other make issues (No rule to make target, etc). Anyone have any advice or has anyone gotten a working Kerberos on QNX 6.5? Thank you! Thu, 07 Oct 2021 22:45:03 GMT http://community.qnx.com/sf/go/post121617 Carlton Nix 2021-10-07T22:45:03Z post121382: Re: Compile smb for Qnx 6.6 http://community.qnx.com/sf/go/post121382 Hi Paul, It can be done, although it isn't easy or straightforward. I actually just went through updating our local build to Samba 4.11.17 (client and server, but no active directory server support). Porting the dependency chain is a substantial amount of work, though. Here are some things you'll have to watch out for: - I had problems with the QNX supplied version of GNU ld faulting on Samba's massive collection of .sos. I ended up recompiling binutils from the 'core-dev-tools' project here to get a compatible version of 'ld.gold' to use as an alternative. - You'll need to build MIT krb5 externally for kerberos support; Samba's embedded heimdal doesn't cross-compile properly. - Samba depends on Python; you'll need to make sure you've compiled the same version of Python for both host and build systems. (We ported 3.6.9 to match some of our data processing toolchain). We use the 'crossenv' python module to set up the cross-python environment, but you'll also need to explicitly override 'sys.platform' and 'sys.maxsize' inside the cross environment or waf won't do feature detection properly. - You'll need to set up a QNX target machine you can ssh in, with NFS mapped to your build drive, so you can 'cross-execute' during Samba's configure pass. This only has to be done once; configure can save the results in a 'cross-answers' file and re-use them for future builds. - Finally, we ran in to an issue on multi-core x86 QNX 6.6 targets where procnto would flood the system with IPIs whenever an smbd or nmbd process terminated. Samba uses tons of little .so files with a bazillion small sections inside, and the memory manager notifies every core for every one of those tiny unmappings. To mitigate this, we ended up locking both our hard real time processes and most of procnto's threads to core 0 (so that our hard real time processes could reliably preempt the memory manager instead of being flooded out by IPIs); and forcing samba to statically link key binaries as much as it could (configure --nonshared-binary=smbd/smbd,nmbd/nmbd). I believe this was been fixed when the memory manager was rewritten in QNX 7.0, but I haven't personally verified it. It's possible that the pathological behaviour was also related to using ld.gold. I wish I could pass along more complete build instructions, but unfortunately our tooling still has a few too many proprietary stages. If I get time to containerize it properly I'll see if I can post more of it. Good luck! -Will Tue, 20 Apr 2021 15:42:05 GMT http://community.qnx.com/sf/go/post121382 Will Miles 2021-04-20T15:42:05Z post121381: Compile smb for Qnx 6.6 http://community.qnx.com/sf/go/post121381 Hello, Is there any directions regarding building a working samba version for Qnx 6.6 ? I'm trying to read wiki etc... but can't find my way arround it... Tue, 20 Apr 2021 08:09:10 GMT http://community.qnx.com/sf/go/post121381 Thilloy Paul 2021-04-20T08:09:10Z post120120: Re: Instructions on compiling Git-2.7.0 from source http://community.qnx.com/sf/go/post120120 If you use "pkgsrc", you can install OpenSSL and curl, as well as tcltk and all other dependencies. Thu, 19 Dec 2019 17:23:00 GMT http://community.qnx.com/sf/go/post120120 Danny Yen(deleted) 2019-12-19T17:23:00Z post119662: How to configure the three keyboard layouts in QNX6.6? http://community.qnx.com/sf/go/post119662 Hello. How to configure the three keyboard layouts in QNX6.6? In QNX6.6 by default installed English keyboard layout is en_US_101. I added another keyboard layout. For this in the "graphics.conf" file in the section in "winmgr" in "globals" seted the parameter "keymap = / usr / share / keyboard / en_RU_102a". But the third keyboard layout can not be set. How can I set up three keyboard layouts in QNX6.6? Tue, 16 Apr 2019 13:25:24 GMT http://community.qnx.com/sf/go/post119662 Vova Beliy(deleted) 2019-04-16T13:25:24Z post119282: Re: Cross compile python 2.7.x for QNX 6.6.0 http://community.qnx.com/sf/go/post119282 There are two strategies you could try. 1) Copy the missing QNX 6.5 libraries to your QNX 6.6 system. 2) Build Python for QNX 6.6. The path of least resistance might be to spin up a Linux system, install Momentics and then download the open source using the usual ./configure ; make ; install process. You might need to add some options to ./configure to make sure you get QNX and the processor you want. Sat, 10 Nov 2018 03:02:46 GMT http://community.qnx.com/sf/go/post119282 Mitchell Schoenbrun 2018-11-10T03:02:46Z post119281: Cross compile python 2.7.x for QNX 6.6.0 http://community.qnx.com/sf/go/post119281 I am looking for working instruction of how to cross compile python 2.7.x for QNX 6.6.0. My QNX 6.6.0 SDK is Linux based and target is Intel PC QNX 6.6.0. Publicly available QNX python 2.7.2 package is build for 6.5.0 and references libraries which are not compatible with QNX 6.6.0 libraries. Regards, Janusz Fri, 09 Nov 2018 19:20:30 GMT http://community.qnx.com/sf/go/post119281 janusz ruszel 2018-11-09T19:20:30Z post118928: Re: how to invoke python scripts from QNX makefile ? http://community.qnx.com/sf/go/post118928 Thank you for the help. Tue, 10 Jul 2018 09:54:03 GMT http://community.qnx.com/sf/go/post118928 Anand Shastry 2018-07-10T09:54:03Z post118925: Re: how to invoke python scripts from QNX makefile ? http://community.qnx.com/sf/go/post118925 You can put any command you want in the makefile. There's nothing special about invoking python, eg: myheaders.h: myheader.input python buildhdr.py <myheader.input >myheaders.h Tue, 10 Jul 2018 06:04:48 GMT http://community.qnx.com/sf/go/post118925 Mitchell Schoenbrun 2018-07-10T06:04:48Z post118924: how to invoke python scripts from QNX makefile ? http://community.qnx.com/sf/go/post118924 how to invoke python scripts from makefile ? I am using python scripts for generating header file. Please advice. Thanks, Anand Tue, 10 Jul 2018 05:54:23 GMT http://community.qnx.com/sf/go/post118924 Anand Shastry 2018-07-10T05:54:23Z post118859: Re: Instructions on compiling Git-2.7.0 from source http://community.qnx.com/sf/go/post118859 Thanks for the doing the initial heavy lifting. I found that I needed to also add NO_TCLTK=1 as well to get this to compile. Another note is that I made a symbolic link to my install-sh named install and then made sure that install was in my path. Otherwise, it worked like a charm. Just a note, my experience so far indicates that the git built with this is not able to communicate with the outside world because of the lack of openssl and curl. Fri, 01 Jun 2018 15:32:29 GMT http://community.qnx.com/sf/go/post118859 Jeromy Tompkins 2018-06-01T15:32:29Z post118794: Any plans for pkgsrc for QNX 7.0 http://community.qnx.com/sf/go/post118794 The pkgsrc source tree is last updated 2 years for QNX 6.6. I was wondering if there is any plans to support QNX 7.0? Thanks Fri, 27 Apr 2018 20:20:49 GMT http://community.qnx.com/sf/go/post118794 Danny Yen(deleted) 2018-04-27T20:20:49Z post117812: QNX 7 hung due to inactivity http://community.qnx.com/sf/go/post117812 I find that QNX 7 gets hung after some inactivity timeout. The keyboard does not respond, display off, telnet connection lost. No extra driver loaded, is there anything I can add in build file so that it's live all the time? Thanks. Thu, 22 Jun 2017 17:35:47 GMT http://community.qnx.com/sf/go/post117812 Hasan Jamal 2017-06-22T17:35:47Z post117811: Re: lld: FATAL http://community.qnx.com/sf/go/post117811 That's it, I needed to use addvariant tool for 64 bit binary, this is the reason for ldd error. Thanks a lot. Thu, 22 Jun 2017 17:11:03 GMT http://community.qnx.com/sf/go/post117811 Hasan Jamal 2017-06-22T17:11:03Z post117806: Re: lld: FATAL http://community.qnx.com/sf/go/post117806 > It looks like a Makefile issue, I find in the map file that the pcilib used > there as 32 bit but our actual target is 64 bit. > How did you add the x86_64 to your project? Did you use the 'addvariant' tool? Wed, 21 Jun 2017 22:20:06 GMT http://community.qnx.com/sf/go/post117806 Dean Denter 2017-06-21T22:20:06Z post117805: Re: lld: FATAL http://community.qnx.com/sf/go/post117805 > > > You want to create a link in the build file that mimics this eg. libx.so -> > /usr/lib/libx.so > > How do I do this? > > I've tried this in the build file > [type=link] libpci.so.2.0=/proc/boot/libpci.so.2.0 > Shouldn't the link line be as follows to create a link from /lib/libpci... to /proc/boot/libpci.... : [type=link] /lib/libpci.so.2.0=libpci.so.2.0 giving you the following sequence in your build file: #--------------------------------------------------------------------------------------------------- # libraries for new PCI driver #--------------------------------------------------------------------------------------------------- libpci.so [type=link] /lib/libpci.so.2.0=libpci.so.2.0 [-followlink search=${QNX_TARGET}/${PROCESSOR}] /lib/dll/pci/=lib/dll/pci Wed, 21 Jun 2017 21:51:59 GMT http://community.qnx.com/sf/go/post117805 Dean Denter 2017-06-21T21:51:59Z post117804: Re: lld: FATAL http://community.qnx.com/sf/go/post117804 > You want to create a link in the build file that mimics this eg. libx.so -> /usr/lib/libx.so How do I do this? I've tried this in the build file [type=link] libpci.so.2.0=/proc/boot/libpci.so.2.0 Then it does not load pci server, saying that it can't find libpci.so.2.0. #--------------------------------------------------------------------------------------------------- # libraries for new PCI driver #--------------------------------------------------------------------------------------------------- libpci.so [type=link] libpci.so.2.0=/proc/boot/libpci.so.2.0 [-followlink search=${QNX_TARGET}/${PROCESSOR}] /lib/dll/pci/=lib/dll/pci Wed, 21 Jun 2017 21:31:51 GMT http://community.qnx.com/sf/go/post117804 Hasan Jamal 2017-06-21T21:31:51Z post117800: Re: lld: FATAL http://community.qnx.com/sf/go/post117800 It looks like a Makefile issue, I find in the map file that the pcilib used there as 32 bit but our actual target is 64 bit. LOAD H:/QNX700/target/qnx7/x86/lib/libpci.so OUTPUT(C:/Users/super7/ide-7.0-workspace/CTI-QNX-700/src/ctiser/x86/o/devc-serCtiPciUart elf32-i386) It will need to point to x86_64. We used the same make file that we used for QNX 6.6. I think if I get the makefile for 64 bit then the issue will be solved. We've been using sample serial driver for our serial cards for ~30 years. I don't see the sample serial driver for QNX 7, where do I get it? Thanks, Hasan Tue, 20 Jun 2017 21:12:17 GMT http://community.qnx.com/sf/go/post117800 Hasan Jamal 2017-06-20T21:12:17Z post117799: Re: lld: FATAL http://community.qnx.com/sf/go/post117799 Since this is a dynamic library, the program expects to find it in the same place as it was when compiled. So it probably lives in /lib or /usr/lib or on the outside /usr/local/lib. You want to create a link in the build file that mimics this eg. libx.so -> /usr/lib/libx.so Tue, 20 Jun 2017 19:50:44 GMT http://community.qnx.com/sf/go/post117799 Mitchell Schoenbrun 2017-06-20T19:50:44Z post117798: lld: FATAL http://community.qnx.com/sf/go/post117798 I'm using QNX 7. I've rebuilt our PCI driver and when I tried to load it says it can't find the pcilib.so.2.0 and it's in the system. Any hint on how to move forward, any help is appreciated. Thanks. Hasan # /tmp/devc-serCtiPciUart ldd:FATAL: Could not load library libpci.so.2.0 # ls -l /proc/boot/libpci* lrwxrwxrwx 1 root root 13 Jun 19 2017 /proc/boot/libpci.so -> libpci.so.2.0 -rwxrwxrwx 1 root root 94295 Jun 19 2017 /proc/boot/libpci.so.2.0 # use -i /proc/boot/libpci.so.2.0 QNX_BUILDID=(GNU)d6e3d34b1d0f7e65c178042ce4a49299 NAME=libpci.so DESCRIPTION=PCI Server Library DATE=2017/01/19-14:17:30-EST STATE=stable HOST=sdp700-node1 USER=builder VERSION=7.0.0 TAGID=700-SDP_3_build-x86_64-8 Tue, 20 Jun 2017 18:14:23 GMT http://community.qnx.com/sf/go/post117798 Hasan Jamal 2017-06-20T18:14:23Z post117709: Cross compile iperf for A7 based arm platform board using QDE6.6. http://community.qnx.com/sf/go/post117709 Hi All, I have a arm a7 architecture based board and I have written a QNX devnp driver for it newly and I did test if for all configurations and basic tests and everything is working fine,but for bench marking I need to cross compile iperf for the same on QDE 6.6. Did anyone succeed to cross compile the iperf for arm architecture boards? If any please let me know. Regards, Prasanna Thu, 04 May 2017 11:21:24 GMT http://community.qnx.com/sf/go/post117709 Prasanna Prabhu(deleted) 2017-05-04T11:21:24Z post117708: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post117708 > Hello, > what configuration changes did you make? If you do not mind telling > it to me. I need to build a project for ppc as well I have a arm a7 architecture based board and I have written a QNX devnp driver for it newly and I did test if for all configurations and tests but for bench marking I need to cross compile iperf for the same on QDE 6.6. Did anyone succeed to cross compile the iperf for arm architecture boards? If any please let me know Thu, 04 May 2017 11:18:22 GMT http://community.qnx.com/sf/go/post117708 Prasanna Prabhu(deleted) 2017-05-04T11:18:22Z post117707: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post117707 Did you sort out how to compile the iperf for QNX patforms ? Thu, 04 May 2017 11:15:17 GMT http://community.qnx.com/sf/go/post117707 Prasanna Prabhu(deleted) 2017-05-04T11:15:17Z post117646: Is this project still active? http://community.qnx.com/sf/go/post117646 Very interested in being able to run open source programs on QNX. Is this project still active? Thu, 13 Apr 2017 23:25:43 GMT http://community.qnx.com/sf/go/post117646 Cory Dambach 2017-04-13T23:25:43Z post115442: Instructions on compiling Git-2.7.0 from source http://community.qnx.com/sf/go/post115442 Hi all, All my previous questions have been gearing towards compiling the latest Git. Since I had finally got Git compiled and installed from source, I thought I share my steps that may benefit other like-minded individuals. All credits goes to Matthew Kraai for advice and guidance. Caveats - I wasn't able to be get documents to install due some problem in the xmlto binary... sorry! - there are no translations, just English due to some error in gettext... sorry! Required Perl Python OpenSSL Curl install-sh All the required binaries/libraries are installed using pkgsrc found here (with exception of install-sh). Since QNX doesn't have an install command, we can use an implementation in shell script which can be found here: http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob;f=build-aux/install-sh;h=0b0fdcbba69ab6dd05ca162a5328828d46ab1d54;hb=HEAD 0. Download "install-sh" and save it as "install" in one of the directories in PATH. 1. Download and extract the latest Git tarball (in my case, git-2.7.0.tar.gz) 2. Do NOT "make configure", or if you do, do NOT run "./configure" 3. Run "make prefix=/usr install NO_GETTEXT=1 PERL_PATH=/usr/pkg/bin/perl PYTHON_PATH=/usr/pkg/bin/python2.4 CURLDIR=/usr/pkg NO_DEFLATE_BOUND=1" 4. Enjoy Note: If you don't have OpenSSL, Perl, Python, or Curl, Git can still compile. But you'll need the following options: "NO_OPENSSL=1" "NO_PERL=1" instead of "PERL_PATH=..." "NO_PYTHON=1" instead of "PYTHON_PATH=..." "NO_CURL=1" instead of "CURLDIR=..." Please chime in on your experience and share and tips, comments, or corrections. Hopefully this will prevent people from reinventing the wheel. Thu, 07 Jan 2016 21:01:26 GMT http://community.qnx.com/sf/go/post115442 Danny Yen(deleted) 2016-01-07T21:01:26Z post115418: Re: Compiling scmgit-1.6.0.6 http://community.qnx.com/sf/go/post115418 As there was no replies, I hacked my way to get it compiled. Specifically, I commented out all the lines where SA_RESTART had appeared. I believe only two files had them: progress.c and buildin-fetch.c. Moreover, I needed to define NO_R_TO_GCC_LINKER. Unfortunately, my lack of knowledge of the code and press for time did not let me find out where exactly I should define this. Instead, I comment out the alternative and forced the option instead in the Makefile in the source folder under scmgit-base/work/git-1.6.0.6. This allowed git to compile. However, the documentation for git failed to compiled to to an error in compiling xmlto, an error that was less than helpful. But, at least, it is usable now... it's just unfortunate that it's such an old verson. Seeing how little activities is going on this forum, I'm not optimistic of this question will be answered but at least someone out there may be interested or already made some headway... but does anyone have better luck in compiling the git from latest source? Using the git I have, I cloned the latest git source but all effort in compiling it had failed. Wed, 06 Jan 2016 16:27:20 GMT http://community.qnx.com/sf/go/post115418 Danny Yen(deleted) 2016-01-06T16:27:20Z post115385: Compiling scmgit-1.6.0.6 http://community.qnx.com/sf/go/post115385 Hi again, I finally got all the scmgit dependencies compiled. However, when compiling scmgit-base, it sends the following error: ------------------------------------------------------------------------------ path.c:44: warning: implicit declaration of function 'strlcpy' CC pkt-line.o CC pretty.o CC progress.o progress.c: In function 'set_progress_signal': progress.c:55: error: 'SA_RESTART' undeclared (first use in this function) progress.c:55: error: (Each undeclared identifier is reported only once progress.c:55: error: for each function it appears in.) gmake: *** [progress.o] Error 1 *** Error code 2 Stop. bmake: stopped in /home/av/test/HEAD_640/pkgsrc/devel/scmgit-base *** Error code 1 Stop. bmake: stopped in /home/av/test/HEAD_640/pkgsrc/devel/scmgit-base *** Error code 1 Stop. bmake: stopped in /home/av/test/HEAD_640/pkgsrc/devel/scmgit ------------------------------------------------------------------------------ Anyone have any ideas what's the problem? Thu, 31 Dec 2015 15:24:25 GMT http://community.qnx.com/sf/go/post115385 Danny Yen(deleted) 2015-12-31T15:24:25Z post115381: Re: Compiling tcl8.4.18 http://community.qnx.com/sf/go/post115381 I think I found the problem: I had to log in as "root". tcl seem to compile fine now. Wed, 30 Dec 2015 17:26:34 GMT http://community.qnx.com/sf/go/post115381 Danny Yen(deleted) 2015-12-30T17:26:34Z post115379: Compiling tcl8.4.18 http://community.qnx.com/sf/go/post115379 I'm stuck in compiling the from pkgsrc. I hope the community can help me out. I'm attempting to compile tcl8.4.18 but I get the following error: ---------------------------------------------------------------------------------- /home/av/test/HEAD_640/pkgsrc/lang/tcl> bmake install => Bootstrap dependency digest>=20010302: found digest-20080510 ===> Installing for tcl-8.4.18 => Becoming ``root'' to make su-install-all (/bin/su) password: => Creating installation directories Warning: tclStubInit.c may be out of date. Developers may want to run "make genstubs" to regenerate. This warning can be safely ignored, do not report as a bug! libtool --mode=compile gcc -c -O -O2 -pipe -DTCL_DBGX= -Wall -Wno-implicit-int -fno-strict-aliasing -fPIC -I. -I/home/av/test/HEAD_640/pkgsrc/lang/tcl/work/t cl8.4.18/unix/../generic -I/home/av/test/HEAD_640/pkgsrc/lang/tcl/work/tcl8.4.18 /unix -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 - DTCL_WIDE_INT_TYPE=long\ long -DHAVE_STRUCT_STAT64=1 -DHAVE_OPEN64=1 -DHAVE_LSEE K64=1 -DHAVE_TYPE_OFF64_T=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DH AVE_STRTOL=1 -DHAVE_STRTOLL=1 -DHAVE_STRTOULL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DHAVE_SYS_MODEM_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_TM_ZONE=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 - DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_ST_BLKSIZE=1 -DNO_FSTATFS=1 -DSTD C_HEADERS=1 -DNO_UNION_WAIT=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1 -DTCL_SHLIB_EXT=\".so\" -DTCL_LIBRARY=\"/usr/pkg/lib/tcl8.4\" -DTCL_PACKAGE_PA TH="\"/usr/pkg/lib/tcl /usr/pkg/lib /usr/pkg/lib/tcl\"" /home/av/test/HEAD_640/ pkgsrc/lang/tcl/work/tcl8.4.18/unix/tclUnixInit.c gcc -c -O -O2 -pipe -DTCL_DBGX= -Wall -Wno-implicit-int -fno-strict-aliasing -f PIC -I. -I/home/av/test/HEAD_640/pkgsrc/lang/tcl/work/tcl8.4.18/unix/../generic -I/home/av/test/HEAD_640/pkgsrc/lang/tcl/work/tcl8.4.18/unix -DNO_VALUES_H=1 -DH AVE_LIMITS_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 "-DTCL_WIDE_INT_TYPE=long long" -DHAVE_STRUCT_STAT64=1 -DHAVE_OPEN64=1 -DHAVE_LSEEK64=1 -DHAVE_TYPE_OFF64_ T=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_STRT OLL=1 -DHAVE_STRTOULL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DHAVE_SYS_MODEM_H=1 -D USE_TERMIOS=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 - DHAVE_TM_ZONE=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_TM_GMTOFF=1 -DHAVE _TIMEZONE_VAR=1 -DHAVE_ST_BLKSIZE=1 -DNO_FSTATFS=1 -DSTDC_HEADERS=1 -DNO_UNION_W AIT=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1 -DTCL_SHLIB_EXT=\".so\" -DTCL_LI BRARY=\"/usr/pkg/lib/tcl8.4\" "-DTCL_PACKAGE_PATH=\"/usr/pkg/lib/tcl /usr/pkg/li b /usr/pkg/lib/tcl\"" /home/av/test/HEAD_640/pkgsrc/lang/tcl/work/tcl8.4.18/unix /tclUnixInit.c -fPIC -DPIC -o .libs/tclUnixInit.o gcc: error: environment variables QNX_HOST and QNX_TARGET not defined *** Error code 1 Stop. bmake: stopped in /home/av/test/HEAD_640/pkgsrc/lang/tcl/work/tcl8.4.18/unix *** Error code 1 Stop. bmake: stopped in /home/av/test/HEAD_640/pkgsrc/lang/tcl *** Error code 1 Stop. bmake: stopped in /home/av/test/HEAD_640/pkgsrc/lang/tcl *** Error code 1 Stop. bmake: stopped in /home/av/test/HEAD_640/pkgsrc/lang/tcl ---------------------------------------------------------------------------------- To make sure my environment file wasn't wrong, I echo the supposed missing variables: ---------------------------------------------------------------------------------- /home/av/test/HEAD_640/pkgsrc/lang/tcl> echo $QNX_HOST /usr/qnx641/host/qnx6/x86 /home/av/test/HEAD_640/pkgsrc/lang/tcl> echo $QNX_TARGET /usr/qnx641/target/qnx6 ---------------------------------------------------------------------------------- So the environment variables exists... so what's causing the error? Any ideas? Thanks! Tue, 29 Dec 2015 21:22:50 GMT http://community.qnx.com/sf/go/post115379 Danny Yen(deleted) 2015-12-29T21:22:50Z post114220: Re: Your 'rm' program seems unable to run without file operands... http://community.qnx.com/sf/go/post114220 This is fixed in 6.6. You should be able to grab the 'rm' from there. On Wed, Aug 05, 2015 at 04:34:22AM -0400, Zhiying Xiang wrote: > Hi Folks, > > I'm trying to build apache2.4 using a self-hosted x86 QNX. > > The following error is blocking the way, anyone who has experience to work around it ? > <snip> > > Your 'rm' program seems unable to run without file operands specified > on the command line, even when the '-f' option is present. This is contrary > to the behaviour of most rm programs out there, and not conforming with > the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542> Wed, 05 Aug 2015 12:32:54 GMT http://community.qnx.com/sf/go/post114220 Sean Boudreau(deleted) 2015-08-05T12:32:54Z post114218: Re: Your 'rm' program seems unable to run without file operands... http://community.qnx.com/sf/go/post114218 Oops.. seems a stupid question, the error information itself tells me the solution. "EXPORT ACCEPT_INFERIOR_RM_PROGRAM=yes" will fix it. Wed, 05 Aug 2015 11:06:34 GMT http://community.qnx.com/sf/go/post114218 Zhiying Xiang(deleted) 2015-08-05T11:06:34Z post114214: Your 'rm' program seems unable to run without file operands... http://community.qnx.com/sf/go/post114214 Hi Folks, I'm trying to build apache2.4 using a self-hosted x86 QNX. The following error is blocking the way, anyone who has experience to work around it ? OS: QNX localhost 6.5.0 2010/07/09-14:44:03EDT x86pc x86 pkgsrc version: HEAD_650 ===> Configuring for gettext-lib-0.18.3 => Modifying GNU configure scripts to avoid --recheck => Replacing config-guess with pkgsrc versions => Replacing config-sub with pkgsrc versions => Replacing install-sh with pkgsrc version checking for a BSD-compatible install... /usr/pkg/bin/install-sh -c -o root -g root checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ../build-aux/install-sh -c -d checking for gawk... /usr/pkg/bin/nawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes rm: Must specify file[s] for removal. Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542> Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: <http://www.gnu.org/software/coreutils/>. If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. configure: error: Your 'rm' program is bad, sorry. *** Error code 1 Stop. bmake: stopped in /HEAD_650/pkgsrc/devel/gettext-lib *** Error code 1 Stop. bmake: stopped in /HEAD_650/pkgsrc/devel/gettext-lib *** Error code 1 Stop. bmake: stopped in /HEAD_650/pkgsrc/archivers/xz *** Error code 1 Stop. bmake: stopped in /HEAD_650/pkgsrc/devel/gettext-tools *** Error code 1 Stop. bmake: stopped in /HEAD_650/pkgsrc/converters/help2man *** Error code 1 Stop. bmake: stopped in /HEAD_650/pkgsrc/devel/autoconf *** Error code 1 Stop. bmake: stopped in /HEAD_650/pkgsrc/devel/pkg-config *** Error code 1 Stop. bmake: stopped in /HEAD_650/pkgsrc/www/apache24 # rm rm: Must specify file[s] for removal. Wed, 05 Aug 2015 08:34:22 GMT http://community.qnx.com/sf/go/post114214 Zhiying Xiang(deleted) 2015-08-05T08:34:22Z post114118: Re: glib2 build http://community.qnx.com/sf/go/post114118 > Does it work on Ubuntu 14.04? Compiling the glib2? How to compile glib2 for ARMv7 based board with QNX Neutrino? Tue, 14 Jul 2015 07:42:09 GMT http://community.qnx.com/sf/go/post114118 Dustin Zhu(deleted) 2015-07-14T07:42:09Z post114117: Re: glib2 build http://community.qnx.com/sf/go/post114117 Does it work on Ubuntu 14.04? Compiling the glib2? Tue, 14 Jul 2015 07:41:11 GMT http://community.qnx.com/sf/go/post114117 Dustin Zhu(deleted) 2015-07-14T07:41:11Z post114116: Re: Gnome - glib2 http://community.qnx.com/sf/go/post114116 how to build glib2 for ARMv7 based board with QNX 6.6? Tue, 14 Jul 2015 07:36:31 GMT http://community.qnx.com/sf/go/post114116 Dustin Zhu(deleted) 2015-07-14T07:36:31Z post114113: Re: how to build glib library into QNX target filesystem http://community.qnx.com/sf/go/post114113 Using pkgsrc, I really don't know how to start it at all Tue, 14 Jul 2015 03:26:28 GMT http://community.qnx.com/sf/go/post114113 Dustin Zhu(deleted) 2015-07-14T03:26:28Z post114112: how to build glib library into QNX target filesystem http://community.qnx.com/sf/go/post114112 My host is ubuntu 14.04 and get glib-2.44 source code from official website. But I don't know how to cross-compile the glib library for ARMv7 based QNX board. At the beginning, I used sb2 to do it , but failed in configure. So I wanna know what the exact right way is to build glib. Thanks in advance. Tue, 14 Jul 2015 02:25:10 GMT http://community.qnx.com/sf/go/post114112 Dustin Zhu(deleted) 2015-07-14T02:25:10Z post113297: Re: Errno.pm.PL bmake error in HEAD_660/pkgsrc http://community.qnx.com/sf/go/post113297 FFTW2 has the dependency. I have separately cross-compiled a newer version so getting g95 built to suport FFTW2 is more of an exercise. I also tried libupnp and it failed with the perl5 error that has since been solved. I'm not certain what further dependencies are required for libupnp but I will try that again tonight. Thanks. Wed, 11 Feb 2015 16:01:11 GMT http://community.qnx.com/sf/go/post113297 Aaron Gawlik(deleted) 2015-02-11T16:01:11Z post113296: Re: Errno.pm.PL bmake error in HEAD_660/pkgsrc http://community.qnx.com/sf/go/post113296 What are you building that thinks it has a dependency on g95? On Wed, Feb 11, 2015 at 08:41:53AM -0500, Aaron Gawlik wrote: > You were correct and both suggestions worked to get past that particular issue. > > I then had to modify a number of makefiles because they included "qnx660/host/linux/x86/usr/lib/gcc/i486-pc-nto-qnx6.6.0/4.7.3/include/" headers instead of "qnx660/target/qnx6/usr/include". > > The next issue I've found in the dependency list after perl is g95 compiler - I can move this to a new thread if preferred. The error is listed below, but it occurs due to crtbegin.o not being found. This is a referenced error elsewhere due to missing 32-bit libraries on a 64-bit system (my host tool). The common suggestion is to install ia32-libs package, which I did to no avail. I have the crtbegin.o file under other gcc versions for the base linux and the host & target QNX. Should I make build the object file from source, and if so, with which gcc? Or should I link to an already built object file? > > Another suggestion disables "multilib" and defines the MACHINE_GNU_PLATFORM in the makefile. From http://gnats.netbsd.org/46397 > > Thanks again for any help. > > ------------------------------------------------------------------ > /home/ubuntu/pkgsrc/lang/g95/work/gcc-4.1.2/g95/./gcc/xgcc -B/home/ubuntu/pkgsrc/lang/g95/work/gcc-4.1.2/g95/./gcc/ -B/usr/pkg/i386-pc-nto-qnx6.6.0/bin/ -B/usr/pkg/i386-pc-nto-qnx6.6.0/lib/ -isystem /usr/pkg/i386-pc-nto-qnx6.6.0/include -isystem /usr/pkg/i386-pc-nto-qnx6.6.0/sys-include -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../gcc -I../../gcc/. -I../../gcc/../include -I./../intl -I../../gcc/../libcpp/include -g0 -finhibit-size-directive -fno-inline-functions -fno-exceptions -fno-zero-initialized-in-bss -fno-unit-at-a-time -fno-omit-frame-pointer -fPIC \ > -c ../../gcc/crtstuff.c -DCRT_BEGIN \ > -o crtbegin.o > Assembler messages: > Error: can't open /tmp/ccwBb0oL.s for reading: No such file or directory > gmake[2]: *** [crtbegin.o] Error 1 > gmake[2]: Leaving directory `/home/ubuntu/pkgsrc/lang/g95/work/gcc-4.1.2/g95/gcc' > gmake[1]: *** [all-gcc] Error 2 > gmake[1]: Leaving directory `/home/ubuntu/pkgsrc/lang/g95/work/gcc-4.1.2/g95' > gmake: *** [all] Error 2 > *** Error code 2 > > Stop. > bmake: stopped in /home/ubuntu/pkgsrc/lang/g95 > WARNING: Please add USE_TOOLS+=perl to the package Makefile. > *** Error code 1 > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post113295 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Wed, 11 Feb 2015 15:43:34 GMT http://community.qnx.com/sf/go/post113296 Sean Boudreau(deleted) 2015-02-11T15:43:34Z post113295: Re: Errno.pm.PL bmake error in HEAD_660/pkgsrc http://community.qnx.com/sf/go/post113295 You were correct and both suggestions worked to get past that particular issue. I then had to modify a number of makefiles because they included "qnx660/host/linux/x86/usr/lib/gcc/i486-pc-nto-qnx6.6.0/4.7.3/include/" headers instead of "qnx660/target/qnx6/usr/include". The next issue I've found in the dependency list after perl is g95 compiler - I can move this to a new thread if preferred. The error is listed below, but it occurs due to crtbegin.o not being found. This is a referenced error elsewhere due to missing 32-bit libraries on a 64-bit system (my host tool). The common suggestion is to install ia32-libs package, which I did to no avail. I have the crtbegin.o file under other gcc versions for the base linux and the host & target QNX. Should I make build the object file from source, and if so, with which gcc? Or should I link to an already built object file? Another suggestion disables "multilib" and defines the MACHINE_GNU_PLATFORM in the makefile. From http://gnats.netbsd.org/46397 Thanks again for any help. ------------------------------------------------------------------ /home/ubuntu/pkgsrc/lang/g95/work/gcc-4.1.2/g95/./gcc/xgcc -B/home/ubuntu/pkgsrc/lang/g95/work/gcc-4.1.2/g95/./gcc/ -B/usr/pkg/i386-pc-nto-qnx6.6.0/bin/ -B/usr/pkg/i386-pc-nto-qnx6.6.0/lib/ -isystem /usr/pkg/i386-pc-nto-qnx6.6.0/include -isystem /usr/pkg/i386-pc-nto-qnx6.6.0/sys-include -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../gcc -I../../gcc/. -I../../gcc/../include -I./../intl -I../../gcc/../libcpp/include -g0 -finhibit-size-directive -fno-inline-functions -fno-exceptions -fno-zero-initialized-in-bss -fno-unit-at-a-time -fno-omit-frame-pointer -fPIC \ -c ../../gcc/crtstuff.c -DCRT_BEGIN \ -o crtbegin.o Assembler messages: Error: can't open /tmp/ccwBb0oL.s for reading: No such file or directory gmake[2]: *** [crtbegin.o] Error 1 gmake[2]: Leaving directory `/home/ubuntu/pkgsrc/lang/g95/work/gcc-4.1.2/g95/gcc' gmake[1]: *** [all-gcc] Error 2 gmake[1]: Leaving directory `/home/ubuntu/pkgsrc/lang/g95/work/gcc-4.1.2/g95' gmake: *** [all] Error 2 *** Error code 2 Stop. bmake: stopped in /home/ubuntu/pkgsrc/lang/g95 WARNING: Please add USE_TOOLS+=perl to the package Makefile. *** Error code 1 Wed, 11 Feb 2015 13:41:52 GMT http://community.qnx.com/sf/go/post113295 Aaron Gawlik(deleted) 2015-02-11T13:41:52Z post113273: Re: Errno.pm.PL bmake error in HEAD_660/pkgsrc http://community.qnx.com/sf/go/post113273 It's probably this line in ext/Errno/Errno_pm.PL: return unless defined $file and -f $file; This script does an initial preprocessor run of errno.h, pulls out the list of headers it brings in and then runs this list through 'gcc -dM ...' to get the errno values. The list of headers from the initial run is relative to the host so this check to see if it's reachable from the target is probably failing. You can either comment out this line or nfs mount $QNX_TARGET/usr/include from the host at the same pount on the target. perl, sigh... On Mon, Feb 09, 2015 at 09:23:38AM -0500, Aaron Gawlik wrote: > I have followed the method for building pkgsrc on QNX6.6 from the link below and am able to bootstrap and bmake lighttpd with its dependencies. Arch is x86, host is Ubuntu VM, target is x86 QNX6.6 VM. > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/PkgsrcOnQnx6.6 > > Several packages require perl and attempt to build perl-5.18.0nb2. Regardless of -64bit* and -threads options it fails with the message below. Even commenting out the "die" line, the build fails at a following stage. > ------------------------------------------------- > Running Makefile.PL in ext/Errno > ../../miniperl -I../../lib Makefile.PL INSTALLDIRS=perl INSTALLMAN1DIR=none INSTALLMAN3DIR=none PERL_CORE=1 LIBPERL_A=libperl.so > Writing Makefile for Errno > Making all in ext/Errno > /usr/pkg/bin/bmake all PERL_CORE=1 LIBPERL_A=libperl.so > ../../miniperl "-I../../lib" "-I../../lib" Errno_pm.PL Errno.pm > No error definitions found at Errno_pm.PL line 204. > *** Error code 2 > > Stop. > bmake: stopped in /home/ubuntu/pkgsrc/lang/perl5/work/perl-5.18.0/ext/Errno > Unsuccessful make(ext/Errno): code=256 at make_ext.pl line 490. > *** Error code 89 > > Stop. > bmake: stopped in /home/ubuntu/pkgsrc/lang/perl5/work/perl-5.18.0 > *** Error code 1 > > Stop. > bmake: stopped in /home/ubuntu/pkgsrc/lang/perl5 > *** Error code 1 > > Stop. > bmake: stopped in /home/ubuntu/pkgsrc/lang/perl5 > ------------------------------------------------- > > From what I have found searching, there are sometimes issues with the errno.h path being hardcoded. The path is defined as (line 139 in Errno.pm.PL): > # Some Linuxes have weird errno.hs which generate > # no #file or #line directives > my $linux_errno_h = -e '/usr/include/errno.h' ? > '/usr/include/errno.h' : '/usr/local/include/errno.h'; > > I've confirmed that errhno.h exists on the target machine via nfs mount from ${QNX_TARGET}/usr/include at /usr/include/*. Is there an issue that the gcc tools are actually on the host machine and accessed via ssh? Should the host path be used? Thank you for any help. > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post113268 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Mon, 09 Feb 2015 18:54:57 GMT http://community.qnx.com/sf/go/post113273 Sean Boudreau(deleted) 2015-02-09T18:54:57Z post113268: Errno.pm.PL bmake error in HEAD_660/pkgsrc http://community.qnx.com/sf/go/post113268 I have followed the method for building pkgsrc on QNX6.6 from the link below and am able to bootstrap and bmake lighttpd with its dependencies. Arch is x86, host is Ubuntu VM, target is x86 QNX6.6 VM. http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/PkgsrcOnQnx6.6 Several packages require perl and attempt to build perl-5.18.0nb2. Regardless of -64bit* and -threads options it fails with the message below. Even commenting out the "die" line, the build fails at a following stage. ------------------------------------------------- Running Makefile.PL in ext/Errno ../../miniperl -I../../lib Makefile.PL INSTALLDIRS=perl INSTALLMAN1DIR=none INSTALLMAN3DIR=none PERL_CORE=1 LIBPERL_A=libperl.so Writing Makefile for Errno Making all in ext/Errno /usr/pkg/bin/bmake all PERL_CORE=1 LIBPERL_A=libperl.so ../../miniperl "-I../../lib" "-I../../lib" Errno_pm.PL Errno.pm No error definitions found at Errno_pm.PL line 204. *** Error code 2 Stop. bmake: stopped in /home/ubuntu/pkgsrc/lang/perl5/work/perl-5.18.0/ext/Errno Unsuccessful make(ext/Errno): code=256 at make_ext.pl line 490. *** Error code 89 Stop. bmake: stopped in /home/ubuntu/pkgsrc/lang/perl5/work/perl-5.18.0 *** Error code 1 Stop. bmake: stopped in /home/ubuntu/pkgsrc/lang/perl5 *** Error code 1 Stop. bmake: stopped in /home/ubuntu/pkgsrc/lang/perl5 ------------------------------------------------- From what I have found searching, there are sometimes issues with the errno.h path being hardcoded. The path is defined as (line 139 in Errno.pm.PL): # Some Linuxes have weird errno.hs which generate # no #file or #line directives my $linux_errno_h = -e '/usr/include/errno.h' ? '/usr/include/errno.h' : '/usr/local/include/errno.h'; I've confirmed that errhno.h exists on the target machine via nfs mount from ${QNX_TARGET}/usr/include at /usr/include/*. Is there an issue that the gcc tools are actually on the host machine and accessed via ssh? Should the host path be used? Thank you for any help. Mon, 09 Feb 2015 14:23:38 GMT http://community.qnx.com/sf/go/post113268 Aaron Gawlik(deleted) 2015-02-09T14:23:38Z post112818: QNX pkgsrc SVN mirror site http://community.qnx.com/sf/go/post112818 The trick from the "svn timeout on qnx pkgsrc checkout" thread didn't work for me, so I set up a read-only mirror (svnsync from SourceForge works consistently). It also has a seed file, which should speed initial local repo creation a lot, especially if you want the whole tree. I have a cron job set up to update it nightly. There is a mailing list you can go on to get email when there is an update. Or you can do the usual built-in SourceForge notifications by using the RSS icon and/or "Update Notifications" button. Main site: https://sourceforge.net/projects/qnxpkgsrcmirror/ Mailing list: https://lists.sourceforge.net/lists/listinfo/qnxpkgsrcmirror-notifications Let me know if there are any problems. Mon, 05 Jan 2015 14:20:02 GMT http://community.qnx.com/sf/go/post112818 Danny Clark(deleted) 2015-01-05T14:20:02Z post112689: Re: svn timeout on qnx pkgsrc checkout http://community.qnx.com/sf/go/post112689 (1) Somehow it escaped my notice that what I typed here was a client-side fix, not a server-side fix. So this is actually FYI to pkgsrc users rather than a request for the community.qnx.com sysadmin. (2) Other (possible) workarounds @ http://forums.crackberry.com/developers-lounge-f9/pkgsrc-more-6000-open-source-apps-libraries-blackberry-10-os-857820/#post11152281 Tue, 16 Dec 2014 00:55:58 GMT http://community.qnx.com/sf/go/post112689 Danny Clark(deleted) 2014-12-16T00:55:58Z post112661: svn timeout on qnx pkgsrc checkout http://community.qnx.com/sf/go/post112661 I'm getting subversion timeouts, even when trying to check out just one branch of pkgsrc (e.g. HEAD_660). This has been from my local box (fast comcast) and dreamhost shell accounts. It hasn't happened from an MIT box I have access to; I'm guessing because of lower latency. Currently I'm doing an svnsync from the MIT box with hopes that moving that to my local box and then doing incremental updates to that from my local box via svnsync might take less time than updating via svn. I'm not sure what the setup is on your side, but this is one suggestion I found that might help: Solving checkout problems with svn repositories Potentially you can have problems when checking out a large svn repository, if on sever side mod_dav is used. The SVN client might fail with the error message "Could not read response body: Secure connection truncated" or "Could not read response body: Connection reset by peer". To fix this issue edit your subversion server file located at "~/.subversion/servers" on linux or "cd %LOCALAPPDATA%\Subversion\servers" on Windows. Simply add extremely large timeout value [global] http-timeout = 6000 Sat, 13 Dec 2014 20:56:56 GMT http://community.qnx.com/sf/go/post112661 Danny Clark(deleted) 2014-12-13T20:56:56Z post112122: error in libXmu? http://community.qnx.com/sf/go/post112122 Hi. Buildng libXmu-1.1.1, get an error: CvtStdSel.c:217: error: the address of 'hostname' will never be NULL Does anyone have an idea how to get rid of that error? Thu, 23 Oct 2014 06:16:44 GMT http://community.qnx.com/sf/go/post112122 Alexander Crowery(deleted) 2014-10-23T06:16:44Z post112093: Re: ilmbase in HEAD_650 - Invalid checksum for patch http://community.qnx.com/sf/go/post112093 Thank you, Sean! Wed, 22 Oct 2014 04:22:48 GMT http://community.qnx.com/sf/go/post112093 Alexander Crowery(deleted) 2014-10-22T04:22:48Z post112079: Re: ilmbase in HEAD_650 - Invalid checksum for patch http://community.qnx.com/sf/go/post112079 Fixed. Do an 'svn up'. On Mon, Oct 20, 2014 at 08:50:53PM -0400, Alexander Crowery wrote: > Hi, > > I'm trying to build ilmbase got by svn under QNX6.5.0. But: > > # bmake > => Bootstrap dependency digest>=20010302: found digest-20121220 > ===> Skipping vulnerability checks. > WARNING: No /var/db/pkg/pkg-vulnerabilities file found. > WARNING: To fix run: `/usr/pkg/sbin/pkg_admin -K /var/db/pkg fetch-pkg-vulnerabilities'. > => Checksum SHA1 OK for ilmbase-2.0.0.tar.gz > => Checksum RMD160 OK for ilmbase-2.0.0.tar.gz > ===> Installing dependencies for ilmbase-2.0.0 > => Tool dependency libtool-base>=2.2.6bnb3: found libtool-base-2.4.2nb4 > ===> Overriding tools for ilmbase-2.0.0 > ===> Extracting for ilmbase-2.0.0 > ===> Patching for ilmbase-2.0.0 > => Applying pkgsrc patches for ilmbase-2.0.0 > ************************************** > Ignoring patch file /pkgsrc/HEAD_650/pkgsrc/graphics/ilmbase/patches/patch-Iex_IexThrowErrnoExc.cpp: invalid checksum > ************************************** > ERROR: Patching failed due to modified or broken patch file(s): > ERROR: /pkgsrc/HEAD_650/pkgsrc/graphics/ilmbase/patches/patch-Iex_IexThrowErrnoExc.cpp > *** Error code 1 > > What's wrong wiyh me? > > Thanks, > Alex > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post112075 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Tue, 21 Oct 2014 13:48:55 GMT http://community.qnx.com/sf/go/post112079 Sean Boudreau(deleted) 2014-10-21T13:48:55Z post112075: ilmbase in HEAD_650 - Invalid checksum for patch http://community.qnx.com/sf/go/post112075 Hi, I'm trying to build ilmbase got by svn under QNX6.5.0. But: # bmake => Bootstrap dependency digest>=20010302: found digest-20121220 ===> Skipping vulnerability checks. WARNING: No /var/db/pkg/pkg-vulnerabilities file found. WARNING: To fix run: `/usr/pkg/sbin/pkg_admin -K /var/db/pkg fetch-pkg-vulnerabilities'. => Checksum SHA1 OK for ilmbase-2.0.0.tar.gz => Checksum RMD160 OK for ilmbase-2.0.0.tar.gz ===> Installing dependencies for ilmbase-2.0.0 => Tool dependency libtool-base>=2.2.6bnb3: found libtool-base-2.4.2nb4 ===> Overriding tools for ilmbase-2.0.0 ===> Extracting for ilmbase-2.0.0 ===> Patching for ilmbase-2.0.0 => Applying pkgsrc patches for ilmbase-2.0.0 ************************************** Ignoring patch file /pkgsrc/HEAD_650/pkgsrc/graphics/ilmbase/patches/patch-Iex_IexThrowErrnoExc.cpp: invalid checksum ************************************** ERROR: Patching failed due to modified or broken patch file(s): ERROR: /pkgsrc/HEAD_650/pkgsrc/graphics/ilmbase/patches/patch-Iex_IexThrowErrnoExc.cpp *** Error code 1 What's wrong wiyh me? Thanks, Alex Tue, 21 Oct 2014 00:50:53 GMT http://community.qnx.com/sf/go/post112075 Alexander Crowery(deleted) 2014-10-21T00:50:53Z post111999: Re: pkgsrc for BlackBerry 10 OS http://community.qnx.com/sf/go/post111999 someone made it possible recently: http://forums.crackberry.com/developers-lounge-f9/pkgsrc-more-6000-open-source-apps-libraries-blackberry-10-os-857820/ Thu, 09 Oct 2014 07:38:05 GMT http://community.qnx.com/sf/go/post111999 Held Bier(deleted) 2014-10-09T07:38:05Z post111724: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111724 Hi Damjan > Hi Bogdan, thanks, this looks great! > > A couple of questions: > > What's the Arch0 tool that you are mentioning in the instructions, and how to > get it? look mc.tar.bz2 from my site => usr/local/bin/ArchO ArchO: ========================= #!/bin/sh if test $# -eq 0 then echo "Brak pliku do rozpakowania" echo " Uzyj Arch zbior lub katalog" exit 0 fi echo Odtworzenie archiwum !!! echo if [ -f "$1" ] ; then case "$1" in *.tar.bz2) tar xvjf- $1 ;; *.tar.gz) tar xvzf- $1 ;; *.bz2) bunzip2 $1 ;; *.rar) unrar x $1 ;; *.gz) gunzip $1 ;; *.tar) tar xvf $1 ;; *.tbz2) tar xvjf $1 ;; *.tgz) tar xvzf $1 ;; *.zip) unzip $1 ;; *.Z) uncompress $1 ;; *.7z) 7z x $1 ;; *.tar.xz) xz -dc $1 | tar xvf - ;; *.tar.lz) lzip -dc $1 | tar xvf - ;; *) echo "'$1' nie może zostać rozpakowany" ;; esac else echo "'$1' nie jest poprawnym plikiem" fi =================== > In the instructions you have posted, it is not always completely clear what is > done on the QNX target, and what is done on the host. The gcc 4.8 binary that > you provide, is it a native compiler to be run on the QNX target, or a cross- > compiler, to be run on the host? This gcc 4.8 binary is not cross-compiler, it is native compiler for QNX 6.6.0 for x86 VMware/ Oracle VM VirtualBox. You can use it to compile programs directly on a virtual machine. All these software together with the compiler was compiled directly into x86 VMware and not on Linux or Windows. QNX Momentics IDE I use only for the transfer of all necessary software for QNX 6.6.0 ISO image running on a virtual machine Mon, 15 Sep 2014 18:36:41 GMT http://community.qnx.com/sf/go/post111724 bogdan celer 2014-09-15T18:36:41Z post111668: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111668 Hi Bogdan, thanks, this looks great! A couple of questions: What's the Arch0 tool that you are mentioning in the instructions, and how to get it? In the instructions you have posted, it is not always completely clear what is done on the QNX target, and what is done on the host. The gcc 4.8 binary that you provide, is it a native compiler to be run on the QNX target, or a cross-compiler, to be run on the host? Sun, 07 Sep 2014 10:19:45 GMT http://community.qnx.com/sf/go/post111668 Damjan Miklic(deleted) 2014-09-07T10:19:45Z post111615: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111615 Full compiler gcc 4.8.3 and other software for QNX6.6 on x86 Oracle VirtualBox and VMware I have placed on my web page http://www.ajamweb.pl http://www.ajamweb.pl/Instalacja_gcc.html Wed, 03 Sep 2014 11:35:17 GMT http://community.qnx.com/sf/go/post111615 bogdan celer 2014-09-03T11:35:17Z post111515: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111515 Hi Bogdan, thanks a lot, your suggestion worked and got me one step further! The gcc executable now gets built :) Sure enough, the next problem has come up :) While configuring multilib, I get the error: checking for i386-pc-nto-qnx6.6.0-gcc... /opt/qnx/pkgsrc/lang/gcc48/work/build/./gcc/xgcc -B/opt/qnx/pkgsrc/lang/gcc48/work/build/./gcc/ -B/usr/pkg/gcc48/i386-pc-nto-qnx6.6.0/bin/ -B/usr/pkg/gcc48/i386-pc-nto-qnx6.6.0/lib/ -isystem /usr/pkg/gcc48/i386-pc-nto-qnx6.6.0/include -isystem /usr/pkg/gcc48/i386-pc-nto-qnx6.6.0/sys-include checking for suffix of object files... configure: error: in `/opt/qnx/pkgsrc/lang/gcc48/work/build/i386-pc-nto-qnx6.6.0/libgcc': configure: error: cannot compute suffix of object files: cannot compile See `config.log' for more details. gmake[2]: *** [configure-stage1-target-libgcc] Error 1 Looking at config.log I can see that the call to the newly-built gcc failed: /opt/qnx/pkgsrc/lang/gcc48/work/build/./gcc/xgcc -B/opt/qnx/pkgsrc/lang/gcc48/work/build/./gcc/ -B/usr/pkg/gcc48/i386-pc-nto-qnx6.6.0/bin/ -B/usr/pkg/gcc48/i386-pc-nto-qnx6.6.0/lib/ -isystem /usr/pkg/gcc48/i386-pc-nto-qnx6.6.0/include -isystem /usr/pkg/gcc48/i386-pc-nto-qnx6.6.0/sys-include -o conftest -g -O2 -I/usr/pkg/include -I/usr/include -I/usr/pkg/include/gettext -Wl,-R/usr/pkg/lib conftest.c The call seem weird, because the /usr/pkg/gcc48 directory has not been created yet (and I wouldn't expect it to be created untill the very end of the installation process). In short, looks like something along the way has been misconfigured? Best, damjan Thu, 21 Aug 2014 09:22:13 GMT http://community.qnx.com/sf/go/post111515 Damjan Miklic(deleted) 2014-08-21T09:22:13Z post111504: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111504 Damian do it # ldrel -L -S 4096000 genautomata or # ldrel -L -S 6144000 genautomata # touch genautomata Wed, 20 Aug 2014 10:23:57 GMT http://community.qnx.com/sf/go/post111504 bogdan celer 2014-08-20T10:23:57Z post111466: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111466 I have made some progress towards building gcc. In addition to the libtool-base error above, several dependencies were giving me build errors, so I installed those from 6.5 binary packages (ftp://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.5.0_head_20110826/All/) which seems to work fine. This way, I was able to satisfy all dependencies and start building gcc 4.8 itself. Several components build successfully, some with fairly minor tweaks. However, now I'm stuck on this error: build/genautomata ../../gcc-4.8.1/gcc/config/i386/i386.md \ insn-conditions.md > tmp-automata.c Memory fault (core dumped) gmake[3]: *** [s-automata] Error 139 gmake[3]: Leaving directory `/opt/qnx/pkgsrc/lang/gcc48/work/build/gcc' gmake[2]: *** [all-stage1-gcc] Error 2 I tried applying this patch: https://gcc.gnu.org/ml/gcc-patches/2013-06/msg00397.html but it didn't make any difference. Sean, can you maybe shed some light on this? Were you actually able to compile gcc48 on the QNX 6.6. VM? If it can help, I have very detailed error logs of all the errors I encountered during the build process, and the steps I took to resolve them. I have a keen interest in getting the native build to work and am willing to invest a considerable amount of time into it, if you could point me in the right direction. Best, damjan Mon, 18 Aug 2014 12:03:01 GMT http://community.qnx.com/sf/go/post111466 Damjan Miklic(deleted) 2014-08-18T12:03:01Z post111435: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111435 pkgsrc isn't set up for that. It either wants self hosted tools or a NetBSD tool set up for cross compilation. When things were working well in pkgsrc over 6000 packages were being built. This is an attempt to leverage that without turning this into something that doesn't resemble pkgsrc at all: cached results for configure test etc... On Wed, Aug 13, 2014 at 09:52:42PM -0400, Mitchell Schoenbrun wrote: > I hope my questions aren't getting tedious, but I do have a strong interest in this. > > If the compilation is happening on the Linux Host, why does it matter that it's being controlled from the QNX target system? It would seem just as easy to build it on the Linux system as that is what the "tools" are doing anyway? I hope I'm missing something here. > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post111425 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Thu, 14 Aug 2014 13:21:50 GMT http://community.qnx.com/sf/go/post111435 Sean Boudreau(deleted) 2014-08-14T13:21:50Z post111425: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111425 I hope my questions aren't getting tedious, but I do have a strong interest in this. If the compilation is happening on the Linux Host, why does it matter that it's being controlled from the QNX target system? It would seem just as easy to build it on the Linux system as that is what the "tools" are doing anyway? I hope I'm missing something here. Thu, 14 Aug 2014 01:52:42 GMT http://community.qnx.com/sf/go/post111425 Mitchell Schoenbrun 2014-08-14T01:52:42Z post111424: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111424 The 'tools' are scripts that ssh to the host and run the real tool there. The objects etc get built on the host but the target sees them via nfs via a mountpoint that mirrors the host. Sent from my BlackBerry 10 smartphone on the Rogers network. Original Message From: Mitchell Schoenbrun Sent: Wednesday, August 13, 2014 7:58 PM To: general-pkgsrc Reply To: general-pkgsrc@community.qnx.com Subject: Re: gcc installation on QNX 6.6 Thanks for your reply. One more question. From your description it sounds like you are running the compiler on QNX, but the compiler is located on a Linux system. That doesn't sound like it can work. If it did, you could presumably copy the compiler and all the important files to QNX and run it there. I'm assuming a Linux executable cannot run on QNX. Do I have that right? _______________________________________________ General http://community.qnx.com/sf/go/post111423 To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Thu, 14 Aug 2014 01:43:01 GMT http://community.qnx.com/sf/go/post111424 Sean Boudreau(deleted) 2014-08-14T01:43:01Z post111423: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111423 Thanks for your reply. One more question. From your description it sounds like you are running the compiler on QNX, but the compiler is located on a Linux system. That doesn't sound like it can work. If it did, you could presumably copy the compiler and all the important files to QNX and run it there. I'm assuming a Linux executable cannot run on QNX. Do I have that right? Wed, 13 Aug 2014 23:58:49 GMT http://community.qnx.com/sf/go/post111423 Mitchell Schoenbrun 2014-08-13T23:58:49Z post111421: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111421 Hi Sean, thanks for the reply. Yes, I have installed the patch you are referring to, and I can see getopt.h in my target/qnx6/usr/include/ directory (on the Linux host) and also in /usr/include on the QNX target (I had to copy the whole usr/include/ over to the QNX VM in order to even get started with building gcc). In the meanwhile, I worked around the issue by editing devel/nbpatch/work/libnbcompat/getopt_long.c by hand, moving the #endif on line 345 to the end of the file (so that getopt_long is excluded from the build when HAVE_GETOPT_LONG is defined) and recompiling. The above hack got me a bit further, but now I'm stuck at: libtool: compile: gcc -DHAVE_CONFIG_H -I. "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/usr/include -O2 -I/usr/include -MT libltdl/loaders/dlopen.lo -MD -MP -MF libltdl/loaders/.deps/dlopen.Tpo -c libltdl/loaders/dlopen.c -fPIC -shared -DPIC -o libltdl/loaders/.libs/dlopen.o In file included from libltdl/loaders/dlopen.c:32:0: ./libltdl/libltdl/lt__private.h:35:23: error: #include expects "FILENAME" or <FILENAME> In file included from ./libltdl/libltdl/lt__private.h:52:0, from libltdl/loaders/dlopen.c:32: ./libltdl/libltdl/lt__dirent.h:35:23: error: #include expects "FILENAME" or <FILENAME> (***full error output is attached ***) I'm really clueless about this error. There is # include LT_CONFIG_H on line 35 of lt_private.h which is defined in the compilation command as <config.h>. I'm having a hard time understandig why this is not recognized by the compiler. Any futher insight will be greately appreciated. Best, damjan Wed, 13 Aug 2014 17:21:37 GMT http://community.qnx.com/sf/go/post111421 Damjan Miklic(deleted) 2014-08-13T17:21:37Z post111410: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111410 Do you have PSP 660-3851-RS5495 installed on the host as mentioned on that pkgsrc on 6.6 page? One of the missing headers was getopt.h. On Tue, Aug 12, 2014 at 06:13:55PM -0400, Damjan Miklic wrote: > Hi, > > I have been able to successfully bootstrap pkgsrc on QNX 6.6 (x86 VM), following the instructions on the wiki (http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/PkgsrcOnQnx6.6?showDetails=true) > > I am trying to get gcc 4.8 installed, but am getting compile errors during the build of the nbpatch dependency. This is the error message I am getting: > > /opt/qnx/qnx660/target/qnx6/x86/lib/libc.a(getopt_long.o): In function `getopt_long': > (.text+0xa80): multiple definition of `getopt_long' > /opt/qnx/pkgsrc/devel/nbpatch/work/libnbcompat/libnbcompat.a(getopt_long.o):getopt_long.c:(.text+0x120): first defined here > collect2: error: ld returned 1 exit status > > Looking at the configure output, there should be a way to disable the building of the includeed getopt_long.c file, which would be my next step. Is this the right thing to do? Any help will be greately appreciated. > > Best regards, > damjan > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post111393 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Wed, 13 Aug 2014 14:43:29 GMT http://community.qnx.com/sf/go/post111410 Sean Boudreau(deleted) 2014-08-13T14:43:29Z post111403: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111403 Hi Mitchell, my goal is to use a QNX 6.6 system to build pkgsrc packages. I'm trying to build ROS (www.ros.org) on QNX, which has a large number of dependencies, so cross-compiling does not seem feasible. For bootstraping pkgsrc on QNX 6.6, I used the procedure described here (http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/PkgsrcOnQnx6.6?showDetails=true) by Sean. It basically uses some clever nfs mounting and ssh trickery to make QNX think it has a locally installed compiler, while it is in fact using the cross-compiler installed on the development host (Linux) by the QNX 6.6. Momentics IDE. Using this method, I was able to bootstrap pkgsrc. Right now I'm still working on getting the native gcc running. Once I have that, I'll hopefully be able to do native builds of all the packages I need. Hope this answers your question :) Best, damjan Wed, 13 Aug 2014 13:31:37 GMT http://community.qnx.com/sf/go/post111403 Damjan Miklic(deleted) 2014-08-13T13:31:37Z post111394: Re: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111394 I am curious to know what you mean by getting pkgsrc running on QNX 6.6. Are you using a host such as Windows or Linux to build QNX 6.6 runtimes from pkgsrc, or were you thinking that you would use a QNX 6.6 system to build pkgsrc packages? If the latter, what were you planning to use as the compiler? Thanks Tue, 12 Aug 2014 23:45:51 GMT http://community.qnx.com/sf/go/post111394 Mitchell Schoenbrun 2014-08-12T23:45:51Z post111393: gcc installation on QNX 6.6 http://community.qnx.com/sf/go/post111393 Hi, I have been able to successfully bootstrap pkgsrc on QNX 6.6 (x86 VM), following the instructions on the wiki (http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/PkgsrcOnQnx6.6?showDetails=true) I am trying to get gcc 4.8 installed, but am getting compile errors during the build of the nbpatch dependency. This is the error message I am getting: /opt/qnx/qnx660/target/qnx6/x86/lib/libc.a(getopt_long.o): In function `getopt_long': (.text+0xa80): multiple definition of `getopt_long' /opt/qnx/pkgsrc/devel/nbpatch/work/libnbcompat/libnbcompat.a(getopt_long.o):getopt_long.c:(.text+0x120): first defined here collect2: error: ld returned 1 exit status Looking at the configure output, there should be a way to disable the building of the includeed getopt_long.c file, which would be my next step. Is this the right thing to do? Any help will be greately appreciated. Best regards, damjan Tue, 12 Aug 2014 22:13:55 GMT http://community.qnx.com/sf/go/post111393 Damjan Miklic(deleted) 2014-08-12T22:13:55Z post110889: QNX6.6 binary packages? http://community.qnx.com/sf/go/post110889 Any news on when the QNX6.6 binary packages will be available, like they are for 6.5 & 6.4.1? Sun, 29 Jun 2014 13:35:21 GMT http://community.qnx.com/sf/go/post110889 David Reynolds(deleted) 2014-06-29T13:35:21Z post109621: Re: Updating bootstrap.tar.gz http://community.qnx.com/sf/go/post109621 Worked for me too. Could the official bootstrap for 6.5.0 please be updated too? Wed, 26 Mar 2014 19:27:55 GMT http://community.qnx.com/sf/go/post109621 Jesper Jensen(deleted) 2014-03-26T19:27:55Z post107722: Re: Try to install dosbox http://community.qnx.com/sf/go/post107722 Unfortunately, I have error with others package. I need to install esound, who return : "cannot find -lgetopt". I have added in Makefile : .include "../../devel/libgetopt/buildlink3.mk", that fix the issue, but return a new error : undefined reference to snd_cards_mask, I think this function is in alsa-lib, so I have added same thing with .include ... alsa-lib/buildlink3.mk, with a new error : ../../include/local.h : error: endian.h: No such file or directory. I have located this file in /usr/qnx650/target/qnx6/usr/include/io-pkt/machine/endian.h and symbolic links in /usr/include/io-pkt. But is it a good endian.h file ? and how I can add it ? Thank you Loïc Thu, 26 Dec 2013 14:01:58 GMT http://community.qnx.com/sf/go/post107722 loic Maury 2013-12-26T14:01:58Z post107721: Re: Try to install dosbox http://community.qnx.com/sf/go/post107721 Thank you, that work, the package libaudio is installed. Loic Thu, 26 Dec 2013 12:51:07 GMT http://community.qnx.com/sf/go/post107721 loic Maury 2013-12-26T12:51:07Z post107720: Re: Try to install dosbox http://community.qnx.com/sf/go/post107720 Try: LIBS.QNX+= -lgetopt Sent from my BlackBerry 10 smartphone on the Rogers network. Original Message From: loic Maury Sent: Thursday, December 26, 2013 6:40 AM To: general-pkgsrc Reply To: general-pkgsrc@community.qnx.com Subject: Re: Try to install dosbox Hello Sean, Thank you, that work, but now I have a new problem at link step, it cannot find the getopt_long code function (libgetopt.a, I think), Loic _______________________________________________ General http://community.qnx.com/sf/go/post107718 To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Thu, 26 Dec 2013 12:41:01 GMT http://community.qnx.com/sf/go/post107720 Sean Boudreau(deleted) 2013-12-26T12:41:01Z post107718: Re: Try to install dosbox http://community.qnx.com/sf/go/post107718 Hello Sean, Thank you, that work, but now I have a new problem at link step, it cannot find the getopt_long code function (libgetopt.a, I think), Loic Thu, 26 Dec 2013 11:40:55 GMT http://community.qnx.com/sf/go/post107718 loic Maury 2013-12-26T11:40:55Z post107716: Re: Try to install dosbox http://community.qnx.com/sf/go/post107716 Try adding a line: .include "../../devel/libgetopt/‎buildlink3.mk" To bottom of audio/libaudiofile/Makefile Sent from my BlackBerry 10 smartphone on the Rogers network. Original Message From: loic Maury Sent: Wednesday, December 25, 2013 1:00 PM To: general-pkgsrc Reply To: general-pkgsrc@community.qnx.com Subject: Try to install dosbox Hello, I try to install dosbox with pkgsrc (source). When pkgsrc try to install libaudiofile, this error is returned : error : getopt.h : No such file or directory. this file is located in /usr/pkg/include. How I can define this location ? I tried with environment variable INCLUDE, but that doesn't work. any idea ? Thank you Loic _______________________________________________ General http://community.qnx.com/sf/go/post107715 To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Thu, 26 Dec 2013 00:32:56 GMT http://community.qnx.com/sf/go/post107716 Sean Boudreau(deleted) 2013-12-26T00:32:56Z post107715: Try to install dosbox http://community.qnx.com/sf/go/post107715 Hello, I try to install dosbox with pkgsrc (source). When pkgsrc try to install libaudiofile, this error is returned : error : getopt.h : No such file or directory. this file is located in /usr/pkg/include. How I can define this location ? I tried with environment variable INCLUDE, but that doesn't work. any idea ? Thank you Loic Wed, 25 Dec 2013 18:00:51 GMT http://community.qnx.com/sf/go/post107715 loic Maury 2013-12-25T18:00:51Z post107470: Regeneration of configure scripts http://community.qnx.com/sf/go/post107470 Is it possible to trigger the regeneration of all configure scripts in a package? I update a configure.in script. After that I want to rebuild the whole package. I want to trigger this with the bmake command but nothing happens. Does anybody know a parameter for the bmake command to trigger the regeneration of the updated configure script? thanks Stephan Thu, 12 Dec 2013 15:09:45 GMT http://community.qnx.com/sf/go/post107470 Stephan Rekowski(deleted) 2013-12-12T15:09:45Z post107323: Re: pkgsrc for BlackBerry 10 OS http://community.qnx.com/sf/go/post107323 interested too! Mon, 09 Dec 2013 18:47:02 GMT http://community.qnx.com/sf/go/post107323 joel brooks(deleted) 2013-12-09T18:47:02Z post106473: subscribe http://community.qnx.com/sf/go/post106473 subscribe Fri, 01 Nov 2013 13:22:48 GMT http://community.qnx.com/sf/go/post106473 Toan Pha 2013-11-01T13:22:48Z post105969: Re: opencv - but un defined reference to `xmlSetProp' http://community.qnx.com/sf/go/post105969 Hi, Did you succeed in compiling OpenCV on 6.5.0 ? I would like to do the same on my iMX6 sabre Lite plattform Do you have any cook book please ? Thanks for your reply Wed, 16 Oct 2013 15:53:05 GMT http://community.qnx.com/sf/go/post105969 Laurent COIGNOT(deleted) 2013-10-16T15:53:05Z post105741: Re: pkgsrc for BlackBerry 10 OS http://community.qnx.com/sf/go/post105741 I'd like to look into cross compilation in general at some point but haven't gotten around to it yet. Hopefully soon. Depending on how that turns out it should be possible to run against BB10 and see what pops out; however, there may be dependency issues. Regards, -seanb On Sun, Oct 06, 2013 at 08:30:19PM +0000, Daniel J Clark wrote: > I was happy to find that there is a package collection for QNX, and even > happier that it was pkgsrc :-) > > > > I?m wondering if anyone has considered / looked into the possibility of also > supporting the QNX version used by the BlackBerry 10 OS (BB10). > > > > uname -a under https://github.com/BGmot/BGShellBB10 shows QNX 8.0.0 armle > (elsewhere I?ve heard armv7). > > > > It is possible to use command-line apps under BB10, and it would probably also > be pretty easy to write wrappers for the functionality of some other programs. > > > > I?ve also asked this question at http://forums.crackberry.com/ > developers-lounge-f9/ > pkgsrc-more-6000-open-source-apps-libraries-blackberry-10-os-857820/ but > thought people on this list/forum might be more technically knowledgeable about > these things. > Tue, 08 Oct 2013 13:14:54 GMT http://community.qnx.com/sf/go/post105741 Sean Boudreau(deleted) 2013-10-08T13:14:54Z post105680: Re: pkgsrc for BlackBerry 10 OS http://community.qnx.com/sf/go/post105680 Look in the NDK target binary directories. The NDK includes some binaries that are not accessible otherwise on the phone. If you only need specific pkgsrc software, then I guess you'll have to import them into Momentics and compile them there. Personally, I would love to have pkgsrc directly on the phone. You could write shell scripts for data sync tasks, have svn, and do lots of other nice things. Sebastian Sun, 06 Oct 2013 21:10:30 GMT http://community.qnx.com/sf/go/post105680 Sebastian Fischmeister(deleted) 2013-10-06T21:10:30Z post105679: pkgsrc for BlackBerry 10 OS http://community.qnx.com/sf/go/post105679 I was happy to find that there is a package collection for QNX, and even happier that it was pkgsrc :-) I'm wondering if anyone has considered / looked into the possibility of also supporting the QNX version used by the BlackBerry 10 OS (BB10). uname -a under https://github.com/BGmot/BGShellBB10 shows QNX 8.0.0 armle (elsewhere I've heard armv7). It is possible to use command-line apps under BB10, and it would probably also be pretty easy to write wrappers for the functionality of some other programs. I've also asked this question at http://forums.crackberry.com/developers-lounge-f9/pkgsrc-more-6000-open-source-apps-libraries-blackberry-10-os-857820/ but thought people on this list/forum might be more technically knowledgeable about these things. Sun, 06 Oct 2013 20:30:36 GMT http://community.qnx.com/sf/go/post105679 Danny Clark(deleted) 2013-10-06T20:30:36Z post105476: Re: Anybody maintaining this discussion block? Questions about pkgsrc.. http://community.qnx.com/sf/go/post105476 Use the HEAD for 6.4.1 -- it is so close in version, that it should work fine for you. PKG_PATH=http://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.4.1_head_20090724/All Sat, 28 Sep 2013 06:35:47 GMT http://community.qnx.com/sf/go/post105476 Jesse Benedict(deleted) 2013-09-28T06:35:47Z post99383: Re: OpenVPN missing TUN/TAP device http://community.qnx.com/sf/go/post99383 s/not/now/ On Wed, Feb 20, 2013 at 12:10:32PM -0500, Sean Boudreau wrote: > > io-pkt will support tun/tap. It does now but not released AFAIK. > > On Wed, Feb 20, 2013 at 12:02:58PM -0500, Albrecht Uhlmann wrote: > > Are there any news to OpenVPN / TUN/TAP devices in post-QNX6.5.0SP1 releases? > > > > Will there be support in the standard product? > > > > Thanks, > > Albrecht > > > > > > > > _______________________________________________ > > > > General > > http://community.qnx.com/sf/go/post99381 > > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Wed, 20 Feb 2013 17:11:57 GMT http://community.qnx.com/sf/go/post99383 Sean Boudreau(deleted) 2013-02-20T17:11:57Z post99382: Re: OpenVPN missing TUN/TAP device http://community.qnx.com/sf/go/post99382 io-pkt will support tun/tap. It does now but not released AFAIK. On Wed, Feb 20, 2013 at 12:02:58PM -0500, Albrecht Uhlmann wrote: > Are there any news to OpenVPN / TUN/TAP devices in post-QNX6.5.0SP1 releases? > > Will there be support in the standard product? > > Thanks, > Albrecht > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post99381 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Wed, 20 Feb 2013 17:10:39 GMT http://community.qnx.com/sf/go/post99382 Sean Boudreau(deleted) 2013-02-20T17:10:39Z post99381: Re: OpenVPN missing TUN/TAP device http://community.qnx.com/sf/go/post99381 Are there any news to OpenVPN / TUN/TAP devices in post-QNX6.5.0SP1 releases? Will there be support in the standard product? Thanks, Albrecht Wed, 20 Feb 2013 17:02:58 GMT http://community.qnx.com/sf/go/post99381 Albrecht Uhlmann 2013-02-20T17:02:58Z post99242: Re: RE: devel/netbsd-iscsi-initiator http://community.qnx.com/sf/go/post99242 Hello, just a question on an old discussion. Would it be feasible to use mentioned netbsd-iscsi-initiator with devb-loopback which is now available? I am looking to find a decent RAID solution for QNX6. There are some HW RAID arrays available with iSCSI, so it could be a possible path... Thanks, PKY > To mount a "QNX4/QNX6" filesystem (or to that mater, to load any > fs-*.so), you need a devb-* binary. Unfortunately, there is no "devb-fd" > kind of thing exist. > > I can only suggest you take a look of the "QNX Community Fuse Project". > (http://community.qnx.com/sf/projects/qnx_community_fuse_project). > Managers like "ntfs-3g" would be able to take a file and put a file > system on it. > > -xtang > > > > -----Original Message----- > > From: Michael Tatarinov [mailto:community-noreply@qnx.com] > > Sent: May 18, 2009 1:46 AM > > To: general-pkgsrc > > Subject: devel/netbsd-iscsi-initiator > > > > Hello > > I tried netbsd-iscsi-initiator with xtang patches, but i don't mount > fs, > > why? > > > > root@vm8482-2 root $ ls -l /fs/iscsi/192.168.138.246/target0/storage > > -rw-r--r-- 1 root root 4294967296 May 18 08:36 > > /fs/iscsi/192.168.138.246/target0/storage > > root@vm8482-2 root $ mkqnx6fs > /fs/iscsi/192.168.138.246/target0/storage > > Format fs-qnx6: 4194288 blocks, 131072 inodes, 8 groups > > root@vm8482-2 root $ mount -vvv -t qnx6 > > /fs/iscsi/192.168.138.246/target0/storage /mnt/tmp > > Parsed: mount from [/fs/iscsi/192.168.138.246/target0/storage] mount > on > > [/mnt/tmp] type [qnx6] > > exec: mount_qnx6 /fs/iscsi/192.168.138.246/target0/storage /mnt/tmp > > Using internal mount (mount_qnx6 not found) > > Type [qnx6] Flags 0x00000000 > > Device [/fs/iscsi/192.168.138.246/target0/storage] Directory > [/mnt/tmp] > > Options [NULL] > > mount: Can't mount /mnt/tmp (type qnx6) > > mount: Possible reason: No such device or address > > > > > > _______________________________________________ > > General > > http://community.qnx.com/sf/go/post29606 Wed, 13 Feb 2013 07:27:35 GMT http://community.qnx.com/sf/go/post99242 Pavol Kycina 2013-02-13T07:27:35Z post98673: Re: Updating bootstrap.tar.gz http://community.qnx.com/sf/go/post98673 Hi, Not sure if question is still open. I did in the following way: 1. download ftp://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.5.0_head_20110826/All/pkg_install-20110805.tgz 2. untar it manually to /usr/pkg (only man/ and sbin/) directories 3. (optional) cd /var/db/pkg then mv all left +* files to pkg_install-20101212 then mv pkg_install-20101212 to pkg_install-20110805 That works for me. Fri, 18 Jan 2013 15:37:33 GMT http://community.qnx.com/sf/go/post98673 Volodymyr Shcherbinin(deleted) 2013-01-18T15:37:33Z post98671: opencv - but un defined reference to `xmlSetProp' http://community.qnx.com/sf/go/post98671 Hi: Im using 6.5 SP1 and trying to compile and install opencv. A dependency is gettext-tools, this part of the build fails with an "un defined reference to `xmlSetProp'". I have checked and xmlSetProp is in libxml2.so, I have libxml2.so in /usr/pkg/lib. The command line that fails appears to include a reference to the right path and file. LD_LIBRARY_PATH also has /usr/pkg/lib . The bmake output is -> libtool: link: gcc -std=gnu99 -O2 -I/HEAD_650/pkgsrc/devel/gettext-tools/work/.buildlink/include/ncurses -I/HE AD_650/pkgsrc/devel/gettext-tools/work/.buildlink/include -Wl,-R/usr/pkg/lib -o .libs/msgcmp msgcmp-msgcmp.o m sgcmp-msgl-fsearch.o -L/HEAD_650/pkgsrc/devel/gettext-tools/work/gettext-0.18.1.1/gettext-tools/gnulib-lib/.l ibs -L/HEAD_650/pkgsrc/devel/gettext-tools/work/.buildlink/lib ./.libs/libgettextsrc.so /HEAD_650/pkgsrc/devel /gettext-tools/work/gettext-0.18.1.1/gettext-tools/gnulib-lib/.libs/libgettextlib.so /usr/pkg/lib/libxml2.so - L/usr/pkg/lib /usr/pkg/lib/libz.so -lsocket /HEAD_650/pkgsrc/devel/gettext-tools/work/.buildlink/lib/libncurse s.so -lm /HEAD_650/pkgsrc/devel/gettext-tools/work/.buildlink/lib/libintl.so -lc /HEAD_650/pkgsrc/devel/gettex t-tools/work/.buildlink/lib/libiconv.so -Wl,-rpath -Wl,/usr/pkg/lib -Wl,-rpath -Wl,/HEAD_650/pkgsrc/devel/gett ext-tools/work/.buildlink/lib /HEAD_650/pkgsrc/devel/gettext-tools/work/gettext-0.18.1.1/gettext-tools/gnulib-lib/.libs/libgettextlib.so: un defined reference to `xmlSetProp' collect2: ld returned 1 exit status *** Error code 1 Stop. Any suggestions on whats missing? Thanks, Andy Fri, 18 Jan 2013 13:58:00 GMT http://community.qnx.com/sf/go/post98671 Andy Rhind 2013-01-18T13:58:00Z post98598: Re: Problems with checkout of pkgsrc http://community.qnx.com/sf/go/post98598 It could be a server error. What's the exact error? You don't strictly need to check out everything but the inter dependencies aren't obvious. Sent from my BlackBerry 10 smartphone. From: Andrej Naebalov Sent: Wednesday, January 16, 2013 8:51 AM To: general-pkgsrc Reply To: general-pkgsrc@community.qnx.com Subject: Problems with checkout of pkgsrc Hello :) I am an relative novice about the UNIX world (and that way of course also about QNX). Within the past days I wanted to install pkgsrc on my testsystem (QNX Neutrino 6.5.0) but unfortunately I never get the process completed, and it lasteded hours to download. I followed the steps described in the ... http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/Bootstrap 1) I set the environment variables and started to checkout the "HEAD_650" folder ... and after some hours it said goodbuy because the connection quit. Is it a server problem? And what I also do not understand is, why do I have to download every possible package? Is it possible simply to download the basic applications like "bmake" and "pkg_create" and some more and than load that modules I need? Thanks for suggestions and other kind of answers :) _______________________________________________ General http://community.qnx.com/sf/go/post98596 To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Wed, 16 Jan 2013 14:15:55 GMT http://community.qnx.com/sf/go/post98598 Sean Boudreau(deleted) 2013-01-16T14:15:55Z post98596: Problems with checkout of pkgsrc http://community.qnx.com/sf/go/post98596 Hello :) I am an relative novice about the UNIX world (and that way of course also about QNX). Within the past days I wanted to install pkgsrc on my testsystem (QNX Neutrino 6.5.0) but unfortunately I never get the process completed, and it lasteded hours to download. I followed the steps described in the ... http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/Bootstrap 1) I set the environment variables and started to checkout the "HEAD_650" folder ... and after some hours it said goodbuy because the connection quit. Is it a server problem? And what I also do not understand is, why do I have to download every possible package? Is it possible simply to download the basic applications like "bmake" and "pkg_create" and some more and than load that modules I need? Thanks for suggestions and other kind of answers :) Wed, 16 Jan 2013 13:53:44 GMT http://community.qnx.com/sf/go/post98596 Andrej Naebalov 2013-01-16T13:53:44Z post96544: Cross-compiling for ARM http://community.qnx.com/sf/go/post96544 Hi, I realise that I'm not the first person to ask this question, but the last response was about 6 months ago, and I was hoping there has been some progress in the mean time... I'd really like to get Cairo compiled for i.MX6 (arm7), and PkgSrc seems to be the most promising route to achieving this. Has anyone had any luck cross-compiling in general? I've read that the PkgSrc maintainers are trying to get cross-compiling working. Does anyone know how close they are to this goal? Alternatively, has anyone had any success importing Cairo into a Momentics project? Thanks for any input, Brian Tue, 23 Oct 2012 08:36:49 GMT http://community.qnx.com/sf/go/post96544 Brian Marriage(deleted) 2012-10-23T08:36:49Z post94953: Re: Ruby 1.8.6 on QNX http://community.qnx.com/sf/go/post94953 http://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.5.0_head_20110826/All/ruby-1.8.7.352nb1.tgz http://community.qnx.com/sf/projects/pkgsrc http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages On Thu, Aug 16, 2012 at 05:09:17AM -0400, Ruslan Voloshin wrote: > Hi guys I want to install ruby to xqn > anyone can help me or show link to manuals for newbie > > Can I create xqm template for KVM hypervisor ? > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post94875 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Mon, 20 Aug 2012 15:43:17 GMT http://community.qnx.com/sf/go/post94953 Sean Boudreau(deleted) 2012-08-20T15:43:17Z post94875: Re: Ruby 1.8.6 on QNX http://community.qnx.com/sf/go/post94875 Hi guys I want to install ruby to xqn anyone can help me or show link to manuals for newbie Can I create xqm template for KVM hypervisor ? Thu, 16 Aug 2012 09:09:17 GMT http://community.qnx.com/sf/go/post94875 Ruslan Voloshin 2012-08-16T09:09:17Z post94762: Re: libintl.so.8 http://community.qnx.com/sf/go/post94762 Try adding -f On Fri, Aug 10, 2012 at 02:09:22PM -0400, Mohamed Ahmed wrote: > After following that, I still get > > # pkg_add -v getopt-1.1.4nb1 > pkg_add: Error: package `getopt-1.1.4nb1' was built with a newer pkg_install version > pkg_add: 1 package addition failed > # > > Not sure what that means. Does it want me to update pkg_install? > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post94761 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Fri, 10 Aug 2012 18:14:18 GMT http://community.qnx.com/sf/go/post94762 Sean Boudreau(deleted) 2012-08-10T18:14:18Z post94761: Re: libintl.so.8 http://community.qnx.com/sf/go/post94761 After following that, I still get # pkg_add -v getopt-1.1.4nb1 pkg_add: Error: package `getopt-1.1.4nb1' was built with a newer pkg_install version pkg_add: 1 package addition failed # Not sure what that means. Does it want me to update pkg_install? Fri, 10 Aug 2012 18:09:22 GMT http://community.qnx.com/sf/go/post94761 Mohamed Ahmed(deleted) 2012-08-10T18:09:22Z post94695: Re: libintl.so.8 http://community.qnx.com/sf/go/post94695 You're not pointing it at the right repo. http://community.qnx.com/sf/projects/pkgsrc/ http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages On Wed, Aug 08, 2012 at 12:43:59PM -0400, Mohamed Ahmed wrote: > I'm assuming you mean pkg_add with an underscore. Upon running > pkg_add getopt > > I get back > > # pkg_add getopt > pkg_add: Can't process ftp://ftp.NetBSD.org:21/pub/pkgsrc/packages/OPSYS/ARCH/VERSIONS/All/libiconv*: Host not found > pkg_add: no pkg found for 'libiconv>=1.9.1nb4', sorry. > pkg_add: Can't install dependency libiconv>=1.9.1nb4 > pkg_add: Can't install dependency gettext-lib>=0.18 > pkg_add: 1 package addition failed > > Why does that occur? > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post94694 > To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Wed, 08 Aug 2012 16:49:32 GMT http://community.qnx.com/sf/go/post94695 Sean Boudreau(deleted) 2012-08-08T16:49:32Z post94694: Re: libintl.so.8 http://community.qnx.com/sf/go/post94694 I'm assuming you mean pkg_add with an underscore. Upon running pkg_add getopt I get back # pkg_add getopt pkg_add: Can't process ftp://ftp.NetBSD.org:21/pub/pkgsrc/packages/OPSYS/ARCH/VERSIONS/All/libiconv*: Host not found pkg_add: no pkg found for 'libiconv>=1.9.1nb4', sorry. pkg_add: Can't install dependency libiconv>=1.9.1nb4 pkg_add: Can't install dependency gettext-lib>=0.18 pkg_add: 1 package addition failed Why does that occur? Wed, 08 Aug 2012 16:43:59 GMT http://community.qnx.com/sf/go/post94694 Mohamed Ahmed(deleted) 2012-08-08T16:43:59Z post94653: Re: libintl.so.8 http://community.qnx.com/sf/go/post94653 Or use 'pkg-add' which will take care of dependences. ----- Original Message ----- From: bogdan celer [mailto:community-noreply@qnx.com] Sent: Sunday, August 05, 2012 05:09 PM To: general-pkgsrc <general-pkgsrc@community.qnx.com> Subject: Re: libintl.so.8 Look devel/gettext-lib bogdan _______________________________________________ General http://community.qnx.com/sf/go/post94651 To cancel your subscription to this discussion, please e-mail general-pkgsrc-unsubscribe@community.qnx.com Mon, 06 Aug 2012 00:25:16 GMT http://community.qnx.com/sf/go/post94653 Sean Boudreau(deleted) 2012-08-06T00:25:16Z post94651: Re: libintl.so.8 http://community.qnx.com/sf/go/post94651 Look devel/gettext-lib bogdan Sun, 05 Aug 2012 21:09:59 GMT http://community.qnx.com/sf/go/post94651 bogdan celer 2012-08-05T21:09:59Z post94645: libintl.so.8 http://community.qnx.com/sf/go/post94645 I grabbed the getopt package but it needs the libintl.so.8 library and I'm not sure which package has it. Does anywher know where I can find this libintl.so.8 file? Fri, 03 Aug 2012 19:39:23 GMT http://community.qnx.com/sf/go/post94645 Mohamed Ahmed(deleted) 2012-08-03T19:39:23Z post93603: Re: GNUstep in QNX http://community.qnx.com/sf/go/post93603 On http://www.ajamweb.pl/ and http://www.ajam.org.pl/ is LLVM/Clang 3.1 for QNX 6.5.0. Sun, 10 Jun 2012 14:39:11 GMT http://community.qnx.com/sf/go/post93603 bogdan celer 2012-06-10T14:39:11Z post92524: Re: Newbie Q's ( membership , etc' ) http://community.qnx.com/sf/go/post92524 Hi Sean, We are trying to port ffmpeg bsd code to ARM V7 target. We can get the source to compile, and it can run on Linux x86 machine with no problem. However - when we run on our ARM V7 QNX Target, seems like parsing is all wrong, and code fails to execute. Any Ideas ? Could it be related to libc compatibility of QNX 6.5 ? Thanks, Ran Wed, 11 Apr 2012 14:33:01 GMT http://community.qnx.com/sf/go/post92524 ran wainstein 2012-04-11T14:33:01Z post92408: Re: midnight commander on HEAD_650 tricks http://community.qnx.com/sf/go/post92408 sysutils/mc (4.7) should 'just work'. -seanb On Mon, Mar 12, 2012 at 11:38:15PM -0400, Fred Ward wrote: > TODAY IS March 12 2012 > > 1. svn checkout on /HEAD_650 > 2. bootstrap, fix paths adding /usr/pkg/bin:/usr/pkg/sbin:/usr/pkg/lib etc..fix the LD thing.. anyway > 3. cd /HEAD_650/pkgsrc/sysutils/mc46 > run bmake it will do LOTS of stuff then fail > 4. cd work, cd mc-4.6.1 > ls -la make sure there's a "configure" in there. if there ain't, then I can't help ya. > 5. ./configure --with-glib12 --with-screen=ncurses --without-gpm-mouse > 6. make (Yes make not bmake) > 7. make install > type mc > > enjoy! > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post92065 > Mon, 02 Apr 2012 17:57:31 GMT http://community.qnx.com/sf/go/post92408 Sean Boudreau(deleted) 2012-04-02T17:57:31Z post92370: Re: audio/nas http://community.qnx.com/sf/go/post92370 Sean, I saw in your previous post that you were trying to build X264 for QNX/ARM. Is that the case? I would be interested in some build hints as I am having a lot of trouble setting the config file to choose the ARM architecture. Any help would be appreciated. Thanks, -Zahira Thu, 29 Mar 2012 21:49:11 GMT http://community.qnx.com/sf/go/post92370 Zahira Ammarguellat 2012-03-29T21:49:11Z post92148: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post92148 Hi Senthil, Could you elaborate the changes made in the configure script to build the iperf and how you build it? It would be a gr8 help. Thanks and Regards, Meena Fri, 16 Mar 2012 11:36:46 GMT http://community.qnx.com/sf/go/post92148 Meena Jain 2012-03-16T11:36:46Z post92119: Re: Newbie Q's ( membership , etc' ) http://community.qnx.com/sf/go/post92119 qnx 6.5 ships with svn. # which svn /usr/qnx650/host/qnx6/x86/usr/bin/svn pkgsrc is a bunch of makefiles and patches. The makefiles download the source of various packages as they're made. On Wed, Mar 14, 2012 at 01:54:59PM -0400, ran wainstein wrote: > Thanks. > > I've installed SVN client, cloned from "http://community.qnx.com/svn/repos/pkgsrc/HEAD_650/pkgsrc/multimedia/gstreamer0.10" , but not getting any source code. I'm am getting a bunch of other files, but no source. > How can I download source for gstreamer for ex ? > > Thanks, > Ran > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post92118 > Wed, 14 Mar 2012 17:58:42 GMT http://community.qnx.com/sf/go/post92119 Sean Boudreau(deleted) 2012-03-14T17:58:42Z post92118: Re: Newbie Q's ( membership , etc' ) http://community.qnx.com/sf/go/post92118 Thanks. I've installed SVN client, cloned from "http://community.qnx.com/svn/repos/pkgsrc/HEAD_650/pkgsrc/multimedia/gstreamer0.10" , but not getting any source code. I'm am getting a bunch of other files, but no source. How can I download source for gstreamer for ex ? Thanks, Ran Wed, 14 Mar 2012 17:54:59 GMT http://community.qnx.com/sf/go/post92118 ran wainstein 2012-03-14T17:54:59Z post92116: Re: Newbie Q's ( membership , etc' ) http://community.qnx.com/sf/go/post92116 On Wed, Mar 14, 2012 at 11:03:37AM -0400, ran wainstein wrote: > Hi, > How do I request membership to this project ? Go to projects->all projects then click the box on the left then click the 'request membership' button at the bottom. > > Should I have svn installed for downloading code ? Yes. > > Has anyone tried building packages for ARM ? Yes. Nothing to post yet though. -seanb Wed, 14 Mar 2012 16:38:08 GMT http://community.qnx.com/sf/go/post92116 Sean Boudreau(deleted) 2012-03-14T16:38:08Z post92111: Newbie Q's ( membership , etc' ) http://community.qnx.com/sf/go/post92111 Hi, How do I request membership to this project ? Should I have svn installed for downloading code ? Has anyone tried building packages for ARM ? Thanks, Ran Wed, 14 Mar 2012 15:03:36 GMT http://community.qnx.com/sf/go/post92111 ran wainstein 2012-03-14T15:03:36Z post92065: midnight commander on HEAD_650 tricks http://community.qnx.com/sf/go/post92065 TODAY IS March 12 2012 1. svn checkout on /HEAD_650 2. bootstrap, fix paths adding /usr/pkg/bin:/usr/pkg/sbin:/usr/pkg/lib etc..fix the LD thing.. anyway 3. cd /HEAD_650/pkgsrc/sysutils/mc46 run bmake it will do LOTS of stuff then fail 4. cd work, cd mc-4.6.1 ls -la make sure there's a "configure" in there. if there ain't, then I can't help ya. 5. ./configure --with-glib12 --with-screen=ncurses --without-gpm-mouse 6. make (Yes make not bmake) 7. make install type mc enjoy! Tue, 13 Mar 2012 03:38:14 GMT http://community.qnx.com/sf/go/post92065 Fred Ward 2012-03-13T03:38:14Z post90785: Re: GNUstep in QNX http://community.qnx.com/sf/go/post90785 On http://www.ajamweb.pl/ and http://www.ajam.org.pl/ is LLVM/Clang 3.0 for QNX 6.5.0. First time llvm and clang compiling using clang not gcc Mon, 02 Jan 2012 19:43:24 GMT http://community.qnx.com/sf/go/post90785 bogdan celer 2012-01-02T19:43:24Z post90189: Updating bootstrap.tar.gz http://community.qnx.com/sf/go/post90189 I've created the php-5.3.6nb4.tgz While attempting to install this on a production qnx enviornment which has pkgsr binary installs I ran into a compatibility issue with pkg_install. The target was created with th currently available binary containing pkg_install-20101212, however I built the new package with pkg_install-20110215. I need to create a new bootstrap.tar.gz with the updated pkg_install but can't seem to figure out how. Any hints would be appreciated. Fri, 18 Nov 2011 15:10:36 GMT http://community.qnx.com/sf/go/post90189 Greg Morehead 2011-11-18T15:10:36Z post90188: Re: Unable to download the source. http://community.qnx.com/sf/go/post90188 Thanks. did not realize I needed membership in the actual project. Fri, 18 Nov 2011 15:05:01 GMT http://community.qnx.com/sf/go/post90188 Greg Morehead 2011-11-18T15:05:01Z post90152: Re: Unable to download the source. http://community.qnx.com/sf/go/post90152 Hi, You don't seem to be a member of this project. Just a guess as it seems to work for me. Please request membership and try again. Post again if you still have issues. Regards, -seanb Thu, 17 Nov 2011 14:41:53 GMT http://community.qnx.com/sf/go/post90152 Sean Boudreau(deleted) 2011-11-17T14:41:53Z post90103: Unable to download the source. http://community.qnx.com/sf/go/post90103 I can login to Foundry27 and view the source, but I am unable to check it out. My username is gmorehead@premiumpower.com Tue, 15 Nov 2011 19:41:23 GMT http://community.qnx.com/sf/go/post90103 Greg Morehead 2011-11-15T19:41:23Z post88469: Re: Anybody maintaining this discussion block? Questions about pkgsrc.. http://community.qnx.com/sf/go/post88469 I read the description of pkg_add for a while and now it works fine.. Link: http://netbsd.gw.com/cgi-bin/man-cgi?pkg_add+1+NetBSD-current It seems the search criteria for package name failed if I provide only the package name or part of it. So I provide the whole path and then 'the door is opened'. Following are the command I used: # export PKG_PATH="ftp://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.5.0_head_20101224/All" # pkg_add $PKG_PATH/qwt-5.2.1nb2.tgz Tue, 30 Aug 2011 02:48:59 GMT http://community.qnx.com/sf/go/post88469 Zhiying Xiang(deleted) 2011-08-30T02:48:59Z post88467: Re: Anybody maintaining this discussion block? Questions about pkgsrc.. http://community.qnx.com/sf/go/post88467 Hi Sean, In fact I tried this, and checked out HEAD_650, but the pkgsrc seems only suppoort QWT with a version of 5.0.1 (or 5.0.2 ? never mind), and most importantly the installation is rather slow. There are so many prerequisites.. I waited for almost 2 hours and it was still on going..then I Ctr+C.. I don't know if there are many differences between 5.0.1 and 5.2.1. Are you familiar with Qwt, Sean? Tue, 30 Aug 2011 01:06:12 GMT http://community.qnx.com/sf/go/post88467 Zhiying Xiang(deleted) 2011-08-30T01:06:12Z post88450: Re: Anybody maintaining this discussion block? Questions about pkgsrc.. http://community.qnx.com/sf/go/post88450 Try a simple: # pkg_add qwt You should probably follow the instructions here: http://community.qnx.com/sf/projects/pkgsrc Regards, -seanb On Mon, Aug 29, 2011 at 08:00:37AM -0400, Zhiying Xiang wrote: > Hi All, > > Here is my environment info: > QNX 6.5 in VMWare > > I followed the guide on NetBSD.org and installed pkgsrc and bootstrap. > However I simply can't 'pkg_add' any kind of packages under the path > 'ftp://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.5.0_head_20101224/A > ll' now. > > In fact I did this operation before, and installed perl successfully. > How come it doesn't work right now?? > > PS: I checked the network connection and it works fine, so it must some > other issue > > Following are the error messages: > > # pkg_add qwt-5.2.1 > pkg_add: Can't process > ftp://ftp.netbsd.org:21/pub/pkgsrc/packages/QNX/i386/6.5. > 0_head20101224/All//qwt-5*: File unavailable (e.g., file not found, no > access) > pkg_add: no pkg found for 'qwt-5.2.1', sorry. > pkg_add: 1 package addition failed > > > Thanks for any helpful information! > > Br! > Zhiying > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post88438 > Mon, 29 Aug 2011 19:12:26 GMT http://community.qnx.com/sf/go/post88450 Sean Boudreau(deleted) 2011-08-29T19:12:26Z post88438: Anybody maintaining this discussion block? Questions about pkgsrc.. http://community.qnx.com/sf/go/post88438 Hi All, Here is my environment info: QNX 6.5 in VMWare I followed the guide on NetBSD.org and installed pkgsrc and bootstrap. However I simply can't 'pkg_add' any kind of packages under the path 'ftp://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.5.0_head_20101224/All' now. In fact I did this operation before, and installed perl successfully. How come it doesn't work right now?? PS: I checked the network connection and it works fine, so it must some other issue Following are the error messages: # pkg_add qwt-5.2.1 pkg_add: Can't process ftp://ftp.netbsd.org:21/pub/pkgsrc/packages/QNX/i386/6.5. 0_head20101224/All//qwt-5*: File unavailable (e.g., file not found, no access) pkg_add: no pkg found for 'qwt-5.2.1', sorry. pkg_add: 1 package addition failed Thanks for any helpful information! Br! Zhiying Mon, 29 Aug 2011 12:00:36 GMT http://community.qnx.com/sf/go/post88438 Zhiying Xiang(deleted) 2011-08-29T12:00:36Z post88336: Re: php-mysql http://community.qnx.com/sf/go/post88336 I'v made a symlink to /usr/pkg/bin/libtool and wow it did work!:) thank you a lot! Thu, 25 Aug 2011 05:24:03 GMT http://community.qnx.com/sf/go/post88336 Jan Novotný 2011-08-25T05:24:03Z post88317: Re: php-mysql http://community.qnx.com/sf/go/post88317 The configure script has an embedded libtool in it that doesn't work. The following seems to work: # cd databases/php-mysql # bmake configure # ln -sf ../../../.wrapper/bin/libtool work/php-5.2.17/ext/mysql/libtool # bmake install Not sure where / why it goes off the rails... -seanb On Wed, Aug 24, 2011 at 03:51:41AM -0400, Jan Novotný wrote: > Hello, > i'v been trying to compile mysql module for php in qnx 6.50. I'v got apache22, mysql51, and ap-php sucessfully compiled and running. > When compiling php-mysql i'v noticed this warning: > ... > *** Warning: libtool could not satisfy all declared inter-library > *** dependencied of module mysql. Therefore, libtool will create > *** a static module, that should work as long as the dlopenening > *** application is linked with the -dlopen flag > ... > > In config.log i'v noticed following: > ... > configure:11187: checking whether the c++ linker (/usr/qnx650/host/qnx6/x86/usr/bin/ntox86-ld) supports shared libraries > configure:12085: result: no > configure:12106: c++ -c -O2 -l/usr/pkg/include -l/usr/pkg/include/mysql -l/usr/include -l/usr/pkg/include -l/usr/pkg/include/mysql -l/usr/include conftest.cpp >&5 > PKGSRC-WARNING: Something is trying to run the c++ compiler, > PKGSRC-WARNING: but it is not added to USE_LANGUAGES in the package Makefile. > ... > > Any idea how to get mysql.so compiled would be appreciated:-) > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post88310 > Wed, 24 Aug 2011 13:48:07 GMT http://community.qnx.com/sf/go/post88317 Sean Boudreau(deleted) 2011-08-24T13:48:07Z post88310: php-mysql http://community.qnx.com/sf/go/post88310 Hello, i'v been trying to compile mysql module for php in qnx 6.50. I'v got apache22, mysql51, and ap-php sucessfully compiled and running. When compiling php-mysql i'v noticed this warning: ... *** Warning: libtool could not satisfy all declared inter-library *** dependencied of module mysql. Therefore, libtool will create *** a static module, that should work as long as the dlopenening *** application is linked with the -dlopen flag ... In config.log i'v noticed following: ... configure:11187: checking whether the c++ linker (/usr/qnx650/host/qnx6/x86/usr/bin/ntox86-ld) supports shared libraries configure:12085: result: no configure:12106: c++ -c -O2 -l/usr/pkg/include -l/usr/pkg/include/mysql -l/usr/include -l/usr/pkg/include -l/usr/pkg/include/mysql -l/usr/include conftest.cpp >&5 PKGSRC-WARNING: Something is trying to run the c++ compiler, PKGSRC-WARNING: but it is not added to USE_LANGUAGES in the package Makefile. ... Any idea how to get mysql.so compiled would be appreciated:-) Wed, 24 Aug 2011 07:51:40 GMT http://community.qnx.com/sf/go/post88310 Jan Novotný 2011-08-24T07:51:40Z post87168: RE: Wget command in QNX http://community.qnx.com/sf/go/post87168 Where can I found the source code for wget. I'm looking for one that can be compiled in QNX 6.3.2 -----Original Message----- From: Sean Boudreau [mailto:community-noreply@qnx.com] Sent: Wednesday, July 06, 2011 4:34 PM To: general-pkgsrc Subject: Re: Wget command in QNX Did you copy all of /usr/pkg var/db/pkg.refcount and /var/db/pkg to the same spot on the target (some binaries use an embededded RPATH)? Did you add /usr/pkg/lib to CS_LIBPATH? On Wed, Jul 06, 2011 at 04:23:13PM -0400, Ed Abbas wrote: > I'm not using it on a QNX desktop PC. I'm using it on a QNX SPC and > the QNX is running from compact flash. I copied the (wget) binary to > the compact flash with the libintl library. > > > -----Original Message----- > From: Sean Boudreau [mailto:community-noreply@qnx.com] > Sent: Wednesday, July 06, 2011 4:10 PM > To: general-pkgsrc > Subject: Re: Wget command in QNX > > > Where did you get it from exactly? Did you follow these instructions? > > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/Bina > ry > Packages > > The 'pkg_add' utility should install dependencies first. > > Regards, > > -seanb > > On Wed, Jul 06, 2011 at 04:06:23PM -0400, Ed Abbas wrote: > > Hi All, > > I'm trying to run the pre-build binary pkg (wget). I downloaded > > (wget) > > > from the project web site and then installed into our QNX OS. > > When I try to run the command I get the following error > > > > Could not find library libintl.so.3 > > > > > > I found the libintl.so.3 and I copied it to the QNX OS but it didnt > > solve the problem. > > > > Any idea how this utility can be fixed. > > > > > > > > > > > > _______________________________________________ > > > > General > > http://community.qnx.com/sf/go/post87161 > > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post87162 > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post87165 > _______________________________________________ General http://community.qnx.com/sf/go/post87166 Wed, 06 Jul 2011 21:00:04 GMT http://community.qnx.com/sf/go/post87168 Ed Abbas 2011-07-06T21:00:04Z post87167: RE: Wget command in QNX http://community.qnx.com/sf/go/post87167 Did you add /usr/pkg/lib to CS_LIBPATH? Yes /usr/pkg var/db/pkg.refcount /var/db/pkg I don't know what the above three are or how to get them For me I did the following: Created a directory in usr/pkg/sbin and usr/pkg/bin and copied wget command into it. Created a directory usr/pkg/lib and copied libintl.so.3 into it. Added /usr/pkg/lib to CS_LIBPATH Then I went to run wget and it always says cannot find libintl.so.3 I'm sure I'm missing something but don't know what. Is there any other utility in QNX can provide me with the same functionality of wget. I need wget to download an file from a small webserver , so when I run (wget 10.xx.xx.xxx) , I get a file. Is there a way to do the same thing without wget? -----Original Message----- From: Sean Boudreau [mailto:community-noreply@qnx.com] Sent: Wednesday, July 06, 2011 4:34 PM To: general-pkgsrc Subject: Re: Wget command in QNX Did you copy all of /usr/pkg var/db/pkg.refcount and /var/db/pkg to the same spot on the target (some binaries use an embededded RPATH)? Did you add /usr/pkg/lib to CS_LIBPATH? On Wed, Jul 06, 2011 at 04:23:13PM -0400, Ed Abbas wrote: > I'm not using it on a QNX desktop PC. I'm using it on a QNX SPC and > the QNX is running from compact flash. I copied the (wget) binary to > the compact flash with the libintl library. > > > -----Original Message----- > From: Sean Boudreau [mailto:community-noreply@qnx.com] > Sent: Wednesday, July 06, 2011 4:10 PM > To: general-pkgsrc > Subject: Re: Wget command in QNX > > > Where did you get it from exactly? Did you follow these instructions? > > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/Bina > ry > Packages > > The 'pkg_add' utility should install dependencies first. > > Regards, > > -seanb > > On Wed, Jul 06, 2011 at 04:06:23PM -0400, Ed Abbas wrote: > > Hi All, > > I'm trying to run the pre-build binary pkg (wget). I downloaded > > (wget) > > > from the project web site and then installed into our QNX OS. > > When I try to run the command I get the following error > > > > Could not find library libintl.so.3 > > > > > > I found the libintl.so.3 and I copied it to the QNX OS but it didnt > > solve the problem. > > > > Any idea how this utility can be fixed. > > > > > > > > > > > > _______________________________________________ > > > > General > > http://community.qnx.com/sf/go/post87161 > > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post87162 > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post87165 > _______________________________________________ General http://community.qnx.com/sf/go/post87166 Wed, 06 Jul 2011 20:46:32 GMT http://community.qnx.com/sf/go/post87167 Ed Abbas 2011-07-06T20:46:32Z post87166: Re: Wget command in QNX http://community.qnx.com/sf/go/post87166 Did you copy all of /usr/pkg var/db/pkg.refcount and /var/db/pkg to the same spot on the target (some binaries use an embededded RPATH)? Did you add /usr/pkg/lib to CS_LIBPATH? On Wed, Jul 06, 2011 at 04:23:13PM -0400, Ed Abbas wrote: > I'm not using it on a QNX desktop PC. I'm using it on a QNX SPC and the > QNX is running from compact flash. I copied the (wget) binary to the > compact flash with the libintl library. > > > -----Original Message----- > From: Sean Boudreau [mailto:community-noreply@qnx.com] > Sent: Wednesday, July 06, 2011 4:10 PM > To: general-pkgsrc > Subject: Re: Wget command in QNX > > > Where did you get it from exactly? Did you follow these instructions? > > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/Binary > Packages > > The 'pkg_add' utility should install dependencies first. > > Regards, > > -seanb > > On Wed, Jul 06, 2011 at 04:06:23PM -0400, Ed Abbas wrote: > > Hi All, > > I'm trying to run the pre-build binary pkg (wget). I downloaded (wget) > > > from the project web site and then installed into our QNX OS. > > When I try to run the command I get the following error > > > > Could not find library libintl.so.3 > > > > > > I found the libintl.so.3 and I copied it to the QNX OS but it didnt > > solve the problem. > > > > Any idea how this utility can be fixed. > > > > > > > > > > > > _______________________________________________ > > > > General > > http://community.qnx.com/sf/go/post87161 > > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post87162 > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post87165 > Wed, 06 Jul 2011 20:34:14 GMT http://community.qnx.com/sf/go/post87166 Sean Boudreau(deleted) 2011-07-06T20:34:14Z post87165: RE: Wget command in QNX http://community.qnx.com/sf/go/post87165 I'm not using it on a QNX desktop PC. I'm using it on a QNX SPC and the QNX is running from compact flash. I copied the (wget) binary to the compact flash with the libintl library. -----Original Message----- From: Sean Boudreau [mailto:community-noreply@qnx.com] Sent: Wednesday, July 06, 2011 4:10 PM To: general-pkgsrc Subject: Re: Wget command in QNX Where did you get it from exactly? Did you follow these instructions? http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/Binary Packages The 'pkg_add' utility should install dependencies first. Regards, -seanb On Wed, Jul 06, 2011 at 04:06:23PM -0400, Ed Abbas wrote: > Hi All, > I'm trying to run the pre-build binary pkg (wget). I downloaded (wget) > from the project web site and then installed into our QNX OS. > When I try to run the command I get the following error > > Could not find library libintl.so.3 > > > I found the libintl.so.3 and I copied it to the QNX OS but it didnt > solve the problem. > > Any idea how this utility can be fixed. > > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post87161 > _______________________________________________ General http://community.qnx.com/sf/go/post87162 Wed, 06 Jul 2011 20:23:11 GMT http://community.qnx.com/sf/go/post87165 Ed Abbas 2011-07-06T20:23:11Z post87162: Re: Wget command in QNX http://community.qnx.com/sf/go/post87162 Where did you get it from exactly? Did you follow these instructions? http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages The 'pkg_add' utility should install dependencies first. Regards, -seanb On Wed, Jul 06, 2011 at 04:06:23PM -0400, Ed Abbas wrote: > Hi All, > I'm trying to run the pre-build binary pkg (wget). I downloaded (wget) > from the project web site and then installed into our QNX OS. > When I try to run the command I get the following error > > Could not find library libintl.so.3 > > > I found the libintl.so.3 and I copied it to the QNX OS but it didnt > solve the problem. > > Any idea how this utility can be fixed. > > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post87161 > Wed, 06 Jul 2011 20:09:54 GMT http://community.qnx.com/sf/go/post87162 Sean Boudreau(deleted) 2011-07-06T20:09:54Z post87161: Wget command in QNX http://community.qnx.com/sf/go/post87161 Hi All, I'm trying to run the pre-build binary pkg (wget). I downloaded (wget) from the project web site and then installed into our QNX OS. When I try to run the command I get the following error Could not find library libintl.so.3 I found the libintl.so.3 and I copied it to the QNX OS but it didnt solve the problem. Any idea how this utility can be fixed. Wed, 06 Jul 2011 20:06:22 GMT http://community.qnx.com/sf/go/post87161 Ed Abbas 2011-07-06T20:06:22Z post85332: Samba 3.5.8 on QNX 6.5 http://community.qnx.com/sf/go/post85332 Has anyone successfully installed Samba 3.5.8 on a QNX 6.5.0 system? I'm trying but I'm running in to issues with -lpthread and -lsocket when runing the ./configure, have these issued been encountered before? If someone can help with this that would be great. Mon, 02 May 2011 12:34:18 GMT http://community.qnx.com/sf/go/post85332 Dan Fenton 2011-05-02T12:34:18Z post84241: Can't compile "top" utility http://community.qnx.com/sf/go/post84241 Hello. I've tried to compile "top" from: http://community.qnx.com/svn/repos/pkgsrc/HEAD_650/pkgsrc/sysutils/top and got: bmake => Bootstrap dependency digest>=20010302: found digest-20080510 ===> Skipping vulnerability checks. WARNING: No /var/db/pkg/pkg-vulnerabilities file found. WARNING: To fix run: `/usr/pkg/sbin/pkg_admin -K /var/db/pkg fetch-pkg-vulnerabilities'. => Fetching top-3.6.1.tar.gz => Total size: 228009 bytes Connected to ftp.groupsys.com. 220 ProFTPD 1.3.0a Server ready. 331 Password required for anonymous. 530 Login incorrect. ftp: Login failed ftp: Can't connect or login to host `ftp.groupsys.com:ftp' 221 Goodbye. fetch: Unable to fetch expected file top-3.6.1.tar.gz Trying 2001:708:10:9::20:2:21 ... ftp: Can't create socket for connection to `2001:708:10:9::20:2:21': Address family not supported by protocol family Trying 193.166.3.2:21 ... Connected to ftp.funet.fi. 220---------- Welcome to Pure-FTPd [privsep] ---------- 220-You are user number 49 of 1000 allowed. 220-Local time is now 06:38. Server port: 21. 220-Only anonymous FTP is allowed here 220-IPv6 connections are also welcome on this server. 220 You will be disconnected after 30 minutes of inactivity. 331-Welcome to the FUNET anonymous ftp archive 331- 331-Serving freely distributable files with FTP since 1990 331- 331-FTP.FUNET.FI is a service of the Finnish Academic and Research Network 331-FUNET, and is located at CSC,the Finnish IT center for science, 331-in Keilaranta 14, Espoo, Finland 331- 331-This is a Dell R710 server with 72GB of RAM. It has two QuadCore 331-Nehalem EP processors (Intel 5540) with hyperthreading running under 331-the Solaris operating system. Main storage is a fully redundant EMC CX700 331-fiber channel RAID array currently with over 10TB of space for public 331-files. 331- 331-We have a 10Gbit/s connection to Funet which in turn connects 331-with 10Gbit/s to FICIX, NORDUnet, Geant and Internet2. 331- 331-This archive is also reachable over the IPv6 network. WWW-browser 331-users can also use http://www.nic.funet.fi/pub/ to browse the archive. 331- 331-See the README file for more information about this archive. 331- 331-All anonymous FTP transactions will be logged for possible later analysis 331-and statistics. If you don't like this policy, please disconnect now! 331- 331-Please mail to problems@nic.funet.fi in case of problems 331- 331-Monday 15-19 finnish time is the regular Funet network service window 331-We may have service breaks earlier on Mondays or some other days if necessary 331- 331 Any password will work 230 Any password will work Remote system type is UNIX. Using binary mode to transfer files. 200 TYPE is now 8-bit binary 250 OK. Current directory is /pub 250-EXPORT NOTICE 250- 250-Please note that portions of this FTP site contain cryptographic 250-software controlled under the Export Administration Regulations (EAR). 250- 250-None of this software may be downloaded or otherwise exported or 250-re-exported into (or to a national or resident of) Cuba, Iran, Libya, 250-Sudan, North Korea, Syria or any other country to which the U.S. has 250-embargoed goods. 250- 250-By downloading or using said software, you are agreeing to the 250-foregoing and you are representing and warranting that you are not 250-located in, under the control of, or a national or resident of any 250-such country or on any such list. 250 OK. Current directory is /.m/mirrors5/ftp.netbsd.org/pub/NetBSD 250 OK. Current directory is /.m/mirrors5/ftp.netbsd.org/pub/NetBSD/packages 250 OK. Current directory is /.m/mirrors5/ftp.netbsd.org/pub/NetBSD/packages/distfiles local: top-3.6.1.tar.gz remote: top-3.6.1.tar.gz 227 Entering Passive Mode (193,166,3,2,149,7) 150-Accepted data connection 150 222.7 kbytes to download 100% |*****************************************************************************************************************| 222 KiB 187.29 KiB/s 00:00 ETA 226-File successfully transferred 226 1.073 seconds (measured here), 207.61 Kbytes per second 228009 bytes received in 00:01 (187.14 KiB/s) 221-Goodbye. You uploaded 0 and downloaded 223 kbytes. 221 Logout. => Checksum SHA1 OK for top-3.6.1.tar.gz => Checksum RMD160 OK for top-3.6.1.tar.gz ===> Installing dependencies for top-3.6.1 ===> Overriding tools for top-3.6.1 ===> Extracting for top-3.6.1 /bin/cp /home/zhelobanov/pkg_src/sysutils/top/files/m_dragonfly.c /tmp/wrkobjdir/sysutils/top/work/top-3.6.1/machine ===> Patching for top-3.6.1 => Applying pkgsrc patches for top-3.6.1 ===> Creating toolchain wrappers for top-3.6.1 ===> Configuring for top-3.6.1 => Modifying GNU configure scripts to avoid --recheck => Replacing config-guess with pkgsrc versions => Replacing config-sub with pkgsrc versions => Replacing install-sh with pkgsrc version Configuring top 3.6.1 checking build system type... i386-pc-nto-qnx6.5.0 checking host system type... i386-pc-nto-qnx6.5.0 checking target system type... i386-pc-nto-qnx6.5.0 checking for make... make checking for i386-pc-nto-qnx6.5.0-gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for gawk... /usr/pkg/bin/nawk checking for a BSD-compatible install... /usr/pkg/bin/install-sh -c -o root -g root checking OS revision number... 650 checking for kstat_open in -lkstat... no checking for kvm_open in -lkvm... no checking for elf32_getphdr in -lelf... yes checking for vm_statistics in -lmach... no checking for library containing tgetent... -ltermcap checking for exp in -lm... yes checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking stdarg.h usability... yes checking stdarg.h presence... yes checking for stdarg.h... yes checking termcap.h usability... yes checking termcap.h presence... yes checking for termcap.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking whether time.h and sys/time.h may both be included... yes checking for a good signal.h... /usr/include/signal.h checking whether sys_errlist is declared... no checking return type of signal handlers... void checking for time_t... yes checking for getopt... yes checking for memcpy... yes checking for setpriority... yes checking for strchr... yes checking for strerror... yes checking for snprintf... yes checking for sighold... no checking for sigrelse... no checking for sigaction... yes checking for sigprocmask... yes checking for correct ls options... ls -l checking for a platform module... none Configure doesn't recognize this system and doesn't know what module to assign to it. Help the cause and run the following command to let the maintainers know about this deficiency! Thanks. Just cut and paste the following: uname -a | mail -s nto-qnx6.5.0 bill@lefebvre.org configure: error: System type nto-qnx6.5.0 unrecognized *** Error code 1 Stop. bmake: stopped in /home/zhelobanov/pkg_src/sysutils/top *** Error code 1 Stop. bmake: stopped in /home/zhelobanov/pkg_src/sysutils/top Fri, 25 Mar 2011 04:33:21 GMT http://community.qnx.com/sf/go/post84241 Dmitry Zhelobanov(deleted) 2011-03-25T04:33:21Z post82624: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post82624 Hello, what configuration changes did you make? If you do not mind telling it to me. I need to build a project for ppc as well Tue, 25 Jan 2011 15:19:30 GMT http://community.qnx.com/sf/go/post82624 Sabtain Khan(deleted) 2011-01-25T15:19:30Z post82374: Re: OpenVPN missing TUN/TAP device http://community.qnx.com/sf/go/post82374 A tun driver has been completed for io-pkt, but has not been added to the product release yet. You can request this component through your sales representative. Thanks Dave Fri, 14 Jan 2011 20:27:28 GMT http://community.qnx.com/sf/go/post82374 Dave Brown 2011-01-14T20:27:28Z post81922: OpenVPN missing TUN/TAP device http://community.qnx.com/sf/go/post81922 Trying to setup openvpn 2.1_rc13 as a client on QNX 6.4.1. It complains 'Cannot allocate TUN/TAP dev dynamically'. Where should I look to get infos about these devices? Has anyone successfully set up a VPN client on QNX? I don't require OpenVPN but I need a way to establish a vpn connection from QNX machines to windows server. martin Tue, 11 Jan 2011 20:10:50 GMT http://community.qnx.com/sf/go/post81922 Martin Gagnon 2011-01-11T20:10:50Z post74048: Re: RE: How to cross-compile python24 for qnx-ppc using pkgsrc http://community.qnx.com/sf/go/post74048 I know this is a very old post, could I have a binary of the python for PPC? > Hi Robert, > > I make modifications every time I encounter a build problem. Cross-compiling > python is a bit tricky. It has 2-stage build process - it first builds the > python interpreter and then invokes the built python binary executable to run > the setup.py python script to build the extension modules. The problem here is > that the python executable is the cross-compiled for ppc which will not run > on the self-hosted machine. You have to change the Makefile to use the python > for qnx-x86. I haven't done the proper changes to be able to do a fresh > build since my initial goal so to be able build something that I can run. > Here's what I did as far as I can remember: > > 1. You have to build & install python first natively on qnx-x86 self-hosted. > This will be installed in /usr/pkg/bin & /usr/pkg/lib. Make sure you set your > default compiler to qcc. Add the following line in /usr/pkg/etc/mk.conf > configuration file. > PKGSRC_COMPILER= qcc > > 2. Delete the previously configured & built python using "bmake clean". > 3. Reconfigure python source using "bmake configure". > 4. Make some changes in the Makefile to cross-compile to ppc. You can use the > attached Makefile as a reference. Summary of the changes: > a. Changed the compiler to cross-compiler. From "qcc" to "qcc -V3.3.5, > gcc_ntoppcbe". > b. Changed the default installation directory from "/usr/pkg/src/" to "/ > staging/usr/pkg/src". > c. Changed the default python call from "./python" to "python". This will > run the native python instead of the cross-compiled python. > 5. Modify python24/work/Python-2.4.4/.gcc/bin/qcc with the ff: > exec /usr/qnx630/host/qnx6/x86/usr/bin/qcc -V3.3.5,gcc_ntoppcbe "$@" > 6. Build & install python using "bmake install". > > If anybody wants the pre-compiled binaries I can provide them in a tarball as > well. Tue, 09 Nov 2010 15:25:02 GMT http://community.qnx.com/sf/go/post74048 Ji Dong 2010-11-09T15:25:02Z post69387: Re: I've been working with the HEAD branch http://community.qnx.com/sf/go/post69387 > > Well I think pkgsrc is wonderful. I have some questions and > > some problems with packages to report. > > > > 1) How can I setup my system so that /usr/pkg/bin and > > /usr/pkg/sbin are always in my PATH.4, and specifically before > > /usr/local/bin? I know this is pretty basic. I appologize. > > You can put it in your $HOME/.profile, or $HOME/.kshrc if you have it setup. > > If you want it global, you can modify /etc/profile. Or, in your /etc/rc.d/rc. > local, you can set the CS_PATH > > setconf CS_PATH $(getconf CS_PATH):/usr/pkg/bin > > > 2) How can I setup my system so that /usr/pkg/lib is always > > checked for the pkgsrc libraries? When compiling a pkgsrc package this > > seems to happen automatically, but what if I'm compiling > > my own programs? > > This is explained in bootstrap, set it in /etc/rc.d/rc.local as: > > setconf CS_LIBPATH $(getconf CS_LIBPATH):/usr/pkg/lib > > >3) Does anyone know what package mkisofs is buried in? > > Maybe sysutils/cdrtools? > > > 4) Doesn't It seems very odd that svn does not seem to be part of pkgsrc? > I > > was hoping to compile the server side so as to use svn locally for my own > work > > in the future. > > It is. I got confused the other day, it is not called "svn" but "subversion", > under devel :) > Well, great work! You have helped me to improve my knowledge about this field. Thank you so much for sharing. __________________ http://moviesonlineworld.com Mon, 04 Oct 2010 01:27:30 GMT http://community.qnx.com/sf/go/post69387 Teresa p 2010-10-04T01:27:30Z post69386: Re: Getting svn for bootstrapping http://community.qnx.com/sf/go/post69386 > On Tue, Oct 09, 2007 at 04:46:54AM -0400, Christian Leutloff wrote: > > That would be nice. But in the meantime, would it be possible to add the > > missing libs to the binary download section? > > Everything should be there. I'd wait for the bootstrap > archive and hopefully pkg_add will take care of it > for you. > > -seanb Thank you so much for the post. It's really informative! __________________ http://moviesonlineworld.com Mon, 04 Oct 2010 01:26:26 GMT http://community.qnx.com/sf/go/post69386 Teresa p 2010-10-04T01:26:26Z post69385: Re: Getting svn for bootstrapping http://community.qnx.com/sf/go/post69385 > On Tue, Oct 09, 2007 at 04:46:54AM -0400, Christian Leutloff wrote: > > That would be nice. But in the meantime, would it be possible to add the > > missing libs to the binary download section? > > Everything should be there. I'd wait for the bootstrap > archive and hopefully pkg_add will take care of it > for you. > > -seanb Thank you so much for the post. It's really informative! __________________ [url=http://moviesonlineworld.com]watch free movies online[/url] Mon, 04 Oct 2010 01:25:10 GMT http://community.qnx.com/sf/go/post69385 Teresa p 2010-10-04T01:25:10Z post67254: Re: compilation error with unistd.h http://community.qnx.com/sf/go/post67254 Yes. I experienced 6.4.1 and found it much better than 6.3.2. Unluckily, due to another library we wanted to use on the system, which just supported qnx6.3, I had to switch back to 6.3.2. According to the previous post, can I just delete the two lines with - to get rid of the problem? #define _POSIX_VERSION 199009L #elif defined(__EXT_POSIX1_198808) #define _POSIX_VERSION 198808L -#else -#error _POSIX_VERSION not configured for system #endif #endif On Tue, Sep 14, 2010 at 3:28 PM, Sean Boudreau <community-noreply@qnx.com>wrote: > On Tue, Sep 14, 2010 at 03:09:50PM -0400, Yuan Sun wrote: > > Hi, > > > > I got the following error information when I tried to compile a program. > > > > "/usr/qnx632/target/qnx6/usr/include/unistd.h:135:2: #error > _POSIX_VERSION not configured for system" > > > > I searched related issues and found there was one talking about this > problem. The link is > http://community.qnx.com/sf/discussion/do/listPosts/projects.pkgsrc/discussion.general.topc1736?_pagenum=2 > > > > It said the problem was fixed in the latest unistd.h. I am using qnx6.3.2 > and I am not very sure how I can get rid of the error. Should I download a > latest unistd.h and replaced the previous one? > > You'll have a much better pkgsrc experience on 6.5. > > Regards, > > -seanb > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post67246 > > -- Yuan (Amy) Sun Visiting PhD Student Robotics Institute School of Computer Science Carnegie Mellon University 5000 Forbes Ave Pittsburgh, PA 15213 USA Tue, 14 Sep 2010 19:50:38 GMT http://community.qnx.com/sf/go/post67254 Yuan Sun 2010-09-14T19:50:38Z post67246: Re: compilation error with unistd.h http://community.qnx.com/sf/go/post67246 On Tue, Sep 14, 2010 at 03:09:50PM -0400, Yuan Sun wrote: > Hi, > > I got the following error information when I tried to compile a program. > > "/usr/qnx632/target/qnx6/usr/include/unistd.h:135:2: #error _POSIX_VERSION not configured for system" > > I searched related issues and found there was one talking about this problem. The link is http://community.qnx.com/sf/discussion/do/listPosts/projects.pkgsrc/discussion.general.topc1736?_pagenum=2 > > It said the problem was fixed in the latest unistd.h. I am using qnx6.3.2 and I am not very sure how I can get rid of the error. Should I download a latest unistd.h and replaced the previous one? You'll have a much better pkgsrc experience on 6.5. Regards, -seanb Tue, 14 Sep 2010 19:28:37 GMT http://community.qnx.com/sf/go/post67246 Sean Boudreau(deleted) 2010-09-14T19:28:37Z post67240: compilation error with unistd.h http://community.qnx.com/sf/go/post67240 Hi, I got the following error information when I tried to compile a program. "/usr/qnx632/target/qnx6/usr/include/unistd.h:135:2: #error _POSIX_VERSION not configured for system" I searched related issues and found there was one talking about this problem. The link is http://community.qnx.com/sf/discussion/do/listPosts/projects.pkgsrc/discussion.general.topc1736?_pagenum=2 It said the problem was fixed in the latest unistd.h. I am using qnx6.3.2 and I am not very sure how I can get rid of the error. Should I download a latest unistd.h and replaced the previous one? Thanks. Tue, 14 Sep 2010 19:09:49 GMT http://community.qnx.com/sf/go/post67240 Yuan Sun 2010-09-14T19:09:49Z post62740: Re: PAngo port for QNX 6.4.1 http://community.qnx.com/sf/go/post62740 Thanks a lot Sean. - satish ________________________________ From: Sean Boudreau <community-noreply@qnx.com> To: general-pkgsrc <post62616@community.qnx.com> Sent: Wed, 11 August, 2010 7:07:08 PM Subject: Re: PAngo port for QNX 6.4.1 On Wed, Aug 11, 2010 at 01:01:38AM -0400, satish pattar wrote: > > I downloaded manually "MesaDemos-7.4.4.tar.bz2" & copied to distfiles , still > it is not getting detected. > Put it in distfiles/Mesa-7.4.4/MesaDemos-7.4.4.tar.bz2 graphics/MesaDemos/Makefiles includes graphics/Mesa/Makefile.common which in turn sets: DIST_SUBDIR= Mesa-${MESA_PKGVERSION} -seanb _______________________________________________ General http://community.qnx.com/sf/go/post62616 Thu, 12 Aug 2010 04:06:29 GMT http://community.qnx.com/sf/go/post62740 satish pattar(deleted) 2010-08-12T04:06:29Z post62616: Re: PAngo port for QNX 6.4.1 http://community.qnx.com/sf/go/post62616 On Wed, Aug 11, 2010 at 01:01:38AM -0400, satish pattar wrote: > > I downloaded manually "MesaDemos-7.4.4.tar.bz2" & copied to distfiles , still > it is not getting detected. > Put it in distfiles/Mesa-7.4.4/MesaDemos-7.4.4.tar.bz2 graphics/MesaDemos/Makefiles includes graphics/Mesa/Makefile.common which in turn sets: DIST_SUBDIR= Mesa-${MESA_PKGVERSION} -seanb Wed, 11 Aug 2010 13:37:07 GMT http://community.qnx.com/sf/go/post62616 Sean Boudreau(deleted) 2010-08-11T13:37:07Z post62589: Re: PAngo port for QNX 6.4.1 http://community.qnx.com/sf/go/post62589 RE: Pango Libraries for QNX Hi Sean, I downloaded manually the required dependencies one by one & copied to distfiles. I am encountering the below problem after resolving few dependencies. #bmake You can select which build options to use by setting PKG_DEFAULT_OPTIONS or the following variable. Its current value is shown: PKG_OPTIONS.pango (not defined) ========================================================================== => Build dependency libtool-base>=1.5.18nb5: found libtool-base-1.5.26nb2 => Build dependency bzip2>=0.9.0b: found bzip2-1.0.5nb1 => Build dependency pkg-config>=0.19: found pkg-config-0.23nb1 => Build dependency renderproto>=0.9.3nb1: found renderproto-0.11 => Build dependency kbproto>=1.0.2: found kbproto-1.0.3 => Build dependency xproto>=7.0.9: found xproto-7.0.15 => Build dependency libXt>=1.0.0: found libXt-1.0.6 => Full dependency libXft>=2.1.10: found libXft-2.1.13 => Full dependency fontconfig>=2.5.0: found fontconfig-2.7.1 => Full dependency zlib>=1.2.3: found zlib-1.2.3 => Full dependency freetype2>=2.1.10nb1: found freetype2-2.3.9nb1 => Full dependency libXrender>=0.9.2: found libXrender-0.9.4 => Full dependency libX11>=1.1: found libX11-1.2.2 => Full dependency glib2>=2.17.3: found glib2-2.20.4 => Full dependency cairo>=1.8.0: NOT found => Verifying reinstall for ../../graphics/cairo => Bootstrap dependency digest>=20010302: found digest-20080510 ===> Skipping vulnerability checks. WARNING: No /var/db/pkg/pkg-vulnerabilities file found. WARNING: To fix run: `/usr/pkg/sbin/pkg_admin -K /var/db/pkg fetch-pkg-vulnerabilities'. => Checksum SHA1 OK for cairo-1.8.8.tar.gz => Checksum RMD160 OK for cairo-1.8.8.tar.gz ===> Installing dependencies for cairo-1.8.8 ========================================================================== The supported build options for cairo are: x11 The currently selected options are: x11 You can select which build options to use by setting PKG_DEFAULT_OPTIONS or the following variable. Its current value is shown: PKG_OPTIONS.cairo (not defined) ========================================================================== => Build dependency libtool-base>=1.5.18nb5: found libtool-base-1.5.26nb2 => Build dependency pkg-config>=0.19: found pkg-config-0.23nb1 => Build dependency kbproto>=1.0.2: found kbproto-1.0.3 => Build dependency xproto>=7.0.9: found xproto-7.0.15 => Build dependency renderproto>=0.9.3nb1: found renderproto-0.11 => Build dependency libXt>=1.0.0: found libXt-1.0.6 => Full dependency MesaLib>=7.0.3: NOT found => Verifying reinstall for ../../graphics/MesaLib => Bootstrap dependency digest>=20010302: found digest-20080510 ===> Skipping vulnerability checks. WARNING: No /var/db/pkg/pkg-vulnerabilities file found. WARNING: To fix run: `/usr/pkg/sbin/pkg_admin -K /var/db/pkg fetch-pkg-vulnerabilities'. => Fetching MesaDemos-7.4.4.tar.bz2 => Total size: 1367659 bytes I downloaded manually "MesaDemos-7.4.4.tar.bz2" & copied to distfiles , still it is not getting detected. What could be the problem ? Thanks in advance Sateesh P ________________________________ From: Sean Boudreau <community-noreply@qnx.com> To: general-pkgsrc <post62419@community.qnx.com> Sent: Tue, 10 August, 2010 6:54:48 PM Subject: Re: PAngo port for QNX 6.4.1 You need ftp to work. Are yuo behind a firewall? -seanb On Tue, Aug 10, 2010 at 02:16:10AM -0400, satish pattar wrote: > Hi All, > I am new to pkgsrc stuff . This is what I did > # cd pkgsrc/bootstrap > #./bootstrap > # cd pkgsrc/devel/pango > # bmake install > => Bootstrap dependency digest>=20010302: found digest-20080510 ===> Skipping > vulnerability checks. > WARNING: No /var/db/pkg/pkg-vulnerabilities file found. > WARNING: To fix run: `/usr/pkg/sbin/pkg_admin -K /var/db/pkg > fetch-pkg-vulnerabilities'. > => Fetching pango-1.24.5.tar.bz2 > => Total size: 1519944 bytes > ftp: Can't connect to `202.216.228.228:21': Connection timed out > ftp: Can't connect to `ftp.dti.ad.jp:ftp' > ftp: Can't connect or login to host `ftp.dti.ad.jp:ftp' > fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying > 2001:200:601:10:206:5bff:fef0:466c:21 ... > ftp: Can't create socket for connection to > `2001:200:601:10:206:5bff:fef0:466c:21': Address family not suppor ted by > protocol family Trying 192.26.91.193:21 ... > ftp: Can't connect to `192.26.91.193:21': Connection timed out > ftp: Can't connect to `ftp.kddlabs.co.jp:ftp' > ftp: Can't connect or login to host `ftp.kddlabs.co.jp:ftp' > fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying > 2001:640:20:ff00::194:21 ... > ftp: Can't create socket for connection to `2001:640:20:ff00::194:21': Address > > family not supported by protoc ol family Trying 193.233.9.194:21 ... > ftp: Can't connect to `193.233.9.194:21': Connection timed out Trying > 195.178.192.118:21 ... > ftp: Can't connect to `195.178.192.118:21': Connection timed out > ftp: Can't connect to `ftp.chg.ru:ftp' > ftp: Can't connect or login to host `ftp.chg.ru:ftp' > fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 > ftp: Can't connect to `128.205.32.51:21': Connection timed out > ftp: Can't connect to `ftp.cse.buffalo.edu:ftp' > ftp: Can't connect or login to host `ftp.cse.buffalo.edu:ftp' > fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying > 2001:720:1500:42:212:3fff:fe2a:e1e:21 ... > ftp: Can't create socket for connection to > `2001:720:1500:42:212:3fff:fe2a:e1e:21': Address family not supported by > protocol family > > > It simply waits indefinately there . what could be the probelm ? > Your inputs are appreciated. > Thanks, > Satish P > > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post62398 > _______________________________________________ General http://community.qnx.com/sf/go/post62419 Wed, 11 Aug 2010 05:01:37 GMT http://community.qnx.com/sf/go/post62589 satish pattar(deleted) 2010-08-11T05:01:37Z post62419: Re: PAngo port for QNX 6.4.1 http://community.qnx.com/sf/go/post62419 You need ftp to work. Are yuo behind a firewall? -seanb On Tue, Aug 10, 2010 at 02:16:10AM -0400, satish pattar wrote: > Hi All, > I am new to pkgsrc stuff . This is what I did > # cd pkgsrc/bootstrap > #./bootstrap > # cd pkgsrc/devel/pango > # bmake install > => Bootstrap dependency digest>=20010302: found digest-20080510 ===> Skipping > vulnerability checks. > WARNING: No /var/db/pkg/pkg-vulnerabilities file found. > WARNING: To fix run: `/usr/pkg/sbin/pkg_admin -K /var/db/pkg > fetch-pkg-vulnerabilities'. > => Fetching pango-1.24.5.tar.bz2 > => Total size: 1519944 bytes > ftp: Can't connect to `202.216.228.228:21': Connection timed out > ftp: Can't connect to `ftp.dti.ad.jp:ftp' > ftp: Can't connect or login to host `ftp.dti.ad.jp:ftp' > fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying > 2001:200:601:10:206:5bff:fef0:466c:21 ... > ftp: Can't create socket for connection to > `2001:200:601:10:206:5bff:fef0:466c:21': Address family not suppor ted by > protocol family Trying 192.26.91.193:21 ... > ftp: Can't connect to `192.26.91.193:21': Connection timed out > ftp: Can't connect to `ftp.kddlabs.co.jp:ftp' > ftp: Can't connect or login to host `ftp.kddlabs.co.jp:ftp' > fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying > 2001:640:20:ff00::194:21 ... > ftp: Can't create socket for connection to `2001:640:20:ff00::194:21': Address > family not supported by protoc ol family Trying 193.233.9.194:21 ... > ftp: Can't connect to `193.233.9.194:21': Connection timed out Trying > 195.178.192.118:21 ... > ftp: Can't connect to `195.178.192.118:21': Connection timed out > ftp: Can't connect to `ftp.chg.ru:ftp' > ftp: Can't connect or login to host `ftp.chg.ru:ftp' > fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 > ftp: Can't connect to `128.205.32.51:21': Connection timed out > ftp: Can't connect to `ftp.cse.buffalo.edu:ftp' > ftp: Can't connect or login to host `ftp.cse.buffalo.edu:ftp' > fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying > 2001:720:1500:42:212:3fff:fe2a:e1e:21 ... > ftp: Can't create socket for connection to > `2001:720:1500:42:212:3fff:fe2a:e1e:21': Address family not supported by > protocol family > > > It simply waits indefinately there . what could be the probelm ? > Your inputs are appreciated. > Thanks, > Satish P > > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post62398 > Tue, 10 Aug 2010 13:24:47 GMT http://community.qnx.com/sf/go/post62419 Sean Boudreau(deleted) 2010-08-10T13:24:47Z post62398: PAngo port for QNX 6.4.1 http://community.qnx.com/sf/go/post62398 Hi All, I am new to pkgsrc stuff . This is what I did # cd pkgsrc/bootstrap #./bootstrap # cd pkgsrc/devel/pango # bmake install => Bootstrap dependency digest>=20010302: found digest-20080510 ===> Skipping vulnerability checks. WARNING: No /var/db/pkg/pkg-vulnerabilities file found. WARNING: To fix run: `/usr/pkg/sbin/pkg_admin -K /var/db/pkg fetch-pkg-vulnerabilities'. => Fetching pango-1.24.5.tar.bz2 => Total size: 1519944 bytes ftp: Can't connect to `202.216.228.228:21': Connection timed out ftp: Can't connect to `ftp.dti.ad.jp:ftp' ftp: Can't connect or login to host `ftp.dti.ad.jp:ftp' fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying 2001:200:601:10:206:5bff:fef0:466c:21 ... ftp: Can't create socket for connection to `2001:200:601:10:206:5bff:fef0:466c:21': Address family not suppor ted by protocol family Trying 192.26.91.193:21 ... ftp: Can't connect to `192.26.91.193:21': Connection timed out ftp: Can't connect to `ftp.kddlabs.co.jp:ftp' ftp: Can't connect or login to host `ftp.kddlabs.co.jp:ftp' fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying 2001:640:20:ff00::194:21 ... ftp: Can't create socket for connection to `2001:640:20:ff00::194:21': Address family not supported by protoc ol family Trying 193.233.9.194:21 ... ftp: Can't connect to `193.233.9.194:21': Connection timed out Trying 195.178.192.118:21 ... ftp: Can't connect to `195.178.192.118:21': Connection timed out ftp: Can't connect to `ftp.chg.ru:ftp' ftp: Can't connect or login to host `ftp.chg.ru:ftp' fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 ftp: Can't connect to `128.205.32.51:21': Connection timed out ftp: Can't connect to `ftp.cse.buffalo.edu:ftp' ftp: Can't connect or login to host `ftp.cse.buffalo.edu:ftp' fetch: Unable to fetch expected file pango-1.24.5.tar.bz2 Trying 2001:720:1500:42:212:3fff:fe2a:e1e:21 ... ftp: Can't create socket for connection to `2001:720:1500:42:212:3fff:fe2a:e1e:21': Address family not supported by protocol family It simply waits indefinately there . what could be the probelm ? Your inputs are appreciated. Thanks, Satish P Tue, 10 Aug 2010 06:16:00 GMT http://community.qnx.com/sf/go/post62398 satish pattar(deleted) 2010-08-10T06:16:00Z post62170: RE: Regarding installing packages in QNX 6.5 http://community.qnx.com/sf/go/post62170 See the binary packages page (the page you linked to in your first post). You need to follow the first section there; the one entitled 'Set up your environment'. Regards, -seanb -----Original Message----- From: Ashwin Damle [mailto:community-noreply@qnx.com] Sent: Sat 8/7/2010 1:26 AM To: general-pkgsrc Subject: Re: Regarding installing packages in QNX 6.5 Hello, I untarred the bootstrap find in root . Then I run export PKG_PATH=ftp://ftp.NetBSD.org/pub/pkgsrc/packages/QNX/<arch>/<vers>/All pkg_add -v <package> It returns pkg-add not found. Do I need to bootstrap first? I tried it from page http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/Bootstrap What user name I need to enter, if I enter my account user name it refuses, if I enter ashwin which is my login name it does not allow. it says "username" not found in both cases. Sorry but I am a beginner, please help. Thank you. On Fri, Aug 6, 2010 at 11:47 PM, Sean Boudreau <community-noreply@qnx.com>wrote: > On Fri, Aug 06, 2010 at 02:06:55PM -0400, Ashwin Damle wrote: > > Hello, > > > > I want to install superLU on my QNX 6.5 ,I can see the package in the > repos > > with all the dependencies. > > > > I followed the instructions on > > > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages;jsessionid=65CA7C42D158125D5CCD463E132710C9 > > > > I can't get this working. I don't understand where should be put what? > How > > can I download packages from the repos and compile it and get it working. > > > > Can you please guide me because I am not very experienced. > > What did you try? What error did you get? The instructions > on the above page look complete to me. > > Regards, > > -seanb > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post62109 > > -- Ash.D Institute of Infinite Tension,Bombay _______________________________________________ General http://community.qnx.com/sf/go/post62167 Sat, 07 Aug 2010 11:25:13 GMT http://community.qnx.com/sf/go/post62170 Sean Boudreau(deleted) 2010-08-07T11:25:13Z post62167: Re: Regarding installing packages in QNX 6.5 http://community.qnx.com/sf/go/post62167 Hello, I untarred the bootstrap find in root . Then I run export PKG_PATH=ftp://ftp.NetBSD.org/pub/pkgsrc/packages/QNX/<arch>/<vers>/All pkg_add -v <package> It returns pkg-add not found. Do I need to bootstrap first? I tried it from page http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/Bootstrap What user name I need to enter, if I enter my account user name it refuses, if I enter ashwin which is my login name it does not allow. it says "username" not found in both cases. Sorry but I am a beginner, please help. Thank you. On Fri, Aug 6, 2010 at 11:47 PM, Sean Boudreau <community-noreply@qnx.com>wrote: > On Fri, Aug 06, 2010 at 02:06:55PM -0400, Ashwin Damle wrote: > > Hello, > > > > I want to install superLU on my QNX 6.5 ,I can see the package in the > repos > > with all the dependencies. > > > > I followed the instructions on > > > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages;jsessionid=65CA7C42D158125D5CCD463E132710C9 > > > > I can't get this working. I don't understand where should be put what? > How > > can I download packages from the repos and compile it and get it working. > > > > Can you please guide me because I am not very experienced. > > What did you try? What error did you get? The instructions > on the above page look complete to me. > > Regards, > > -seanb > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post62109 > > -- Ash.D Institute of Infinite Tension,Bombay Sat, 07 Aug 2010 05:26:16 GMT http://community.qnx.com/sf/go/post62167 Ashwin Damle(deleted) 2010-08-07T05:26:16Z post62109: Re: Regarding installing packages in QNX 6.5 http://community.qnx.com/sf/go/post62109 On Fri, Aug 06, 2010 at 02:06:55PM -0400, Ashwin Damle wrote: > Hello, > > I want to install superLU on my QNX 6.5 ,I can see the package in the repos > with all the dependencies. > > I followed the instructions on > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages;jsessionid=65CA7C42D158125D5CCD463E132710C9 > > I can't get this working. I don't understand where should be put what? How > can I download packages from the repos and compile it and get it working. > > Can you please guide me because I am not very experienced. What did you try? What error did you get? The instructions on the above page look complete to me. Regards, -seanb Fri, 06 Aug 2010 18:17:24 GMT http://community.qnx.com/sf/go/post62109 Sean Boudreau(deleted) 2010-08-06T18:17:24Z post62103: Regarding installing packages in QNX 6.5 http://community.qnx.com/sf/go/post62103 Hello, I want to install superLU on my QNX 6.5 ,I can see the package in the repos with all the dependencies. I followed the instructions on http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages;jsessionid=65CA7C42D158125D5CCD463E132710C9 I can't get this working. I don't understand where should be put what? How can I download packages from the repos and compile it and get it working. Can you please guide me because I am not very experienced. Please help. Thank you. -- Ashwin M. Damle Fri, 06 Aug 2010 18:06:54 GMT http://community.qnx.com/sf/go/post62103 Ashwin Damle(deleted) 2010-08-06T18:06:54Z post61335: RE: lack of bootstrap.tar.gz in 6.5 netbsdp repository http://community.qnx.com/sf/go/post61335 ftp://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.5.0_head_20100424/bootstrap.tar.gz or http://community.qnx.com/sf/wiki/do/viewAttachment/projects.pkgsrc/wiki/BinaryPackages/6.5.0_bootstrap.tar.gz Regards, -seanb -----Original Message----- From: Langirdas Pasalaicis [mailto:community-noreply@qnx.com] Sent: Sun 8/1/2010 4:15 PM To: general-pkgsrc Subject: lack of bootstrap.tar.gz in 6.5 netbsdp repository I have not found bootstrap.tar.gz in new QNX 6.5 netbsd repository. Is there any reason? _______________________________________________ General http://community.qnx.com/sf/go/post61315 Mon, 02 Aug 2010 11:34:45 GMT http://community.qnx.com/sf/go/post61335 Sean Boudreau(deleted) 2010-08-02T11:34:45Z post61315: lack of bootstrap.tar.gz in 6.5 netbsdp repository http://community.qnx.com/sf/go/post61315 I have not found bootstrap.tar.gz in new QNX 6.5 netbsd repository. Is there any reason? Sun, 01 Aug 2010 20:15:44 GMT http://community.qnx.com/sf/go/post61315 Langirdas Pasalaicis(deleted) 2010-08-01T20:15:44Z post57775: Re: qnx pkgsrc & pkgsrc.org http://community.qnx.com/sf/go/post57775 On Thu, Jun 24, 2010 at 12:51:35AM -0400, Michael Tatarinov wrote: > Hi > > will you commit the changes (made in the project) in the main pkgsrc.org tree? > I've been pushing some of it back as I go. Some has to go back to various distributions. It's probably time for a cleaning but I'm busy ATM. Regards, -seanb Thu, 24 Jun 2010 13:24:01 GMT http://community.qnx.com/sf/go/post57775 Sean Boudreau(deleted) 2010-06-24T13:24:01Z post57747: qnx pkgsrc & pkgsrc.org http://community.qnx.com/sf/go/post57747 Hi will you commit the changes (made in the project) in the main pkgsrc.org tree? Thu, 24 Jun 2010 04:51:34 GMT http://community.qnx.com/sf/go/post57747 Michael Tatarinov(deleted) 2010-06-24T04:51:34Z post55821: RE: samba compiles now http://community.qnx.com/sf/go/post55821 Some of them may be useful. Regards, -seanb -----Original Message----- From: MBS MBS [mailto:community-noreply@qnx.com] Sent: Mon 5/31/2010 12:33 PM To: general-pkgsrc Subject: Re: samba compiles now Hi, we would like to compile Samba 3.0.34 (or higher) for QNX6.3.0. May the patches from QNX6.5.0 be helpful, or should we start with the orignal source from samba.org? Thanks Michael _______________________________________________ General http://community.qnx.com/sf/go/post55819 Mon, 31 May 2010 17:21:35 GMT http://community.qnx.com/sf/go/post55821 Sean Boudreau(deleted) 2010-05-31T17:21:35Z post55819: Re: samba compiles now http://community.qnx.com/sf/go/post55819 Hi, we would like to compile Samba 3.0.34 (or higher) for QNX6.3.0. May the patches from QNX6.5.0 be helpful, or should we start with the orignal source from samba.org? Thanks Michael Mon, 31 May 2010 16:33:21 GMT http://community.qnx.com/sf/go/post55819 MBS MBS 2010-05-31T16:33:21Z post53482: instructions on binary packages - cleanup? http://community.qnx.com/sf/go/post53482 Hi, I see more and more people asking about pkgsrc. Maybe the instructions on http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages could be cleaned up a little? I think it would make sense to: 1) First explain that you need to manually download the "bootstrap". Add a note what this actually contains - I know the term "bootstrap" only in relation to booting a system. 2) After the bootstrap has been unpacked, put the paragraph about setting up the environment. Here, the export PKG_PATH part could also be added to the .profile, would this make sense? 3) Fix typo: /etc/rc,d/rc.local - replace , with . - Malte Tue, 04 May 2010 09:09:05 GMT http://community.qnx.com/sf/go/post53482 Malte Mundt(deleted) 2010-05-04T09:09:05Z post52792: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post52792 Hi , I have did some changes in the configuration script to support for mpc8548 and now i m able to compile the source for powerpc in QNX Host. Its working fine.. Thanks a lot for your help. Thanks and Regards K.Senthil Mon, 26 Apr 2010 16:10:41 GMT http://community.qnx.com/sf/go/post52792 Senthil K 2010-04-26T16:10:41Z post52019: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post52019 On Mon, Apr 19, 2010 at 04:36:21AM -0400, Senthil K wrote: > > Is there any iperf binary available for Powerpc? Not currently AFAIK. Regards, -seanb Mon, 19 Apr 2010 13:17:51 GMT http://community.qnx.com/sf/go/post52019 Sean Boudreau(deleted) 2010-04-19T13:17:51Z post52007: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post52007 Hi, I tried to compile the iperf in cygwin.it throws following errors Senthil@DELL /cygdrive/d/Sen_PendriverData/IntuneProject/iperf/iperf-2.0.2 $ make make all-recursive make[1]: Entering directory `/cygdrive/d/Sen_PendriverData/IntuneProject/iperf/i perf-2.0.2' Making all in compat make[2]: Entering directory `/cygdrive/d/Sen_PendriverData/IntuneProject/iperf/i perf-2.0.2/compat' if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../include -O2 -MT Thread .o -MD -MP -MF ".deps/Thread.Tpo" -c -o Thread.o Thread.c; \ then mv -f ".deps/Thread.Tpo" ".deps/Thread.Po"; else rm -f ".deps/Threa d.Tpo"; exit 1; fi Thread.c: In function `thread_stop': Thread.c:205: error: `oldTID' undeclared (first use in this function) Thread.c:205: error: (Each undeclared identifier is reported only once Thread.c:205: error: for each function it appears in.) make[2]: *** [Thread.o] Error 1 make[2]: Leaving directory `/cygdrive/d/Sen_PendriverData/IntuneProject/iperf/ip erf-2.0.2/compat' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/cygdrive/d/Sen_PendriverData/IntuneProject/iperf/ip erf-2.0.2' make: *** [all] Error 2 Is there any iperf binary available for Powerpc? Thanks and Regards K.Senthil Mon, 19 Apr 2010 08:36:20 GMT http://community.qnx.com/sf/go/post52007 Senthil K 2010-04-19T08:36:20Z post51927: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post51927 On Fri, Apr 16, 2010 at 12:33:09PM -0400, Senthil K wrote: > Hi Sean, > > Sorry for asking this question... > I am having windows pc.. > Where should i give 'bmake'. ftp http://distfiles.gentoo.org/distfiles/iperf-2.0.2.tar.gz Fri, 16 Apr 2010 16:39:40 GMT http://community.qnx.com/sf/go/post51927 Sean Boudreau(deleted) 2010-04-16T16:39:40Z post51926: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post51926 Hi Sean, Sorry for asking this question... I am having windows pc.. Where should i give 'bmake'. Thanks and Regards K.Senthil Fri, 16 Apr 2010 16:33:08 GMT http://community.qnx.com/sf/go/post51926 Senthil K 2010-04-16T16:33:08Z post51923: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post51923 On Fri, Apr 16, 2010 at 11:06:54AM -0400, Senthil K wrote: > Hi Sean, > > Can you please send the iperf source? > I tried to download the iperf from pkgsrc it gave only make file and patches. A 'bmake' will automatically download it to pkgsrc/distfiles. Regards, -seanb Fri, 16 Apr 2010 15:10:52 GMT http://community.qnx.com/sf/go/post51923 Sean Boudreau(deleted) 2010-04-16T15:10:52Z post51922: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post51922 Hi Sean, Can you please send the iperf source? I tried to download the iperf from pkgsrc it gave only make file and patches. Thanks and Regards K.Senthil Fri, 16 Apr 2010 15:06:54 GMT http://community.qnx.com/sf/go/post51922 Senthil K 2010-04-16T15:06:54Z post51914: Re: iperf compilation for ppc http://community.qnx.com/sf/go/post51914 On Fri, Apr 16, 2010 at 10:07:55AM -0400, Senthil K wrote: > Hi, > > I have requirement to compile the iperf in QNX Momentics for PPC. > can you please tell how to download the iperf source alone from pkgsrc and > compile it in QNX Momentics? I've only done self hosted work with pkgsrc: x86 with no IDE. Regards, -seanb Fri, 16 Apr 2010 14:27:30 GMT http://community.qnx.com/sf/go/post51914 Sean Boudreau(deleted) 2010-04-16T14:27:30Z post51909: iperf compilation for ppc http://community.qnx.com/sf/go/post51909 Hi, I have requirement to compile the iperf in QNX Momentics for PPC. can you please tell how to download the iperf source alone from pkgsrc and compile it in QNX Momentics? Thanks and Regards K.Senthil Fri, 16 Apr 2010 14:07:54 GMT http://community.qnx.com/sf/go/post51909 Senthil K 2010-04-16T14:07:54Z post51449: Re: bmake, no response http://community.qnx.com/sf/go/post51449 Sorry, problem solved. Corrupted file system. Francois Mon, 12 Apr 2010 07:30:49 GMT http://community.qnx.com/sf/go/post51449 Francois Joubert 2010-04-12T07:30:49Z post51444: bmake, no response http://community.qnx.com/sf/go/post51444 Hi, I have recently upgraded from 6.3.1 to 6.4.1, therefore still finding my way around the new 3rd party installation tools. I have been using bmake with success in my VM, but this morning activating the command: # bmake install just returns to the command line. No messages no nothing. Any suggestions? Thanks, Francois Mon, 12 Apr 2010 05:41:18 GMT http://community.qnx.com/sf/go/post51444 Francois Joubert 2010-04-12T05:41:18Z post50911: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post50911 I created the first patch for the pkgsrc repository. I created a new thread for that. Please go here: http://community.qnx.com/sf/discussion/do/listPosts/projects.pkgsrc/discussion.pkginfo.topc12895 Wed, 31 Mar 2010 11:14:24 GMT http://community.qnx.com/sf/go/post50911 André Wösten 2010-03-31T11:14:24Z post50010: Re: Where can I find pkg-add program? http://community.qnx.com/sf/go/post50010 Found it. Sorry. Fri, 19 Mar 2010 14:06:50 GMT http://community.qnx.com/sf/go/post50010 Albrecht Uhlmann(deleted) 2010-03-19T14:06:50Z post50005: Where can I find pkg-add program? http://community.qnx.com/sf/go/post50005 Where can I find the pkg-add program to install packages? I checked out the entire repository and did the bootstrap as indicated (took about 35 minutes and built bmake, among other things) but pkg-add is not to be found. Thanks a lot. -Albrecht Fri, 19 Mar 2010 13:44:55 GMT http://community.qnx.com/sf/go/post50005 Albrecht Uhlmann(deleted) 2010-03-19T13:44:55Z post49565: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49565 Hi, I'll check that and see what I cvan do here :-) Tue, 16 Mar 2010 06:03:05 GMT http://community.qnx.com/sf/go/post49565 Michael Pfeiffer 2010-03-16T06:03:05Z post49555: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49555 OK, I commited the source to http://qnx.falloutshelter.de/ I hope I didn't forget something. There is README.xphoton where I put the configure line for x11/modular-xorg-server. In xphoton are all files which need to be (over)written into work/xorg-server-1.6.3 before building the package. You surely need to configure and make MANUALLY in the work directory for sure. If that works start hw/xphoton/Xphoton, which starts the X server on your QNX. After that you can start X applications. Tell me if that works. Mon, 15 Mar 2010 23:32:23 GMT http://community.qnx.com/sf/go/post49555 André Wösten 2010-03-15T23:32:23Z post49472: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49472 On Mon, Mar 15, 2010 at 04:02:52AM -0400, Michael Pfeiffer wrote: > > Check out the binary packages page: > > > > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/ > > BinaryPackages > > I know about these binaries, nevertheless all the dependencies between packages have to be handled manually. The automated resolving of dependencies is gone with the QPK packages and the software installer. Hopefully QNX 6.5 does not lose features again... It's been a while since I tried pkg_add (I usually compile myself) but dependencies should be handled automatically. Regards, -seanb Mon, 15 Mar 2010 14:20:59 GMT http://community.qnx.com/sf/go/post49472 Sean Boudreau(deleted) 2010-03-15T14:20:59Z post49441: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49441 > Definitely! I already switched back to QNX 6.3.2 because XPhoton is missing in > 6.4 - and resulting from that many applications are no longer available for > that new version. > > So if there is anything I can do... I will upload the source code into my SVN with anonymous access. This way you can get an overview. As I said, X is really weird :-) Much of the code is still hacked and full of workarounds but I think with some work we can get it stable. If you got some questions you can reach me under andre(spider-monkey)woesten(dot)com (I'm german). I can also send you the mplayer source and some test code this way. How experienced are you with C/C++ development on QNX? Did you already compile modular-xorg on 6.4.1 (which is possible)? Mon, 15 Mar 2010 12:41:30 GMT http://community.qnx.com/sf/go/post49441 André Wösten 2010-03-15T12:41:30Z post49435: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49435 > But I'm happy some people are interested in this stuff :-) Definitely! I already switched back to QNX 6.3.2 because XPhoton is missing in 6.4 - and resulting from that many applications are no longer available for that new version. So if there is anything I can do... Mon, 15 Mar 2010 08:04:15 GMT http://community.qnx.com/sf/go/post49435 Michael Pfeiffer 2010-03-15T08:04:15Z post49434: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49434 > Check out the binary packages page: > > http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/ > BinaryPackages I know about these binaries, nevertheless all the dependencies between packages have to be handled manually. The automated resolving of dependencies is gone with the QPK packages and the software installer. Hopefully QNX 6.5 does not lose features again... Mon, 15 Mar 2010 08:02:51 GMT http://community.qnx.com/sf/go/post49434 Michael Pfeiffer 2010-03-15T08:02:51Z post49426: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49426 Currently I try to restructure the whole code. The old xphoton was built up on the xquartz DDX, but most things aren't needed there. Also it's hard to debug all the X stuff, because the X.org server is sometimes calling this and calling that. I implemented a basic logging system, so I can follow all the stuff xorg is calling in my code. Most of the work to do now is refactoring and restructuring. I also support rootless X and not native X currently. But I don't think it's a problem to get it running with it. Fortunately I didn't change much of xorgs code itself - just the configure.in and some Makefiles. I didn't touch any of the avaialble rootless code which is implemented in xorg currently, so this whole thing is mostly independant. The old xphoton has its own rootless code stuff but I use the code of xquartz now. This reduces the maintenance for xphoton for sure :-) Just to be clear: All the X stuff is *very* weird. All APIs are documented & implemented very uncleanly. Also there are many ways to handle user input. There are no straight-forward ways to implement a DDX in X. That's why I hope the code is maintainable in future. I got the mplayer port source from cranksoftware. My aim is to get mplayer running on Photon with the X11 user interface. But I'm happy some people are interested in this stuff :-) What about setting up a seperate project / SVN for it? Sean, would you work on xphoton again? I saw you implemented much stuff in it before. André Sat, 13 Mar 2010 22:34:53 GMT http://community.qnx.com/sf/go/post49426 André Wösten 2010-03-13T22:34:53Z post49425: Re: phInstaller - Photon-based pkgsrc installer http://community.qnx.com/sf/go/post49425 This is a very cool idea, could you give us an update? Any update ? Sat, 13 Mar 2010 15:55:12 GMT http://community.qnx.com/sf/go/post49425 Marcello Borelli 2010-03-13T15:55:12Z post49164: Re: Could the Patches be made available that were use to produce the repository621a? http://community.qnx.com/sf/go/post49164 > There used to be a public cvs repository that was used to coordinate > development on the Unsupported CD. However, I think that it has been lost in > the major overhauls that the QNX website has experienced since then. > > It will be a little more difficult to ferret out the necessary patches but > there is a source archive that is included with the iso image version of the 6 > .2.1A 3rd Party Repository. You should be able to figure it out with a copy of > the original source and diff. > > You can download it from here: > > http://qnx.com/download/feature.html?programid=9978 Hi I've tried this one, and it does not work. QNX installer segfaults while downloading the icons. Reading http://www.qnx.com/developers/articles/article_877_1.html I've find out that repository.qrm have the icons, so I opened it and delete the "icon" part (although it linked to a page that was working, so I don't really know why it is fixed) as the attached patch does and it works for me now. To apply the patch I've just mounted the iso and copy it to somewhere available in my http server, then cd into the repository dir and apply the patch (in repository/ there is the repository.qrm file that we need to patch) Hope it helps Thanks, Rodrigo Wed, 10 Mar 2010 14:30:01 GMT http://community.qnx.com/sf/go/post49164 Rodrigo Campos 2010-03-10T14:30:01Z post49162: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49162 On Wed, Mar 10, 2010 at 03:56:41AM -0500, Michael Pfeiffer wrote: > > On Tue, Mar 09, 2010 at 06:57:17AM -0500, Michael Pfeiffer wrote: > > > Do you need some help with it? > > > > > > I think this port is very important for QNX after the system itself will > > lose more and more of its features > > > (installer: gone, package system: gone, > > What's wrong with pkgsrc ? :) > > pkgsrc is fine for developers but unusable for an end user. I can't tell somebody that only wants to install a software that he Check out the binary packages page: http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages Regards, -seanb Wed, 10 Mar 2010 14:18:05 GMT http://community.qnx.com/sf/go/post49162 Sean Boudreau(deleted) 2010-03-10T14:18:05Z post49145: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49145 > On Tue, Mar 09, 2010 at 06:57:17AM -0500, Michael Pfeiffer wrote: > > Do you need some help with it? > > > > I think this port is very important for QNX after the system itself will > lose more and more of its features > > (installer: gone, package system: gone, > What's wrong with pkgsrc ? :) pkgsrc is fine for developers but unusable for an end user. I can't tell somebody that only wants to install a software that he - has to check out the pkgsrc - modify some environment variables - do the bootstrapping - compile a specific project - when downloading fails (as it is true for several MESA-projects) search for them, download them an copy them to the correct directory - try to compile again Here the package system has been much more elegant, only some packages needed to be installed and verything was fine. At least I do not understand why it is gone, RPM/DEB is used widely and QNX drops its own package system... Wed, 10 Mar 2010 08:56:40 GMT http://community.qnx.com/sf/go/post49145 Michael Pfeiffer 2010-03-10T08:56:40Z post49079: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49079 On Tue, Mar 09, 2010 at 06:57:17AM -0500, Michael Pfeiffer wrote: > Do you need some help with it? > > I think this port is very important for QNX after the system itself will lose more and more of its features > (installer: gone, package system: gone, What's wrong with pkgsrc ? :) > IDE: gone...) AFAIK the big hurdle for the ide is java. A good start might be to get lang/openjdk7 going but that's a tricky one since it needs an existing java environment so probably some sort of cross compile on linux... As far as X goes I'd like to see a native port (no photon). We've made some good progress but there's still a few pieces missing. Regards, -seanb Tue, 09 Mar 2010 14:02:34 GMT http://community.qnx.com/sf/go/post49079 Sean Boudreau(deleted) 2010-03-09T14:02:34Z post49066: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post49066 Do you need some help with it? I think this port is very important for QNX after the system itself will lose more and more of its features (installer: gone, package system: gone, IDE: gone...) Tue, 09 Mar 2010 11:57:17 GMT http://community.qnx.com/sf/go/post49066 Michael Pfeiffer 2010-03-09T11:57:17Z post48198: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post48198 Had some work in the last weeks so I could not work on xphoton. But I can try to finish a first alpha in the next days. I will keep you informed. Wed, 24 Feb 2010 17:28:50 GMT http://community.qnx.com/sf/go/post48198 André Wösten 2010-02-24T17:28:50Z post48193: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post48193 Hi André, any progress in xphoton port Wed, 24 Feb 2010 16:52:48 GMT http://community.qnx.com/sf/go/post48193 bogdan celer 2010-02-24T16:52:48Z post47998: SLang problem while building mc http://community.qnx.com/sf/go/post47998 Cannot build mc with default settings. Problem with the slang. The building of mc is succesfull if replace slang in options.mk with ncurses. PKG_SUGGESTED_OPTIONS= charset edit ncurses subshell vfs Tue, 23 Feb 2010 14:57:20 GMT http://community.qnx.com/sf/go/post47998 Serj Kalichev 2010-02-23T14:57:20Z post46891: Re: How to configure bmake for source packages search on local filesystem? http://community.qnx.com/sf/go/post46891 On Tue, Feb 09, 2010 at 03:14:02AM -0500, Pavel Vlasov wrote: > I try to build programs from pkgsrc, but it require internet connection for fetching source code packages. > > My qnx 6.3.2 machine don't have internet connection, but I can download packages manually. > > How to configure bmake for source packages search on local filesystem? > Put them in pkgsrc/distfiles Regard, -seanb Tue, 09 Feb 2010 12:56:23 GMT http://community.qnx.com/sf/go/post46891 Sean Boudreau(deleted) 2010-02-09T12:56:23Z post46877: How to configure bmake for source packages search on local filesystem? http://community.qnx.com/sf/go/post46877 I try to build programs from pkgsrc, but it require internet connection for fetching source code packages. My qnx 6.3.2 machine don't have internet connection, but I can download packages manually. How to configure bmake for source packages search on local filesystem? Thank you! Tue, 09 Feb 2010 08:14:02 GMT http://community.qnx.com/sf/go/post46877 Pavel Vlasov 2010-02-09T08:14:02Z post45427: Re: problem running bootstrap http://community.qnx.com/sf/go/post45427 Problem solved. I removed ftperr.h from work/pkgtools/pkg_install/work/libfetch and re-executed bootstrap. For some reason, this file was already in the directory with size 0 (so make didn't generate it, and the compile failed). Mon, 18 Jan 2010 19:11:38 GMT http://community.qnx.com/sf/go/post45427 David Terry(deleted) 2010-01-18T19:11:38Z post45388: problem running bootstrap http://community.qnx.com/sf/go/post45388 Hi, I'm trying to build HEAD_640 version, but bootstrap is failing. Can anyone suggest a fix for this (or should I switch to HEAD_641)? Last lines of ouput are below: config.status: executing depfiles commands cd /pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libarchive && /usr/bin/env MACHINE_ARCH=i386 OPSYS=QNX USETOOLS=no CC=gcc CFLAGS=-O2\ -I/usr/include CPPFLAGS=-D_LARGEFILE_SOURCE\ -D_LARGE_FILES\ -D_FILE_OFFSET_BITS=64\ -DDEF_UMASK=0002\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/bzip2\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/zlib\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libarchive/libarchive\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libfetch\ -DHAVE_NBCOMPAT_H=1\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libnbcompat\ -I/usr/include CXX=c++ CXXFLAGS=-O2\ -I/usr/include COMPILER_RPATH_FLAG=-Wl,-R F77=f77 FC=f77 FFLAGS=-O LANG=C LC_COLLATE=C LC_CTYPE=C LC_MESSAGES=C LC_MONETARY=C LC_NUMERIC=C LC_TIME=C LDFLAGS=-L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/bzip2\ -L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/zlib\ -L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libarchive/.libs\ -L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libfetch\ -L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libnbcompat\ -L/usr/lib\ -Wl,-R/usr/lib\ -Wl,-R/usr/pkg/lib LINKER_RPATH_FLAG=-R PATH=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.wrapper/bin:/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.buildlink/bin:/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.gcc/bin:/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.tools/bin:/usr/pkg/bin:/usr/pkg/bin:/usr/pkg/sbin::/sbin:/usr/sbin:/bin:/usr/bin:/usr/photon/bin:/usr/photon/appbuilder:/opt/X11R6/bin:/usr/X11R6/bin:/usr/local/bin:/opt/bin:/opt/sbin:/usr/qnx640/host/qnx6/x86/usr/bin:/usr/qnx640/host/qnx6/x86/usr/sbin:/usr/qnx640/host/qnx6/x86/sbin:/usr/qnx640/host/qnx6/x86/bin:/usr/qnx640/host/qnx6/x86/usr/photon/appbuilder:/sbin:/usr/sbin:/usr/pkg/bin:/usr/pkg/bin PREFIX=/usr/pkg PKG_SYSCONFDIR=/usr/pkg/etc CXXCPP=cpp HOME=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.home CPP=cpp LINK_ALL_LIBGCC_HACK= LOCALBASE=/usr/pkg NO_WHOLE_ARCHIVE_FLAG=-Wl,--no-whole-archive WHOLE_ARCHIVE_FLAG=-Wl,--whole-archive X11BASE=/usr/pkg X11PREFIX=/usr/pkg PKGMANDIR=man MAKECONF=/dev/null OBJECT_FMT=ELF USETOOLS=no BSD_INSTALL_PROGRAM=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -s\ -o\ root\ -g\ root\ -m\ 555 BSD_INSTALL_SCRIPT=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 555 BSD_INSTALL_LIB=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 555 BSD_INSTALL_DATA=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 444 BSD_INSTALL_MAN=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 444 BSD_INSTALL=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh BSD_INSTALL_PROGRAM_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_SCRIPT_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_LIB_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_DATA_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_MAN_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_GAME=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -s\ -o\ root\ -g\ root\ -m\ 555 BSD_INSTALL_GAME_DATA=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 444 BSD_INSTALL_GAME_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 INSTALL_INFO= MAKEINFO=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.tools/bin/makeinfo PKG_CONFIG= PKG_CONFIG_LIBDIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.buildlink/lib/pkgconfig:/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.buildlink/share/pkgconfig PKG_CONFIG_LOG=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.pkg-config.log PKG_CONFIG_PATH= WRAPPER_DEBUG=no WRAPPER_UPDATE_CACHE=yes WRAPPER_REORDER=yes VIEWBASE=/usr/pkg /pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/bmake -f Makefile cat ./libarchive/test/test_*.c | grep DEFINE_TEST > libarchive/test/list.h cat ./tar/test/test_*.c | grep DEFINE_TEST > tar/test/list.h cat ./cpio/test/test_*.c | grep DEFINE_TEST > cpio/test/list.h /pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/bmake all-am cd /pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libfetch && /usr/bin/env MACHINE_ARCH=i386 OPSYS=QNX USETOOLS=no CC=gcc CFLAGS=-O2\ -I/usr/include CPPFLAGS=-D_LARGEFILE_SOURCE\ -D_LARGE_FILES\ -D_FILE_OFFSET_BITS=64\ -DDEF_UMASK=0002\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/bzip2\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/zlib\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libarchive/libarchive\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libfetch\ -DHAVE_NBCOMPAT_H=1\ -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libnbcompat\ -I/usr/include CXX=c++ CXXFLAGS=-O2\ -I/usr/include COMPILER_RPATH_FLAG=-Wl,-R F77=f77 FC=f77 FFLAGS=-O LANG=C LC_COLLATE=C LC_CTYPE=C LC_MESSAGES=C LC_MONETARY=C LC_NUMERIC=C LC_TIME=C LDFLAGS=-L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/bzip2\ -L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/zlib\ -L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libarchive/.libs\ -L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libfetch\ -L/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libnbcompat\ -L/usr/lib\ -Wl,-R/usr/lib\ -Wl,-R/usr/pkg/lib LINKER_RPATH_FLAG=-R PATH=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.wrapper/bin:/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.buildlink/bin:/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.gcc/bin:/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.tools/bin:/usr/pkg/bin:/usr/pkg/bin:/usr/pkg/sbin::/sbin:/usr/sbin:/bin:/usr/bin:/usr/photon/bin:/usr/photon/appbuilder:/opt/X11R6/bin:/usr/X11R6/bin:/usr/local/bin:/opt/bin:/opt/sbin:/usr/qnx640/host/qnx6/x86/usr/bin:/usr/qnx640/host/qnx6/x86/usr/sbin:/usr/qnx640/host/qnx6/x86/sbin:/usr/qnx640/host/qnx6/x86/bin:/usr/qnx640/host/qnx6/x86/usr/photon/appbuilder:/sbin:/usr/sbin:/usr/pkg/bin:/usr/pkg/bin PREFIX=/usr/pkg PKG_SYSCONFDIR=/usr/pkg/etc CXXCPP=cpp HOME=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.home CPP=cpp LINK_ALL_LIBGCC_HACK= LOCALBASE=/usr/pkg NO_WHOLE_ARCHIVE_FLAG=-Wl,--no-whole-archive WHOLE_ARCHIVE_FLAG=-Wl,--whole-archive X11BASE=/usr/pkg X11PREFIX=/usr/pkg PKGMANDIR=man MAKECONF=/dev/null OBJECT_FMT=ELF USETOOLS=no BSD_INSTALL_PROGRAM=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -s\ -o\ root\ -g\ root\ -m\ 555 BSD_INSTALL_SCRIPT=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 555 BSD_INSTALL_LIB=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 555 BSD_INSTALL_DATA=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 444 BSD_INSTALL_MAN=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 444 BSD_INSTALL=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh BSD_INSTALL_PROGRAM_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_SCRIPT_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_LIB_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_DATA_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_MAN_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 BSD_INSTALL_GAME=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -s\ -o\ root\ -g\ root\ -m\ 555 BSD_INSTALL_GAME_DATA=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -c\ -o\ root\ -g\ root\ -m\ 444 BSD_INSTALL_GAME_DIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/install-sh\ -d\ -o\ root\ -g\ root\ -m\ 755 INSTALL_INFO= MAKEINFO=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.tools/bin/makeinfo PKG_CONFIG= PKG_CONFIG_LIBDIR=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.buildlink/lib/pkgconfig:/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.buildlink/share/pkgconfig PKG_CONFIG_LOG=/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/.pkg-config.log PKG_CONFIG_PATH= WRAPPER_DEBUG=no WRAPPER_UPDATE_CACHE=yes WRAPPER_REORDER=yes VIEWBASE=/usr/pkg /pkgsrc/HEAD_640/pkgsrc/bootstrap/work/bin/bmake -f Makefile depend all gcc -O2 -I/usr/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wreturn-type -Wcast-qual -Wpointer-arith -Wwrite-strings -Wswitch -Wshadow -Werror -D_LARGEFILE_SOURCE -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 -DDEF_UMASK=0002 -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/bzip2 -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/zlib -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libarchive/libarchive -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libfetch -DHAVE_NBCOMPAT_H=1 -I/pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libnbcompat -I/usr/include -I. -D_LARGEFILE_SOURCE -D_LARGE_FILES -DFTP_COMBINE_CWDS -c ftp.c ftp.c: In function 'ftp_chkerr': ftp.c:189: error: 'ftp_errlist' undeclared (first use in this function) ftp.c:189: error: (Each undeclared identifier is reported only once ftp.c:189: error: for each function it appears in.) ftp.c: In function 'ftp_cwd': ftp.c:305: error: 'ftp_errlist' undeclared (first use in this function) ftp.c: In function 'ftp_stat': ftp.c:436: error: 'ftp_errlist' undeclared (first use in this function) ftp.c: In function 'ftp_transfer': ftp.c:919: error: 'ftp_errlist' undeclared (first use in this function) ftp.c: In function 'ftp_connect': ftp.c:1029: error: 'ftp_errlist' undeclared (first use in this function) *** Error code 1 Stop. bmake: stopped in /pkgsrc/HEAD_640/pkgsrc/bootstrap/work/wrk/pkgtools/pkg_install/work/libfetch *** Error code 1 Stop. bmake: stopped in /pkgsrc/HEAD_640/pkgsrc/pkgtools/pkg_install WARNING: *** Please consider adding c++ to USE_LANGUAGES in the package Makefile. WARNING: *** Please consider adding fortran to USE_LANGUAGES in the package Makefile. *** Error code 1 Stop. bmake: stopped in /pkgsrc/HEAD_640/pkgsrc/pkgtools/pkg_install ===> exited with status 1 aborted. # Mon, 18 Jan 2010 14:52:11 GMT http://community.qnx.com/sf/go/post45388 David Terry(deleted) 2010-01-18T14:52:11Z post45073: RE: libxml2 http://community.qnx.com/sf/go/post45073 The libxml2 used by WebKit is shipped in 6.4.1 for 4 target processors including ARM. Max -----Original Message----- From: Sean Boudreau [mailto:community-noreply@qnx.com] Sent: Tuesday, January 12, 2010 11:40 AM To: general-pkgsrc Subject: Re: libxml2 On Tue, Jan 12, 2010 at 11:15:42AM -0500, Mitchell Schoenbrun wrote: > Most definitely. > But not for arm currently. I personally haven't looked at cross platform support yet. -seanb _______________________________________________ General http://community.qnx.com/sf/go/post45064 Tue, 12 Jan 2010 17:01:57 GMT http://community.qnx.com/sf/go/post45073 Max Feil 2010-01-12T17:01:57Z post45068: RE: libxml2 http://community.qnx.com/sf/go/post45068 This library is already shipped with QNX 6.4.1 as one of the open source libraries used by the WebKit browser library. You should be able to find it under $QNX_TARGET/opt/webkit/. Regards, Max -----Original Message----- From: Marcel Meerstetter [mailto:community-noreply@qnx.com] Sent: Tuesday, January 12, 2010 11:04 AM To: general-pkgsrc Subject: libxml2 Hello again, I am running QNX 6.4.1 on an arm system. I would like to use libxml2 to parse xml files. Is this available in the pkgsrc? if not, is there another xml parser? Thanks Marcel _______________________________________________ General http://community.qnx.com/sf/go/post45055 Tue, 12 Jan 2010 16:49:35 GMT http://community.qnx.com/sf/go/post45068 Max Feil 2010-01-12T16:49:35Z post45064: Re: libxml2 http://community.qnx.com/sf/go/post45064 On Tue, Jan 12, 2010 at 11:15:42AM -0500, Mitchell Schoenbrun wrote: > Most definitely. > But not for arm currently. I personally haven't looked at cross platform support yet. -seanb Tue, 12 Jan 2010 16:39:35 GMT http://community.qnx.com/sf/go/post45064 Sean Boudreau(deleted) 2010-01-12T16:39:35Z post45061: Re: libxml2 http://community.qnx.com/sf/go/post45061 Most definitely. Tue, 12 Jan 2010 16:15:42 GMT http://community.qnx.com/sf/go/post45061 Mitchell Schoenbrun 2010-01-12T16:15:42Z post45055: libxml2 http://community.qnx.com/sf/go/post45055 Hello again, I am running QNX 6.4.1 on an arm system. I would like to use libxml2 to parse xml files. Is this available in the pkgsrc? if not, is there another xml parser? Thanks Marcel Tue, 12 Jan 2010 16:04:07 GMT http://community.qnx.com/sf/go/post45055 Marcel Meerstetter 2010-01-12T16:04:07Z post45054: sqlite http://community.qnx.com/sf/go/post45054 Hello, I saw that there is sqlite in the pkgsrc, however this is build for x86. I am running QNX on an arm. are there any prebuild binaries for this? or do i have to download the sqlite code and build it for arm? if so, are there any instructions? thanks Marcel Tue, 12 Jan 2010 16:01:33 GMT http://community.qnx.com/sf/go/post45054 Marcel Meerstetter 2010-01-12T16:01:33Z post44710: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post44710 Would be great to see the XPhoton on 6.4.1 I'm still working of porting the native xfree to QNX 6.4.1 but I have still problems with the touchscreen driver :-(. Poor documentation But as a workaround this would be great to have. Please let me know if you have some results released. many thx Thu, 07 Jan 2010 09:16:58 GMT http://community.qnx.com/sf/go/post44710 Kasberger Andreas 2010-01-07T09:16:58Z post44468: Re: GNUstep in QNX http://community.qnx.com/sf/go/post44468 An Objective-C implementation comes in two components; a compiler and a runtime library. If you are using a GCC 4.4.2 to compile objc code then you should use a GCC 4.4.2 of the Objective-C runtime library that came with compiler. Currently, no features of Objective-C 2 work with GCC. But if we want to compile Objective-C 2 programm you should use runtime libobjc2 from GNUstep or Étoilé's ObjectiveC2 framework. For more advanced features, currently only supported if you compile with Clang, you will need the GNUstep runtime. The GNUstep runtime supports two ABIs. One is compatible with the GCC runtime, the other is new and is designed to support Objective-C 2. Clang is a new front end for LLVM( Low-Level Virtual Machine ). If you compile with Clang then you have access to declared properties, fast enumeration, and blocks. If you compile with the -fobjc-nonfragile-abi flag then you will use the new ABI. This is only supported with the GNUstep runtime. This adds: 1. Property introspection 2. Introspection on optional protocol methods 3. Non-fragile instance variables 4. Forwarding proxy support I compiled on QNX 6.4.1 libobjc2 from GNUstep how also LLVM and Clang. Clang compiles both programmes in C and objc. It for compilation objc was one should add ADDITIONAL_CFLAGS = -D__QNXNTO__ -D__X86__ -D__LITTLEENDIAN__ in GNUmakefile or to use: clang -D__QNXNTO__ -D__X86__ -D__LITTLEENDIAN__ prg.m -L / usr / pkg / lib -lobjc Catalogue / usr / pkg / lib is to runtime path libobjc2 from GNUstep - libobjc.so.4 and clang will use this library and not GCC runtime. I compiled on QNX 6.4.1 libobjc2 from GNUstep how also LLVM and clang. clang compiles both programmes in C and objc. For compilation objc we should add ADDITIONAL_CFLAGS = -D__QNXNTO__ -D__X86__ -D__LITTLEENDIAN__ in GNUmakefile or to use: clang -D__QNXNTO__ -D__X86__ -D__LITTLEENDIAN__ prg.m -L / usr / pkg / lib -lobjc /usr/pkg/lib is directory to runtime libobjc2 from GNUstep - libobjc.so.4 and clang will use this library and not GCC runtime. I do not know or someone this will interest but on http://www.ajam.org.pl I will place the description of how to compile LLVM, clang and libobjc2 tomorrow. Thu, 31 Dec 2009 12:17:17 GMT http://community.qnx.com/sf/go/post44468 bogdan celer 2009-12-31T12:17:17Z post44388: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post44388 Working better and better.... XPDF http://www.localmindprovider.com/xphoton3.jpg Wed, 23 Dec 2009 23:20:31 GMT http://community.qnx.com/sf/go/post44388 André Wösten 2009-12-23T23:20:31Z post44378: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post44378 You're right. So I will distribute it as diff in first instance. Today I finished keyboard handling for foreign keyboard layouts. German and other keyboards are supported now. Asian keyboards unfortunately not. I did not completely figured out how to build that. I will put some news here when I'm ready with the first version. André Wed, 23 Dec 2009 19:01:39 GMT http://community.qnx.com/sf/go/post44378 André Wösten 2009-12-23T19:01:39Z post44372: Re: Why -I/usr/pkg/include in pkgrsc does not work ? http://community.qnx.com/sf/go/post44372 > When I compiled new version libiconv in pkgrsc > Why -I/usr/pkg/include in pkgrsc does not work ? configure is looking at your system and tries to figure out what is part of the system. iconv.h is part of libiconv you are compileing!? So it is the right thing to ignore any older iconv.h derived from any libiconv. So I suppose that the shown error is intentional. You may have a look into the script configure if you are interested in the details ... The pkgsrc tools may use another gcc than the one you are using when invoking gcc on your own. Search for gcc after a successfull build in the work directory, e.g. by using find . -name gcc and will find wrappers calling gcc with additional parameters etc. ... Wed, 23 Dec 2009 17:51:46 GMT http://community.qnx.com/sf/go/post44372 Christian Leutloff 2009-12-23T17:51:46Z post44371: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post44371 Hi André, that are really cool news! I have been locking for running X programs against up to date X server under Photon for some years. 2 years ago I got to the point where the xserver was build successfully, but was not starting - but then I have to gave up 8-( You will find my work in the Log of pkgsrc ... > Now I'm asking myself how to distribute xphoton. The perhaps easiest way may be to post the required changes to this forum as a unified diff. This would allow other people to have a look at the required changes. In the long run the best thing would be to get the changes merged into xorg. This step has the advantage that any changes to xorg apply to the xphoton, too. The port or better the support is then visible to the largest extend. An intermediate step would be to prepare patches against the pkgsrc svn repository here at foundry24. This way many QNX users will benefit from your work! (I am not working for QNX.) Bye Christian Wed, 23 Dec 2009 17:30:31 GMT http://community.qnx.com/sf/go/post44371 Christian Leutloff 2009-12-23T17:30:31Z post44172: Re: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post44172 Finished the basics for event handling today. I needed to replace most of the event stuff of the xphoton-Xfree-version, because in X.org the internal events aren't built manually, but with special functions (GetPointerEvents and so on). Was really bloodcurdling :-) But now, keyboard and mouse input are working for basic application like xcalc, xev, xmore, xterm etc. Now I'm asking myself how to distribute xphoton. Since I changed some stuff of the rootless library which has been originally developed for Xquartz and also changed many makefiles and configures I don't know if I should just build this as diff / pkgsrc patch. Sean or someone else @QNX, could you give me some advice how to "organize" this project? Sun, 20 Dec 2009 22:34:36 GMT http://community.qnx.com/sf/go/post44172 André Wösten 2009-12-20T22:34:36Z post44169: xphoton Port for QNX 6.4.1 (with preview) !!! http://community.qnx.com/sf/go/post44169 Hi there, I think I have a good message. Today I got xphoton on the new X.ORG on QNX 6.4.1 up and running. After much struggling with the X11 and xphoton code I integrated xphoton in the current X.ORG again. Most of the old xphoton code has been used (thanks seanb!) and much things have been adapted. Here a little screenshot of it: http://www.localmindprovider.com/xphoton.jpg It's still not receiving any mouse/keyboard events. When this is done, I will release a first alpha version of it. Regards, André Sun, 20 Dec 2009 02:37:30 GMT http://community.qnx.com/sf/go/post44169 André Wösten 2009-12-20T02:37:30Z post44054: Re: Issue building mercurial. Real issue is building xmlto 0.0.21 http://community.qnx.com/sf/go/post44054 Additional problem with mercurial. After updating xml2-xxx, I started the mercurial build. During the build process I received the output below. This is an error related to the building of xmlto. The QNX NetBSD has the version of xmlto at 0.0.18 for 6.4.0 The 6.4.1 source for pkgsrc at community.qnx.com is for version xmlto 0.0.21 However, version 0.0.21 does not build on my system. See below. See NetBSD posting: http://mail-index.netbsd.org/pkgsrc-bugs/2009/04/16/msg031710.html ================================================== ===> Building for xmlto-0.0.21nb1 /usr/pkg/bin/bmake all-am depbase=`echo xmlif/xmlif.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; gcc -DHAVE_CONFIG_H -I. -I/usr/pkg/include -I/usr/include -O2 -I/usr/pkg/include -I/usr/include -MT xmlif/xmlif.o -MD -MP -MF $depbase.Tpo -c -o xmlif/xmlif.o xmlif/xmlif.c && mv -f $depbase.Tpo $depbase.Po gcc -O2 -I/usr/pkg/include -I/usr/include -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -L/usr/lib -Wl,-R/usr/lib -o xmlif/xmlif xmlif/xmlif.o for xml in xmlif.xml xmlto.xml; do FORMAT_DIR=./format /usr/pkg/bin/bash ./xmlto -o man/man1 man ./doc/$xml ; done || ( RC=$?; cat ./FAQ; exit $RC ) Note: meta source : no *info/productname or alternative xmlif Note: meta source : see http://docbook.sf.net/el/productname xmlif Note: meta source : no refentry/refmeta/refmiscinfo@class=source xmlif Note: meta source : see http://docbook.sf.net/el/refmiscinfo xmlif Note: meta version: no *info/productnumber or alternative xmlif Note: meta version: see http://docbook.sf.net/el/productnumber xmlif Note: meta version: no refentry/refmeta/refmiscinfo@class=version xmlif Note: meta version: see http://docbook.sf.net/el/refmiscinfo xmlif Warn: meta source : no fallback for source, so inserted a fixme xmlif Note: meta manual : no titled ancestor of refentry xmlif Note: meta manual : no refentry/refmeta/refmiscinfo@class=manual xmlif Note: meta manual : see http://docbook.sf.net/el/refmiscinfo xmlif Warn: meta manual : no fallback for manual, so inserted a fixme xmlif Warn: AUTHOR sect.: no personblurb|contrib for Eric S\&. Raymond xmlif Note: AUTHOR sect.: see see http://docbook.sf.net/el/contrib xmlif Note: AUTHOR sect.: see see http://docbook.sf.net/el/personblurb xmlif Note: Writing xmlif.1 Warn: AUTHOR sect.: no personblurb|contrib for Tim Waugh Note: AUTHOR sect.: see see http://docbook.sf.net/el/contrib Note: AUTHOR sect.: see see http://docbook.sf.net/el/personblurb Note: Writing xmlto.1 Q: I'm trying to build xmlto on my Debian box, but it doesn't work. A: If you get `Attempt to load network entity' errors when building xmlto, your system does not have the required support for XML Catalogs (http://www.oasis-open.org/committees/entity/spec-2001-08-06.html). In particular, Debian has no support for these. Try the Fedora Project <http://fedoraproject.org>. *** Error code 1 Stop. bmake: stopped in /pkgsrc/textproc/xmlto/work/xmlto-0.0.21 *** Error code 1 ====================================================== Thu, 17 Dec 2009 19:53:48 GMT http://community.qnx.com/sf/go/post44054 Keith Smith 2009-12-17T19:53:48Z post44047: Issue building mercurial http://community.qnx.com/sf/go/post44047 Just to let everyone know, while building mercurial I received a vulnerability warning for the libxml2 package, which stopped the building of mercurial I looked at ftp://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/textproc/libxml2/README.html The latest version is 2.7.6 The version available from QNX sub-directory is 2.7.3 as well as the source in community.qnx.com I used ftp to download the latest version libxml2 for netbsd, built it. Now mercurial builds correctly. Hope you find this information useful Thu, 17 Dec 2009 18:34:58 GMT http://community.qnx.com/sf/go/post44047 Keith Smith 2009-12-17T18:34:58Z post44007: Re: Problems installing mercurial http://community.qnx.com/sf/go/post44007 Keith Smith wrote: > I have tried to download and install mercurial from HEAD_640 at ftp.NetBSD.org onto my native QNX 6.4.1 system. mercurial does not exist for 6.4.1. > > During the installation the process hangs extracting a python file. This happened more than once, but at different python files. > > pidin showed pkg_add reply blocked on /sbin/io-pkt-v4-hc > Could be any number of things, possibly waiting for data to arrive on a socket and maybe there are network problems. Perhaps try pinging the servers, tcpdumping the traffic to see if there are interruptions or time outs, look at netstat -p ip/tcp/arp/icmp etc, and sockstat etc. Sorry, not much concrete, just ideas how to start troubleshooting... /P Thu, 17 Dec 2009 13:43:03 GMT http://community.qnx.com/sf/go/post44007 Patrik Lahti 2009-12-17T13:43:03Z post43979: IMAKE_MANINSTALL error http://community.qnx.com/sf/go/post43979 Build python24 under 641 source, I got an error regarding IMAKE_MANINSTALL not defined. Is this because QNX does not use 'man'? Thu, 17 Dec 2009 01:39:15 GMT http://community.qnx.com/sf/go/post43979 Keith Smith 2009-12-17T01:39:15Z post43977: Re: Avoid configuring QNX on every package build http://community.qnx.com/sf/go/post43977 On Wed, Dec 16, 2009 at 07:31:16PM -0500, Keith Smith wrote: > I am successfully building packages from source. > > However, each build repeatedly asks questions about the OS/compiler/etc. configuration. > > Like is sys/types.h supported? yes/no > > Is there a utility that will store these configurations in a global place for all the packages to use and not constantly have to re-configure QNX on every package build Not that I'm aware of, unfortunately... -seanb Thu, 17 Dec 2009 00:33:13 GMT http://community.qnx.com/sf/go/post43977 Sean Boudreau(deleted) 2009-12-17T00:33:13Z post43976: Re: REAME_QNX questions http://community.qnx.com/sf/go/post43976 Thanks. That's a relief. Thu, 17 Dec 2009 00:31:48 GMT http://community.qnx.com/sf/go/post43976 Keith Smith 2009-12-17T00:31:48Z post43975: Avoid configuring QNX on every package build http://community.qnx.com/sf/go/post43975 I am successfully building packages from source. However, each build repeatedly asks questions about the OS/compiler/etc. configuration. Like is sys/types.h supported? yes/no Is there a utility that will store these configurations in a global place for all the packages to use and not constantly have to re-configure QNX on every package build Thu, 17 Dec 2009 00:31:16 GMT http://community.qnx.com/sf/go/post43975 Keith Smith 2009-12-17T00:31:16Z post43974: Re: REAME_QNX questions http://community.qnx.com/sf/go/post43974 On Wed, Dec 16, 2009 at 05:49:05PM -0500, Keith Smith wrote: > I have downloaded all the sources from /community.qnx.com.../HEAD_641 and saved them in /pkgsrc > > I started reading the README_QNX file and have questions. > > 1) Is the 'patch' program referred to in "compile and install new 'patch' utility from HEAD" the patch-2.5xxx in devel? > > 2) "Install libtermcap with fix for PR 45283" Where does one get 'libtermcap"? I don't see it in /devel/lib* > That readme applied to QNX 6.3.2. I removed it. With 6.4.1 just download (cd pkgsrc/bootstrap && bootstrap) then bmake your favourite package. YMMV. Regards, -seanb Wed, 16 Dec 2009 23:23:51 GMT http://community.qnx.com/sf/go/post43974 Sean Boudreau(deleted) 2009-12-16T23:23:51Z post43972: REAME_QNX questions http://community.qnx.com/sf/go/post43972 I have downloaded all the sources from /community.qnx.com.../HEAD_641 and saved them in /pkgsrc I started reading the README_QNX file and have questions. 1) Is the 'patch' program referred to in "compile and install new 'patch' utility from HEAD" the patch-2.5xxx in devel? 2) "Install libtermcap with fix for PR 45283" Where does one get 'libtermcap"? I don't see it in /devel/lib* Wed, 16 Dec 2009 22:49:04 GMT http://community.qnx.com/sf/go/post43972 Keith Smith 2009-12-16T22:49:04Z post43969: Problems installing mercurial http://community.qnx.com/sf/go/post43969 I have tried to download and install mercurial from HEAD_640 at ftp.NetBSD.org onto my native QNX 6.4.1 system. mercurial does not exist for 6.4.1. During the installation the process hangs extracting a python file. This happened more than once, but at different python files. pidin showed pkg_add reply blocked on /sbin/io-pkt-v4-hc What can I do next to find the source of the problem? Keith Smith Wed, 16 Dec 2009 22:33:53 GMT http://community.qnx.com/sf/go/post43969 Keith Smith 2009-12-16T22:33:53Z post43922: Re: Why -I/usr/pkg/include in pkgrsc does not work ? http://community.qnx.com/sf/go/post43922 > I think you should start with the assumption that your problem is local to > your machine. One possible area where there might be a problem is > permissions. This can be discovered by running ./configure in super user > mode. I've compiled iconv with pkgsrc without problems in the past. I checked this is not the problem with permissions. I work in super user mode. I've compiled iconv with pkgsrc without problems too. But I always check config.log and it interested me why so happens: configure:14008: checking for iconv Wed, 16 Dec 2009 11:03:53 GMT http://community.qnx.com/sf/go/post43922 bogdan celer 2009-12-16T11:03:53Z post43692: Re: Why -I/usr/pkg/include in pkgrsc does not work ? http://community.qnx.com/sf/go/post43692 I think you should start with the assumption that your problem is local to your machine. One possible area where there might be a problem is permissions. This can be discovered by running ./configure in super user mode. I've compiled iconv with pkgsrc without problems in the past. Fri, 11 Dec 2009 18:16:35 GMT http://community.qnx.com/sf/go/post43692 Mitchell Schoenbrun 2009-12-11T18:16:35Z post43680: Why -I/usr/pkg/include in pkgrsc does not work ? http://community.qnx.com/sf/go/post43680 When I compiled new version libiconv in pkgrsc in file config.log I found following record: configure:14008: checking for iconv configure:14042: gcc -o conftest -O2 -I/usr/pkg/include -Wl,-R/usr/pkg/lib conftest.c /usr/pkg/lib/libiconv.so -Wl,-rpath -Wl,/usr/pkg/lib >&5 conftest.c:30:19: fatal error: iconv.h: No such file or directory compilation terminated. But in directory /usr/pkg/include file iconv.h exists. And compilation conftest.c with use the same sequence: gcc -o conftest -O2 -I/usr/pkg/include -Wl,-R/usr/pkg/lib conftest.c /usr/pkg/lib/libiconv.so -Wl,-rpath -Wl,/usr/pkg/lib it be holds without problem. Why -I/usr/pkg/include in pkgrsc does not work ? Fri, 11 Dec 2009 17:27:32 GMT http://community.qnx.com/sf/go/post43680 bogdan celer 2009-12-11T17:27:32Z post43257: Re: phInstaller - Photon-based pkgsrc installer http://community.qnx.com/sf/go/post43257 Yes, I will continue these days now. I'm open to all ideas :-) André Sat, 05 Dec 2009 19:31:45 GMT http://community.qnx.com/sf/go/post43257 André Wösten 2009-12-05T19:31:45Z post42953: Re: Bandwidth Throttle? http://community.qnx.com/sf/go/post42953 Now it has pretty much stopped talking. I've got a connection established, but zero traffic. Sean Boudreau wrote: > There's no such limitation that I'm aware of. This would > be a foundry issue if something was awry though... > > -seanb > > > -----Original Message----- > From: Norton Allen [mailto:community-noreply@qnx.com] > Sent: Tue 12/1/2009 9:00 AM > To: general-pkgsrc > Subject: Bandwidth Throttle? > > I want to try building the latest version of sudo (1.7.2p1), which resolves a bug I'm encountering in 1.7.1. I am trying to checkout HEAD_641, but I only get a relatively short transfer before svn hangs. After about half an hour, it will time out, then I have to do an svn cleanup and/or start over. Is there a bandwidth limitation on the QNX end that is preventing the large checkout? > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post42940 > > > > > > > _______________________________________________ > > General > http://community.qnx.com/sf/go/post42946 > Tue, 01 Dec 2009 14:55:13 GMT http://community.qnx.com/sf/go/post42953 Norton Allen 2009-12-01T14:55:13Z post42946: RE: Bandwidth Throttle? http://community.qnx.com/sf/go/post42946 There's no such limitation that I'm aware of. This would be a foundry issue if something was awry though... -seanb -----Original Message----- From: Norton Allen [mailto:community-noreply@qnx.com] Sent: Tue 12/1/2009 9:00 AM To: general-pkgsrc Subject: Bandwidth Throttle? I want to try building the latest version of sudo (1.7.2p1), which resolves a bug I'm encountering in 1.7.1. I am trying to checkout HEAD_641, but I only get a relatively short transfer before svn hangs. After about half an hour, it will time out, then I have to do an svn cleanup and/or start over. Is there a bandwidth limitation on the QNX end that is preventing the large checkout? _______________________________________________ General http://community.qnx.com/sf/go/post42940 Tue, 01 Dec 2009 14:27:09 GMT http://community.qnx.com/sf/go/post42946 Sean Boudreau(deleted) 2009-12-01T14:27:09Z post42940: Bandwidth Throttle? http://community.qnx.com/sf/go/post42940 I want to try building the latest version of sudo (1.7.2p1), which resolves a bug I'm encountering in 1.7.1. I am trying to checkout HEAD_641, but I only get a relatively short transfer before svn hangs. After about half an hour, it will time out, then I have to do an svn cleanup and/or start over. Is there a bandwidth limitation on the QNX end that is preventing the large checkout? Tue, 01 Dec 2009 14:00:15 GMT http://community.qnx.com/sf/go/post42940 Norton Allen 2009-12-01T14:00:15Z post41130: Re: tcl-tls error http://community.qnx.com/sf/go/post41130 libssl.so is in /usr/lib/ :( I´ve tried to edit somethings i the configure file but the error is ever: ===> Building for tcl-tls-1.5.0nb1 rm -f libtls150.so ld -Bshareable -x -R /usr/pkg/lib -o libtls150.so tls.o tlsIO.o tlsBIO.o tlsX50 9.o fixstrtod.o -L/usr/pkg/lib -ltclstub84 -L/usr/lib -lssl -L/usr/lib -lcrypto /usr/qnx641/host/qnx6/x86/usr/bin/ld: cannot find -lssl *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls/work/tls1.5 *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls Mon, 02 Nov 2009 11:33:36 GMT http://community.qnx.com/sf/go/post41130 Alessandro Sangiuliano 2009-11-02T11:33:36Z post41122: Re: tcl-tls error http://community.qnx.com/sf/go/post41122 First check to see if there is a /usr/lib/libssl.so. If not, you have three choices. 1) Copy it there from where ever it currently is. 2) Create a soft link 3) Modify the tcl-tls install so that it looks where the library actually is. Typically this is a parameter to ./configure. Sun, 01 Nov 2009 11:10:57 GMT http://community.qnx.com/sf/go/post41122 Mitchell Schoenbrun 2009-11-01T11:10:57Z post41121: Re: tcl-tls error http://community.qnx.com/sf/go/post41121 i´ve installed openssl, but in tcl-tls when i run bmake install, the error is: ===> Building for tcl-tls-1.5.0nb1 rm -f libtls150.so ld -Bshareable -x -R /usr/pkg/lib -o libtls150.so tls.o tlsIO.o tlsBIO.o tlsX50 9.o fixstrtod.o -L/usr/pkg/lib -ltclstub84 -L/usr/lib -lssl -L/usr/lib -lcrypto /usr/qnx641/host/qnx6/x86/usr/bin/ld: cannot find -lssl *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls/work/tls1.5 *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls Sun, 01 Nov 2009 10:06:06 GMT http://community.qnx.com/sf/go/post41121 Alessandro Sangiuliano 2009-11-01T10:06:06Z post41120: Re: tcl-tls error http://community.qnx.com/sf/go/post41120 where can i find ssl in pkgsrc, i don´t find the ssl directory. What´s the exact name in pkgsrc? so i try to make it Sat, 31 Oct 2009 20:35:08 GMT http://community.qnx.com/sf/go/post41120 Alessandro Sangiuliano 2009-10-31T20:35:08Z post41119: Re: tcl-tls error http://community.qnx.com/sf/go/post41119 to install amsn i had previously installed pkgsrc, i had done ./bootstrap and than i´ve done: cd pkgsrc/chat/amsn bmake install it has compiled some source as: tcl8.4 and other but stopped on tcl-tls now i re-try to do bmake install in tcl-tsl Sat, 31 Oct 2009 20:05:12 GMT http://community.qnx.com/sf/go/post41119 Alessandro Sangiuliano 2009-10-31T20:05:12Z post41118: Re: tcl-tls error http://community.qnx.com/sf/go/post41118 Looks like SSL isn't installed. You could do this yourself but you might be better off taking a look at pkgsrc. http://community.qnx.com/sf/projects/pkgsrc/ Sat, 31 Oct 2009 19:29:41 GMT http://community.qnx.com/sf/go/post41118 Mitchell Schoenbrun 2009-10-31T19:29:41Z post41116: tcl-tls error http://community.qnx.com/sf/go/post41116 Hi all, i´m newbie in QNX and i want too learn it. My objective is to learn to develop on QNX micro-kernel (i´m an university student). I´ve tried to compile amsn,during the compilation the report was: ===> Building for tcl-tls-1.5.0nb1 rm -f libtls150.so ld -Bshareable -x -R /usr/pkg/lib -o libtls150.so tls.o tlsIO.o tlsBIO.o tlsX50 9.o fixstrtod.o -L/usr/pkg/lib -ltclstub84 -L/usr/lib -lssl -L/usr/lib -lcrypto /usr/qnx641/host/qnx6/x86/usr/bin/ld: cannot find -lssl *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls/work/tls1.5 *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/security/tcl-tls *** Error code 1 Stop. bmake: stopped in /HEAD_641/pkgsrc/chat/amsn How to fix this? i use qnx 6.4.1, i´ve done the bootstrap. Thanks to all in advance Sat, 31 Oct 2009 18:55:24 GMT http://community.qnx.com/sf/go/post41116 Alessandro Sangiuliano 2009-10-31T18:55:24Z post40989: Re: pkg_add and Perl http://community.qnx.com/sf/go/post40989 On Wed, Oct 28, 2009 at 09:39:00PM -0400, Leonid Khait wrote: > in QNX6.4.1 I install botstrap from binary and try to install some downloaded binary packages by pkg_add > > #pkg_add -v /path_to_package_archive/name_of_archive > > but had the problem > > pkg_add: no pkg found for perl>=5.0 > pkg_add: Can't install dependency perl>=5.0 > pkg_add: 1 package addittion filed > > and another time like > > pkg_add: no pkg found for mktemp>=1.5 > pkg_add: Can't install dependency mktemp>=1.5 > pkg_add: 1 package addittion filed > > > Where my mistake? Thankg you. Whatever package you're tring to install has dependencies. Try: # mkdir -p /var/tmp # PKG_PATH=ftp://ftp.netbsd.org/pub/pkgsrc/packages/QNX/i386/6.4.1_head_20090724/All \ pkg_add -v <pkg> Check out this page: http://community.qnx.com/sf/wiki/do/viewPage/projects.pkgsrc/wiki/BinaryPackages -seanb Thu, 29 Oct 2009 15:04:57 GMT http://community.qnx.com/sf/go/post40989 Sean Boudreau(deleted) 2009-10-29T15:04:57Z post40953: pkg_add and Perl http://community.qnx.com/sf/go/post40953 in QNX6.4.1 I install botstrap from binary and try to install some downloaded binary packages by pkg_add #pkg_add -v /path_to_package_archive/name_of_archive but had the problem pkg_add: no pkg found for perl>=5.0 pkg_add: Can't install dependency perl>=5.0 pkg_add: 1 package addittion filed and another time like pkg_add: no pkg found for mktemp>=1.5 pkg_add: Can't install dependency mktemp>=1.5 pkg_add: 1 package addittion filed Where my mistake? Thankg you. Thu, 29 Oct 2009 01:38:56 GMT http://community.qnx.com/sf/go/post40953 Leonid Khait(deleted) 2009-10-29T01:38:56Z post40751: GNUstep in QNX http://community.qnx.com/sf/go/post40751 This is my first version of the GNUstep (gnustep-make-2.2.0 and gnustep-base-1.19.30 for the QNX 6.4.1 I use objc compiler from my port gcc4.4.2/gcc4.5.0 Tue, 27 Oct 2009 11:08:16 GMT http://community.qnx.com/sf/go/post40751 bogdan celer 2009-10-27T11:08:16Z post40748: Gnome - gtk+ http://community.qnx.com/sf/go/post40748 My new port: x11/gtk+-2.18.3 Tue, 27 Oct 2009 10:58:46 GMT http://community.qnx.com/sf/go/post40748 bogdan celer 2009-10-27T10:58:46Z post40747: Gnome - glib2 http://community.qnx.com/sf/go/post40747 My new port: dev/glib 2.22.2 Tue, 27 Oct 2009 10:57:46 GMT http://community.qnx.com/sf/go/post40747 bogdan celer 2009-10-27T10:57:46Z post40746: Gnome - atk http://community.qnx.com/sf/go/post40746 My new port: dev/atk 1.28.0 Tue, 27 Oct 2009 10:56:04 GMT http://community.qnx.com/sf/go/post40746 bogdan celer 2009-10-27T10:56:04Z post40076: Re: QT4 - 4.5.1 http://community.qnx.com/sf/go/post40076 And packet for qt-4.5.3. Thu, 15 Oct 2009 19:22:01 GMT http://community.qnx.com/sf/go/post40076 bogdan celer 2009-10-15T19:22:01Z post39750: Re: QT4 - 4.5.1 http://community.qnx.com/sf/go/post39750 Maybe, you have patch for 4.5.3?) Tue, 13 Oct 2009 10:23:11 GMT http://community.qnx.com/sf/go/post39750 Anton Grachev 2009-10-13T10:23:11Z post39748: Re: audio/nas http://community.qnx.com/sf/go/post39748 Still can't build nas correctly. After complete bmake, enter bmake install command and have many errors such as pkg_admin: nas-1.8nb1: File `/usr/pkg/bin/auconvert' is in +CONTENTS but not on filesystem! pkg_admin: nas-1.8nb1: File `/usr/pkg/bin/auctl' is in +CONTENTS but not on filesystem! and etc. Tue, 13 Oct 2009 08:52:53 GMT http://community.qnx.com/sf/go/post39748 Anton Grachev 2009-10-13T08:52:53Z post39439: Re: Building Multimedia Apps in pkgsrc., and Oh Yes: Hello. http://community.qnx.com/sf/go/post39439 As it was, I decided to move off the free (but horrendous-ly noisy) server I was running Neutrino on, and moved to an 8GB Flash USB thumb disk. When running svn checkout, I kept running into the SVN closed connection error (Due to Apache timeouts) and was not getting anywhere fast, so I made use of the local hard disk (FAT32) to temp file the pkgsrc tree, and it now moved fine. The SVN timeouts were due to the Slowness of the 8GB Flash USB thumbdisk. I should know better, but for 19.99 for 8GB (Walmart Duracell) I'm not going to gripe about it... I should be able to do the rebuild of the getopt bits again. -sean Tue, 06 Oct 2009 16:57:07 GMT http://community.qnx.com/sf/go/post39439 Sean Kennedy(deleted) 2009-10-06T16:57:07Z post38864: Re: Building Multimedia Apps in pkgsrc., and Oh Yes: Hello. http://community.qnx.com/sf/go/post38864 Read the Diff, that is a good insight as to what is going on. A rebuild is a good idea considering my workaround. (ypres!) Wont rebuild --yet-- due to working a missing libxvidcore.def on a file that is there. That one has stumped me since it looks like a shell issue, but can't put my finger on it. (Thanks seanb for the diffinfo.) Mon, 28 Sep 2009 14:04:14 GMT http://community.qnx.com/sf/go/post38864 Sean Kennedy(deleted) 2009-09-28T14:04:14Z post38823: Re: Building Multimedia Apps in pkgsrc., and Oh Yes: Hello. http://community.qnx.com/sf/go/post38823 On Fri, Sep 25, 2009 at 03:39:14PM -0400, Sean Kennedy wrote: > Neat. Hey Hi Hello. > I'm used to FreeBSD / OpenBSD 'ports' collection as opposed to the pkgsrc collection used here in QNX. My First "difficult" build of course is the PKG "Mencoder" > > I work with transcoders Like Telestream and Rhozet, and work with Open Source Transcoders to compare the content / quality of content in an open manner. > > I also use mencoder and ffmpeg and x264 to transcode the AVC / MPEG4p10 content from my HD video camcorder when I fly Sailplanes (gliders) > > > Using QNX, and QNET (something oddly I used when I was 14-15 on the Unisys ICONs on ArcNet..) I want to see how difficult it would be to create a transcode cluster to divide and conquer the jobs in transcoding. > > I also like QNX for the RT stuff, but I can't talk about that -- Vendors would get upset... But I can say that the Instant-Up IPL is Wicked Cool! :D > > > So I got a Slew of Packages installed (Quite similar to the OpenBSD boxes I have at home, and slowly but surely Working The Problem with x264 and getopt issues. > > If anyone is interested in the pkgsrc/multimedia portion branch, I might have some insights, but would appreciate insights on the getopt_long issue in kind. Welcome. I hope your project(s) go well. Try it now. I just committed the attached diff to the HEAD_641 branch. You'll probably have to re-install your libgetopt as well... -seanb Fri, 25 Sep 2009 20:50:09 GMT http://community.qnx.com/sf/go/post38823 Sean Boudreau(deleted) 2009-09-25T20:50:09Z post38822: Re: Building Multimedia Apps in pkgsrc., and Oh Yes: Hello. http://community.qnx.com/sf/go/post38822 Found an interesting. Installed both libnbcompat, as well as libgetopt, and during the compile of the x264-devel, there was an 'undefined reference to `getopt_long' that was only resolved after figuring out which library needed to be passed to the linker. I used in config.mak Under LDFLAGS= I added -Wl,-R/usr/pkg/lib/libnbcompat.a and it linked with no errors. (I'm guessing that This is a Nasty Hack and I prolly have a broken x264 component, but it at least dit not stop the build...) But if there is anyone with some insight as to how to do this correctly, then I'd take the advice. -sincerely. -sean Fri, 25 Sep 2009 20:41:32 GMT http://community.qnx.com/sf/go/post38822 Sean Kennedy(deleted) 2009-09-25T20:41:32Z post38817: Building Multimedia Apps in pkgsrc., and Oh Yes: Hello. http://community.qnx.com/sf/go/post38817 Neat. Hey Hi Hello. I'm used to FreeBSD / OpenBSD 'ports' collection as opposed to the pkgsrc collection used here in QNX. My First "difficult" build of course is the PKG "Mencoder" I work with transcoders Like Telestream and Rhozet, and work with Open Source Transcoders to compare the content / quality of content in an open manner. I also use mencoder and ffmpeg and x264 to transcode the AVC / MPEG4p10 content from my HD video camcorder when I fly Sailplanes (gliders) Using QNX, and QNET (something oddly I used when I was 14-15 on the Unisys ICONs on ArcNet..) I want to see how difficult it would be to create a transcode cluster to divide and conquer the jobs in transcoding. I also like QNX for the RT stuff, but I can't talk about that -- Vendors would get upset... But I can say that the Instant-Up IPL is Wicked Cool! :D So I got a Slew of Packages installed (Quite similar to the OpenBSD boxes I have at home, and slowly but surely Working The Problem with x264 and getopt issues. If anyone is interested in the pkgsrc/multimedia portion branch, I might have some insights, but would appreciate insights on the getopt_long issue in kind. -sean Fri, 25 Sep 2009 19:39:14 GMT http://community.qnx.com/sf/go/post38817 Sean Kennedy(deleted) 2009-09-25T19:39:14Z post38814: Re: audio/nas http://community.qnx.com/sf/go/post38814 I had similar issues with getting some audio apps begun before building mencoder. The PKGSRC bootstrapper docs had some of that. I am digging through other Prerequisite apps being installed before that build. X264 is giving me a hassle, Right now I'm stuck on figuring out the getopt_long call in the Linker to work itself out. (Methinks it is a missing exported value problem) -sean Fri, 25 Sep 2009 19:25:08 GMT http://community.qnx.com/sf/go/post38814 Sean Kennedy(deleted) 2009-09-25T19:25:08Z post38458: Re: audio/nas http://community.qnx.com/sf/go/post38458 Already silve this problem. Just ned to enter export MAKEFLAGS= > On Mon, Sep 21, 2009 at 03:41:51AM -0400, Anton Grachev wrote: > > Anyone built this (nas) before? > I haven't personally looked at anything related to audio yet. > -seanb > _______________________________________________ > General > http://community.qnx.com/sf/go/post38411 > Новая Яндекс.Почта http://mail.yandex.ru/promo/new/sign Tue, 22 Sep 2009 10:18:12 GMT http://community.qnx.com/sf/go/post38458 Anton Grachev 2009-09-22T10:18:12Z post38411: Re: audio/nas http://community.qnx.com/sf/go/post38411 On Mon, Sep 21, 2009 at 03:41:51AM -0400, Anton Grachev wrote: > Anyone built this (nas) before? I haven't personally looked at anything related to audio yet. -seanb Mon, 21 Sep 2009 16:26:57 GMT http://community.qnx.com/sf/go/post38411 Sean Boudreau(deleted) 2009-09-21T16:26:57Z post38392: Re: audio/nas http://community.qnx.com/sf/go/post38392 Anyone built this (nas) before? Mon, 21 Sep 2009 07:41:50 GMT http://community.qnx.com/sf/go/post38392 Anton Grachev 2009-09-21T07:41:50Z post38122: RE: Problems with installing precompiled Apache 2.2 on QNX 6.4.0 http://community.qnx.com/sf/go/post38122 You can use 'passwd' or edit /etc/passwd with your favourite editor for the user. Edit /etc/group for the group. -seanb -----Original Message----- From: Robert Wang [mailto:community-noreply@qnx.com] Sent: Wed 9/16/2009 6:12 PM To: general-pkgsrc Subject: Re: Problems with installing precompiled Apache 2.2 on QNX 6.4.0 Thank you for helping out, Sean! I finally got the apache 2.2 installed on my QNX 640. Do you know how I can create a user group "www" and a user "www" on QNX 640? I tried to find addgroup/user or group/useradd on my QNX 640. I could not find them. _______________________________________________ General http://community.qnx.com/sf/go/post38121 Thu, 17 Sep 2009 00:30:06 GMT http://community.qnx.com/sf/go/post38122 Sean Boudreau(deleted) 2009-09-17T00:30:06Z post38121: Re: Problems with installing precompiled Apache 2.2 on QNX 6.4.0 http://community.qnx.com/sf/go/post38121 Thank you for helping out, Sean! I finally got the apache 2.2 installed on my QNX 640. Do you know how I can create a user group "www" and a user "www" on QNX 640? I tried to find addgroup/user or group/useradd on my QNX 640. I could not find them. Wed, 16 Sep 2009 22:12:14 GMT http://community.qnx.com/sf/go/post38121 Robert Wang 2009-09-16T22:12:14Z post38097: Re: Problems with installing precompiled Apache 2.2 on QNX 6.4.0 http://community.qnx.com/sf/go/post38097 On Wed, Sep 16, 2009 at 02:05:46PM -0400, Robert Wang wrote: > I am making progress. I got the following errors. It seems that pkg_add could not find"tee". Where can I find it? It has shipped with every version of qnx I can remember. # which tee /usr/bin/tee Wed, 16 Sep 2009 18:09:41 GMT http://community.qnx.com/sf/go/post38097 Sean Boudreau(deleted) 2009-09-16T18:09:41Z