Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6aad10e4
Commit
6aad10e4
authored
Jan 15, 1996
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(HAVE_XMU): Check for libXmu.a only if using toolkit
and use -lXt to link it.
parent
693f800d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
configure.in
configure.in
+7
-1
No files found.
configure.in
View file @
6aad10e4
...
...
@@ -1258,7 +1258,6 @@ if test "${HAVE_X11}" = "yes"; then
AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \
XScreenNumberOfScreen XSetWMProtocols)
AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
fi
if test "${window_system}" = "x11"; then
...
...
@@ -1296,6 +1295,13 @@ fail;
], [AC_MSG_RESULT(6)
AC_DEFINE(HAVE_X11XTR6)],
[AC_MSG_RESULT(not 6)])
dnl If using toolkit, check whether libXmu.a exists.
dnl tranle@intellicorp.com says libXmu.a can need XtMalloc in libXt.a to link.
OLDLIBS="$LIBS"
LIBS="-lXt $LIBS"
AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
LIBS=$"OLDLIBS"
fi
# If netdb.h doesn't declare h_errno, we must declare it by hand.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment