- Timestamp:
- 03/22/07 04:13:51 (5 years ago)
- Location:
- branches/ithildin-1.1
- Files:
-
- 3 edited
-
Makefile.in (modified) (2 diffs)
-
modules/ircd/commands/names.c (modified) (1 diff)
-
modules/ircd/ircd.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/ithildin-1.1/Makefile.in
r717 r802 118 118 $$cfgline 119 119 120 DISTFILES = .svn COPYING DEVELOPERS Makefile.in README TODOautoconf \120 DISTFILES = .svn COPYING DEVELOPERS Makefile.in README autoconf \ 121 121 configure doc include source tools 122 122 MDISTFILES = modules/.svn modules/Makefile.in … … 129 129 rm -rf dist ; \ 130 130 mkdir -p dist/$$repover ; \ 131 echo ">>> building release for base system in $(VERSION).tar.gz";\ 131 echo ">>> building release in $(VERSION).tar.gz"; \ 132 mkdir dist/$$repover/$(VERSION) ; \ 133 cp -R $(DISTFILES) dist/$$repover/$(VERSION) ; \ 134 cp -R modules dist/$$repover/$(VERSION)/modules ; \ 135 (cd dist/$$repover && tar -zcf $(VERSION).tar.gz $(VERSION)) ; \ 136 rm -rf dist/$$repover/$(VERSION) ; \ 137 echo ">>> building release for base system in $(VERSION)-base.tar.gz";\ 132 138 mkdir dist/$$repover/$(VERSION) ; \ 133 139 cp -R $(DISTFILES) dist/$$repover/$(VERSION) ; \ 134 140 mkdir -p dist/$$repover/$(VERSION)/modules ; \ 135 141 cp -R $(MDISTFILES) dist/$$repover/$(VERSION)/modules ; \ 136 (cd dist/$$repover && tar -zcf $(VERSION) .tar.gz $(VERSION)) ;\142 (cd dist/$$repover && tar -zcf $(VERSION)-base.tar.gz $(VERSION)) ;\ 137 143 rm -rf dist/$$repover/$(VERSION) ; \ 138 144 (cd modules && $(MAKE) REPOVER=$$repover release) ; \ -
branches/ithildin-1.1/modules/ircd/commands/names.c
r579 r802 69 69 void do_names(client_t *cli, channel_t *chan) { 70 70 struct chanlink *clp; 71 #define NAMEBUFLEN 3 2072 char buf[NAMEBUFLEN ];71 #define NAMEBUFLEN 300 72 char buf[NAMEBUFLEN + 20]; 73 73 int len = 0; 74 74 int see = onchannel(cli, chan); -
branches/ithildin-1.1/modules/ircd/ircd.c
r725 r802 18 18 IDSTRING(rcsid, "$Id$"); 19 19 20 MODULE_REGISTER("1.0r c1");20 MODULE_REGISTER("1.0r0"); 21 21 /* 22 22 @DEPENDENCIES@: dns ident
Note: See TracChangeset
for help on using the changeset viewer.
