clisp/clisp-libsvm.patch
Jerry James db1236f2c0 Update to mercurial snapshot to fix FTBFS.
Drop upstreamed -hostname patch.
Build against libdb instead of libdb4.
Include the CLX manual in the -devel documentation.
Compile the Emacs Lisp interface.
Build the asdf module.
2013-02-18 15:59:00 -07:00

11 lines
508 B
Diff

--- modules/libsvm/libsvm.lisp.orig 2013-02-16 15:26:27.998509298 -0700
+++ modules/libsvm/libsvm.lisp 2013-02-16 22:03:50.576190194 -0700
@@ -31,7 +31,7 @@
(c-lines "
#if !defined(HAVE_SVM_DESTROY_MODEL)
# if defined(HAVE_SVM_FREE_AND_DESTROY_MODEL)
-void svm_destroy_model (svm_model *model){ svm_free_and_destroy_model(&model); }
+void svm_destroy_model (struct svm_model *model){ svm_free_and_destroy_model(&model); }
# else
# error No svm_destroy_model and no svm_free_and_destroy_model!
# endif