Commit 5d6b2fc7 5d6b2fc75fb37095115775359167f34282ad0240 by Sergey Poznyakoff

Add odbc.c

1 parent cc565c95
1 ## This file is part of GNU Mailutils 1 ## This file is part of GNU Mailutils
2 2
3 ## Copyright (C) 2004 Free Software Foundation, Inc. 3 ## Copyright (C) 2004, 2005 Free Software Foundation, Inc.
4 ## 4 ##
5 ## GNU Mailutils is free software; you can redistribute it and/or 5 ## GNU Mailutils is free software; you can redistribute it and/or
6 ## modify it under the terms of the GNU General Public License as 6 ## modify it under the terms of the GNU General Public License as
...@@ -18,9 +18,10 @@ ...@@ -18,9 +18,10 @@
18 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 19
20 noinst_LTLIBRARIES=@BUILD_SQL@ 20 noinst_LTLIBRARIES=@BUILD_SQL@
21 EXTRA_LTLIBRARIES=libsql.la mysql.la postgres.la 21 EXTRA_LTLIBRARIES=libsql.la mysql.la postgres.la odbc.la
22 EXTRA_DIST=\ 22 EXTRA_DIST=\
23 mysql.c\ 23 mysql.c\
24 odbc.c\
24 postgres.c 25 postgres.c
25 DISTCLEANFILES = modlist.h 26 DISTCLEANFILES = modlist.h
26 27
...@@ -42,3 +43,7 @@ mysql_la_LDFLAGS = $(MODFLAGS) ...@@ -42,3 +43,7 @@ mysql_la_LDFLAGS = $(MODFLAGS)
42 postgres_la_SOURCES = postgres.c 43 postgres_la_SOURCES = postgres.c
43 postgres_la_LIBADD = @POSTGRESLIBS@ 44 postgres_la_LIBADD = @POSTGRESLIBS@
44 postgres_la_LDFLAGS = $(MODFLAGS) 45 postgres_la_LDFLAGS = $(MODFLAGS)
46
47 odbc_la_SOURCES = odbc.c
48 odbc_la_LIBADD = @ODBCLIBS@
49 odbc_la_LDFLAGS = $(MODFLAGS)
......