[Debtags-commits] [svn] r714 - in libdebtags/trunk: . debtags swig/perl
Enrico Zini
debtags-commits@lists.alioth.debian.org
Sat, 07 May 2005 20:28:41 +0000
Author: enrico
Date: Sat May 7 20:28:40 2005
New Revision: 714
Removed:
libdebtags/trunk/debtags/TagSerializer.cc
libdebtags/trunk/debtags/TagSerializer.h
libdebtags/trunk/swig/perl/Makefile.am
Modified:
libdebtags/trunk/ (props changed)
libdebtags/trunk/configure.ac
libdebtags/trunk/swig/perl/Makefile.PL.in
Log:
r2899@viaza: enrico | 2005-05-07 22:27:03 +0200
Integrated perl bindings in the build system
Modified: libdebtags/trunk/configure.ac
==============================================================================
--- libdebtags/trunk/configure.ac (original)
+++ libdebtags/trunk/configure.ac Sat May 7 20:28:40 2005
@@ -71,7 +71,7 @@
#extra_warnings="-W -Wsystem-headers -Wfloat-equal -Wundef -Wendif-labels -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Wstrict-prototypes -Wmissing-prototypes -Wmissing-noreturn -Wmissing-format-attribute -Wno-multichar -Wno-deprecated-declarations -Wpacked -Wpadded -Wredundant-decls -Wunreachable-code -Winline -Wlong-long -Wdisabled-optimization"
dnl -Waggregate-return
-CXXFLAGS="$CXXFLAGS -Wall $extra_warnings"
+CXXFLAGS="$CXXFLAGS -Wall $extra_warnings -O0"
dnl -Werror
AC_CONFIG_FILES([
Modified: libdebtags/trunk/swig/perl/Makefile.PL.in
==============================================================================
--- libdebtags/trunk/swig/perl/Makefile.PL.in (original)
+++ libdebtags/trunk/swig/perl/Makefile.PL.in Sat May 7 20:28:40 2005
@@ -15,7 +15,7 @@
'INC' => '-I../.. -I../../debtags @LIBTAGCOLL_CFLAGS@',
'LIBS' => ['@LIBTAGCOLL_LIBS@ -lapt-pkg'], # Name of custom libraries
'OBJECT' => 'libdebtags_wrap.o', # Object files
- 'LDFROM' => "libdebtags_wrap.o " .join(' ', <../../debtags/*.o>),
+ 'LDFROM' => "libdebtags_wrap.o " .join(' ', map { $_ =~ s/\.cc$/\.o/; $_ } <../../debtags/*.cc>),
'clean' => { FILES => "libdebtags_wrap.cc Debtags.pm" },
'PREFIX' => '$(prefix)',
);