diff options
author | Mark Glines <mark@glines.org> | 2002-03-11 12:07:47 +0000 |
---|---|---|
committer | Mark Glines <mark@glines.org> | 2002-03-11 12:07:47 +0000 |
commit | 3e3d081d28ff60331d791ae9bc4e1f8d98701d86 (patch) | |
tree | a7866a05c02613e32e790d9348781751af4e0538 /perl/Makefile.PL | |
parent | 081f3c28b8105af8c4e49b44ed1f2ba6729fe2d7 (diff) | |
download | libfuse-3e3d081d28ff60331d791ae9bc4e1f8d98701d86.tar.gz |
no longer link against efence
add documentation for Fuse::main() and the optional flags (and mountpoint)
fix the multithreading/debug flag stuff
turn off multithreading by default (makes read() stable!)
Diffstat (limited to 'perl/Makefile.PL')
-rw-r--r-- | perl/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Makefile.PL b/perl/Makefile.PL index 17ccb51..d495683 100644 --- a/perl/Makefile.PL +++ b/perl/Makefile.PL @@ -8,7 +8,7 @@ WriteMakefile( ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'Fuse.pm', # retrieve abstract from module AUTHOR => 'Mark Glines <mark@glines.org>') : ()), - 'LIBS' => ['-lefence'], # e.g., '-lm' + 'LIBS' => [''], # e.g., '-lm' 'DEFINE' => '-g -ggdb', # e.g., '-DHAVE_SOMETHING' # Insert -I. if you add *.h files later: 'INC' => '-I../include', # e.g., '-I/usr/include/other' |