/*
** Sella NMS
** $Id: DIST,v 2.4 2004/01/11 23:33:03 sella Exp $
** Copyright (c) 2001-2004 Digital Genesis Software. All Rights Reserved.
** Released under the GPL Version 2 License.
** http://www.digitalgenesis.com
*/

FIXME: This is out of date now.

Quick instructions on throwing the configure script for a dist togeather.

More details can be found at: http://howto.ewtoo.org/show.cgi?howto=autoconf.txt

> cd sella_nms/src

> autoscan
  This creates a configure.scan file, that needs to be modified.
  We added:
      AC_PROG_INSTALL
      AC_CHECK_LIB(dl, dlsym)
      AC_CHECK_LIB(pthread, pthread_create)
      AC_CHECK_LIB(mysqlclient, mysql_real_connect)
      AC_CHECK_LIB(stdc, main)
      AC_CHECK_LIB(stdc++, main)
		AC_CONFIG_HEADER(config.h)

      AC_CHECK_DGSDEBUG

> mv configure.scan configure.in

> vi aclocal.m4
  Create and define extra functions.

ie:

> vi acconfig.h
  Create and specify any needed stuff that you referenced in aclocal.m4 for config.h.in.

ie:

/* Define if 'debug' is enabled. */
#undef USE_DEBUG

/* Define if 'dgsdebug' is enabled. */
#undef USE_DGSDEBUG

> autoheader
  This creates a header.h.in file. It shouldn't need to be modified.

> autoconf
