Skip to content
This repository has been archived by the owner on Dec 25, 2022. It is now read-only.
/ picolisp Public archive

Commit

Permalink
v19.1.30
Browse files Browse the repository at this point in the history
  • Loading branch information
mmamkin committed Jan 30, 2019
1 parent 29b52fe commit 3a6361d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
30jan19
Fixes for F12
src/Makefile
src64/sys/x86-64.freeBsd.defs.l
Change to ld4/st4 in errno_A/errnoC
src64/sys/x86-64.freeBsd.code.l
src64/sys/x86-64.openBsd.code.l
Expand Down
6 changes: 3 additions & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 04oct17abu
# 30jan19abu
# (c) Software Lab. Alexander Burger

bin = ../bin
Expand Down Expand Up @@ -42,10 +42,10 @@ ifeq ($(shell uname), FreeBSD)
OS = FreeBSD
CC = gcc
CCLD = clang
CFLAGS += ${M32}
CFLAGS += ${M32} -fPIC
PICOLISP-FLAGS = ${M32} -rdynamic
LIB-FLAGS = -lm
DYNAMIC-LIB-FLAGS = ${M32} -shared -export-dynamic
DYNAMIC-LIB-FLAGS = ${M32} -shared
LCRYPT = -lcrypt
STRIP = strip
else
Expand Down
12 changes: 6 additions & 6 deletions src64/sys/x86-64.freeBsd.defs.l
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 07jan17abu
# 30jan19abu
# Mansur Mamkin <mmamkin@mail.ru>

# errno
Expand Down Expand Up @@ -57,10 +57,10 @@
(equ O_ASYNC 64)

# stat
(equ STAT 120)
(equ ST_MODE 8)
(equ ST_SIZE 72)
(equ ST_MTIME 40)
(equ STAT 224)
(equ ST_MODE 24)
(equ ST_SIZE 112)
(equ ST_MTIME 64)
(equ S_IFMT (oct "170000"))
(equ S_IFREG (oct "100000"))
(equ S_IFDIR (oct "40000"))
Expand Down Expand Up @@ -126,7 +126,7 @@
(equ TM_GMTOFF 40)

# dir
(equ D_NAME 8)
(equ D_NAME 24)

# Sockets
(equ SOCK_STREAM 1)
Expand Down

0 comments on commit 3a6361d

Please sign in to comment.