summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2012-09-13 19:15:14 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2012-09-13 19:15:14 +0000
commit97f91da17ae8ade5b685739c642704429cd3759e (patch)
tree5b2e70823bedd58292aab9adc56fd16e1c239f63 /dev-libs/iniparser/files
parentStabilise 0.9.8 on relevant arches, remove older. Add latest version. (diff)
downloadgentoo-2-97f91da17ae8ade5b685739c642704429cd3759e.tar.gz
gentoo-2-97f91da17ae8ade5b685739c642704429cd3759e.tar.bz2
gentoo-2-97f91da17ae8ade5b685739c642704429cd3759e.zip
Remove older stuff.
(Portage version: 2.2.0_alpha125/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/iniparser/files')
-rw-r--r--dev-libs/iniparser/files/iniparser-3.0b-fix-set-functions.patch27
-rw-r--r--dev-libs/iniparser/files/iniparser-3.0b-makefile.patch49
2 files changed, 0 insertions, 76 deletions
diff --git a/dev-libs/iniparser/files/iniparser-3.0b-fix-set-functions.patch b/dev-libs/iniparser/files/iniparser-3.0b-fix-set-functions.patch
deleted file mode 100644
index 9bb7c7bfcfd0..000000000000
--- a/dev-libs/iniparser/files/iniparser-3.0b-fix-set-functions.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff -aur iniparser3.0b/src/iniparser.h iniparser3.0b.patched/src/iniparser.h
---- iniparser3.0b/src/iniparser.h 2007-11-23 21:38:19.000000000 +0000
-+++ iniparser3.0b.patched/src/iniparser.h 2009-04-28 11:08:28.644706261 +0100
-@@ -39,7 +39,8 @@
- ---------------------------------------------------------------------------*/
- /** For backwards compatibility only */
- #define iniparser_getstr(d, k) iniparser_getstring(d, k, NULL)
--#define iniparser_setstr iniparser_setstring
-+#define iniparser_setstr iniparser_set
-+#define iniparser_setstring iniparser_set
-
- /*-------------------------------------------------------------------------*/
- /**
-@@ -215,11 +216,11 @@
- @return int 0 if Ok, -1 otherwise.
-
- If the given entry can be found in the dictionary, it is modified to
-- contain the provided value. If it cannot be found, -1 is returned.
-+ contain the provided value. If it cannot be found, it is inserted.
- It is Ok to set val to NULL.
- */
- /*--------------------------------------------------------------------------*/
--int iniparser_setstring(dictionary * ini, char * entry, char * val);
-+int iniparser_set(dictionary * ini, char * entry, char * val);
-
-
- /*-------------------------------------------------------------------------*/
diff --git a/dev-libs/iniparser/files/iniparser-3.0b-makefile.patch b/dev-libs/iniparser/files/iniparser-3.0b-makefile.patch
deleted file mode 100644
index 6f834030ddb9..000000000000
--- a/dev-libs/iniparser/files/iniparser-3.0b-makefile.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-diff -Naur iniparser3.0b.orig/Makefile iniparser3.0b/Makefile
---- iniparser3.0b.orig/Makefile 2010-04-07 08:02:48.771242264 +0200
-+++ iniparser3.0b/Makefile 2010-04-07 08:10:51.403895732 +0200
-@@ -3,16 +3,16 @@
- #
-
- # Compiler settings
--CC = gcc
--CFLAGS = -O2 -fPIC -Wall -ansi -pedantic
-+CC ?= gcc
-+CFLAGS += -fPIC -Wall -ansi -pedantic
-
- # Ar settings to build the library
--AR = ar
-+AR ?= ar
- ARFLAGS = rcv
-
- SHLD = ${CC} ${CFLAGS}
--LDSHFLAGS = -shared -Wl,-Bsymbolic -Wl,-rpath -Wl,/usr/lib -Wl,-rpath,/usr/lib
--LDFLAGS = -Wl,-rpath -Wl,/usr/lib -Wl,-rpath,/usr/lib
-+LDSHFLAGS = -shared -Wl,-Bsymbolic
-+LDFLAGS += -Wl,-rpath -Wl,/usr/lib -Wl,-rpath,/usr/lib
-
- # Set RANLIB to ranlib on systems that require it (Sun OS < 4, Mac OSX)
- # RANLIB = ranlib
-@@ -28,7 +28,7 @@
- COMPILE.c=$(CC) $(CFLAGS) -c
- .c.o:
- @(echo "compiling $< ...")
-- @($(COMPILE.c) -o $@ $<)
-+ $(COMPILE.c) -o $@ $<
-
-
- SRCS = src/iniparser.c \
-@@ -40,11 +40,11 @@
- default: libiniparser.a libiniparser.so
-
- libiniparser.a: $(OBJS)
-- @($(AR) $(ARFLAGS) libiniparser.a $(OBJS))
-- @($(RANLIB) libiniparser.a)
-+ $(AR) $(ARFLAGS) libiniparser.a $(OBJS)
-+ $(RANLIB) libiniparser.a
-
- libiniparser.so: $(OBJS)
-- @$(SHLD) $(LDSHFLAGS) -o $@.0 $(OBJS) $(LDFLAGS) \
-+ $(SHLD) $(LDSHFLAGS) $(LDFLAGS) -o $@.0 $(OBJS) \
- -Wl,-soname=`basename $@`.0
-
- clean: