diff options
author | daniel <danieruru@gmail.com> | 2013-01-13 13:25:38 +0900 |
---|---|---|
committer | daniel <danieruru@gmail.com> | 2013-01-13 13:25:38 +0900 |
commit | 7f2e52e8dbcda238268dd7339ba8c3dce908e252 (patch) | |
tree | 56f94b4bd9682a33d790dc7a3a234471e4da4eca /libvxi11client/perlbits | |
parent | 52cc0f0f558190e310c898ec7e616ed2b8306f02 (diff) |
fire the interrupt from the right place
Diffstat (limited to 'libvxi11client/perlbits')
-rw-r--r-- | libvxi11client/perlbits/Client.xs | 2 | ||||
-rw-r--r-- | libvxi11client/perlbits/Makefile.PL | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libvxi11client/perlbits/Client.xs b/libvxi11client/perlbits/Client.xs index ebfc037..3bd831f 100644 --- a/libvxi11client/perlbits/Client.xs +++ b/libvxi11client/perlbits/Client.xs @@ -6,6 +6,8 @@ MODULE = VXI11::Client PACKAGE = VXI11::Client +PROTOTYPES: ENABLE + int abort() CODE: diff --git a/libvxi11client/perlbits/Makefile.PL b/libvxi11client/perlbits/Makefile.PL index 055880e..43b9d41 100644 --- a/libvxi11client/perlbits/Makefile.PL +++ b/libvxi11client/perlbits/Makefile.PL @@ -9,7 +9,7 @@ WriteMakefile( ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/VXI11/Client.pm', # retrieve abstract from module AUTHOR => 'daniel <daniel@>') : ()), - LIBS => ['-pthread -lgthread-2.0 -lrt -lglib-2.0'], # e.g., '-lm' + LIBS => ['-lpthread -lgthread-2.0 -lrt -lglib-2.0'], # e.g., '-lm' DEFINE => '', # e.g., '-DHAVE_SOMETHING' INC => '-I. -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include', # e.g., '-I. -I/usr/include/other' OBJECT => '$(O_FILES)', # link all the C files too |