Simon Kuhnle <[EMAIL PROTECTED]> wrote:
> On Tue, Nov 18, 2008 at 01:20:01AM -0500, [EMAIL PROTECTED] wrote:
> > Hello,
> > This is my first port. Sic is an extremely simple IRC client.
> > It consists of less than 250 lines of code. It is the little
> > brother of IRC client ii which I never figured out how to
> > use efficiently.
> > Cheers,
> > Predrag
>
> You should take a look at other suckless projects in ports,
> like dwm or dmenu, as there are some changes missing in your config.mk
> patch, for example to honor CFLAGS and CC.
> --
> simon
Dear Simon,
Thank you so much for the quick feed back. I think, I fixed the things.
I attached new repaired port.
Cheers,
Predrag
P.S.
By the way this is the diff
patch-config_mk
$OpenBSD$
--- config.mk.orig Tue Nov 18 22:32:49 2008
+++ config.mk Tue Nov 18 22:33:52 2008
@@ -5,7 +5,7 @@ VERSION = 1.0
# paths
PREFIX = /usr/local
-MANPREFIX = ${PREFIX}/share/man
+MANPREFIX = ${PREFIX}/man
# includes and libs
INCS = -I. -I/usr/include
@@ -13,8 +13,8 @@ LIBS = -L/usr/lib -lc
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
-LDFLAGS = -s ${LIBS}
+CFLAGS = ${INCS} ${CPPFLAGS}
+LDFLAGS = ${LIBS}
# compiler and linker
-CC = cc
+#CC = cc
sic-1.0.tgz
Description: Binary data
