CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_11_05
Commit time: 2003-08-30 13:44:14 UTC
Modified files:
Tag: u2_10_11_05
ChangeLog ircd/Makefile.in
Log message:
Author: hikari <[EMAIL PROTECTED]>
Log message:
Added CFLAGS to a couple of places CC is called so that when you're using
flags that effect linking (e.g. -m64), it works properly. I doubt this is
ever going to effect anyone, I just wanted to see if ircu compiled OK in
64-bit mode. It does if anyone is interested.
bb
hikari
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.128.2.30 ircu2.10/ChangeLog:1.290.2.128.2.31
--- ircu2.10/ChangeLog:1.290.2.128.2.30 Sat Aug 30 04:49:16 2003
+++ ircu2.10/ChangeLog Sat Aug 30 06:44:03 2003
@@ -1,4 +1,8 @@
2003-08-28 hikari <[EMAIL PROTECTED]>
+ * ircd/Makefile.in: Adding CFLAGS in a couple of places so building
+ with flags that effect linking works properly (-m64 for example).
+
+2003-08-28 hikari <[EMAIL PROTECTED]>
* ircd/gline.c: Throw a protocol_violation if we get sent an
invalid GLINE with $ in it (suspected cause of recent core where
a GLINE was missing the R after $ to denote relanme.
Index: ircu2.10/ircd/Makefile.in
diff -u ircu2.10/ircd/Makefile.in:1.37.2.10 ircu2.10/ircd/Makefile.in:1.37.2.10.4.1
--- ircu2.10/ircd/Makefile.in:1.37.2.10 Sat Dec 14 17:02:39 2002
+++ ircu2.10/ircd/Makefile.in Sat Aug 30 06:44:04 2003
@@ -218,7 +218,7 @@
build: ircd chkconf
ircd: ${OBJS} ../include/patchlevel.h version.o
- ${PURIFY} ${CC} ${LDFLAGS} ${OBJS} version.o ${RINGLOG_O} ${LDFLAGS} ${LIBS} \
+ ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} ${OBJS} version.o ${RINGLOG_O} ${LDFLAGS}
${LIBS} \
-o ircd
${CHMOD} ${IRCDMODE} ircd
@@ -239,7 +239,7 @@
ircd_string.o: ircd_string.c chattr.tab.c
table_gen: table_gen.o
- ${CC} ${LDFLAGS} -o $@ table_gen.o
+ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ table_gen.o
chattr.tab.c: table_gen
./table_gen > chattr.tab.c
@@ -250,7 +250,7 @@
chkconf: chkconf.o fda.o match.o chkcrule.o ircd_alloc.o fileio.o ircd_string.o
${CC} chkconf.o fda.o match.o chkcrule.o ircd_alloc.o fileio.o \
- ircd_string.o ${LDFLAGS} ${LIBS} -o chkconf
+ ircd_string.o ${CFLAGS} ${LDFLAGS} ${LIBS} -o chkconf
mkbindir:
@test -d ${BINDIR} || mkdir ${BINDIR}
----------------------- End of diff -----------------------