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:
authorChris Want <cwant@ualberta.ca>2003-06-28 07:47:05 +0400
committerChris Want <cwant@ualberta.ca>2003-06-28 07:47:05 +0400
commit569a32a2ea3a1992eaeaa5dc0256c48e8a053fbd (patch)
tree0f46efeae1886c61832735e6fef0a3a8e0c3ab0d /source/nan_link.mk
parent1323315937a22c7847d420a4058580e0395598f5 (diff)
expython needs pthreads to link under irix (prolly a python 2.2
requirement).
Diffstat (limited to 'source/nan_link.mk')
-rw-r--r--source/nan_link.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/nan_link.mk b/source/nan_link.mk
index c238592feb3..9fe96b29b47 100644
--- a/source/nan_link.mk
+++ b/source/nan_link.mk
@@ -80,7 +80,11 @@ endif
ifeq ($(OS),irix)
LLIBS = -lmovieGL -lGLU -lGL -lXmu -lXext -lX11 -lc -lm -ldmedia
- LLIBS += -lcl -laudio -ldb -lCio -lz -woff 84,171
+ LLIBS += -lcl -laudio -ldb -lCio -lz
+ ifeq ($(EXPYTHON), true)
+ LLIBS += -lpthread
+ endif
+ LLIBS += -woff 84,171
DYNLDFLAGS = -shared $(LDFLAGS)
endif