diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2010-04-01 14:59:10 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2010-04-19 20:21:57 -0700 |
commit | 8e5effefc7e1cf147315841894d1548f09b96cbc (patch) | |
tree | 2a14bed6dd848eac72717b102996b385fb160e4a /configs | |
parent | 4e7a4bed372a6da4dde8926f3bc30c56e3fbe07b (diff) |
progs: Fix linking of Xlib demos for non-autoconf builds
The Xlib demos were fixed to use $(X11_LIBS) so that configure could
detect the proper directory to link the library from, but this broke
the non-autoconf builds. Give X11_LIBS a default value to fallback on.
(cherry picked from commit e40fce13e152ecf929c899ed38a8e5f7d198c738)
Diffstat (limited to 'configs')
-rw-r--r-- | configs/default | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/default b/configs/default index 47d6923f01..fbd795fe71 100644 --- a/configs/default +++ b/configs/default @@ -119,7 +119,7 @@ APP_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LI # Program dependencies - specific GL/glut libraries added in Makefiles APP_LIB_DEPS = -lm - +X11_LIBS = -lX11 # Installation directories (for make install) INSTALL_DIR = /usr/local |