Jonas Maebe
34d0fd2c30
* give generic IntbasiceventWaitFor a granularity of 50 rather than
...
500 miliseconds
git-svn-id: trunk@9222 -
2007-11-12 22:06:39 +00:00
Jonas Maebe
95abc479ac
* actually assign result of strncmp to comparechar0 result
...
git-svn-id: trunk@9221 -
2007-11-12 21:26:07 +00:00
Jonas Maebe
a68581efef
* fixed test (comparechar0 is defined as returning values <, =, > 0, not
...
just -1, 0, 1)
git-svn-id: trunk@9220 -
2007-11-12 21:25:27 +00:00
florian
c64ab62bdf
* fixed CompareChar0, resolves #10151
...
git-svn-id: trunk@9219 -
2007-11-12 20:01:57 +00:00
florian
0801c64813
+ simple CompareByte0 test
...
git-svn-id: trunk@9218 -
2007-11-12 19:57:47 +00:00
peter
da21fb10e3
* default repository is now http
...
git-svn-id: trunk@9217 -
2007-11-12 18:07:07 +00:00
peter
a2e0c9346a
* OSs to OSes
...
git-svn-id: trunk@9216 -
2007-11-12 17:08:36 +00:00
peter
6a0b278727
* basic dependency handling is working
...
git-svn-id: trunk@9215 -
2007-11-12 17:07:23 +00:00
Almindor
20b147f8ac
* make aspell use dynamic runtime linking again
...
* default to latest aspell version, enable override
git-svn-id: trunk@9214 -
2007-11-12 10:48:49 +00:00
michael
c0b5e9ad07
* Initial RTF export support
...
git-svn-id: trunk@9213 -
2007-11-12 09:01:59 +00:00
florian
09c9793938
* avoid deadlock when shutting down the event handler thread
...
git-svn-id: trunk@9212 -
2007-11-11 22:27:29 +00:00
Tomas Hajny
d43197f8d1
* let installer know package CHM
...
git-svn-id: trunk@9210 -
2007-11-11 21:52:49 +00:00
Tomas Hajny
5b97e19c0f
* fcl-process and fcl-async added
...
git-svn-id: trunk@9209 -
2007-11-11 21:46:13 +00:00
Tomas Hajny
8ba5c8d047
* shortname for fcl-passrc changed
...
git-svn-id: trunk@9208 -
2007-11-11 21:36:12 +00:00
florian
cfed70d698
* removed garbage at the end
...
git-svn-id: trunk@9207 -
2007-11-11 21:26:44 +00:00
florian
246ae7b446
o from Karl-Michael Schindler:
...
* brought german message file up-to-date
git-svn-id: trunk@9206 -
2007-11-11 21:24:55 +00:00
florian
cb2e9c6ac8
* avoid deadlock during ReadConsoleInput, should resolve #10150
...
git-svn-id: trunk@9205 -
2007-11-11 21:12:32 +00:00
Jonas Maebe
157fc2a3e9
* use -x instead of -s for stripping executables on darwin (-s worked fine on 10.0,
...
was broken on 10.1, fixed in 10.2 and worked fine till 10.4, and has been
deprecated/removed in 10.5; conversely, -x has worked all the time, although it
results in slightly bigger binaries on platforms that also support -s)
git-svn-id: trunk@9204 -
2007-11-11 19:43:41 +00:00
florian
b7cce59ac7
* GetKeyEventFromQueueWait waits always till it gets an event
...
git-svn-id: trunk@9203 -
2007-11-11 19:22:34 +00:00
Jonas Maebe
b967d88b0c
* don't use libc round/trunc/cos/... if FPC_HAS_TYPE_EXTENDED, because
...
the imported routines only support double precision
git-svn-id: trunk@9202 -
2007-11-11 19:10:34 +00:00
Jonas Maebe
70c0c2ddd9
* all currently supported platforms require that single precision
...
parameters passed as C-style varargs are upgraded to double
precision
git-svn-id: trunk@9201 -
2007-11-11 18:01:29 +00:00
Jonas Maebe
d15007dbfe
* don't test on darwin since not supported there for efficiency
...
reasons
git-svn-id: trunk@9200 -
2007-11-11 17:53:19 +00:00
Jonas Maebe
d9647db223
* changed x86_64 assembler code to PIC
...
git-svn-id: trunk@9199 -
2007-11-11 17:50:27 +00:00
Jonas Maebe
e630451adc
* disabled longdouble testing now also for platforms with extended
...
since it's not working there either and this test is too important
to get extra hidden failures
git-svn-id: trunk@9198 -
2007-11-11 17:26:00 +00:00
Jonas Maebe
728465eb27
* fixes from previous darwin/i386 commit for darwin/x86_64
...
* unified darwin/i386 and darwin/x86_64 signal handling like
for ppc32 and ppc64
* moved some common record definitions for all architectures to
signal.inc
git-svn-id: trunk@9197 -
2007-11-11 17:09:52 +00:00
Jonas Maebe
52a8c3a40c
o fixed darwin/i386 signal handling:
...
* fixed sigcontextrec definition
* work around missing Mac OS X support for reporting integer
division-by-zero as such (reported as generic SIGFPE)
* return from signal handler to HandleErrorFrame (just like
on ppc) instead of calling it (and fix up fpu and sse
status words when doing so)
git-svn-id: trunk@9196 -
2007-11-11 16:27:24 +00:00
Jonas Maebe
e385c0f7b1
* added nostackframe to fix running on darwin/i386
...
git-svn-id: trunk@9195 -
2007-11-11 16:24:05 +00:00
Jonas Maebe
7b8bbae582
- removed ret as it breaks darwin (doesn't restore
...
stack alignment)
git-svn-id: trunk@9194 -
2007-11-11 16:19:13 +00:00
Jonas Maebe
4512eede06
* don't use (non-volatile) ebx in assembler routine
...
git-svn-id: trunk@9193 -
2007-11-11 16:11:32 +00:00
florian
05d744deb1
o patch and test by Andrey Gusev:
...
* properly replace first occurence of a pattern, resolves #10141
git-svn-id: trunk@9192 -
2007-11-11 15:54:35 +00:00
florian
72df104960
* more tests, commented out so far
...
git-svn-id: trunk@9191 -
2007-11-11 15:49:34 +00:00
peter
232f0d2941
* obsolete and broken programs
...
git-svn-id: trunk@9190 -
2007-11-11 14:35:22 +00:00
florian
a5ccf16016
+ disp. var. property setting, resolves #10133 and #9134
...
git-svn-id: trunk@9189 -
2007-11-11 14:14:05 +00:00
marco
01f2667f0c
* Darius' mega patch for numlib
...
git-svn-id: trunk@9188 -
2007-11-11 10:51:09 +00:00
michael
a7be392850
* Regenerated so x86_64-darwin is included
...
git-svn-id: trunk@9187 -
2007-11-10 22:40:13 +00:00
Jonas Maebe
7ae3de0a01
* regenerated for x86_64-darwin
...
git-svn-id: trunk@9186 -
2007-11-10 21:37:24 +00:00
Jonas Maebe
4d254e4de8
* import iconv routines as iconv_* rather than libiconv_* for darwin
...
as the 32 bit libraries export both variants, but the new 64 bit
ones on Mac OS X 10.5 only export iconv_*
git-svn-id: trunk@9184 -
2007-11-10 21:12:45 +00:00
marco
7f57d9568d
* make install was broken, fixes 10144
...
git-svn-id: trunk@9183 -
2007-11-10 20:34:12 +00:00
Jonas Maebe
defe46ef42
* added missing size suffixes for several sse2 opcodes
...
git-svn-id: trunk@9182 -
2007-11-10 19:57:01 +00:00
Jonas Maebe
c9ce918485
* regenerated for darwin/x86_64
...
git-svn-id: trunk@9181 -
2007-11-10 18:37:19 +00:00
Jonas Maebe
032352d98b
+ darwin/x86_64 support
...
git-svn-id: trunk@9180 -
2007-11-10 18:33:09 +00:00
Jonas Maebe
9ceda8f858
* fixed IOCtl_TCGETS constant
...
- removed a bunch of linux/freebsd-specific constants (more left,
probably)
git-svn-id: trunk@9179 -
2007-11-10 18:32:38 +00:00
Jonas Maebe
d801dec484
+ darwin/x86_64 support
...
git-svn-id: trunk@9178 -
2007-11-10 18:28:12 +00:00
Jonas Maebe
659c5a0f17
* fixed compilation
...
git-svn-id: trunk@9177 -
2007-11-10 18:26:59 +00:00
Jonas Maebe
f60c72b773
* fixed ioctl for non-linux: the third parameter is "..." there rather
...
than a pointer. The interface still accepts a plain pointer for
backwards compatibility.
git-svn-id: trunk@9176 -
2007-11-10 18:22:37 +00:00
michael
422b5d916b
* Initial implementation of data dictionary functionality
...
git-svn-id: trunk@9175 -
2007-11-10 17:27:12 +00:00
michael
fdb033097a
* Added standard TeX export format
...
git-svn-id: trunk@9174 -
2007-11-10 14:10:20 +00:00
florian
82d49bdc45
+ test for previous commit
...
git-svn-id: trunk@9173 -
2007-11-10 10:10:55 +00:00
florian
578c18a204
+ support of <variant>.<id1>.<id2> ... resolves #9233 and partly #10133
...
git-svn-id: trunk@9172 -
2007-11-10 10:08:41 +00:00
florian
48c0e3b023
* support for getting dispatch interface properties
...
git-svn-id: trunk@9171 -
2007-11-10 09:58:46 +00:00