~ubuntu-branches/ubuntu/breezy/koffice/breezy-security

« back to all changes in this revision

Viewing changes to kexi/kexidb/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-10-11 14:49:50 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051011144950-lwpngbifzp8nk0ds
Tags: 1:1.4.1-0ubuntu7
* SECURITY UPDATE: fix heap based buffer overflow in the RTF importer of KWord
* Opening specially crafted RTF files in KWord can cause
  execution of abitrary code.
* Add kubuntu_01_rtfimport_heap_overflow.diff
* References:
  CAN-2005-2971
  CESA-2005-005
  http://www.koffice.org/security/advisory-20051011-1.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/kexi/Makefile.global
 
2
 
 
3
lib_LTLIBRARIES = libkexidb.la
 
4
 
 
5
INCLUDES = -I$(top_srcdir)/kexi $(all_includes)
 
6
 
 
7
SUBDIRS = . parser drivers
 
8
 
 
9
libkexidb_la_METASOURCES = AUTO
 
10
 
 
11
libkexidb_la_SOURCES = drivermanager.cpp driver.cpp driver_p.cpp connection.cpp \
 
12
 keywords.cpp object.cpp field.cpp utils.cpp expression.cpp \
 
13
 connectiondata.cpp fieldlist.cpp tableschema.cpp cursor.cpp transaction.cpp  \
 
14
 indexschema.cpp queryschema.cpp schemadata.cpp global.cpp relationship.cpp \
 
15
 roweditbuffer.cpp msghandler.cpp
 
16
 
 
17
noinst_HEADERS = drivermanager_p.h
 
18
 
 
19
kexidbincludedir=$(includedir)/kexidb
 
20
kexidbinclude_HEADERS=connection.h connectiondata.h cursor.h \
 
21
  driver.h drivermanager.h \
 
22
  error.h expression.h field.h fieldlist.h global.h object.h \
 
23
  schemadata.h tableschema.h queryschema.h indexschema.h \
 
24
  relationship.h parser/parser.h transaction.h \
 
25
  kexidb_export.h ../tristate.h
 
26
 
 
27
libkexidb_la_LIBADD = $(LIB_QT) $(LIB_KDECORE) $(LIB_KIO)
 
28
libkexidb_la_LDFLAGS = $(all_libraries) $(KDE_RPATH)
 
29
 
 
30
kde_servicetypes_DATA = kexidb_driver.desktop
 
31
 
 
32
 
 
33
KDE_CXXFLAGS += -D__KEXIDB__= -include $(top_srcdir)/kexi/kexidb/global.h
 
34