Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2007-12-14 20:47:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-12-14 20:47:58 +0300
commitb71d55b055ec0bd4be54b5d127eaab9d87e89b37 (patch)
treefe26fbb32803c4ee3f6f7aab0b53a00ca55e2f10 /source/nan_link.mk
parent3319ecdcd1e0deb07c89964f734c7eea7f416105 (diff)
match solaris 10 x86-64 library name change
Diffstat (limited to 'source/nan_link.mk')
-rw-r--r--source/nan_link.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/nan_link.mk b/source/nan_link.mk
index 235827c9a7b..00d233962a9 100644
--- a/source/nan_link.mk
+++ b/source/nan_link.mk
@@ -117,10 +117,10 @@ ifeq ($(OS),openbsd)
endif
ifeq ($(OS),solaris)
- ifeq (i386, $(findstring i386, $(CPU)))
- LLIBS = -L/usr/X11/lib -lrt
+ ifeq (x86_64, $(findstring x86_64, $(CPU)))
+ LLIBS = -lrt
endif
- LLIBS += -lGLU -lGL -lXmu -lXext -lXi -lX11 -lc -lm -ldl -lsocket -lnsl
+ LLIBS += -L$(NAN_MESA)/lib -lGLU -lGL -lXmu -lXext -lXi -lX11 -lc -lm -ldl -lsocket -lnsl
DYNLDFLAGS = -shared $(LDFLAGS)
endif