noinst_LTLIBRARIES = libopm.la
-libopm_la_SOURCES = compat.c \
- compat.h \
- config.c \
+libopm_la_SOURCES = config.c \
config.h \
- inet.c \
inet.h \
libopm.c \
libopm.h \
CONFIG_CLEAN_VPATH_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
libopm_la_DEPENDENCIES = @LTLIBOBJS@
-am_libopm_la_OBJECTS = compat.lo config.lo inet.lo libopm.lo list.lo \
- malloc.lo proxy.lo
+am_libopm_la_OBJECTS = config.lo libopm.lo list.lo malloc.lo proxy.lo
libopm_la_OBJECTS = $(am_libopm_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
noinst_LTLIBRARIES = libopm.la
-libopm_la_SOURCES = compat.c \
- compat.h \
- config.c \
+libopm_la_SOURCES = config.c \
config.h \
- inet.c \
inet.h \
libopm.c \
libopm.h \
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compat.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/config.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inet.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libopm.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/malloc.Plo@am__quote@
+++ /dev/null
-/*
- * Copyright (C) 2002 Andy Smith
- *
- * 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
- */
-
-#include "setup.h"
-
-#include <stdio.h>
-#include <string.h>
-
-#include "compat.h"
-#include "opm.h"
+++ /dev/null
-#ifndef COMPAT_H
-#define COMPAT_H
-
-#endif
+++ /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 "setup.h"
-
-#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 <netdb.h>
-
-#include "inet.h"
-#include "opm.h"