Skip to content

Commit

Permalink
1.0.39.12: remove darwin-langinfo
Browse files Browse the repository at this point in the history
 * remove darwin-langinfo.c/h from Config.*-darwin and
   grovel-headers.c

 * revert explicit setting of *default-c-string-external-format* to
   latin-1 in sb-posix test.
  • Loading branch information
Cyrus Harmon committed Jun 12, 2010
1 parent 0c4fe8f commit 7c75cd3
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 77 deletions.
3 changes: 1 addition & 2 deletions contrib/sb-posix/posix-tests.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,7 @@
nil)

(deftest readdir.1
(let ((dir (sb-posix:opendir "/"))
(sb-alien::*default-c-string-external-format* :latin-1))
(let ((dir (sb-posix:opendir "/")))
(unwind-protect
(block dir-loop
(loop for dirent = (sb-posix:readdir dir)
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/Config.ppc-darwin
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
CFLAGS = -g -Wall -O2 -fdollars-in-identifiers -mmacosx-version-min=10.4
LINKFLAGS += -mmacosx-version-min=10.4

OS_SRC = bsd-os.c darwin-os.c ppc-darwin-os.c darwin-langinfo.c
OS_SRC = bsd-os.c darwin-os.c ppc-darwin-os.c
ifdef LISP_FEATURE_DLSHIM
OS_SRC += darwin-dlshim.c
endif
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/Config.x86-64-darwin
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ifdef LISP_FEATURE_INODE64
CFLAGS += -D_DARWIN_USE_64_BIT_INODE
endif

OS_SRC = bsd-os.c x86-64-bsd-os.c darwin-os.c x86-64-darwin-os.c darwin-langinfo.c
OS_SRC = bsd-os.c x86-64-bsd-os.c darwin-os.c x86-64-darwin-os.c
ifdef LISP_FEATURE_DLSHIM
OS_SRC += darwin-dlshim.c
endif
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/Config.x86-darwin
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ CFLAGS += -mmacosx-version-min=10.4
LINKFLAGS += -mmacosx-version-min=10.4
endif

OS_SRC = bsd-os.c x86-bsd-os.c darwin-os.c x86-darwin-os.c darwin-langinfo.c
OS_SRC = bsd-os.c x86-bsd-os.c darwin-os.c x86-darwin-os.c
ifdef LISP_FEATURE_DLSHIM
OS_SRC += darwin-dlshim.c
endif
Expand Down
46 changes: 0 additions & 46 deletions src/runtime/darwin-langinfo.c

This file was deleted.

20 changes: 0 additions & 20 deletions src/runtime/darwin-langinfo.h

This file was deleted.

6 changes: 1 addition & 5 deletions tools-for-build/grovel-headers.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@
#include <sys/wait.h>
#include <sys/ioctl.h>
#include <sys/termios.h>
#ifdef LISP_FEATURE_DARWIN
#include "../src/runtime/darwin-langinfo.h"
#else
#include <langinfo.h>
#endif
#include <langinfo.h>
#ifdef LISP_FEATURE_DLSHIM
#include "../src/runtime/darwin-dlshim.h"
#else
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
"1.0.39.11"
"1.0.39.12"

0 comments on commit 7c75cd3

Please sign in to comment.