]> Savannah Git Hosting - mdk.git/log

Savannah Git Hosting - mdk.git/log

git git@sv / mdk.git / log
? search:
summary | shortlog | log | commit | commitdiff | tree
first ⋅ prev ⋅ next
mdk.git
6 years agoChange vm->address_list from GSList to GQueue
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 9 Apr 2019 01:59:08 +0000 (02:59 +0100)]
Change vm->address_list from GSList to GQueue

The current emulator uses an unbounded linked list for tracking the
memory locations our program has traveled through. On a 64 bit system,
this requires 16 bytes of data for every instruction a MIX program
performs. For small programs that are light on computation cycles,
this does not cause a noticeable issue.

For programs that execute hundreds of millions of instructions, this
causes the memory footprint of the virtual machine to explode. I have
attached an example MIXAL program that will cause the VM to grow to
over 3 GB of memory usage when run.

To run the sample, compile coin-opt.mixal (attached), run it in mixvm,
and enter 499 at the prompt. Or use the following steps.

This patch changes all the appropriate references to GQueue references
and also caps the backtrace at 1000, which can be changed in the
mixlib/mix_vm.h header. I feel like 1000 is a reasonable limit for the
vast majority of debugging needs. Most people are looking back at the
most recent 100 instructions or so.

You can get the original behavior (unlimited tracing) back by setting
the MIX_MAXTRACE to -1, albeit with a slightly higher memory cost (24
bytes per instruction). Or you can turn it off entirely by setting it
to 0.

Using a queue doesn't change the logic of the program in any
significant way, and it allows programs to run for an extended period
of time without consuming all the memory on the machine and slowing
down to a crawl.

-Kevin Brunelle

6 years agoGTK Console input no longer overruns buffer
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 9 Apr 2019 01:43:20 +0000 (02:43 +0100)]
GTK Console input no longer overruns buffer

Patch by Kevin Brunelle

The console input in gmixvm will only read 70 characters, but the
outer loop used 70 (the characters) instead of 14 (the number of
words). This caused the VM to read past the end of the buffer and
write 56 words of junk into the emulator.

6 years agoSupport IOC commands for disk/drum devices
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 9 Apr 2019 01:40:05 +0000 (02:40 +0100)]
Support IOC commands for disk/drum devices

Thanks to Kevin Brunelle

There is a minor fix included with regards to tape devices. The test
was failing if M == 0, when it should fail when M != 0.

NOTICE: This patch changes the behavior of the VM and changes the
function parameters for the ioc_ function. Documentation changes are
included.

Permits the following:
LDX BLKNUM
IOC 0(8)
OUT ADDR(8) Write block from ADDR into disk[BLKNUM]
IOC 0(8)
IN ADDR(8) Read block from disk[BLKNUM] into ADDR
...
BLKNUM CON 45000 Example possible block on disk

I was having an issue writing a block to a drive and then reading back
the same block. Because it is impossible to move the SEEK_CUR pointer
backwards on a disk device, there was no way for a program to read
back a block that it wrote to a disk without restarting or fiddling
with ~/.mdk/disk?.dev files and symbolic links.

I have added a function parameter to the ioc_ function and used it to
pass the value of rX to ioc_. This permits us to use IOC commands to
move the read/write head on a disk/drum device. I believe that this
conforms to the potential meaning of Knuth's description of IOC for
disk/drum devices.

I have put in tests to verify that rX is positive and M = 0.

I have updated the documentation to reflect this new behavior.

This makes disks much more usable.

Note: I won't be offended if this patch is rejected because it changed
the behavior of the VM. I think it fits the spirit and enhances the
functionality in a way that some might find useful. I wanted it for
something I was working on, and I felt others might want the same. The
thing with the paper-tape should be fixed, though.

6 years agoNEWS and version bump
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2019年3月20日 00:09:04 +0000 (00:09 +0000)]
NEWS and version bump

6 years agoFix: correctly rewind tape
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2019年3月20日 00:06:22 +0000 (00:06 +0000)]
Fix: correctly rewind tape

According to the specification, if M < 0, the tape is skipped backwards M
blocks, or to the beginning of the tape, whichever comes first. In the
implementation, we don't check to verify that we aren't seeking past the
beginning of the file. This causes fseek(3) to fail, and it leaves us at the
position we were at.

Diagnosis and fix by Kevin Brunelle.

