Skip to content
Snippets Groups Projects
  1. Jul 14, 2005
  2. Apr 29, 2005
  3. Jun 11, 2004
  4. Nov 11, 2003
  5. Jul 19, 2003
  6. Jul 17, 2003
  7. Jun 07, 2003
    • csr21's avatar
      Fix the bugs that the image test reveals. · 6820b4e3
      csr21 authored
      Fix the bugs that the image test reveals.
      The bug fix isn't great, though; we simply disable the FAST-xxx-PIXARRAY
      routines for sbcl, because they demonstrably don't work.  Patches will
      be welcome from anyone who understands what they are meant to do.
      
      darcs-hash:20030607093043-ed5a3-e3dd58efcab2a2f678d25864adb98425c3d91ca6.gz
      6820b4e3
  8. Jun 06, 2003
  9. May 08, 2003
  10. May 06, 2003
    • csr21's avatar
      Fix TIMEOUT argument to HOLDING-LOCK (hopefully, anyway) · 54fa63a6
      csr21 authored
      Fix TIMEOUT argument to HOLDING-LOCK (hopefully, anyway)
      Add IGNORE declarations elsewhere to preserve compiling with only
      optimization notes (about 1000 of them, sigh)
      
      darcs-hash:20030506130149-ed5a3-5de368c24b6042bc0d270e5d4cc022cc9f109883.gz
      54fa63a6
    • dan's avatar
      sb-thread conditionals · 949c77f8
      dan authored
      darcs-hash:20030506122327-2591e-b9d2d1bf1e783288f68309fc2ed9ed946d07d89e.gz
      949c77f8
  11. Apr 03, 2003
    • dan's avatar
      Experimental sbcl experimental thread support · 4a00e85c
      dan authored
      Experimental sbcl experimental thread support
      Export open-default-display
      
      darcs-hash:20030403174755-2591e-ad9ec8909b57c90731ca210ce6749feaa785b7fe.gz
      4a00e85c
    • csr21's avatar
      The great renaming, part II: · ea6ef481
      csr21 authored
      The great renaming, part II:
      Change old-style COMPILE LOAD EVAL to new-style :COMPILE-TOPLEVEL
      :LOAD-TOPLEVEL :EXECUTE in EVAL-WHENs.
      
      Mostly resist the temptation to reindent things.
      
      Decorate one or two places with FIXME comments.
      
      Since this brings us down to only 3 STYLE-WARNINGs, include the relevant
      (DECLARE IGNORABLE) statements to bring us down to zero.  Now only 495
      optimization notes to sort out.
      
      darcs-hash:20030403123933-ed5a3-06749f149b4bc8640110ee2b18ef8f5795baefc5.gz
      ea6ef481
    • csr21's avatar
      The great renaming, part I: · 9799acdc
      csr21 authored
      The great renaming, part I:
      For constants named by *FOO*, change the source to use +FOO+.  This
      commit was brought to you by the function dired-do-query-replace-regexp,
      the letter y, and the regular expression
      
      \*\(clx-cached-types\|replysize\|buffer-text16-size\|... \)\*
      
      darcs-hash:20030403112715-ed5a3-5cb0e20a94dd81b4d3f19db3eaab72980ba80915.gz
      9799acdc
  12. Mar 22, 2003
  13. Feb 21, 2003
  14. Feb 11, 2003
  15. Feb 09, 2003
    • dan's avatar
      Allows the use of CLX clients over an ssh-forwarded connection. · 1b0cfaa2
      dan authored
      Allows the use of CLX clients over an ssh-forwarded connection.
      Thanks to Eric Marsden for explaining this one and writing the code
      in CMUCL CLX that fixes it.
      
      The X authority database is a small file typically found in
      $HOME/.Xauthority, each of the records in which is a binary-encoded
      tuple of
      
        (protocol address display-num auth-scheme-name auth-data)
      
      protocol is typically FamilyInternet or FamilyDECnet or something. The
      interpretation of address is protocol-specific, the display is a
      number, and the auth-data depends on the auth-scheme-name.  With that
      said, I don't know of any any authorization schemes other than
      MIT-MAGIC-COOKIE-1, for which the auth data is 16 bytes of binary guck.
      
      For FamilyInternet, the address is just the IP address.  That's easy.
      However, the authority database may be shared between multiple
      machines (for example, if you have NFS-mounted $HOME), so it has to do
      something special with local transports (unix sockets, shm, etc) so
      that they don't all overwrite each other.  xauth invents some more
      Family* constants: the important one here is FamilyLocal, for which
      the address is the machine hostname as returned by gethostname().  If
      your DISPLAY is set to ":n" or "unix:n", this conventionally indicates
      a local connection, so these go into xauthority as FamilyLocal, wich
      the machine hostname to disambiguate them.
      
      Many people use SSH X connection forwarding to securely open remote X
      displays.  If you're on host A, and you ssh to host B with X
      connection forwarding (ssh -X B), the daemon on host B opens a server
      socket bound to 127.0.0.1, port 6010 , then sets up your DISPLAY
      variable as localhost:10 (6011, 6012 etc as more connections are made).
      So, we have the same problem here as we do with local connections:
      127.0.0.1 is localhost _everywhere_, so xauth actually specialcases
      any host whose address is 127.0.0.1 in the same way as it does "" and "unix"
      
      In summary, then, the necessary action to open a connection to the
      nth ssh-forwarded server on a machine is
      
        1) obtain authentication data for FamilyLocal, display n+10
        2) open the display at FamilyInternet host localhost port n+6010
      
      darcs-hash:20030209190313-2591e-21921051977c5b3ba91bbd38241e666cb26a6687.gz
      1b0cfaa2
    • dan's avatar
      UNIX implementation of get-the-default-display-settings function. SBCL version of host-address · f02b69c8
      dan authored
      darcs-hash:20030209045520-2591e-1e987ff11a73373ffd13fb1ad2aea208f275e0d0.gz
      f02b69c8
  16. Feb 08, 2003
    • dan's avatar
      Various porting fixes starting from RAW's version - · 2576f0c1
      dan authored
      Add clx.asd for a nice clean build process
      
      Bad type declaration in input.lisp
      
      Messing about with packages in dependent.lisp so we can run without
      having to recreate all the old CMUCL packages as aliases for the
      nearly-equivalent SBCL ones
      
      dependent.lisp now uses functions in sb-bsd-sockets to open network
      connections, so no foreign code necessary
      
      Updated README
      
      darcs-hash:20030208233358-2591e-b98f2e262fa3470c34c4f2b50aac18b786b419d3.gz
      2576f0c1
  17. Jan 11, 2002
    • dan's avatar
      Initial revision · c7578285
      dan authored
      darcs-hash:20020111130301-2591e-c6010a9101b311834b597be9e11c597e3fbdd64e.gz
      c7578285
Loading