~ubuntu-branches/debian/lenny/freetds/lenny

« back to all changes in this revision

Viewing changes to src/ctlib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2008-08-02 11:49:53 UTC
  • mfrom: (2.1.10 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080802114953-0qdeowgl63k42n2c
Tags: 0.82-4
* Fix a typo in the freetds-common description, ugh
* Versioned replaces of libct4 by freetds-common, since the current one
  obviously doesn't have overlapping files.
* tdsodbc: check for /var/lib/odbc existence before removing it in the
  postinst, since there are cases where it won't exist on upgrade (i.e.,
  if the driver was never enabled in the first place).  Closes: #493303.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile.am,v 1.20.2.2 2004/12/09 08:43:22 freddy77 Exp $
 
1
# $Id: Makefile.am,v 1.28 2007/11/22 08:44:54 freddy77 Exp $
2
2
SUBDIRS         =       unittests
 
3
AM_CPPFLAGS     =       -I$(top_srcdir)/include
3
4
 
4
5
lib_LTLIBRARIES =       libct.la
5
 
libct_la_SOURCES=       ct.c cs.c blk.c ctutil.c
6
 
 
7
 
# version bumped for 0.63, I hope we'll bump it less in the future -- freddy77
8
 
##libct_la_LDFLAGS=     -version-info 3:0:0 -export-symbols-regex '^(cs_|ct_|blk_).*' -Wl,-Bsymbolic
9
 
libct_la_LDFLAGS=       -version-info 3:0:0 -export-symbols-regex '^(cs_|ct_|blk_).*' $(FREETDS_SYMBOLIC)
10
 
 
11
 
libct_la_LIBADD =       ../tds/libtds_objects.la ../replacements/libreplacements.la $(NETWORK_LIBS) $(LIBICONV) $(FREETDS_LIBGCC)
12
 
 
13
 
INCLUDES        =       -I$(top_srcdir)/include
 
6
if MINGW32
 
7
MINGW_SOURCES   =       ../../win32/initnet.c
 
8
else
 
9
MINGW_SOURCES   =
 
10
endif
 
11
libct_la_SOURCES=       ct.c cs.c blk.c ctutil.c $(MINGW_SOURCES)
 
12
 
 
13
# version bumped for 0.64, I hope we'll bump it less in the future -- freddy77
 
14
if MACOSX
 
15
SYMBOLS         =
 
16
else
 
17
SYMBOLS         =       -export-symbols-regex '^(cs_|ct_|blk_).*'       
 
18
endif
 
19
libct_la_LDFLAGS=       -version-info 4:0:0 $(SYMBOLS) $(FREETDS_SYMBOLIC)
 
20
 
 
21
libct_la_LIBADD =       ../tds/libtds.la ../replacements/libreplacements.la $(NETWORK_LIBS) $(LIBICONV) $(FREETDS_LIBGCC)
 
22