6 years agoNEWS updates
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2019年3月19日 01:19:43 +0000 (01:19 +0000)]
NEWS updates

6 years agoFix: allow access to last mem cell in devices (#9773)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2019年3月19日 01:13:46 +0000 (01:13 +0000)]
Fix: allow access to last mem cell in devices (#9773)

Author: Kevin Brunelle

6 years agoObsolete string-to-int removed in favour of string-to-number
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2019年3月11日 02:48:19 +0000 (02:48 +0000)]
Obsolete string-to-int removed in favour of string-to-number

Thanks to Thomas Matecki. Fixes #bug 55877 and makes mixvm, Philip
King's child, work again!

6 years agoVersion 1.2.10 1.2.10
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 8 Jan 2019 18:54:19 +0000 (18:54 +0000)]
Version 1.2.10

6 years agoNEWS for 1.2.10
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 8 Jan 2019 18:53:48 +0000 (18:53 +0000)]
NEWS for 1.2.10

6 years agoFix for mixasm infinite loop on invalid F-specs (bug #32452)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 8 Jan 2019 18:02:00 +0000 (18:02 +0000)]
Fix for mixasm infinite loop on invalid F-specs (bug #32452)

Thanks to Sascha Wilde.

6 years agoFix for bug #43634: keep sign of rA for ADD/SUB yielding 0
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 8 Jan 2019 05:22:16 +0000 (05:22 +0000)]
Fix for bug #43634: keep sign of rA for ADD/SUB yielding 0

6 years agoFix for bug #47208: correctly store immediate constants
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 8 Jan 2019 04:28:05 +0000 (04:28 +0000)]
Fix for bug #47208: correctly store immediate constants

We were taking only the first 3 bits of the index byte in a the word
representing immediate constants, so that, for instance, =262143=,
representing 00 00 63 63 63, was stored as 00 00 07 63 63.

6 years agoFlex generation fix (invalid noreject removed)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Tue, 8 Jan 2019 02:08:29 +0000 (02:08 +0000)]
Flex generation fix (invalid noreject removed)

6 years agoFlex by-products added to CLEANFILES
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 7 Jan 2019 22:02:58 +0000 (22:02 +0000)]
Flex by-products added to CLEANFILES

6 years agoLooking for guile 2.2 during configuration
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 7 Jan 2019 22:02:34 +0000 (22:02 +0000)]
Looking for guile 2.2 during configuration

9 years agoVersion upgraded to 1.2.9 1.2.9
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2015年12月23日 19:14:56 +0000 (20:14 +0100)]
Version upgraded to 1.2.9

9 years agoNEWS update
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2015年11月16日 22:51:19 +0000 (23:51 +0100)]
NEWS update

9 years agoDocumentation fixes by Joshua Davies
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2015年11月16日 22:43:20 +0000 (23:43 +0100)]
Documentation fixes by Joshua Davies

10 years agoModify texinfo documentation
commit | commitdiff | tree
litvin [2015年1月14日 04:10:12 +0000 (07:10 +0300)]
Modify texinfo documentation

10 years agoAdd missed instructions: SLB,SRB,JAE,JAO,JXE,JXO (from volume 2, section 4.5.2)
commit | commitdiff | tree
litvin [2015年1月12日 07:18:17 +0000 (10:18 +0300)]
Add missed instructions: SLB,SRB,JAE,JAO,JXE,JXO (from volume 2, section 4.5.2)

11 years agoIncluding autogen.sh in distribution tarball 1.2.8
commit | commitdiff | tree
jao [Mon, 4 Aug 2014 15:54:23 +0000 (17:54 +0200)]
Including autogen.sh in distribution tarball

11 years agoTHANKS updated for 1.2.8
commit | commitdiff | tree
jao [Mon, 4 Aug 2014 15:48:35 +0000 (17:48 +0200)]
THANKS updated for 1.2.8

11 years agoNEWS updated for 1.2.8
commit | commitdiff | tree
jao [Sun, 3 Aug 2014 02:06:31 +0000 (04:06 +0200)]
NEWS updated for 1.2.8

