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
Open sidebar
emacs
emacs
Commits
ea199426
Commit
ea199426
authored
Nov 14, 1994
by
David J. MacKenzie
Browse files
Don't add -I, -L, -R options for cc if their
arguments would be empty.
parent
5c06a8eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
configure.in
configure.in
+7
-3
No files found.
configure.in
View file @
ea199426
...
...
@@ -897,9 +897,13 @@ else
window_system=x11
fi
test "${x_libraries}" != NONE && LD_SWITCH_X_SITE="-L${x_libraries}"
test "${x_libraries}" != NONE && LD_SWITCH_X_SITE_AUX="-R${x_libraries}"
test "${x_includes}" != NONE && C_SWITCH_X_SITE="-I${x_includes}"
if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
LD_SWITCH_X_SITE="-L${x_libraries}"
LD_SWITCH_X_SITE_AUX="-R${x_libraries}"
fi
if test "${x_includes}" != NONE && test -n "${x_includes}"; then
C_SWITCH_X_SITE="-I${x_includes}"
fi
if test x"${x_includes}" = x; then
bitmapdir=/usr/include/X11/bitmaps
...
...
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