Skip to content
Snippets Groups Projects
Commit 41f3f8f2 authored by layer's avatar layer
Browse files

see changelog for Thu Jul 29 13:44:54 1993

parent ff0f9eda
No related branches found
No related tags found
No related merge requests found
Thu Jul 29 13:44:54 1993 Kevin Layer (layer at sole)
* Makefile.cobjs-svr4: make sure LD_LIBRARY_PATH is setup properly
* Makefile.dec3100: set `Makefile' variable
* Makefile.defs: ditto
* Makefile.hp700: ditto
* Makefile.sun4.motif-1.1.4: ditto
* Makefile.svr4: ditto
* Makefile.generic: fix clean; add install_obj used by make-dist
* misc/train.lisp: don't (setq *global-gc-behavior* nil)
* test/test-driver.lisp: ditto
* tk/load-ol.lisp:
* tk/load-xm.lisp:
* tk/make-classes.lisp:
* xlib/load-xlib.lisp:
:note-shared-library-references nil on get-entry-point
* tk/resources.lisp: solaris 2.2 hacking from cer
* tk/xt-funs.lisp: fix argument types (string -> simple-string) so
call-direct is done
-------------------------------------------------------------------------------
from colin: Tue Jul 27 15:26:56 PDT 1993 from colin: Tue Jul 27 15:26:56 PDT 1993
test/test-suite.lisp test/test-suite.lisp
......
# $fiHeader: Makefile.cobjs-svr4,v 1.1 93/04/16 09:26:11 layer Exp $ # $fiHeader: Makefile.cobjs-svr4,v 1.1 93/04/16 09:26:11 layer Exp $
climol.so: xlibsupport.o xtsupport.o olsupport.o climol.so: xlibsupport.o xtsupport.o olsupport.o
@echo LD_LIBRARY_PATH is $$LD_LIBRARY_PATH (eval `$(setup_LLP) openlook`; \
ld -G -o climol.so xlibsupport.o xtsupport.o olsupport.o \ echo LD_LIBRARY_PATH is $$LD_LIBRARY_PATH; \
-L/usr/openwin/lib -lXol -lXt -lX11 ld -G -o climol.so xlibsupport.o xtsupport.o olsupport.o \
-lXol -lXt -lX11)
climxm.so: xlibsupport.o xtsupport.o MyDrawingA.o climxm.so: xlibsupport.o xtsupport.o MyDrawingA.o
@echo LD_LIBRARY_PATH is $$LD_LIBRARY_PATH (eval `$(setup_LLP) motif`; \
ld -G -o climxm.so xlibsupport.o xtsupport.o MyDrawingA.o \ echo LD_LIBRARY_PATH is $$LD_LIBRARY_PATH; \
-lXm -lXt -lX11 -lgen ld -G -o climxm.so xlibsupport.o xtsupport.o MyDrawingA.o \
-lXm -lXt -lX11 -lgen)
xlibsupport.o : xlib/xlibsupport.c xlibsupport.o : xlib/xlibsupport.c
$(CC) -c -K pic $(CFLAGS) $(XINCLUDES) -o xlibsupport.o xlib/xlibsupport.c $(CC) -c -K pic $(CFLAGS) $(XINCLUDES) -o xlibsupport.o \
xlib/xlibsupport.c
xtsupport.o: misc/xtsupport.c xtsupport.o: misc/xtsupport.c
$(CC) -c -K pic $(CFLAGS) $(XINCLUDES) $(XTSUPPORTINCLUDES) -o xtsupport.o \ $(CC) -c -K pic $(CFLAGS) $(XINCLUDES) $(XTSUPPORTINCLUDES)\
misc/xtsupport.c -o xtsupport.o misc/xtsupport.c
MyDrawingA.o: misc/MyDrawingA.c misc/climgccursor.c MyDrawingA.o: misc/MyDrawingA.c misc/climgccursor.c
$(CC) -c -K pic $(CFLAGS) $(XMINCLUDES) -o MyDrawingA.o misc/MyDrawingA.c $(CC) -c -K pic $(CFLAGS) $(XMINCLUDES) -o MyDrawingA.o \
misc/MyDrawingA.c
olsupport.o: misc/olsupport.c misc/climgccursor.c olsupport.o: misc/olsupport.c misc/climgccursor.c
$(CC) -c -K pic $(CFLAGS) $(OLINCLUDES) -o olsupport.o misc/olsupport.c $(CC) -c -K pic $(CFLAGS) $(OLINCLUDES) -o olsupport.o misc/olsupport.c
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
include Makefile.defs include Makefile.defs
Makefile=Makefile.dec3100
MOTIFLIB=/usr/lib/DXM/lib/Xm/libXm.a MOTIFLIB=/usr/lib/DXM/lib/Xm/libXm.a
MOTIFLIB_d=/usr/lib/DXM/lib/Xm/libXm.a MOTIFLIB_d=/usr/lib/DXM/lib/Xm/libXm.a
XTLIB=/usr/lib/DXM/lib/Xt/libXt.a XTLIB=/usr/lib/DXM/lib/Xt/libXt.a
......
...@@ -17,6 +17,11 @@ TAGS = /usr/fi/lib/emacs/etc/etags ...@@ -17,6 +17,11 @@ TAGS = /usr/fi/lib/emacs/etc/etags
TMP = /tmp TMP = /tmp
MV = /usr/fi/mv-nfs MV = /usr/fi/mv-nfs
# If you try and execute this as the -f argument to `make', then you forgot
# to put a `Makefile' variable definition in your machine specific
# Makefile (ie, Makefile.sun4).
Makefile = Makefile.bogus
# Training # Training
TRAIN_TIMES=1 TRAIN_TIMES=1
...@@ -517,7 +522,7 @@ make = make SPEED=${SPEED} SAFETY=${SAFETY} DEBUG=${DEBUG} \ ...@@ -517,7 +522,7 @@ make = make SPEED=${SPEED} SAFETY=${SAFETY} DEBUG=${DEBUG} \
LOAD_XREF_INFO=${LOAD_XREF_INFO} \ LOAD_XREF_INFO=${LOAD_XREF_INFO} \
RECORD_XREF_INFO=${RECORD_XREF_INFO} CL=${CL} \ RECORD_XREF_INFO=${RECORD_XREF_INFO} CL=${CL} \
CLIM=${CLIM} CLIMOL=${CLIMOL} CLIMXM=${CLIMXM} DUMP-CLIM=${DUMP-CLIM} \ CLIM=${CLIM} CLIMOL=${CLIMOL} CLIMXM=${CLIMXM} DUMP-CLIM=${DUMP-CLIM} \
COMPILE_PRINT=${COMPILE_PRINT} TMP=${TMP} COMPILE_PRINT=${COMPILE_PRINT} TMP=${TMP} -f ${Makefile}
CLIM1COMPAT= compatibility/packages.fasl compatibility/clim1-compatibility.fasl CLIM1COMPAT= compatibility/packages.fasl compatibility/clim1-compatibility.fasl
......
...@@ -210,12 +210,11 @@ echo-train: ...@@ -210,12 +210,11 @@ echo-train:
# Misc # Misc
cleanobjs: cleanobjs:
rm -f $(CLIMOBJS) stub-motif.o stub-olit.o rm -f $(CLIMOBJS) *.o
clean: clean:
find $(DIRS) -name '*.fasl' -print | xargs rm -f find . -name '*.fasl' -print | xargs rm -f
rm -f $(CLIMFASLS) $(CLIMOBJS) *.o \ rm -f $(CLIMFASLS) $(CLIMOBJS) *.o \
stub-motif.c stub-olit.c stub-xt.c stub-x.c slim slim-small stub-motif.c stub-olit.c stub-xt.c stub-x.c slim slim-small
rm -f *.z *.Z *.gz *.ilt rm -f *.z *.Z *.gz *.ilt
...@@ -258,10 +257,11 @@ makeclimfasls : $(CLIM_FASLS_TO_MAKE) ...@@ -258,10 +257,11 @@ makeclimfasls : $(CLIM_FASLS_TO_MAKE)
makeclimxmfasls : compile-xm cat-xm makeclimxmfasls : compile-xm cat-xm
makeclimolfasls : compile-ol cat-ol makeclimolfasls : compile-ol cat-ol
install_obj:
install_clim :
cp $(CLIMFASLS) $(DEST)
cp $(INSTALLED_CLIMOBJS) $(DEST) cp $(INSTALLED_CLIMOBJS) $(DEST)
install_clim: install_obj
cp $(CLIMFASLS) $(DEST)
# Link in the libraries & distribution object files with standard names # Link in the libraries & distribution object files with standard names
# #
...@@ -276,8 +276,8 @@ link-motif-libraries: link-objects ...@@ -276,8 +276,8 @@ link-motif-libraries: link-objects
echo_src_files: echo_src_files:
@ls $(SRC_FILES) | cat @ls $(SRC_FILES) | cat
makeclimobjs : $(CLIMOBJS) makeclimobjs: $(CLIMOBJS)
################## Lower level Makefile stuff ################## Lower level Makefile stuff
......
# $fiHeader: Makefile.hp700,v 1.2 93/05/13 16:22:43 cer Exp $
#
# Makefile.hp700 for CLIM 2.0
#
include Makefile.defs
CL=/usr/fi/dcl-devel
#
MOTIFLIB=/usr/lib/Motif1.2/libXm.a
MOTIFLIB_d=/usr/lib/Motif1.2/libXm.a
XTLIB=/usr/lib/X11R5/libXt.a
XLIB=/usr/lib/X11R5/libX11.a
XINCLUDES= -I/usr/include/Motif1.2 -I/usr/include/X11R5
XMINCLUDES=$(XINCLUDES)
# Make motif only. This is like the dec.
# Perhaps this should be included.
CLIM_FASLS_TO_MAKE = makeclimxmfasls
CLIMOBJS=$(GENERIC_PUBLIC_OBJS) $(XM_PUBLIC_OBJS) $(XM_LICENSED_OBJS)
CLIMFASLS= $(CLIM_XM_FASLS) $(CLIM_GENERIC_FASLS)
INSTALLED_CLIMOBJS=$(GENERIC_PUBLIC_OBJS) $(XM_PUBLIC_OBJS) $(XM_LICENSED_OBJS)
include Makefile.generic
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
include Makefile.defs include Makefile.defs
Makefile=Makefile.sun4
MOTIFHOME=/net/vapor/3rd/motif-1.2.2 MOTIFHOME=/net/vapor/3rd/motif-1.2.2
MOTIFLIB=$(MOTIFHOME)/usr/lib/libXm$(DEBUGLIB).a MOTIFLIB=$(MOTIFHOME)/usr/lib/libXm$(DEBUGLIB).a
#MOTIFLIB_d=$(MOTIFHOME)/usr/lib/libXm_d.a #MOTIFLIB_d=$(MOTIFHOME)/usr/lib/libXm_d.a
...@@ -14,7 +16,6 @@ XTLIB=$(MOTIFHOME)/usr/lib/libXt$(DEBUGLIB).a ...@@ -14,7 +16,6 @@ XTLIB=$(MOTIFHOME)/usr/lib/libXt$(DEBUGLIB).a
XINCLUDES=-I$(MOTIFHOME)/usr/include XINCLUDES=-I$(MOTIFHOME)/usr/include
XMINCLUDES=-I$(MOTIFHOME)/usr/include XMINCLUDES=-I$(MOTIFHOME)/usr/include
OLINCLUDES=-I/usr/openwin/include
XTSUPPORTINCLUDES=-I/net/vapor/x11/R5/src/mit/lib/Xt XTSUPPORTINCLUDES=-I/net/vapor/x11/R5/src/mit/lib/Xt
# Do we really need this. Why is it referenced? # Do we really need this. Why is it referenced?
...@@ -23,5 +24,7 @@ MOTIFXTRAOS=$(MOTIFHOME)/usr/lib/Motif/Sun/dlsym.o ...@@ -23,5 +24,7 @@ MOTIFXTRAOS=$(MOTIFHOME)/usr/lib/Motif/Sun/dlsym.o
OPENLOOKHOME=/net/vapor/x11/olit-3.0 OPENLOOKHOME=/net/vapor/x11/olit-3.0
OLXLIB= $(OPENLOOKHOME)/lib/libX11.a OLXLIB= $(OPENLOOKHOME)/lib/libX11.a
OLXTLIB=$(OPENLOOKHOME)/lib/libXt.a OLXTLIB=$(OPENLOOKHOME)/lib/libXt.a
# don't use OPENLOOKHOME because there are no include files there
OLINCLUDES=-I/usr/openwin/include
include Makefile.generic include Makefile.generic
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
include Makefile.defs include Makefile.defs
Makefile=Makefile.sun4.motif-1.1.4
MOTIFLIB=/x11/R4/sun4-lib/libXm$(DEBUGLIB).a MOTIFLIB=/x11/R4/sun4-lib/libXm$(DEBUGLIB).a
MOTIFLIB_d=/x11/R4/sun4-lib/libXm_d.a MOTIFLIB_d=/x11/R4/sun4-lib/libXm_d.a
XLIB= /x11/R4/sun4-lib/libX11$(DEBUGLIB).a XLIB= /x11/R4/sun4-lib/libX11$(DEBUGLIB).a
......
# $fiHeader: Makefile.svr4,v 1.3 1993/05/13 16:22:49 cer Exp $
include Makefile.defs
C_OBJECT_MAKEFILE = Makefile.cobjs-svr4
XLIB-CLIM-OBJS = xlib/pkg.fasl
GENERIC_PUBLIC_OBJS =
XM_PUBLIC_OBJS =
OL_PUBLIC_OBJS =
PUBLIC_OBJS =
OL_LICENSED_OBJS =
XM_LICENSED_OBJS =
MOTIF_OBJS = climxm.so
OPENLOOK_OBJS = climol.so
CLIMOBJS= climxm.so climol.so
INSTALLED_CLIMXMOBJS = MyDrawingA.o climxm.so
INSTALLED_CLIMOLOBJS = olsupport.o climol.so
INSTALLED_CLIMOBJS= xlibsupport.o xtsupport.o \
$(INSTALLED_CLIMOLOBJS) $(INSTALLED_CLIMXMOBJS)
MOTIFLIB=/usr/lib/libXm$(DEBUGLIB).a
MOTIFLIB_d=/usr/lib/libXm.a
XLIB= /usr/lib/libX11$(DEBUGLIB).a
XTLIB=/usr/lib/libXt$(DEBUGLIB).a
XINCLUDES=-I/usr/include
XMINCLUDES=-I/usr/include
OLINCLUDES=-I/usr/openwin/include
XTSUPPORTINCLUDES=-I/net/vapor/x11/R5/src/mit/lib/Xt
MOTIFXTRAOS=
OLXLIB= /usr/lib/libX11.a
OLXTLIB=/usr/lib/libXt.a
############ overrides of things defined in Makefile.defs
OPENWINHOME = /usr/openwin
CL_SRC = xxxxxxxxxxxxxxxxxxxxx
OLCOPYLIB=not-used-xxxxx
OLXLIBS=/usr/openwin/lib/libXt.a /usr/openwin/lib/libX11.a
LIBXOL=/usr/openwin/lib/libXol.a
LIBXOL_d=$(LIBXOL)
CL = /scm3/4.2.beta2.0-sunos5/src/dcl
PWD = .
include Makefile.generic
;; -*- mode: common-lisp; package: user -*- ;; -*- mode: common-lisp; package: user -*-
;; ;;
;; -[]- ;; -[Tue Jul 20 08:58:43 1993 by layer]-
;; ;;
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved. ;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1992 Franz Inc, Berkeley, CA All rights reserved. ;; copyright (c) 1986-1992 Franz Inc, Berkeley, CA All rights reserved.
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
(profilep t) (profilep t)
(benchmarkp t)) (benchmarkp t))
(setq *global-gc-behavior* nil) ;;(setq *global-gc-behavior* nil)
(load "test/test.lisp") (load "test/test.lisp")
(clim-user::with-test-reporting (:file (if (excl::featurep :clim-motif) (clim-user::with-test-reporting (:file (if (excl::featurep :clim-motif)
"test-suite-reportxm.lisp" "test-suite-reportxm.lisp"
......
...@@ -798,5 +798,6 @@ ...@@ -798,5 +798,6 @@
;; This stops warnings happening asynchronously and causing confusion. ;; This stops warnings happening asynchronously and causing confusion.
(setq excl:*global-gc-behavior* nil) ;;The warnings go to the initial terminal io, anyway. With the following
;;uncommented, the full tests can't complete in 100mb of swap space.
;;(setq excl:*global-gc-behavior* nil)
;; -*- mode: common-lisp; package: user -*- ;; -*- mode: common-lisp; package: user -*-
;; ;;
;; -[Tue Jul 6 17:18:39 1993 by colin]-
;;
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved. ;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1991 Franz Inc, Berkeley, CA All rights reserved. ;; copyright (c) 1986-1993 Franz Inc, Berkeley, CA All rights reserved.
;; ;;
;; The software, data and information contained herein are proprietary ;; The software, data and information contained herein are proprietary
;; to, and comprise valuable trade secrets of, Franz, Inc. They are ;; to, and comprise valuable trade secrets of, Franz, Inc. They are
...@@ -28,7 +26,8 @@ ...@@ -28,7 +26,8 @@
(require :climg) (require :climg)
#+svr4 #+svr4
(unless (ff:get-entry-point (ff:convert-to-lang "ol_appl_add_item")) (unless (ff:get-entry-point (ff:convert-to-lang "ol_appl_add_item")
:note-shared-library-references nil)
(load "climol.so")) (load "climol.so"))
#-svr4 #-svr4
......
;; -*- mode: common-lisp; package: user -*- ;; -*- mode: common-lisp; package: user -*-
;; ;;
;; -[Tue Jul 6 15:06:38 1993 by colin]-
;;
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved. ;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1991 Franz Inc, Berkeley, CA All rights reserved. ;; copyright (c) 1986-1993 Franz Inc, Berkeley, CA All rights reserved.
;; ;;
;; The software, data and information contained herein are proprietary ;; The software, data and information contained herein are proprietary
;; to, and comprise valuable trade secrets of, Franz, Inc. They are ;; to, and comprise valuable trade secrets of, Franz, Inc. They are
...@@ -28,7 +26,8 @@ ...@@ -28,7 +26,8 @@
(require :climg) (require :climg)
#+svr4 #+svr4
(unless (ff:get-entry-point (ff:convert-to-lang "XmCreateMyDrawingArea")) (unless (ff:get-entry-point (ff:convert-to-lang "XmCreateMyDrawingArea")
:note-shared-library-references nil)
(load "climxm.so")) (load "climxm.so"))
#-svr4 #-svr4
......
;; -*- mode: common-lisp; package: tk -*- ;; -*- mode: common-lisp; package: tk -*-
;; ;;
;; -[Fri May 21 08:43:00 1993 by layer]- ;; -[Tue Jul 6 22:42:47 1993 by layer]-
;; ;;
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved. ;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1991 Franz Inc, Berkeley, CA All rights reserved. ;; copyright (c) 1986-1991 Franz Inc, Berkeley, CA All rights reserved.
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
(let ((ep #+hpprism (ff:get-extern-data-address x) (let ((ep #+hpprism (ff:get-extern-data-address x)
#-hpprism (ff:get-entry-point #-hpprism (ff:get-entry-point
x x
#+svr4 :note-shared-library-references #+svr4 nil))) #+svr4 :note-shared-library-references #+svr4 nil)))
(unless ep (error "Entry point ~S not found" x)) (unless ep (error "Entry point ~S not found" x))
(class-array ep 0))) (class-array ep 0)))
......
;; -*- mode: common-lisp; package: tk -*- ;; -*- mode: common-lisp; package: tk -*-
;; ;;
;; -[Fri Apr 16 09:24:22 1993 by layer]- ;; -[Thu Jul 8 15:33:25 1993 by layer]-
;; ;;
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved. ;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1991 Franz Inc, Berkeley, CA All rights reserved. ;; copyright (c) 1986-1991 Franz Inc, Berkeley, CA All rights reserved.
...@@ -711,3 +711,27 @@ ...@@ -711,3 +711,27 @@
(etypecase value (etypecase value
(string value) (string value)
(null "")))) (null ""))))
;; solaris 2.2 stuff
(defmethod convert-resource-out ((parent t) (type (eql 'ol-str)) value)
(string-to-char* value))
(defmethod convert-resource-in ((parent t) (type (eql 'ol-str)) value)
(unless (zerop value)
(char*-to-string value)))
(defmethod convert-resource-out ((parent t) (type (eql 'ol-font)) value)
(etypecase value
(string
(make-instance 'font
:display (widget-display parent)
:name value))
(font value)))
(defmethod convert-resource-in ((parent t) (typep (eql 'ol-font)) value)
(make-instance 'font
:display (widget-display parent)
:foreign-address value))
;; -*- mode: common-lisp; package: xt -*- ;; -*- mode: common-lisp; package: xt -*-
;; ;;
;; -[]- ;; -[Thu Jul 8 11:51:27 1993 by layer]-
;; ;;
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved. ;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1992 Franz Inc, Berkeley, CA All rights reserved. ;; copyright (c) 1986-1992 Franz Inc, Berkeley, CA All rights reserved.
...@@ -409,14 +409,14 @@ ...@@ -409,14 +409,14 @@
(ff:defforeign 'xt_parse_translation_table (ff:defforeign 'xt_parse_translation_table
:call-direct t :call-direct t
:arguments '(string) :arguments '(simple-string)
:arg-checking nil :arg-checking nil
:entry-point (ff:convert-to-lang "XtParseTranslationTable") :entry-point (ff:convert-to-lang "XtParseTranslationTable")
:return-type :unsigned-integer) :return-type :unsigned-integer)
(ff:defforeign 'xt_parse_accelerator_table (ff:defforeign 'xt_parse_accelerator_table
:call-direct t :call-direct t
:arguments '(string) :arguments '(simple-string)
:arg-checking nil :arg-checking nil
:entry-point (ff:convert-to-lang "XtParseAcceleratorTable") :entry-point (ff:convert-to-lang "XtParseAcceleratorTable")
:return-type :unsigned-integer) :return-type :unsigned-integer)
......
;; -*- mode: common-lisp; package: x11 -*- ;; -*- mode: common-lisp; package: x11 -*-
;; ;;
;; -[Tue Jul 6 17:18:09 1993 by colin]-
;;
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved. ;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1992 Franz Inc, Berkeley, CA All rights reserved. ;; copyright (c) 1986-1993 Franz Inc, Berkeley, CA All rights reserved.
;; ;;
;; The software, data and information contained herein are proprietary ;; The software, data and information contained herein are proprietary
;; to, and comprise valuable trade secrets of, Franz, Inc. They are ;; to, and comprise valuable trade secrets of, Franz, Inc. They are
...@@ -51,7 +49,8 @@ ...@@ -51,7 +49,8 @@
(defvar sys::*libx11-pathname* "-lX11") (defvar sys::*libx11-pathname* "-lX11")
(unless (ff:get-entry-point (ff:convert-to-lang "lisp_XDrawString")) (unless (ff:get-entry-point (ff:convert-to-lang "lisp_XDrawString")
:note-shared-library-references nil)
(load "xlibsupport.o" (load "xlibsupport.o"
:system-libraries (list sys::*libx11-pathname*) :print t)) :system-libraries (list sys::*libx11-pathname*) :print t))
...@@ -59,4 +58,3 @@ ...@@ -59,4 +58,3 @@
"stub-x.o" "stub-x.o"
(x11::symbols-from-file "misc/undefinedsymbols") (x11::symbols-from-file "misc/undefinedsymbols")
(list sys::*libx11-pathname*)) (list sys::*libx11-pathname*))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment