diff options
author | knu <knu@FreeBSD.org> | 2001-01-05 21:14:09 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-01-05 21:14:09 +0000 |
commit | 9c509128fde2ec4c4fea91355934edc9503b99b9 (patch) | |
tree | 3182fe28f1a680a9601ba826d223a6dbb8c0b077 /lang | |
parent | 6bbfa98979200a39d4eb213df0b025a979871177 (diff) | |
download | FreeBSD-ports-9c509128fde2ec4c4fea91355934edc9503b99b9.zip FreeBSD-ports-9c509128fde2ec4c4fea91355934edc9503b99b9.tar.gz |
Link against libreadline. I wonder from when and why it came to
require linking libreadline... ?-(
Found by: bento
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ruby-python/files/patch-aa | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/ruby-python/files/patch-aa b/lang/ruby-python/files/patch-aa index c234b7c..98ced7a 100644 --- a/lang/ruby-python/files/patch-aa +++ b/lang/ruby-python/files/patch-aa @@ -1,5 +1,5 @@ --- extconf.rb.orig Mon Sep 11 01:14:42 2000 -+++ extconf.rb Mon Sep 11 04:31:30 2000 ++++ extconf.rb Sat Jan 6 06:11:27 2001 @@ -1,35 +1,41 @@ require 'mkmf' @@ -66,7 +66,7 @@ # If python is linked with extra libraries (e.g. -lpthread on Linux, # -lsocket on Solaris, etc.), have_library test will fail and built -@@ -59,11 +65,13 @@ +@@ -59,11 +65,15 @@ end $LOCAL_LIBS << py_extralibs @@ -77,6 +77,8 @@ - $CFLAGS += " -DDEBUG" - end - create_makefile("python") ++have_library("readline", "readline") ++ +if !have_library(py_name, "Py_Initialize") || !have_header("Python.h") + exit(1) +end |