1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; LUSH Lisp Universal Shell
;;; Copyright (C) 2002 Leon Bottou, Yann Le Cun, AT&T Corp, NECI.
;;; Includes parts of TL3:
;;; Copyright (C) 1987-1999 Leon Bottou and Neuristique.
;;; Includes selected parts of SN3.2:
;;; Copyright (C) 1991-2001 AT&T Corp.
;;;
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 2 of the License, or
;;; (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program; if not, write to the Free Software
;;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; 9/9/2002 adapted from gsl-config.lsh by jhuangfu
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;(defvar python-libpython "/usr/lib/python2.2/config/libpython2.2.a")
(when (not python-libpython-loaded)
(setq python-libname "libpython2.2")
;; the version should be found automatically
(setq python-version 2.2)
;; find library
(cond
;; python-libpython was already defined, don't touch it
(python-libpython t)
;; look for dynamic libopenpython.so installed
((progn
(let* ((lib (find-shared-library python-libname '(".so" ".so.1" ".so.2" ".so.3") )))
(when (and lib (filep lib)) (defvar python-libpython lib)))))
;; look for static libopenpython.a installed
((progn
(let* ((lib (find-static-library python-libname )))
(when (and lib (filep lib)) (defvar python-libpython lib)))))
;; couldn't find it, complain loudly.
(t (printf "neither the libpython.so nor libpython.a could be found\n")
(printf "You can download python from\n")
(printf "http://www.python.org\n")
(printf "compile it, and install it\n")
(printf "in standard paths (e.g. in /usr/local/lib) so that I can find it.\n")
(printf "If you have installed python and still get this message, please do\n")
(printf "(defvar python-libpython \"yourpythonlibrary\") before loading this file\n")
(printf "(see %s for more details)\n" file-being-loaded)
(error "cannot configure python")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defvar python-cpheader-cmd
'(progn
(cpheader "#include <python2.2/Python.h>")
))
(defvar Py_UNICODE -int-)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; load libraries
(mod-load python-libpython)
(defvar python-libpython-loaded t)
)
|