summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-03-01 10:47:34 +0000
committerTim Harder <radhermit@gentoo.org>2012-03-01 10:47:34 +0000
commit476c7aa117024228464ab5cb74cdcdbcdb91cd76 (patch)
tree8345ebf8d1da6a4dcf6d6cdb8e573bc5c187a9e1 /media-gfx/jhead/files
parentVersion bump (fixes bug #396419). (diff)
downloadgentoo-2-476c7aa117024228464ab5cb74cdcdbcdb91cd76.tar.gz
gentoo-2-476c7aa117024228464ab5cb74cdcdbcdb91cd76.tar.bz2
gentoo-2-476c7aa117024228464ab5cb74cdcdbcdb91cd76.zip
Remove old.
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/jhead/files')
-rw-r--r--media-gfx/jhead/files/jhead-2.87-mkstemp.patch11
-rw-r--r--media-gfx/jhead/files/jhead-2.87-respect_flags.patch23
2 files changed, 0 insertions, 34 deletions
diff --git a/media-gfx/jhead/files/jhead-2.87-mkstemp.patch b/media-gfx/jhead/files/jhead-2.87-mkstemp.patch
deleted file mode 100644
index c08bf06f7713..000000000000
--- a/media-gfx/jhead/files/jhead-2.87-mkstemp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- jhead.c.orig 2009-06-23 17:25:41.545847706 +0300
-+++ jhead.c 2009-06-23 17:27:36.621854286 +0300
-@@ -351,7 +351,7 @@
- while(a > 0 && FileName[a-1] != SLASH) a--;
- memcpy(TempName, FileName, a);
- strcpy(TempName+a, "XXXXXX");
-- mktemp(TempName);
-+ mkstemp(TempName);
- if(!TempName[0]) {
- ErrFatal("Cannot find available temporary file name");
- }
diff --git a/media-gfx/jhead/files/jhead-2.87-respect_flags.patch b/media-gfx/jhead/files/jhead-2.87-respect_flags.patch
deleted file mode 100644
index 202b6ce8b622..000000000000
--- a/media-gfx/jhead/files/jhead-2.87-respect_flags.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- makefile.orig 2009-06-23 17:08:18.017847256 +0300
-+++ makefile 2009-06-23 17:10:32.682853270 +0300
-@@ -3,7 +3,6 @@
- #--------------------------------
- OBJ=.
- SRC=.
--CFLAGS= -O3 -Wall
-
- all: jhead
-
-@@ -11,10 +10,10 @@
- $(OBJ)/exif.o $(OBJ)/iptc.o $(OBJ)/gpsinfo.o $(OBJ)/makernote.o
-
- $(OBJ)/%.o:$(SRC)/%.c
-- ${CC} $(CFLAGS) -c $< -o $@
-+ ${CC} ${CFLAGS} -c $< -o $@
-
- jhead: $(objs) jhead.h
-- ${CC} -o jhead $(objs) -lm
-+ ${CC} ${LDFLAGS} -o jhead $(objs) -lm
-
- clean:
- rm -f $(objs) jhead