Re: [dev] simple portscanner

From: anonymous <aim0shei_AT_lavabit.com>
Date: Sat, 2 Jan 2010 21:38:36 +0300

> so I needed the following patch to compile it over here on my (lunar-)linux box.
>
> --- makefile 2010-01-02 18:56:40.000000000 +0100
> +++ makefile.patched 2010-01-02 18:58:08.000000000 +0100
> @@ -13 +13 @@
> - $(CC) $(LDFLAGS) $(OBJS) -o $(PROG)
> + $(CC) $(OBJS) -o $(PROG) $(LDFLAGS)
>
>
>
> v4hn

Will it work with this?
$(CC) $(LDFLAGS) -o $(PROG) $(OBJS)
Or with this:
$(CC) -o $(PROG) $(LDFLAGS) $(OBJS)
Received on Sat Jan 02 2010 - 18:38:36 UTC

This archive was generated by hypermail 2.2.0 : Sat Jan 02 2010 - 18:48:01 UTC