panada-devel
[Top][All Lists]
Advanced

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

`libpeer' build problem


From: Ludovic Courtès
Subject: `libpeer' build problem
Date: Tue, 1 Feb 2005 18:31:44 +0100
User-agent: Mutt/1.5.6+20040907i

Hi Johan,  ;-)

The `configure' script of libpeer doesn't complain if `liboop' is not
found (admitedly, it's not big deal at this stage).  The patch below
against `configure.ac' to fix this.

I appreciate your initiative in writing this library and I like the
coding style.  I've started thinking about the implementation of a file
fragmentation and indexing library which could be used on top of libpeer
to produce a DHT (I'll get back to you once I have something more
concrete to talk about if you like).

BTW, according to Google, "PeerFS" is the name of some proprietary
software; according to the USPTO [1], it's actually a trademark for a
"peer-to-peer replicating file system".  :-(

Thanks for your work!

Ludovic.

[1] http://tess2.uspto.gov/bin/gate.exe?f=searchss&state=d06sf9.1.1


diff -ubB --show-c-function /home/ludo/src/libpeer/configure.ac.\~1.1.1.1.\~ 
/home/ludo/src/libpeer/configure.ac
--- /home/ludo/src/libpeer/configure.ac.~1.1.1.1.~      2005-01-07 
06:58:39.000000000 +0100
+++ /home/ludo/src/libpeer/configure.ac 2005-02-01 18:21:05.000000000 +0100
@@ -6,10 +6,11 @@ AC_PROG_RANLIB
 AC_PROG_LIBTOOL
 
 dnl Check for headers
-AC_CHECK_HEADERS(string.h strings.h memory.h)
+AC_CHECK_HEADERS(string.h strings.h memory.h oop.h)
 
 dnl Check for libraries
-AC_CHECK_LIB(oop, oop_sys_run)
+AC_CHECK_LIB([oop], [oop_sys_run], [],
+  [AC_MSG_ERROR([`liboop' not found.  Install it first.])])
 
 dnl Check for functions
 





reply via email to

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