Hi all!

Now Im public from my home page package of my current project. Project
have about 100kb of headers and sources of main package and two libs
configured with AC_CONFIG_SUBDIRS(). Every lib dir have configure,
and main package have configure. All seems well, but every confgure
have about 600kb! and gziped package have about 850kb. 100kb of sources
gziped with GNU environment in 850kb distro. Can I reduce size of
configure? In configure output I see many unrequed check, my
configure.in attached to mail.

Thanks,
e

-----------------------------
GNU not UNIX, GNU better :)
AC_INIT([AUTHORS])
AC_CANONICAL_SYSTEM

AM_INIT_AUTOMAKE(onion, 0.2)

AC_PROG_CC
AM_PROG_LIBTOOL
AC_PROG_MAKE_SET
AC_PROG_CXX

AM_PATH_CPPUNIT(1.8.0)
AM_CONDITIONAL(HAVE_CPPUNIT, test "$CPPUNIT_LIBS")

AC_CHECK_PROG(RANLIB, ranlib, ranlib, :)
AC_CHECK_PROG(DLLTOOL, dlltool, dlltool, dlltool)
AC_CHECK_PROG(AS, as, as, as)
AC_CHECK_PROG(AR, ar, ar, ar)

if test -d libregistry; then
AC_CONFIG_SUBDIRS(libregistry)
fi

if test -d libeventqueue; then
AC_CONFIG_SUBDIRS(libeventqueue)
fi



AC_OUTPUT([Makefile src/Makefile tests/Makefile])

Reply via email to