11 years agoApparently tautological comparisons fixed (bug #42871)
commit | commitdiff | tree
jao [Sun, 3 Aug 2014 01:11:52 +0000 (03:11 +0200)]
Apparently tautological comparisons fixed (bug #42871)

11 years agoWhitespace
commit | commitdiff | tree
jao [Sun, 3 Aug 2014 01:11:25 +0000 (03:11 +0200)]
Whitespace

11 years agoFix for compilation in darwin (bug #42818)
commit | commitdiff | tree
jao [Sat, 2 Aug 2014 17:25:08 +0000 (19:25 +0200)]
Fix for compilation in darwin (bug #42818)

11 years agoAvoiding format strings security warnings (cf. #8467)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2014年5月21日 03:25:26 +0000 (05:25 +0200)]
Avoiding format strings security warnings (cf. #8467)

11 years agoFixes for readline 6.3
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2014年5月20日 16:31:30 +0000 (18:31 +0200)]
Fixes for readline 6.3

11 years agoHelp message for werrors configuration option fixed
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 04:34:17 +0000 (05:34 +0100)]
Help message for werrors configuration option fixed

11 years agoFixes for building with --without-guile
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 04:32:05 +0000 (05:32 +0100)]
Fixes for building with --without-guile

11 years agodummy.c -> darwin.c
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 03:59:23 +0000 (04:59 +0100)]
dummy.c -> darwin.c

11 years agoCompilation fixes
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 03:51:46 +0000 (04:51 +0100)]
Compilation fixes

11 years agoDeprecated INCLUDES in Makefile.am removed
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 03:51:23 +0000 (04:51 +0100)]
Deprecated INCLUDES in Makefile.am removed

11 years agoIncorporating gcompletion (fixes #39817)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 03:29:29 +0000 (04:29 +0100)]
Incorporating gcompletion (fixes #39817)

11 years agoNew .gitignore entries
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 02:00:36 +0000 (03:00 +0100)]
New .gitignore entries

11 years agoFix for #41098 (compilation in darwing sans libguile)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 02:00:06 +0000 (03:00 +0100)]
Fix for #41098 (compilation in darwing sans libguile)

11 years agoFix for #41097 (compilation in darwin)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 6 Jan 2014 01:59:39 +0000 (02:59 +0100)]
Fix for #41097 (compilation in darwin)

12 years agoInvalid assertion in xmix_vm.c (closes #40359)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年10月24日 17:56:03 +0000 (19:56 +0200)]
Invalid assertion in xmix_vm.c (closes #40359)

12 years agoThanks where thanks are due 1.2.7
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月24日 23:01:02 +0000 (00:01 +0100)]
Thanks where thanks are due

12 years agoNEWS for 1.2.7
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月23日 19:58:07 +0000 (20:58 +0100)]
NEWS for 1.2.7

12 years agoGenerating ChangeLog during make dist
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月23日 19:40:34 +0000 (20:40 +0100)]
Generating ChangeLog during make dist

12 years agoConvenience target to generate manual
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月18日 05:37:56 +0000 (06:37 +0100)]
Convenience target to generate manual

12 years agoGuile versions updated in doc
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月18日 05:37:31 +0000 (06:37 +0100)]
Guile versions updated in doc

12 years agogendocs scripts updated
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月18日 05:13:36 +0000 (06:13 +0100)]
gendocs scripts updated

12 years agoVersion updated to 1.2.7
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月18日 05:11:44 +0000 (06:11 +0100)]
Version updated to 1.2.7

12 years agoAdditional samples and doc from TAOCP, via ESR's MIXAL
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月18日 05:06:11 +0000 (06:06 +0100)]
Additional samples and doc from TAOCP, via ESR's MIXAL

12 years agoNews bit
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月18日 04:42:11 +0000 (05:42 +0100)]
News bit

12 years agogitlog-to-changelog updated
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月18日 04:41:56 +0000 (05:41 +0100)]
gitlog-to-changelog updated

12 years agoUpgrade to guile 2.0 (Aleix Conchillo)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2013年2月18日 04:34:35 +0000 (05:34 +0100)]
Upgrade to guile 2.0 (Aleix Conchillo)

15 years agoRelease and maintenance scripts
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年10月10日 00:57:52 +0000 (02:57 +0200)]
Release and maintenance scripts

15 years agoChangeLog generator updated
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年10月10日 00:12:12 +0000 (02:12 +0200)]
ChangeLog generator updated

15 years agoFix for #5652 1.2.6
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Sat, 9 Oct 2010 23:52:40 +0000 (01:52 +0200)]
Fix for #5652

15 years agoFix for off-by-one bug in I-register modification breakpoints
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年9月27日 20:08:17 +0000 (22:08 +0200)]
Fix for off-by-one bug in I-register modification breakpoints

15 years agoAllow parallel (make -jn) builds (#31018)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年9月11日 19:11:17 +0000 (21:11 +0200)]
Allow parallel (make -jn) builds (#31018)

15 years agoMinimum libintl set to 0.37
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年9月11日 18:59:47 +0000 (20:59 +0200)]
Minimum libintl set to 0.37

15 years agoFix for the fix of #31010
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年9月11日 17:33:35 +0000 (19:33 +0200)]
Fix for the fix of #31010

15 years agoVersions mentioned in documentation and configure.ac updated
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年9月10日 21:59:04 +0000 (23:59 +0200)]
Versions mentioned in documentation and configure.ac updated

15 years agoFix for #29524 (links to source repo updated in manual)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年9月10日 21:37:23 +0000 (23:37 +0200)]
Fix for #29524 (links to source repo updated in manual)

15 years agoFix for #31010 (no error on MOVE 0)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年9月10日 20:46:42 +0000 (22:46 +0200)]
Fix for #31010 (no error on MOVE 0)

15 years agoTypo in README (hat tip Iuri T.)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年8月11日 16:32:12 +0000 (18:32 +0200)]
Typo in README (hat tip Iuri T.)

15 years agoFix for #28086 (compilation without Guile).
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年3月26日 17:21:11 +0000 (18:21 +0100)]
Fix for #28086 (compilation without Guile).

15 years agoDocument generation scripts updated.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2010年3月26日 17:20:44 +0000 (18:20 +0100)]
Document generation scripts updated.

16 years agoRequiring inttool 0.40.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月13日 20:46:24 +0000 (22:46 +0200)]
Requiring inttool 0.40.

16 years agoTypos and nits in the previous patch. 1.2.5
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月11日 18:22:11 +0000 (20:22 +0200)]
Typos and nits in the previous patch.

16 years agoProper acknowledge for Aleix's contributions.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月11日 18:12:54 +0000 (20:12 +0200)]
Proper acknowledge for Aleix's contributions.

* THANKS:
* doc/mdk_ack.texi: Proper acknowledgement.

16 years agoFixes for signature of guile initialization functions.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月11日 17:54:34 +0000 (19:54 +0200)]
Fixes for signature of guile initialization functions.

* mixgtk/gmixvm.c: inner_main_ signature corrected
* mixutils/mixvm_loop.c: loop_ signature corrected
* mixguile/mixguile.h: Cosmetics

16 years agoNEWS for 1.2.5.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月11日 17:36:35 +0000 (19:36 +0200)]
NEWS for 1.2.5.

16 years agoCopyright year updated.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月11日 16:33:19 +0000 (18:33 +0200)]
Copyright year updated.

16 years agoUsing gnulib's gitlog-to-changelog to generate ChangeLog.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月11日 16:32:49 +0000 (18:32 +0200)]
Using gnulib's gitlog-to-changelog to generate ChangeLog.

16 years agoStanza for ChangeLog generation added to autogen.sh.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月11日 15:58:17 +0000 (17:58 +0200)]
Stanza for ChangeLog generation added to autogen.sh.

16 years agoconfigure.in -> configure.ac in autogen.sh.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年10月11日 14:40:54 +0000 (16:40 +0200)]
configure.in -> configure.ac in autogen.sh.

16 years agoMinimum gtk+ version pumped to 2.16.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 5 Oct 2009 13:43:15 +0000 (15:43 +0200)]
Minimum gtk+ version pumped to 2.16.

16 years agoGtkFileChooser compatibility (conditionally using gtk 2.18 feature).
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 5 Oct 2009 13:36:16 +0000 (15:36 +0200)]
GtkFileChooser compatibility (conditionally using gtk 2.18 feature).

16 years agoCopyright years update.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 5 Oct 2009 08:31:37 +0000 (10:31 +0200)]
Copyright years update.

16 years agogmixvm: glade file: apparently, dialogs need to be top level.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 5 Oct 2009 08:03:58 +0000 (10:03 +0200)]
gmixvm: glade file: apparently, dialogs need to be top level.

16 years agogmixvm glade file: dialog properties homogenized.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 5 Oct 2009 01:43:55 +0000 (03:43 +0200)]
gmixvm glade file: dialog properties homogenized.

