Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
564d75ed
Commit
564d75ed
authored
Jun 18, 1993
by
Jim Blandy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.in: Only check for -lXbsd once.
parent
40166bf1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
20 deletions
+10
-20
configure1.in
configure1.in
+10
-20
No files found.
configure1.in
View file @
564d75ed
...
@@ -1032,26 +1032,6 @@ case ${HAVE_X11} in
...
@@ -1032,26 +1032,6 @@ case ${HAVE_X11} in
;;
;;
esac
esac
### Check for XFree386. It needs special hacks.
lib_havexbsd=no
]
AC_HAVE_LIBRARY( Xbsd , have_libxbsd=yes , have_libxbsd=no )
[
if [ -n "${x_libraries}" ] && [ -f ${x_libraries}/libXbsd.a ]; then
have_libxbsd=yes
fi
case ${window_system} in
x11 )
if [ -d /usr/X386/include ] && [ "${have_libxbsd}" = "yes" ]; then
HAVE_XFREE386=yes
if [ "${C_SWITCH_X_SITE}" = "" ]; then
C_SWITCH_X_SITE="-I/usr/X386/include"
fi
fi
;;
esac
#### Extract some information from the operating system and machine files.
#### Extract some information from the operating system and machine files.
echo "Examining the machine- and system-dependent files to find out"
echo "Examining the machine- and system-dependent files to find out"
...
@@ -1147,6 +1127,16 @@ AC_HAVE_FUNCS(XrmSetDatabase random)
...
@@ -1147,6 +1127,16 @@ AC_HAVE_FUNCS(XrmSetDatabase random)
CFLAGS="$CFLAGS_save"
CFLAGS="$CFLAGS_save"
LIBS="$LIBS_save"
LIBS="$LIBS_save"
case "${window_system}:${LIBS}" in
x11:*-lXbsd* )
if [ -d /usr/X386/include ]; then
HAVE_XFREE386=yes
if [ "${C_SWITCH_X_SITE}" = "" ]; then
C_SWITCH_X_SITE="-I/usr/X386/include"
fi
fi
;;
esac
#### Find out which version of Emacs this is.
#### Find out which version of Emacs this is.
version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
...
...
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