* Do not distribute xlib.scm if X11 support wasn't found.

* Ditto for motif.scm, xaw.scm and xwidgets.scm.


git-svn-id: svn://svn.zoy.org/elk/trunk@101 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2003-09-06 11:20:46 +00:00
parent 57766216c8
commit f151f7ca38
1 changed files with 16 additions and 4 deletions

View File

@ -12,7 +12,7 @@ SCM_FILES = \
describe.scm \ describe.scm \
$(gdbmtest_scm) \ $(gdbmtest_scm) \
initscheme.scm \ initscheme.scm \
motif.scm \ $(motif_scm) \
oops.scm \ oops.scm \
parse.scm \ parse.scm \
pp.scm \ pp.scm \
@ -26,11 +26,23 @@ SCM_FILES = \
toplevel.scm \ toplevel.scm \
trace.scm \ trace.scm \
unix.scm \ unix.scm \
xlib.scm \ $(xlib_scm) \
xaw.scm \ $(xaw_scm) \
xwidgets.scm \ $(xwidgets_scm) \
$(NULL) $(NULL)
if HAVE_GDBM if HAVE_GDBM
gdbmtest_scm = gdbmtest.scm gdbmtest_scm = gdbmtest.scm
endif endif
if HAVE_X11
xlib_scm = xlib.scm
endif
if HAVE_XAW
xaw_scm = xaw.scm
xwidgets_scm = xwidgets.scm
endif
if HAVE_MOTIF
motif_scm = motif.scm
xwidgets_scm = xwidgets.scm
endif