Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
xabacus
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Debian
xabacus
Commits
14cf8918
Commit
14cf8918
authored
Apr 15, 2018
by
Innocent De Marchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New upstream version 8.1.7+dfsg1
parent
3a498a11
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
234 additions
and
69 deletions
+234
-69
ChangeLog
ChangeLog
+2
-0
Imakefile
Imakefile
+2
-2
Makefile.in
Makefile.in
+2
-2
version.h
version.h
+1
-1
vms/make.com
vms/make.com
+1
-0
xabacus.c
xabacus.c
+226
-64
No files found.
ChangeLog
View file @
14cf8918
[Apr 03, 2018] V8.1.7:
Updated to use spinner (using latest Motif ;) ).
[Feb 05, 2018] V8.1.6:
[Feb 05, 2018] V8.1.6:
Added rail shading.
Added rail shading.
[Nov 16, 2017] V8.1.5:
[Nov 16, 2017] V8.1.5:
...
...
Imakefile
View file @
14cf8918
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
#endif
#endif
XCOMM @(#)Imakefile
XCOMM @(#)Imakefile
XCOMM
XCOMM
XCOMM Copyright 1994 - 201
7
David A. Bagley, bagleyd AT verizon.net
XCOMM Copyright 1994 - 201
8
David A. Bagley, bagleyd AT verizon.net
XCOMM
XCOMM
XCOMM All Rights Reserved
XCOMM All Rights Reserved
XCOMM
XCOMM
...
@@ -214,7 +214,7 @@ DEFINES = -DHAVE_FCNTL_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 \
...
@@ -214,7 +214,7 @@ DEFINES = -DHAVE_FCNTL_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 \
$(XMDEF) $(XPMDEF) $(EDITRESDEF) $(SOUNDDEF) $(SLEEPDEF) $(RANDDEF) \
$(XMDEF) $(XPMDEF) $(EDITRESDEF) $(SOUNDDEF) $(SLEEPDEF) $(RANDDEF) \
-DSOUNDPATH=\"$(READPATH)\" -DSOUNDEXT=\".au\" \
-DSOUNDPATH=\"$(READPATH)\" -DSOUNDEXT=\".au\" \
-DBUMPSOUND=\"bump\" -DMOVESOUND=\"move\" -DDRIPSOUND=\"drip\" \
-DBUMPSOUND=\"bump\" -DMOVESOUND=\"move\" -DDRIPSOUND=\"drip\" \
$(XMINC) $(XPMINC) -DLEE_ABACUS
$(XMINC) $(XPMINC) -DLEE_ABACUS
-DUSE_SPIN
LOCAL_LIBRARIES = $(XMLIB) $(XTOOLLIB) $(XLIB) $(XPMLIB) $(EDITRESLIB) -lm
LOCAL_LIBRARIES = $(XMLIB) $(XTOOLLIB) $(XLIB) $(XPMLIB) $(EDITRESLIB) -lm
# -lICE -lSM
# -lICE -lSM
...
...
Makefile.in
View file @
14cf8918
# @(#)Makefile.in
# @(#)Makefile.in
#
#
# Copyright 1997 - 201
7
David A. Bagley, bagleyd AT verizon.net
# Copyright 1997 - 201
8
David A. Bagley, bagleyd AT verizon.net
#
#
# All Rights Reserved
# All Rights Reserved
#
#
...
@@ -98,7 +98,7 @@ W = @SOUNDEXT@
...
@@ -98,7 +98,7 @@ W = @SOUNDEXT@
DEFINES
=
\
DEFINES
=
\
-DSOUNDPATH
=
\"
$(readdir)
\"
-DSOUNDEXT
=
\"
$(W)
\"
\
-DSOUNDPATH
=
\"
$(readdir)
\"
-DSOUNDEXT
=
\"
$(W)
\"
\
-DBUMPSOUND
=
\"
bump
\"
-DMOVESOUND
=
\"
move
\"
-DDRIPSOUND
=
\"
drip
\"
\
-DBUMPSOUND
=
\"
bump
\"
-DMOVESOUND
=
\"
move
\"
-DDRIPSOUND
=
\"
drip
\"
\
-DDEMOPATH
=
\"
$(readdir)
\"
-DDEMOPATH
=
\"
$(readdir)
\"
-DUSE_SPIN
DEFS
=
@DEFS@
$(DEFINES)
DEFS
=
@DEFS@
$(DEFINES)
# -DDEBUG
# -DDEBUG
# -DSRAND=srand48 -DLRAND=lrand48 -DMAXRAND=2147483648.0
# -DSRAND=srand48 -DLRAND=lrand48 -DMAXRAND=2147483648.0
...
...
version.h
View file @
14cf8918
#ifndef _version_h
#ifndef _version_h
#define _version_h
#define _version_h
#define VERSION "8.1.
6
"
#define VERSION "8.1.
7
"
#endif
/* _version_h */
#endif
/* _version_h */
vms/make.com
View file @
14cf8918
...
@@ -84,6 +84,7 @@ $! if have VMS port for libxml2, then add -DUSE_XML2
...
@@ -84,6 +84,7 @@ $! if have VMS port for libxml2, then add -DUSE_XML2
$ if axp .and. sound then defs=="''defs',USE_VMSPLAY"
$ if axp .and. sound then defs=="''defs',USE_VMSPLAY"
$ defs=="''defread',''defs'"
$ defs=="''defread',''defs'"
$ defs=="''defs',LEE_ABACUS"
$ defs=="''defs',LEE_ABACUS"
$ defs=="''defs',USE_SPIN"
$!
$!
$!
$!
$! Establish the Compiling Environment
$! Establish the Compiling Environment
...
...
xabacus.c
View file @
14cf8918
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment