search for: emx

Displaying 20 results from an estimated 39 matches for "emx".

Did you mean: eax
2005 Jan 18
1
lme confusion
...ays slightly different, making me think that it's not due to numerical error. Also, what is the "Corr" field in the Random Effects output? Is it the correlation between the various regressors? Here are the outputs. 1. Linear mixed-effects model fit by REML Data: groupedData(dPx ~ EMX + EMY | Session, data = X.cen) AIC BIC logLik 834.1692 862.532 -407.0846 Random effects: Formula: ~EMX + EMY | Session Structure: General positive-definite StdDev Corr (Intercept) 1.0205525 (Intr) EMX EMX 0.2708627 1 EMY 0.2795289 -1 -1 Residua...
2012 Feb 05
1
[PATCH 2/2] OS/2 EMX natively uses AOUT so pass -f aout to NASM
...> really shouldn't be calling win32 API. > > On the otherhand, I can't seem to find any ntohl use(???). Yeah, I've got a patch in an un-merged branch that purges MINGW_WINSOCK_LIBS and reduces the LT_NO_UNDEFINED section to: case "$host" in *-*-cygwin|*mingw*|*emx*) # define this variable for enabling strict exports with # libtool; for now, it's supported by Win32 and OS/2 LT_NO_UNDEFINED="-no-undefined" ;; *) LT_NO_UNDEFINED= ;; esac AC_SUBST(LT_NO_UNDEFINED) which should please everyone :-). Cheers, Erik -...
2012 Feb 05
2
[PATCH 2/2] OS/2 EMX natively uses AOUT so pass -f aout to NASM
Dave Yeo wrote: > --- > configure.ac | 1 + Both applied (first with a minor tweak). Thanks. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2017 Jan 22
0
os/2 support using Watcom
...with Open Watcom 1.9). My only interest was building a working >>>> dll (the last patch in the set adds a makefile for it), therefore I did >>>> not touch other places: If there is interest, I can do so. >>> >> >> Disclaimer: I don't know much about EMX. That aside, >> >>> Most of the patches can have s/__EMX__/__OS2__/ >> >> I intentionally kept __EMX__ checks because, IIRC, old gcc versions >> (2.8?? can't remember) did define __EMX__ but not __OS2__ > > Flac won't compile with old EMX, if only due...
2017 Jan 22
7
os/2 support using Watcom
The attached set of patches adds support for OS/2 using Watcom compiler (tested with Open Watcom 1.9). My only interest was building a working dll (the last patch in the set adds a makefile for it), therefore I did not touch other places: If there is interest, I can do so. Regards. -- O.S. -------------- next part -------------- A non-text attachment was scrubbed... Name:
2012 Feb 07
5
[PATCH] Remove even more CPP hackery
On 02/07/12 12:03 am, Erik de Castro Lopo wrote: > Dave Yeo wrote: > >> This commit will break OS/2's EMX 0.9d library (GCC 2.8.1) which has been >> been replaced by klibc. Considering the age of EMX and lack of testing >> and that klibc contains so many improvements I think this is exceptable. > > Sorry Dave, I can't do that. Or rather sorry, the patch doesn't apply. > Pr...
2011 May 23
1
so current status of interactive PDF creation isl? trying to explore econometriic convergence thread
...a file http://98.129.232.234/temp/share/em.txt ) http://98.129.232.234/temp/share/em.R.txt After some editing with sed, the output of the above script made this data file showing some optimization's "trjectory" according to my variables of interest, http://98.129.232.234/temp/share/emx.dat.txt df<-read.table("emx.dat",header=F,sep=" ") I subsequently found a few ways to plot the data, notably, png("em.png") plot(log(df$V1),df$V2) png.off() http://98.129.232.234/temp/share/em.png png("em2.png") plot(log(df$V1),df$V2,cex=1+....
2012 Feb 07
2
[PATCH] Remove even more CPP hackery
This commit will break OS/2's EMX 0.9d library (GCC 2.8.1) which has been been replaced by klibc. Considering the age of EMX and lack of testing and that klibc contains so many improvements I think this is exceptable. --- include/FLAC/ordinals.h | 17 +++++++++-------- src/flac/main.c | 2 +- src/l...
2000 Sep 10
2
Vorbis on OS/2
Following a few months of lurking on the list, and vainly trying to get vorbis to compile on os/2, I finally managed to get the nightly gzip from saturday to compile (fairly) cleanly, and so have finally been able to play with Vorbis on my OS of choice :) Using the EMX runtime system, and bash for OS/2 (along with a few ported GNU apps), both configure and make work fine (except for ogg123 naturally). Oggenc seems to work, and I've sucessfully encoded a few files using lame 3.86 with ogg support, and played them back on a linux system. When I came to have...
2017 Jan 23
4
os/2 support using Watcom
On 01/22/17 02:00 PM, Ozkan Sezer wrote: > Question: Does emx support __declspec(dllexport) so I can adjust > these changes? Because the emx build of the dll seems to have > exported_everything_ :( GCC supports __declspec(dllexport) though it still needs a def file, with no exports. Libtool doesn't currently and as flac uses libtool... Dave
2014 Aug 20
6
Full MVCC in Brass
...fully appear in the next version of POSIX.1, so with any luck it will become widely available in the future. If F_OFD_SETLK isn't available, Xapian can fall back to what it does currently. Windows has LockFileEx, which is essentially the same as F_OFD_SETLK. I don't know what to do about EMX or if we care. Free list changes ----------------- For free blocks, Xapian will need to keep track of which revision each block was freed at to know when it's safe to reuse that block. The most efficient place to store this is in the on-disk free list itself. The free list is currently a FIF...
2003 Aug 05
2
Error on mclust
Hi All, I am trying to cluster a one-dimensional data (see the file attached) using Mclust() but got an error message like: >Mclust(x) Error in rep(1, n) : Object "n" not found When I do a simulation sometimes it works sometimes doesn't. >Mclust(c(rnorm(50),rnorm(56,-0.5))) Error in rep(1, n) : Object "n" not found >Mclust(c(rnorm(56),rnorm(56,-0.5))) best
2012 Feb 05
2
[PATCH 1/2] OS/2 also needs "-no-undefined" to build a DLL
...index 36ac6c6..32bdd5f 100644 --- a/configure.ac +++ b/configure.ac @@ -103,9 +103,11 @@ esac AC_SUBST(OBJ_FORMAT) case "$host" in - *-*-cygwin|*mingw*) - # define this variable for enabling strict exports with libtool; for now, it's only supported by Win32 + *-*-cygwin|*mingw*|*emx*) + # define this variable for enabling strict exports with libtool; for now, it's supported by Win32 and OS/2 LT_NO_UNDEFINED="-no-undefined" + ;; + *-*-cygwin|*mingw*) # -lwsock32 only needed because of ntohl() usage, can get rid of after that's gone: MINGW_WINSOCK_LI...
2012 Jan 04
1
No eth0 on centos 6.2
Just installed centos 6.2. I run and ifconfig -a I see and em1 em2 and lo interface. If I go to /etc/sysconfig/network-scripts, I don't see an ifcfg-eth0. If I run ifup eth0 it comes back with "Device eth0 does not seem to be present, delaying initialization". Anybody have a clue? Thanks in advance.
2001 Apr 18
3
[Patch] OS/2 port
[Repost, maybe it will get noticed with a better subject] So now beta 4 is out is there any chance you guys will have time to review some of my patches? Here's a simple one. It just adds the standard integer typedefs for EMX GCC. I've flattened the structure using #elif's so it doesn't get a level deeper for every platform added but the result should be the same. I realise doing so makes the patch harder to read but I couldn't bring myself to make this file even uglier :) diff -x CVS -x fc.mnu -x *....
1995 Sep 26
0
GPM Modula-2 and Oberon-2 Compilers
...Information Technology at the Queensland University of Technology. Commercial GPM Modula-2 compilers are sold for a wide range of UNIX platforms. Front-ends have also been written for Oberon-2, C, and an experimental OO language called Luna. The GPM Modula-2 compilers for Linux, FreeBSD, DJGPP, EMX and MS-DOS are available freely by ftp. Oberon-2 compilers are also available for a number of the platforms. The latest FreeBSD version is yet another port of the Linux version of GPM. It is completely compatible with the Linux version in all respects. Refer to the Linux release notes for any vers...
2008 Oct 23
2
Dovecot returns the same UIDL for another message
...igits. In other words when new message arrive to mbox, UIDL command returns used UID. I'll show with example: 1. Send some message and try to retrieve UIDL via telnet: # echo test-mailbox-1 | mail -s Test-1 mbox at cu.kiev.ua # telnet pop3.cu.kiev.ua 10110 Trying 193.108.130.4... Connected to emx.itcons.net.ua. Escape character is '^]'. +OK IT Consulting POP3/IMAP Server USER mbox at cu.kiev.ua +OK PASS XXX +OK Logged in. LIST +OK 1 messages: 1 1155 . UIDL +OK 1 0000001c49006cec . RETR 1 +OK 1155 octets [...] . DELE 1 +OK Marked to be deleted. QUIT +OK Logging out, messages deleted....
2010 Dec 25
0
For sale Yamaha DGX-640 Grand Piano Keyboard for $450USD
...GT-10 Multi-Effects Pedal cost $250USD Boss GT8 pedal multieffect ................$250USD Boss BR-1600CD Multitrack Digital Recorder ................ $500USD Behringer PMP-1000 1200W 12Ch Pwrd Mixer W/FX-FBQ ....... $100USD Behringer PMP3000 16-Channel Powered Mixer ................ $150USD Yamaha EMX-212S EMX212S ................ $150USD Yamaha EMX-512SC EMX512SC - Stereo Powered Mixer Sound ..... $300USD Yamaha EMX 312SC Powered Mixer ................$200USD Yamaha S90 ES Synthesizer.........$900USD Yamaha MM8 Music Synthesizer................$450USD Yamaha YPG-635 88-Key Weighted Portable Gra...
2014 Jun 05
1
C++11
I think we should seriously consider requiring a compiler with C++11 support for the next Xapian stable release series (i.e. Xapian 1.4.x). There's not a firm timeline for when 1.4.0 will be out, but it's a way off yet. I need to sort out the blockers for 1.3.2 and actually get that out, and then we need to sort through the ticket pile and decide what has to get done. C++11 adds a
2017 Jan 23
1
os/2 support using Watcom
On 01/23/17 01:01 AM, Erik de Castro Lopo wrote: > Dave Yeo wrote: > >> >GCC supports __declspec(dllexport) though it still needs a def file, >> >with no exports. Libtool doesn't currently and as flac uses libtool... > So you're happy with this patch? > > http://lists.xiph.org/pipermail/flac-dev/2017-January/006170.html > No. Lots of errors such