diff options
author | joerg <joerg@pkgsrc.org> | 2013-11-29 12:54:24 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-11-29 12:54:24 +0000 |
commit | 9a58e60088a6eee5a4efc316137dfb48e1f2ffdd (patch) | |
tree | 3861abd7112496889626823dadb1714e07e91203 /devel | |
parent | e6b55804bbcf20af0f75e587924c3a1195055fb6 (diff) | |
download | pkgsrc-9a58e60088a6eee5a4efc316137dfb48e1f2ffdd.tar.gz |
Don't hard-code CC. Honour CFLAGS.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/iniparser/distinfo | 4 | ||||
-rw-r--r-- | devel/iniparser/patches/patch-Makefile | 13 |
2 files changed, 14 insertions, 3 deletions
diff --git a/devel/iniparser/distinfo b/devel/iniparser/distinfo index 59e865f7568..cd3f5614f19 100644 --- a/devel/iniparser/distinfo +++ b/devel/iniparser/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2013/11/22 11:49:42 ryoon Exp $ +$NetBSD: distinfo,v 1.2 2013/11/29 12:54:24 joerg Exp $ SHA1 (iniparser-3.1.tar.gz) = 41eae7b414cad9cd42ae2c2a64394c10d7ab655e RMD160 (iniparser-3.1.tar.gz) = 164665a6f905dc0a272cbcf6ae33e20a56d0fc6b Size (iniparser-3.1.tar.gz) = 39097 bytes -SHA1 (patch-Makefile) = cee0e27c251e0b12d3313b271850a9c5d0bc9dc2 +SHA1 (patch-Makefile) = 208a7f897f83d36a2b299b28021b532b05da1469 diff --git a/devel/iniparser/patches/patch-Makefile b/devel/iniparser/patches/patch-Makefile index 3b5efbc8e9b..e246f3baeb5 100644 --- a/devel/iniparser/patches/patch-Makefile +++ b/devel/iniparser/patches/patch-Makefile @@ -1,10 +1,21 @@ -$NetBSD: patch-Makefile,v 1.1 2013/11/22 11:49:42 ryoon Exp $ +$NetBSD: patch-Makefile,v 1.2 2013/11/29 12:54:24 joerg Exp $ * Libtoolized * Add install targets --- Makefile.orig 2012-04-08 14:44:57.000000000 +0000 +++ Makefile +@@ -3,8 +3,8 @@ + # + + # Compiler settings +-CC = gcc +-CFLAGS = -O2 -fPIC -Wall -ansi -pedantic ++#CC = gcc ++CFLAGS += -Wall -ansi -pedantic + + # Ar settings to build the library + AR = ar @@ -25,7 +25,7 @@ RM = rm -f SUFFIXES = .o .c .h .a .so .sl |