# # # delete "errstr.hh" # # add_file "AUTHORS" # content [da39a3ee5e6b4b0d3255bfef95601890afd80709] # # add_file "COPYING" # content [da39a3ee5e6b4b0d3255bfef95601890afd80709] # # add_file "ChangeLog" # content [da39a3ee5e6b4b0d3255bfef95601890afd80709] # # add_file "INSTALL" # content [da39a3ee5e6b4b0d3255bfef95601890afd80709] # # add_file "Makefile.am" # content [600c270a0e0ccbc8adaccc199050c8a571a19332] # # add_file "NEWS" # content [da39a3ee5e6b4b0d3255bfef95601890afd80709] # # add_file "README" # content [da39a3ee5e6b4b0d3255bfef95601890afd80709] # # add_file "bootstrap" # content [59bc8c05eea55a0dfafe641e8c976315b3da23bc] # # add_file "configure.in" # content [a191b18290b0903b951d62b95ddd9a4f8e769e0b] # # set "bootstrap" # attr "mtn:execute" # value "true" # ============================================================ ============================================================ ============================================================ ============================================================ ============================================================ --- Makefile.am 600c270a0e0ccbc8adaccc199050c8a571a19332 +++ Makefile.am 600c270a0e0ccbc8adaccc199050c8a571a19332 @@ -0,0 +1,20 @@ + +bin_PROGRAMS = usher + +usher_SOURCES = administrator.cc administrator.hh \ + basic_io_serverlist_reader.cc basic_io_serverlist_reader.hh \ + buffer.cc buffer.hh \ + channel.cc channel.hh \ + err.cc err.hh \ + io.cc io.hh \ + query_client.cc query_client.hh \ + server.cc server.hh \ + serverlist_reader.hh \ + server_manager.cc server_manager.hh \ + sock.cc sock.hh \ + usher.cc + +EXTRA_DIST = ChangeLog.txt + +ChangeLog.txt: + $(srcdir)/ChangeLog > $@ ============================================================ ============================================================ ============================================================ --- bootstrap 59bc8c05eea55a0dfafe641e8c976315b3da23bc +++ bootstrap 59bc8c05eea55a0dfafe641e8c976315b3da23bc @@ -0,0 +1,2 @@ +#!/bin/sh +AUTOMAKE=automake-1.7 ACLOCAL=aclocal-1.7 autoreconf --install ============================================================ --- configure.in a191b18290b0903b951d62b95ddd9a4f8e769e0b +++ configure.in a191b18290b0903b951d62b95ddd9a4f8e769e0b @@ -0,0 +1,30 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.59) +AC_INIT(usher, 0.1, BUG-REPORT-ADDRESS) +AM_INIT_AUTOMAKE + +AC_CONFIG_SRCDIR([usher.cc]) +AC_CONFIG_HEADER([config.h]) + +# Checks for programs. +AC_PROG_CXX + +# Checks for libraries. + +# Checks for header files. +AC_HEADER_SYS_WAIT +AC_CHECK_HEADERS([unistd.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_HEADER_STDBOOL +AC_C_CONST +AC_C_INLINE +AC_TYPE_PID_T + +# Checks for library functions. +AC_FUNC_FORK +AC_HEADER_STDC +AC_CHECK_FUNCS([dup2]) +AC_OUTPUT(Makefile)