Skip to content
Snippets Groups Projects
Commit ca01cbaf authored by Werner Lemberg's avatar Werner Lemberg
Browse files

* graph/x11/rules.mk (X11_LIB): Also append `/lib64'.

parent 68c784a0
No related branches found
No related tags found
Loading
2016-03-18 Werner Lemberg <wl@gnu.org>
* graph/x11/rules.mk (X11_LIB): Also append `/lib64'.
2016-03-02 Werner Lemberg <wl@gnu.org>
[ftgrid] Use colors for dot numbers.
......
......@@ -39,6 +39,13 @@ WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
make X11_PATH="/usr/openwin /usr/local/X11R6"
The build system then derives the X11_INCLUDE include file path
from X11_PATH by appending `/include' to all path components. It
also derives the X11_LIB library path from X11_PATH by appending
`/lib64' and `/lib' to all components (in that order). You might
override those variables similar to X11_PATH as arguments to
`make'.
If you don't have X11 at all, fix the definition of the EXES
variable as described in the top-level Makefile.
......
......@@ -69,7 +69,8 @@ endif
ifneq ($(X11_PATH),)
X11_INCLUDE := $(subst /,$(COMPILER_SEP),$(X11_PATH:%=%/include))
X11_LIB := $(subst /,$(COMPILER_SEP),$(X11_PATH:%=%/lib))
X11_LIB := $(subst /,$(COMPILER_SEP),$(X11_PATH:%=%/lib64) \
$(X11_PATH:%=%/lib))
# The GRAPH_LINK variable is expanded each time an executable is linked
# against the graphics library.
......
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