myserver-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Myserver-commit] [2735] Check for other libraries


From: Giuseppe Scrivano
Subject: [Myserver-commit] [2735] Check for other libraries
Date: Sun, 03 Aug 2008 16:16:31 +0000

Revision: 2735
          http://svn.sv.gnu.org/viewvc/?view=rev&root=myserver&revision=2735
Author:   gscrivano
Date:     2008-08-03 16:16:29 +0000 (Sun, 03 Aug 2008)

Log Message:
-----------
Check for other libraries

Modified Paths:
--------------
    trunk/plugins/executors/python/SConscript

Modified: trunk/plugins/executors/python/SConscript
===================================================================
--- trunk/plugins/executors/python/SConscript   2008-08-03 12:08:32 UTC (rev 
2734)
+++ trunk/plugins/executors/python/SConscript   2008-08-03 16:16:29 UTC (rev 
2735)
@@ -16,9 +16,13 @@
 
 conf = Configure(env, config_h="config.h")
 
-if conf.CheckHeader("Python.h"):
+if conf.CheckHeader("Python.h") and conf.CheckLib("python2.5"):
     conf.Define('PYTHON', 1)
 
+conf.CheckLib("util")
+conf.CheckLib("pthread")
+conf.CheckLib("dl")
+
 env = conf.Finish()
 
 env.SharedLibrary(GetLaunchDir() + "/binaries/plugins/executors/python", 
["python.cpp"], SHLIBPREFIX="")






reply via email to

[Prev in Thread] Current Thread [Next in Thread]