HACKING
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. $Id: HACKING 8782 2004-09-23 20:56:46Z hartman $
  2. Hacking vlc
  3. ===========
  4. First
  5. -----
  6.  - Read this file
  7.  - Read the information present on http://developers.videolan.org/vlc/
  8. Requirements
  9. ____________
  10. You will need the following tools if you plan to use the SVN version of vlc:
  11.  - autoconf version 2.50 or later
  12.  - automake version 1.5 (but 1.6 or later is recommended)
  13.  - gettext version 0.10.40 (but 0.11.3 or later is recommended)
  14. After retrieving the SVN tree, you need to run the bootstrap script to
  15. generate all the files needed to build vlc. You can then run configure.
  16. Run ./configure --help for a description of the available options.
  17. If you do not have the correct version of these tools, or if they are
  18. simply not available for the operating system you plan to develop on,
  19. you can check out a SVN tree on an OS that provides these tools (such
  20. as a recent Linux distribution), run bootstrap, and then copy the whole
  21. tree to your retarded OS.
  22. There is a possibility that, at some point, automake might segfault. The
  23. reason is unsufficient stack size, and can be easily fixed with the
  24. `ulimit` command (or an equivalent) available in most shells. For instance
  25. on bash 2.0, the following command solves the automake crash on Mac OS X :
  26. ulimit -s 20000
  27. The bootstrap sequence
  28. ----------------------
  29. The bootstrap script does the following actions:
  30.  - parse configure.ac for all Makefiles in the modules/ directory that need
  31.    to be generated, and look for available modules in the corresponding
  32.    Modules.am file. A module "foo" exists if there is a Modules.am file in
  33.    the modules/ directory which defines SOURCES_foo.
  34.  - create a top-level Modules.am file (which will be included by Makefile.am)
  35.    which contains additional build rules for modules, and includes all the
  36.    Modules.am files that were found in modules/
  37.  - create an m4/private.m4 from configure.ac, generating m4 macros that will
  38.    be needed by configure.ac.
  39.  - create a Makefile.am file for each Modules.am file found in modules/ .
  40.  - run autopoint (previously gettextize) to create an intl/ directory,
  41.    needed when libgettext is not available.
  42.  - run the usual aclocal, autoheader, automake and autoconf, which create
  43.    the various Makefile.in files from the corresponding Makefile.am and the
  44.    configure script from configure.ac.
  45.  - fix a few files in the vlc repository that may have been altered.
  46. How to add a module
  47. -------------------
  48. To add a module to the repository, just add its sources to a Modules.am
  49. file. If you add a new directory you will need to create a new Modules.am,
  50. inside that directory. Do not forget to add a corresponding
  51. Makefile line at the end of configure.ac for this new Modules.am file.
  52. To have the module built, you need to add a call to VLC_ADD_PLUGINS or
  53. VLC_ADD_BUILTINS to configure.ac with your new module name as argument.
  54. Look at other modules for guidelines on how to add build and linkage options.
  55. After changing configure.ac you will always need to rerun bootstrap and 
  56. configure.