Quick Search:

Line History

line history graph

Show Arbitrary Diff

From to

Supports revisions and tags.

History

root: 4662 4577

latest revision download Branch root:

4662 deleted | Lines: 0 ( +0, -433 )

Created: 2007-03-19 15:26:25 -0400 (20 months ago) | Author: mikej | Changeset: 4662

removing most of the generated files from tree.  You will need to run bootstrap.sh and configure again after you do this update and have autoconf, automake, and libtool installed on the box.

4642 annotated / raw | Diffs: previous, other | Lines: 433 ( +2, -1 )

Created: 2007-03-18 12:45:57 -0400 (20 months ago) | Author: mikej | Changeset: 4642

use -s for make without chekc on if it's supported.  If we run into ones that do not support -s, we can adress it at that point.

4640 annotated / raw | Diffs: previous, other | Lines: 432 ( +1, -1 )

Created: 2007-03-18 12:13:34 -0400 (20 months ago) | Author: mikej | Changeset: 4640

be quieter in our checks

4637 annotated / raw | Diffs: previous, other | Lines: 432 ( +9, -8 )

Created: 2007-03-18 02:48:26 -0400 (20 months ago) | Author: mikej | Changeset: 4637

make build even quieter (at least on gmake)... export VERBOSE=yes if you think it's TOO quiet.

4636 annotated / raw | Diffs: previous, other | Lines: 431 ( +21, -4 )

Created: 2007-03-18 01:20:35 -0400 (20 months ago) | Author: mikej | Changeset: 4636

make the build a bit quieter.  To make it loud again, export VERBOSE.  It will still show you all the warnings and all that on errors.

4623 annotated / raw | Diffs: previous, other | Lines: 414 ( +47, -10 )

Created: 2007-03-16 21:45:13 -0400 (20 months ago) | Author: mikej | Changeset: 4623

fix make megaclean target

4617 annotated / raw | Diffs: previous, other | Lines: 377 ( +21, -12 )

Created: 2007-03-16 15:20:24 -0400 (20 months ago) | Author: mikej | Changeset: 4617

Fix bootstrap with automake 1.7
fix generation of modules.conf from modules.conf.in on first build
some more steps towards removing gmake specific stuff from our makefiles.

4616 annotated / raw | Diffs: previous, other | Lines: 368 ( +10, -47 )

Created: 2007-03-16 13:19:44 -0400 (20 months ago) | Author: anthm | Changeset: 4616

update

4602 annotated / raw | Diffs: previous, other | Lines: 405 ( +8, -8 )

Created: 2007-03-15 00:32:09 -0400 (20 months ago) | Author: mikej | Changeset: 4602

do a better job with dependency tracking so the the mods don't keep trying to build or install when they don't need to.  This should start to help with the speed of the build.

4599 annotated / raw | Diffs: previous, other | Lines: 405 ( +2, -3 )

Created: 2007-03-14 21:32:18 -0400 (20 months ago) | Author: mikej | Changeset: 4599

do a better job with dependency tracking so the the mods don't keep trying to build or install when they don't need to.  This should start to help with the speed of the build.

4592 annotated / raw | Diffs: previous, other | Lines: 406 ( +5, -0 )

Created: 2007-03-14 14:59:25 -0400 (20 months ago) | Author: mikej | Changeset: 4592

add detection of system libcurl, and if it is available use that instead of in tree curl build.  Implemented just in mod_shout so far

4589 annotated / raw | Diffs: previous, other | Lines: 401 ( +14, -2 )

Created: 2007-03-14 10:35:11 -0400 (20 months ago) | Author: mikej | Changeset: 4589

add uninstall_mod target to the main makefile
implement uninstall in modmake.rules
add LIBADD_LOCAL var for use in the module makefiles, it both links to the module, and is a dependency like LOCAL_OBJS
fix bug in src/mod/Makefile(.am) that was causing make install to fail on first run for those modules that used the default mod makefile
implement the getlib.sh script in mod_shout Makefile (works.. but still wip)

4588 annotated / raw | Diffs: previous, other | Lines: 389 ( +4, -0 )

Created: 2007-03-13 23:02:46 -0400 (20 months ago) | Author: mikej | Changeset: 4588

add new generated shell script for portable download/untar

4583 annotated / raw | Diffs: previous, other | Lines: 385 ( +19, -19 )

Created: 2007-03-13 12:49:15 -0400 (20 months ago) | Author: mikej | Changeset: 4583

allow you to export var MODULES that will override what is in modules.conf for that build.  work a little harder to try to make it so you can do make in a module directory.  More on that later

4577 new annotated / raw | Lines: 385 ( +385, -0 )

Created: 2007-03-12 22:26:00 -0400 (20 months ago) | Author: mikej | Changeset: 4577

move module make to it's own makefile
remove need for modmake.sh (its use is now fully adressed within src/mod/Makefile.am)
remove need for generic_mod.mk (it uses the generated build/modmake.rules now instead)
add support for building out of tree modules as part of the freeswitch build simply by adding the full path to the module dir to your modules.conf
remove the need for special tragets to build.
make will now do a make through the core AND all the modules.
make install will now install the core and all the modules.
most or all of the old targets are still there, plus the new target "core" that will do more or less what make used to do.
make should now be able to be done without write permissions to the prefix directory (make install of course will still need them) whith the exception of modules that use buildlib.sh to download and install thier dependencies.  This will be fixed in a future revision.
checkversion.sh no longer will clean the modules on a change.  The need for this should be gone with the correct include paths to have the src directory included first.
Some steps in this commit to move us closer to being able to build with non gnu make (gmake).  Still some more work to do in this regard as well.
buildlib.sh no longer exports CFLAGS, just passes them to the confiure.
Move a little closer to supporting install directories in the "automake way" where all the dirs will be acutally determined in configure, and follow the standard install targets in Makefile.am
no longer build the modules twice on make install

Additional fixes still on the way for proper dependency tracking for the module builds, so they don't build every time.

any input on how to reach some of the goals stated above of supporting non gnu make, and more properly handling the install directories is appretiated.  Drop me an e-mail if you are intersted in helping.

Mike