diff options
author | 2016-08-02 10:43:37 -0400 | |
---|---|---|
committer | 2016-08-02 10:43:53 -0400 | |
commit | ece7f4be67e6d3cd3c75bee6ca1db73b12efd232 (patch) | |
tree | 6e639e4c42c024841ac6fc51f61cacd57d51406b /app-text/convertlit/files/convertlit-1.8-respectflags-r1.patch | |
parent | app-office/lotus-notes: Remove last-rited pkg, #583846 (diff) | |
download | gentoo-ece7f4be67e6d3cd3c75bee6ca1db73b12efd232.tar.gz gentoo-ece7f4be67e6d3cd3c75bee6ca1db73b12efd232.tar.bz2 gentoo-ece7f4be67e6d3cd3c75bee6ca1db73b12efd232.zip |
app-text/convertlit: new revision fixing -Wformat-security warnings.
Gentoo-Bug: 521246
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-text/convertlit/files/convertlit-1.8-respectflags-r1.patch')
-rw-r--r-- | app-text/convertlit/files/convertlit-1.8-respectflags-r1.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-text/convertlit/files/convertlit-1.8-respectflags-r1.patch b/app-text/convertlit/files/convertlit-1.8-respectflags-r1.patch new file mode 100644 index 00000000000..faedfa0a30a --- /dev/null +++ b/app-text/convertlit/files/convertlit-1.8-respectflags-r1.patch @@ -0,0 +1,28 @@ +Index: clit18/Makefile +=================================================================== +--- a/clit18/Makefile ++++ b/clit18/Makefile +@@ -1,9 +1,9 @@ + all: clit
+
+-CFLAGS=-funsigned-char -Wall -O2 -I ../libtommath-0.30/ -I ../lib -I ../lib/des -I .
++CFLAGS+=-funsigned-char -I ../lib -I ../lib/des -I .
+ clean:
+ rm -f *.o clit
+
+ clit: clit.o hexdump.o drm5.o explode.o transmute.o display.o utils.o manifest.o ../lib/openclit.a
+- gcc -o clit $^ ../libtommath-0.30/libtommath.a
++ $(CC) $(LDFLAGS) -o clit $^ -ltommath
+
+Index: lib/Makefile +=================================================================== +--- a/lib/Makefile ++++ b/lib/Makefile +@@ -1,6 +1,6 @@ + all: openclit.a
+
+-CFLAGS=-O3 -Wall -Ides -Isha -Inewlzx -I.
++CFLAGS+=-Ides -Isha -Inewlzx -I.
+ clean:
+ rm -f *.o openclit.a des/*.o lzx/*.o sha/*.o
+
|