subdir = src
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(srcdir)/setup.h.in $(top_srcdir)/mkinstalldirs \
- config-lexer.c config-parser.h config-parser.c \
+ config-parser.h config-parser.c config-lexer.c \
$(top_srcdir)/depcomp $(top_srcdir)/ylwrap
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__installdirs = "$(DESTDIR)$(bindir)"
PROGRAMS = $(bin_PROGRAMS)
am_hopm_OBJECTS = compat.$(OBJEXT) config.$(OBJEXT) \
- config-lexer.$(OBJEXT) config-parser.$(OBJEXT) dnsbl.$(OBJEXT) \
- firedns.$(OBJEXT) inet.$(OBJEXT) irc.$(OBJEXT) list.$(OBJEXT) \
- log.$(OBJEXT) main.$(OBJEXT) malloc.$(OBJEXT) match.$(OBJEXT) \
- misc.$(OBJEXT) negcache.$(OBJEXT) opercmd.$(OBJEXT) \
- scan.$(OBJEXT) stats.$(OBJEXT)
+ config-parser.$(OBJEXT) config-lexer.$(OBJEXT) dnsbl.$(OBJEXT) \
+ firedns.$(OBJEXT) irc.$(OBJEXT) list.$(OBJEXT) log.$(OBJEXT) \
+ main.$(OBJEXT) malloc.$(OBJEXT) match.$(OBJEXT) misc.$(OBJEXT) \
+ negcache.$(OBJEXT) opercmd.$(OBJEXT) scan.$(OBJEXT) \
+ stats.$(OBJEXT)
hopm_OBJECTS = $(am_hopm_OBJECTS)
hopm_DEPENDENCIES = libopm/src/.libs/libopm.a @LIBOBJS@
AM_V_lt = $(am__v_lt_@AM_V@)
compat.h \
config.c \
config.h \
- config-lexer.l \
config-parser.y \
+ config-lexer.l \
dnsbl.c \
dnsbl.h \
extern.h \
firedns.c \
firedns.h \
- inet.c \
- inet.h \
irc.c \
irc.h \
list.c \
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/config.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dnsbl.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/firedns.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inet.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/irc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Po@am__quote@
+++ /dev/null
-/*
-Copyright (C) 2002 by the past and present ircd coders, and others.
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to:
-
- The Free Software Foundation, Inc.
- 59 Temple Place - Suite 330
- Boston, MA 02111-1307, USA.
-
-*/
-
-/*
- * This code is borrowed from ircd-hybrid version 7
- * -TimeMr14C
- */
-
-#include <errno.h>
-#include <stdio.h>
-#include <assert.h>
-#include <string.h>
-#include <stdlib.h>
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-
-#include "setup.h"
-#include "inet.h"
-#include "log.h"