libixp

git clone git://oldgit.suckless.org/libixp/
Log | Files | Refs | LICENSE

commit c5f027f2ca0f29c68579bec68eff0efcb04be547
parent 2fca3ea36feef8aaba1ba26c00a67ae173bc6e02
Author: Kris Maglione <jg@suckless.org>
Date:   Tue, 20 Feb 2007 13:22:37 -0500

Use -L. before -lixp when linking ixpc

Diffstat:
Makefile | 2+-
intmap.c | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -40,7 +40,7 @@ libixp.so: ${OBJ} ixpc: ${OBJIXPC} @echo LD $@ - @${LD} -o $@ ${OBJIXPC} ${LDFLAGS} -lixp + @${LD} -o $@ ${OBJIXPC} ${LDFLAGS} -L. -lixp clean: @echo cleaning diff --git a/intmap.c b/intmap.c @@ -1,5 +1,6 @@ /* This file is derived from src/lib9p/intmap.c from plan9port */ /* See LICENCE.p9p for terms of use */ + #include "ixp.h" #include <stdlib.h> #define USED(v) if(v){}else{}