Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/iniparser/files: iniparser-3.0-autotools.patch
Date: Wed, 11 Jan 2012 02:53:00
Message-Id: 20120111025247.A5E822004E@flycatcher.gentoo.org
1 ottxor 12/01/11 02:52:47
2
3 Added: iniparser-3.0-autotools.patch
4 Log:
5 version bump
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 dev-libs/iniparser/files/iniparser-3.0-autotools.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/iniparser/files/iniparser-3.0-autotools.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/iniparser/files/iniparser-3.0-autotools.patch?rev=1.1&content-type=text/plain
14
15 Index: iniparser-3.0-autotools.patch
16 ===================================================================
17 diff --git Makefile.am Makefile.am
18 new file mode 100644
19 index 0000000..63ca53b
20 --- /dev/null
21 +++ Makefile.am
22 @@ -0,0 +1,10 @@
23 +ACLOCAL_AMFLAGS = -I config
24 +
25 +lib_LTLIBRARIES = libiniparser.la
26 +
27 +libiniparser_la_LDFLAGS = -no-undefined -version-info @SHARED_VERSION_INFO@
28 +libiniparser_la_SOURCES = src/dictionary.c src/iniparser.c
29 +
30 +include_HEADERS = src/dictionary.h src/iniparser.h
31 +
32 +
33 diff --git configure.ac configure.ac
34 new file mode 100644
35 index 0000000..1eac717
36 --- /dev/null
37 +++ configure.ac
38 @@ -0,0 +1,24 @@
39 +AC_PREREQ([2.65])
40 +AC_INIT([iniparser], [3.0], [ndevilla@××××.fr])
41 +
42 +AC_CONFIG_AUX_DIR(config)
43 +AC_CONFIG_MACRO_DIR(config)
44 +
45 +AM_INIT_AUTOMAKE([1.8 foreign])
46 +
47 +SHARED_VERSION_INFO="0"
48 +AC_SUBST(SHARED_VERSION_INFO)
49 +
50 +
51 +# Checks for programs.
52 +AC_PROG_CC
53 +
54 +LT_INIT
55 +# Checks for header files.
56 +AC_CHECK_HEADERS([ ctype.h stdio.h stdlib.h string.h ])
57 +
58 +# Checks for library functions.
59 +AC_CHECK_FUNCS([strcmp])
60 +
61 +AC_CONFIG_FILES([Makefile])
62 +AC_OUTPUT