summaryrefslogtreecommitdiff
path: root/irc/simpleirc/files/patch-config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'irc/simpleirc/files/patch-config.mk')
-rw-r--r--irc/simpleirc/files/patch-config.mk26
1 files changed, 0 insertions, 26 deletions
diff --git a/irc/simpleirc/files/patch-config.mk b/irc/simpleirc/files/patch-config.mk
deleted file mode 100644
index c880b9540b6e..000000000000
--- a/irc/simpleirc/files/patch-config.mk
+++ /dev/null
@@ -1,26 +0,0 @@
---- config.mk.orig 2013-06-16 06:03:32 UTC
-+++ config.mk
-@@ -4,17 +4,17 @@ VERSION = 1.2
- # Customize below to fit your system
-
- # paths
--PREFIX = /usr/local
--MANPREFIX = ${PREFIX}/share/man
-+PREFIX ?= /usr/local
-+MANPREFIX = ${PREFIX}/man
-
- # includes and libs
- INCS = -I. -I/usr/include
- LIBS = -L/usr/lib -lc
-
- # flags
--CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
--CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
--LDFLAGS = -s ${LIBS}
-+CPPFLAGS += -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
-+CFLAGS += -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
-+LDFLAGS += -s ${LIBS}
-
- # compiler and linker
--CC = cc
-+CC ?= cc