Quick Search:

Line History

line history graph

Show Arbitrary Diff

From to

Supports revisions and tags.

History

root: 4577 560

latest revision download Branch root:

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

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


4562 annotated / raw | Diffs: previous, other | Lines: 108 ( +1, -1 )

Created: 2007-03-12 00:21:54 -0400 (20 months ago) | Author: mikej | Changeset: 4562

an attempt to simplify the module make files.  More changes to come on the modules building soon

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

Created: 2006-12-18 19:43:27 -0500 (23 months ago) | Author: anthm | Changeset: 3708

sigh

3621 annotated / raw | Diffs: previous, other | Lines: 107 ( +1, -0 )

Created: 2006-12-12 12:38:03 -0500 (23 months ago) | Author: mikej | Changeset: 3621

fix qwirk in script not newer fails if it's exactly the same time..

3619 annotated / raw | Diffs: previous, other | Lines: 106 ( +12, -3 )

Created: 2006-12-12 11:38:46 -0500 (23 months ago) | Author: mikej | Changeset: 3619

make buildlib.sh more portable.  This now uses find, instead of bash extensions found in many versions of /bin/sh for comparing file dates.  Please report if this causes any issues.

3086 annotated / raw | Diffs: previous, other | Lines: 97 ( +1, -1 )

Created: 2006-10-18 20:20:40 -0400 (2 years 1 month ago) | Author: anthm | Changeset: 3086

fix build

3083 annotated / raw | Diffs: previous, other | Lines: 97 ( +6, -0 )

Created: 2006-10-18 18:57:35 -0400 (2 years 1 month ago) | Author: anthm | Changeset: 3083

Christmas Presence

2815 annotated / raw | Diffs: previous, other | Lines: 91 ( +3, -3 )

Created: 2006-09-23 19:27:44 -0400 (2 years 1 month ago) | Author: mikej | Changeset: 2815

Do not force use of "gmake" -- but propagate whichever command was used to start the top-level make.  This way users on e.g.
Mac OS X won't have to create a special symlink to build, but can instead just use the command "gnumake" (as opposed to "make" og "gmake")

Merged from tholo's branch http://svn.freeswitch.org/svn/freeswitch/branches/tholo rev 2796, thanks tholo.

2792 annotated / raw | Diffs: previous, other | Lines: 91 ( +1, -1 )

Created: 2006-09-22 23:44:32 -0400 (2 years 1 month ago) | Author: brian | Changeset: 2792

Small tweak from tholo to make it work on BSD and OS X without wget

2365 annotated / raw | Diffs: previous, other | Lines: 91 ( +1, -1 )

Created: 2006-08-22 17:18:36 -0400 (2 years 3 months ago) | Author: anthm | Changeset: 2365

build bs

2354 annotated / raw | Diffs: previous, other | Lines: 91 ( +1, -1 )

Created: 2006-08-21 20:56:27 -0400 (2 years 3 months ago) | Author: anthm | Changeset: 2354

optimizations

796 annotated / raw | Diffs: previous, other | Lines: 91 ( +1, -1 )

Created: 2006-03-07 21:58:36 -0500 (2 years 8 months ago) | Author: mikej | Changeset: 796

build fix

602 annotated / raw | Diffs: previous, other | Lines: 91 ( +6, -1 )

Created: 2006-02-13 14:51:17 -0500 (2 years 9 months ago) | Author: anthm | Changeset: 602

alter build system and add in howl

580 annotated / raw | Diffs: previous, other | Lines: 86 ( +15, -10 )

Created: 2006-02-09 17:37:44 -0500 (2 years 9 months ago) | Author: anthm | Changeset: 580

Add mod_ldap as directory example

560 new annotated / raw | Lines: 81 ( +81, -0 )

Created: 2006-02-07 19:57:35 -0500 (2 years 9 months ago) | Author: mikej | Changeset: 560

Build system cleanup, initial piece of automatic build test system (thanks xachen)
minor mod- I kept build.sh in the root dir for now.