| 12345678910111213141516171819202122232425 |
- Index: ircd-ratbox-2.0.8/modules/Makefile.in
- --- ircd-ratbox-2.0.8/modules/Makefile.in.orig 2005-01-14 18:25:51 +0100
- +++ ircd-ratbox-2.0.8/modules/Makefile.in 2005-04-11 21:44:28 +0200
- @@ -182,7 +182,7 @@
- ${CC} ${CPPFLAGS} ${CFLAGS} -DMODNAME=`basename $< .c`_mheader -c $< -o $@
-
- .c.so:
- - ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} $< -o $@
- + ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} $< -o $@ ${IRCDLIBS}
-
- .so.sl:
- $(LD) -b $< -o $@
- Index: ratbox-services-1.0beta1/src/Makefile.in
- --- ratbox-services-1.0beta1/src/Makefile.in.orig 2005-01-04 20:58:50 +0100
- +++ ratbox-services-1.0beta1/src/Makefile.in 2005-04-11 21:41:39 +0200
- @@ -12,7 +12,7 @@
- INCLUDES=-I ../include/ @SQLITE_INCLUDES@
- LDFLAGS=@LDFLAGS@
- LIBS=@LIBS@
- -CFLAGS=-g -O0 -Wall -Werror -Wunused -Wshadow -Wmissing-declarations -Wwrite-strings -DPREFIX=\"$(PREFIX)\"
- +CFLAGS=@CPPFLAGS@ @CFLAGS@ -g -O0 -Wall -Werror -Wunused -Wshadow -Wmissing-declarations -Wwrite-strings -DPREFIX=\"$(PREFIX)\"
- MAKE = make
-
- # Anything marked with the .PHONY attribute is always considered "out of date"
|