16 years agoGmixvm's new glade file tweaks (mostly vbox layouts).
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Mon, 5 Oct 2009 01:29:34 +0000 (03:29 +0200)]
Gmixvm's new glade file tweaks (mostly vbox layouts).

16 years agoExternal programs directory scanning delayed (but still present).
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Sun, 4 Oct 2009 23:00:22 +0000 (01:00 +0200)]
External programs directory scanning delayed (but still present).

16 years agoMigration of gmixvm's glade file to Glade 3.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Sun, 4 Oct 2009 22:59:35 +0000 (00:59 +0200)]
Migration of gmixvm's glade file to Glade 3.

16 years agoFix for application exit (glade changes were too many)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Sun, 4 Oct 2009 20:59:49 +0000 (22:59 +0200)]
Fix for application exit (glade changes were too many)

16 years agoRevert "Glade file updated (editing with Glade 3), and exit callback registered."
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Sun, 4 Oct 2009 20:42:30 +0000 (22:42 +0200)]
Revert "Glade file updated (editing with Glade 3), and exit callback registered."

This reverts commit 7acdf4dca205d8da124cd169da9993ac3c6e1627.

16 years agoGlade file updated (editing with Glade 3), and exit callback registered.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Sun, 4 Oct 2009 17:40:36 +0000 (19:40 +0200)]
Glade file updated (editing with Glade 3), and exit callback registered.

16 years agoCosmetics.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Thu, 1 Oct 2009 23:31:48 +0000 (01:31 +0200)]
Cosmetics.

16 years agoGuile: not using the deprecated gh_* interface.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Thu, 1 Oct 2009 22:51:40 +0000 (00:51 +0200)]
Guile: not using the deprecated gh_* interface.

16 years agoFix for #23816: missing symbol name in EQU is now just a warning.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [Thu, 1 Oct 2009 14:39:37 +0000 (16:39 +0200)]
Fix for #23816: missing symbol name in EQU is now just a warning.

16 years agoconfigure.in is now called configure.ac.
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年8月23日 02:07:53 +0000 (04:07 +0200)]
configure.in is now called configure.ac.

16 years agoautom4te cache dir removed
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2009年8月23日 01:55:30 +0000 (03:55 +0200)]
autom4te cache dir removed

17 years ago.ignore files for the compilation products
commit | commitdiff | tree
jao [2008年8月31日 05:11:50 +0000 (07:11 +0200)]
.ignore files for the compilation products

17 years agomix_eval_scanner: clean up dead code and remove warning (input() not
commit | commitdiff | tree
jao [2008年8月31日 05:09:18 +0000 (07:09 +0200)]
mix_eval_scanner: clean up dead code and remove warning (input() not
used)

17 years agoCopyright year in Glade file 1.2.4
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月21日 00:03:47 +0000 (01:03 +0100)]
Copyright year in Glade file

17 years agoNEWS update for 1.2.4
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月20日 23:47:30 +0000 (00:47 +0100)]
NEWS update for 1.2.4

17 years agoMinor TODO updates
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月20日 23:38:20 +0000 (00:38 +0100)]
Minor TODO updates

17 years agoManual generation scripts updated and ignoring doc/manual
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月20日 23:38:11 +0000 (00:38 +0100)]
Manual generation scripts updated and ignoring doc/manual

17 years agoSet all fonts dialog fixed (using correct default font)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月20日 15:14:05 +0000 (16:14 +0100)]
Set all fonts dialog fixed (using correct default font)

17 years agoDefault mixasm specification fixed
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月17日 10:10:38 +0000 (11:10 +0100)]
Default mixasm specification fixed

17 years agoAdd extra application mime type for external execs in darwin (closes #17519)
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月17日 00:46:34 +0000 (01:46 +0100)]
Add extra application mime type for external execs in darwin (closes #17519)

17 years agoGTK version check for gkt_entry_completion_set_popup_single_match()
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月17日 00:28:59 +0000 (01:28 +0100)]
GTK version check for gkt_entry_completion_set_popup_single_match()

17 years agoProperly set external commands, taking into account the host type
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月17日 00:12:35 +0000 (01:12 +0100)]
Properly set external commands, taking into account the host type

17 years agoMore ignored files
commit | commitdiff | tree
Jose Antonio Ortega Ruiz [2008年3月17日 00:12:05 +0000 (01:12 +0100)]
More ignored files

next
GNU MIX Development Kit (MDK)
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /