File: autotools.diff

package info (click to toggle)
sqlite3-pcre 0~git20070120091816%2B4229ecc-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 88 kB
  • sloc: ansic: 99; makefile: 12
file content (32 lines) | stat: -rw-r--r-- 829 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Author: Gilles Filippini <pini@debian.org>
Subject: Autotoolize
Index: sqlite3-pcre/Makefile.am
===================================================================
--- /dev/null
+++ sqlite3-pcre/Makefile.am
@@ -0,0 +1,8 @@
+pkglib_LTLIBRARIES = pcre.la
+
+pcre_la_SOURCES = pcre.c
+
+pcre_la_LDFLAGS = -module -avoid-version
+
+pcre_la_CFLAGS = @LIBPCRE_CFLAGS@ @SQLITE3_CFLAGS@
+pcre_la_LIBADD = @LIBPCRE_LIBS@ @SQLITE3_LIBS@
Index: sqlite3-pcre/configure.ac
===================================================================
--- /dev/null
+++ sqlite3-pcre/configure.ac
@@ -0,0 +1,12 @@
+AC_INIT([sqlite3], [0])
+AM_PROG_AR
+LT_INIT([disable-static])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+AC_PROG_CC
+PKG_CHECK_MODULES(SQLITE3, sqlite3)
+PKG_CHECK_MODULES(LIBPCRE, libpcre)
+AC_CONFIG_FILES([
+ Makefile
+])
+AC_OUTPUT
+