CompilingIstanbul
Compiling Istanbul
Home page: http://live.gnome.org/Istanbul
Whilst Istanbul is available in the repository, as it is under active development, it can be preferable to get the latest features by compiling the source code. That is covered on ScreenCasts/CompilingIstanbul. If you choose to compile from source then go to that page then come back here for the details on how to use Istanbul.
Pre-requisites for compiling
The following packages would be needed for compiling pretty much most things, we just need to make sure we have them.
$ sudo apt-get install make gcc automake1.9
Pre-requisites specific to Istanbul
These are liraries that Istanbul specifically needs to allow it to compile. We also need cvs so that we can check the source out and compile it.
$ sudo apt-get install libgconf2-dev libvorbis-dev libtheora-dev cvs
Remove current packaged version of Istanbul
$ sudo apt-get remove istanbul
Make a directory to put the source in
$ mkdir ~/src $ cd ~/src /src$
Check out the source
Here we grab the source from the GNOME cvs repository.
/src$ export CVS_RSH="ssh" /src$ export CVSROOT=":pserver:anonymous@anoncvs.gnome.org:/cvs/gnome" /src$ cvs login Logging in to :pserver:anonymous@anoncvs.gnome.org:2401/cvs/gnome CVS password: /src$ cvs -z3 co istanbul
You should get something roughly like this. If you do it again you will get less files checked out because they are already downloaded.
cvs server: Updating istanbul U istanbul/AUTHORS U istanbul/COPYING U istanbul/ChangeLog U istanbul/INSTALL U istanbul/LICENCE.GPL U istanbul/MAINTAINERS U istanbul/Makefile.am U istanbul/NEWS U istanbul/README U istanbul/acinclude.m4 U istanbul/autogen.sh U istanbul/configure.ac cvs server: Updating istanbul/bin U istanbul/bin/Makefile.am U istanbul/bin/istanbul.in cvs server: Updating istanbul/common U istanbul/common/Makefile.am U istanbul/common/as-ac-expand.m4 U istanbul/common/as-python.m4 U istanbul/common/as-version.m4 U istanbul/common/common.mk U istanbul/common/gst-feature.m4 U istanbul/common/py-compile-destdir U istanbul/common/pychecker.mk U istanbul/common/python.mk cvs server: Updating istanbul/data U istanbul/data/Makefile.am U istanbul/data/istanbul.desktop.in U istanbul/data/istanbul.png U istanbul/data/istanbul.schemas.in cvs server: Updating istanbul/doc U istanbul/doc/Makefile.am cvs server: Updating istanbul/doc/man U istanbul/doc/man/Makefile.am U istanbul/doc/man/istanbul.1 cvs server: Updating istanbul/gst U istanbul/gst/Makefile.am U istanbul/gst/gstximagesrc.c U istanbul/gst/gstximagesrc.h U istanbul/gst/ximageutil.c U istanbul/gst/ximageutil.h cvs server: Updating istanbul U istanbul/Makefile.am U istanbul/__init__.py cvs server: Updating istanbul/configure U istanbul/configure/Makefile.am U istanbul/configure/__init__.py U istanbul/configure/config.py.in cvs server: Updating istanbul/extern cvs server: Updating istanbul/extern/pytrayicon cvs server: Updating istanbul/main U istanbul/main/Makefile.am U istanbul/main/__init__.py U istanbul/main/area_select.py U istanbul/main/checkradio_widget.py U istanbul/main/command_line.py U istanbul/main/constants.py U istanbul/main/gconf_client.py U istanbul/main/gst_player.py U istanbul/main/main.py U istanbul/main/preferences.py U istanbul/main/save_window.py U istanbul/main/screen.py U istanbul/main/screencast.py U istanbul/main/tray_icon.py U istanbul/main/tray_popup.py U istanbul/main/window_select.py cvs server: Updating istanbul/po U istanbul/po/.cvsignore U istanbul/po/ChangeLog U istanbul/po/LINGUAS U istanbul/po/POTFILES.in U istanbul/po/bg.po U istanbul/po/en_GB.po U istanbul/po/es.po U istanbul/po/fi.po U istanbul/po/hi.po U istanbul/po/hu.po U istanbul/po/it.po U istanbul/po/ja.po U istanbul/po/mk.po U istanbul/po/pa.po U istanbul/po/sr.po U istanbul/po/sr@Latn.po U istanbul/po/sv.po U istanbul/po/vi.po U istanbul/po/zh_CN.po
Prepare for configuring
Here we change directory into the one made when we checked out Istanbul, then run the autogen script which prepares for the compilation of Istanbul.
/src$ cd istanbul /src/istanbul$ ./autogen.sh + aclocal -I common aclocal:configure.ac:195: warning: macro `AM_GCONF_SOURCE_2' not found in library + libtoolize --force + intltoolize --force You should update your 'aclocal.m4' by running aclocal. + autoconf + automake -a configure.ac: installing `./install-sh' configure.ac: installing `./missing' data/Makefile.am:15: GCONF_SCHEMAS_INSTALL does not appear in AM_CONDITIONAL data/Makefile.am:20: GCONF_SCHEMAS_INSTALL does not appear in AM_CONDITIONAL gst/Makefile.am: installing `./compile' gst/Makefile.am: installing `./depcomp' istanbul/Makefile.am:9: installing `./py-compile' + exit 1
Prepare for compiling
Now we run the configure script which performs various checks to ensure we have the necessary pre-requisites for compiling Istanbul. If this fails it could be that the pre-requisites are not installed, as detailed above.
/src/istanbul$ ./configure configure: configuring istanbul for development with nano 1 checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes configure: Storing library files in /usr/local/lib configure: Storing data files in ${prefix}/share configure: Storing configuration files in /usr/local/etc configure: Using localstatedir /usr/local/var checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking for a sed that does not truncate output... /bin/sed checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for f77... no checking for xlf... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for f90... no checking for xlf90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for f95... no checking for fort... no checking for xlf95... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 32768 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool configure: Looking for Python version >= 2.3 checking for python... /usr/bin/python checking "/usr/bin/python":... okay checking local Python configuration... looks good checking for python version... 2.4 checking for python platform... linux2 checking for python script directory... ${prefix}/lib/python2.4/site-packages checking for python extension module directory... ${exec_prefix}/lib/python2.4/site-packages checking for headers required to compile python extensions... found configure: Using pythondir /usr/local/lib/python2.4/site-packages checking for intltool >= 0.35.0... 0.35.0 found checking for perl... /usr/bin/perl checking for XML::Parser... ok checking for iconv... /usr/bin/iconv checking for msgfmt... /usr/bin/msgfmt checking for msgmerge... /usr/bin/msgmerge checking for xgettext... /usr/bin/xgettext checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... yes checking for dgettext in libc... yes checking for bind_textdomain_codeset... yes checking for msgfmt... /usr/bin/msgfmt checking for dcgettext... yes checking for gmsgfmt... /usr/bin/msgfmt checking for xgettext... /usr/bin/xgettext checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for GST... yes checking for PYGTK... yes configure: Using pygtk installed in /usr/lib/python2.5/site-packages checking for GTK... yes checking for PYGST... yes configure: Using gstreamer-python 0.10 installed in /usr/lib/python2.4/site-packages checking for python module gst... found checking for GNOME_PYTHON_EXTRAS... yes checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking for GST_BASE... yes checking for GSTPB_BASE... checking for X... no configure: *** checking feature: X libraries and plugins *** configure: *** for plug-ins: istximagesrc *** checking X11/Xlib.h usability... yes checking X11/Xlib.h presence... yes checking for X11/Xlib.h... yes checking for XFIXES... yes checking for XDAMAGE... yes configure: *** These plugins will be built: istximagesrc configure: *** checking feature: X Shared Memory extension *** checking for XShmAttach in -lXext... yes Using config source xml:merged:/etc/gconf/gconf.xml.defaults for schema installation Using $(sysconfdir)/gconf/schemas as install directory for schema files configure: *** checking feature: GConf schemas *** checking for gconftool-2... /usr/bin/gconftool-2 configure: creating ./config.status config.status: creating Makefile config.status: creating bin/istanbul config.status: creating bin/Makefile config.status: creating common/Makefile config.status: creating gst/Makefile config.status: creating istanbul/Makefile config.status: creating istanbul/configure/config.py config.status: creating istanbul/configure/Makefile config.status: creating istanbul/main/Makefile config.status: creating data/Makefile config.status: creating doc/Makefile config.status: creating doc/man/Makefile config.status: creating po/Makefile.in config.status: executing depfiles commands config.status: executing intltool commands config.status: executing default-1 commands config.status: executing po/stamp-it commands
Compile it!
/src/istanbul$ make Making all in . make[1]: Entering directory `/home/alan/src/istanbul' make[1]: Nothing to be done for `all-am'. make[1]: Leaving directory `/home/alan/src/istanbul' Making all in common make[1]: Entering directory `/home/alan/src/istanbul/common' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/alan/src/istanbul/common' Making all in gst make[1]: Entering directory `/home/alan/src/istanbul/gst' if /bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"istanbul\" -DPACKAGE_TARNAME=\"istanbul\" -DPACKAGE_VERSION=\"0.2.1\" -DPACKAGE_STRING=\"istanbul\ 0.2.1\" -DPACKAGE_BUGREPORT=\"\" -DISTANBUL=\"0.2.1.1\" -DISTANBUL_RELEASE=\"0.20061130.072844\" -DPACKAGE=\"istanbul\" -DVERSION=\"0.2.1.1\" -DPACKAGE=\"istanbul\" -DVERSION=\"0.2.1.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DGETTEXT_PACKAGE=\"istanbul\" -DHAVE_LOCALE_H=1 -DHAVE_LC_MESSAGES=1 -DHAVE_BIND_TEXTDOMAIN_CODESET=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DENABLE_NLS=1 -DX_DISPLAY_MISSING=1 -DHAVE_X= -DHAVE_XSHM= -DHAVE_GCONFTOOL= -I. -I. -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DHAVE_XFIXES -DHAVE_XDAMAGE -g -O2 -MT libistximagesrc_la-gstximagesrc.lo -MD -MP -MF ".deps/libistximagesrc_la-gstximagesrc.Tpo" -c -o libistximagesrc_la-gstximagesrc.lo `test -f 'gstximagesrc.c' || echo './'`gstximagesrc.c; \ then mv -f ".deps/libistximagesrc_la-gstximagesrc.Tpo" ".deps/libistximagesrc_la-gstximagesrc.Plo"; else rm -f ".deps/libistximagesrc_la-gstximagesrc.Tpo"; exit 1; fi mkdir .libs gcc -DPACKAGE_NAME=\"istanbul\" -DPACKAGE_TARNAME=\"istanbul\" -DPACKAGE_VERSION=\"0.2.1\" "-DPACKAGE_STRING=\"istanbul 0.2.1\"" -DPACKAGE_BUGREPORT=\"\" -DISTANBUL=\"0.2.1.1\" -DISTANBUL_RELEASE=\"0.20061130.072844\" -DPACKAGE=\"istanbul\" -DVERSION=\"0.2.1.1\" -DPACKAGE=\"istanbul\" -DVERSION=\"0.2.1.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DGETTEXT_PACKAGE=\"istanbul\" -DHAVE_LOCALE_H=1 -DHAVE_LC_MESSAGES=1 -DHAVE_BIND_TEXTDOMAIN_CODESET=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DENABLE_NLS=1 -DX_DISPLAY_MISSING=1 -DHAVE_X= -DHAVE_XSHM= -DHAVE_GCONFTOOL= -I. -I. -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DHAVE_XFIXES -DHAVE_XDAMAGE -g -O2 -MT libistximagesrc_la-gstximagesrc.lo -MD -MP -MF .deps/libistximagesrc_la-gstximagesrc.Tpo -c gstximagesrc.c -fPIC -DPIC -o .libs/libistximagesrc_la-gstximagesrc.o if /bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"istanbul\" -DPACKAGE_TARNAME=\"istanbul\" -DPACKAGE_VERSION=\"0.2.1\" -DPACKAGE_STRING=\"istanbul\ 0.2.1\" -DPACKAGE_BUGREPORT=\"\" -DISTANBUL=\"0.2.1.1\" -DISTANBUL_RELEASE=\"0.20061130.072844\" -DPACKAGE=\"istanbul\" -DVERSION=\"0.2.1.1\" -DPACKAGE=\"istanbul\" -DVERSION=\"0.2.1.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DGETTEXT_PACKAGE=\"istanbul\" -DHAVE_LOCALE_H=1 -DHAVE_LC_MESSAGES=1 -DHAVE_BIND_TEXTDOMAIN_CODESET=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DENABLE_NLS=1 -DX_DISPLAY_MISSING=1 -DHAVE_X= -DHAVE_XSHM= -DHAVE_GCONFTOOL= -I. -I. -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DHAVE_XFIXES -DHAVE_XDAMAGE -g -O2 -MT libistximagesrc_la-ximageutil.lo -MD -MP -MF ".deps/libistximagesrc_la-ximageutil.Tpo" -c -o libistximagesrc_la-ximageutil.lo `test -f 'ximageutil.c' || echo './'`ximageutil.c; \ then mv -f ".deps/libistximagesrc_la-ximageutil.Tpo" ".deps/libistximagesrc_la-ximageutil.Plo"; else rm -f ".deps/libistximagesrc_la-ximageutil.Tpo"; exit 1; fi gcc -DPACKAGE_NAME=\"istanbul\" -DPACKAGE_TARNAME=\"istanbul\" -DPACKAGE_VERSION=\"0.2.1\" "-DPACKAGE_STRING=\"istanbul 0.2.1\"" -DPACKAGE_BUGREPORT=\"\" -DISTANBUL=\"0.2.1.1\" -DISTANBUL_RELEASE=\"0.20061130.072844\" -DPACKAGE=\"istanbul\" -DVERSION=\"0.2.1.1\" -DPACKAGE=\"istanbul\" -DVERSION=\"0.2.1.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DGETTEXT_PACKAGE=\"istanbul\" -DHAVE_LOCALE_H=1 -DHAVE_LC_MESSAGES=1 -DHAVE_BIND_TEXTDOMAIN_CODESET=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DENABLE_NLS=1 -DX_DISPLAY_MISSING=1 -DHAVE_X= -DHAVE_XSHM= -DHAVE_GCONFTOOL= -I. -I. -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -DHAVE_XFIXES -DHAVE_XDAMAGE -g -O2 -MT libistximagesrc_la-ximageutil.lo -MD -MP -MF .deps/libistximagesrc_la-ximageutil.Tpo -c ximageutil.c -fPIC -DPIC -o .libs/libistximagesrc_la-ximageutil.o /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -o libistximagesrc.la -rpath /usr/local/lib/gstreamer-0.10 libistximagesrc_la-gstximagesrc.lo libistximagesrc_la-ximageutil.lo -Wl,--export-dynamic -pthread -lgstbase-0.10 -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 -ldl -lgthread-2.0 -lxml2 -lglib-2.0 -lX11 -lXext -lXfixes -lXdamage -lXfixes gcc -shared .libs/libistximagesrc_la-gstximagesrc.o .libs/libistximagesrc_la-ximageutil.o /usr/lib/libgstbase-0.10.so /usr/lib/libgstreamer-0.10.so /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl /usr/lib/libgthread-2.0.so /usr/lib/libxml2.so /usr/lib/libglib-2.0.so -lX11 -lXext -lXdamage -lXfixes -Wl,--export-dynamic -pthread -Wl,-soname -Wl,libistximagesrc.so.0 -o .libs/libistximagesrc.so.0.0.0 (cd .libs && rm -f libistximagesrc.so.0 && ln -s libistximagesrc.so.0.0.0 libistximagesrc.so.0) (cd .libs && rm -f libistximagesrc.so && ln -s libistximagesrc.so.0.0.0 libistximagesrc.so) creating libistximagesrc.la (cd .libs && rm -f libistximagesrc.la && ln -s ../libistximagesrc.la libistximagesrc.la) make[1]: Leaving directory `/home/alan/src/istanbul/gst' Making all in istanbul make[1]: Entering directory `/home/alan/src/istanbul/istanbul' Making all in configure make[2]: Entering directory `/home/alan/src/istanbul/istanbul/configure' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/alan/src/istanbul/istanbul/configure' Making all in main make[2]: Entering directory `/home/alan/src/istanbul/istanbul/main' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/alan/src/istanbul/istanbul/main' make[2]: Entering directory `/home/alan/src/istanbul/istanbul' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/home/alan/src/istanbul/istanbul' make[1]: Leaving directory `/home/alan/src/istanbul/istanbul' Making all in bin make[1]: Entering directory `/home/alan/src/istanbul/bin' cd .. && /bin/bash ./config.status bin/istanbul config.status: creating bin/istanbul make[1]: Leaving directory `/home/alan/src/istanbul/bin' Making all in data make[1]: Entering directory `/home/alan/src/istanbul/data' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/alan/src/istanbul/data' Making all in doc make[1]: Entering directory `/home/alan/src/istanbul/doc' Making all in man make[2]: Entering directory `/home/alan/src/istanbul/doc/man' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/alan/src/istanbul/doc/man' make[2]: Entering directory `/home/alan/src/istanbul/doc' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/home/alan/src/istanbul/doc' make[1]: Leaving directory `/home/alan/src/istanbul/doc' Making all in po make[1]: Entering directory `/home/alan/src/istanbul/po' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/alan/src/istanbul/po'
<center><a href=""><img src="" alt=""></a></center>
<center><a href=""><img src="" alt=""></a></center>
Tips: Compile the latest version from source, and set your screen resolution low to ensure a reasonable recording frame rate.
ScreenCasts/CompilingIstanbul (last edited 2008-08-06 17:00:16 by localhost)