search for: aclocal_flags

Displaying 20 results from an estimated 22 matches for "aclocal_flags".

Did you mean: aclocal_amflags
2004 Apr 15
1
[PATCH] theora/{Makefile.am,autogen.sh}
...ev/null 2>&1 || { echo echo "You must have libtool installed to compile $package." echo "Download the appropriate package for your system," @@ -48,14 +101,14 @@ echo "Generating configuration files for $package, please wait...." -echo " aclocal $ACLOCAL_FLAGS" -aclocal $ACLOCAL_FLAGS || exit 1 +echo " $ACLOCAL $ACLOCAL_FLAGS" +$ACLOCAL $ACLOCAL_FLAGS echo " autoheader" autoheader || exit 1 -echo " libtoolize --automake" -libtoolize --automake || exit 1 -echo " automake --add-missing $AUTOMAKE_FLAGS" -au...
2012 Dec 12
0
[PATCH 2/5] autogen.sh: replace this by a simple call to autoreconf
...togen.sh index 3290f2e..2aa4c30 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,166 +1,6 @@ #!/bin/sh # Run this to set up the build system: configure, makefiles, etc. -# (based on the version in enlightenment's cvs) - -# Some notes: -# -# You may need to specify -I /SOME_PATH/share/aclocal in ACLOCAL_FLAGS -# if any packages FLAC relies on (autotools, libogg, libiconv) are -# installed in non-standard places. -# -# If you don't have XMMS installed at all, you should comment out -# AM_PATH_XMMS in configure.in. -# -# FLAC uses iconv but not gettext. iconv requires config.rpath which -# is supplie...
2006 Nov 17
1
Re: build issues
...================================================================= RCS file: /cvsroot/flac/flac/autogen.sh,v retrieving revision 1.14 diff -u -r1.14 autogen.sh --- autogen.sh 17 Nov 2006 06:50:19 -0000 1.14 +++ autogen.sh 17 Nov 2006 22:54:13 -0000 @@ -11,6 +11,8 @@ cd "$srcdir" DIE=0 +ACLOCAL_FLAGS="-I m4 $ACLOCAL_FLAGS" + echo "checking for autoconf... " (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo
2006 Nov 11
3
Re: build issues
On Sat, Nov 11, 2006 at 03:03:12PM -0800, Josh Coalson wrote: > ok, checked in some fixes that should take care of most of the > warnings. Nice! Current complete set of warnings: replaygain.c: In function 'parse_double_': replaygain.c:612: warning: comparison between signed and unsigned replaygain.c:612: warning: signed and unsigned type in conditional expression encode.c:2686:
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools based build system. There is a lot more that could and should be done, but I tried to stay conservative for now and just resolve some of the most obvious issues. Max Horn (5): configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN autogen.sh: replace this by a simple call to autoreconf configure: always print
2005 Nov 17
2
Dovecot LDA config problem on RHEL 4 x86_64
Hello, Has anyone succeeded on configuring and compiling Sieve capable Dovecot LDA on RHEL 4 x86_64 platform? I am having problems with configure script hanging on sed while creating Makefiles. # ./configure --with-dovecot=../dovecot .. checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for library containing
2008 Apr 07
2
problem with Rmpi 0.5-5 and openmpi
...,CP1252 LESS=-M -I MACHTYPE=x86_64-suse-linux LOGNAME=pearman GTK_PATH64=/usr/local/lib64/gtk-2.0:/opt/gnome/lib64/gtk-2.0:/usr/lib64/gtk-2.0 CVS_RSH=ssh XDG_DATA_DIRS=/usr/local/share/:/usr/share/:/etc/opt/kde3/share/:/opt/kde3/share/:/opt/gnome/sh are/ MPICH_PATH=/opt/mpich/1.2.6..14b/x86_64/gcc/ ACLOCAL_FLAGS=-I /opt/gnome/share/aclocal SSH_CONNECTION=::ffff:10.15.1.179 51565 ::ffff:10.30.1.15 22 PKG_CONFIG_PATH=/opt/gnome/lib64/pkgconfig LESSOPEN=lessopen.sh %s INFOPATH=/usr/local/info:/usr/share/info:/usr/info:/opt/gnome/share/info LESSCLOSE=lessclose.sh %s %s G_BROKEN_FILENAMES=1 JAVA_ROOT=/usr/lib/j...
2009 Oct 25
0
having trouble building on Mac OS X 10.5
....org/releases/ Go through the usual configure;make;make install sequence. You will have it in /usr/local/bin/pkg-config . On top of either, you may also need to re-run the autogen.sh script to get aclocal to find the m4 macros. For me, I needed to add "-I /usr/local/share/aclocal" to the ACLOCAL_FLAGS. Hope this helps anyone running into the same problem. Basically it's part of getting set up to do linux-style development on your box. :-) Cheers, Silvia.
2004 Sep 23
2
libtool.m4
It seems that autogen.sh failed when I tried to build theora from svn because it could not find libtool.m4. With Mandrake 10.0, I have libtool.m4 in /usr/share/aclocal/libtool.m4 Where is it supposed to be? Regards, John
2005 Jul 28
1
pkg-config problem
...I tried to build libvorbis today but had a little problem. When running configure it would fail with these errors: ./configure: line 19431: syntax error near unexpected token `OGG,' ./configure: line 19431: ` PKG_CHECK_MODULES(OGG, ogg >= 1.0, HAVE_OGG=yes, HAVE_OGG=no)' I had to set ACLOCAL_FLAGS to "-I /usr/local/share/aclocal" and rerun autogen.sh in order for it to work. I just would like to know whether or not this is something that could be fixed in vorbis itself or if it is totally my problem. -- <Arthur/> - http://artooro.blogspot.com (Weblog) - http://sourcefor...
2007 Jul 07
0
2 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...t a/Makefile.am b/Makefile.am index 25bbed2..c90dd0f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,15 @@ -SUBDIRS= \ - libswfdec \ +if WITH_GTK +GTK_SUBDIRS = \ libswfdec-gtk \ - player \ doc \ + player +else +GTK_SUBDIRS = +endif + +SUBDIRS= \ + libswfdec \ + $(GTK_SUBDIRS) \ test ACLOCAL_FLAGS = -I m4 diff --git a/doc/Makefile.am b/doc/Makefile.am index 5ce6db0..38ef71f 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -110,10 +110,15 @@ IGNORE_HFILES= \ swfdec_video_movie.h \ swfdec_xml.h +if WITH_GTK EXTRA_HFILES = \ ../libswfdec-gtk/swfdec_gtk_loader.h \ ../libswfdec-gt...
2007 Aug 30
1
[PATCH] : Add -Wdeclaration-after-statement
...q +SUBDIRS = m4 lib include doc examples vq m4datadir = $(datadir)/aclocal m4data_DATA = vorbis.m4 Index: autogen.sh =================================================================== --- autogen.sh (revision 13657) +++ autogen.sh (working copy) @@ -4,6 +4,8 @@ package="vorbis" +ACLOCAL_FLAGS="-I m4" + olddir=`pwd` srcdir=`dirname $0` test -z "$srcdir" && srcdir=. -----------------8<-----------------8<-----------------8<----------------- -- ----------------------------------------------------------------- Erik de Castro Lopo ------------------...
2007 Jul 07
0
Branch 'as' - 3 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...t a/Makefile.am b/Makefile.am index 25bbed2..c90dd0f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,15 @@ -SUBDIRS= \ - libswfdec \ +if WITH_GTK +GTK_SUBDIRS = \ libswfdec-gtk \ - player \ doc \ + player +else +GTK_SUBDIRS = +endif + +SUBDIRS= \ + libswfdec \ + $(GTK_SUBDIRS) \ test ACLOCAL_FLAGS = -I m4 diff --git a/doc/Makefile.am b/doc/Makefile.am index 5ce6db0..38ef71f 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -110,10 +110,15 @@ IGNORE_HFILES= \ swfdec_video_movie.h \ swfdec_xml.h +if WITH_GTK EXTRA_HFILES = \ ../libswfdec-gtk/swfdec_gtk_loader.h \ ../libswfdec-gt...
2009 Oct 25
0
[PATCH] Use pkg-config (if available) to detect libogg. Fall back to old method if pkg-config fails.
...include src doc win32 symbian ti +DIST_SUBDIRS = libspeex include src doc win32 symbian ti m4 rpm: dist rpmbuild -ta ${PACKAGE}-${VERSION}.tar.gz diff --git a/autogen.sh b/autogen.sh index 87dc6ab..3ec8b73 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,6 +4,8 @@ package="Speex" +ACLOCAL_FLAGS="-I m4" + olddir=`pwd` srcdir=`dirname $0` test -z "$srcdir" && srcdir=. @@ -101,6 +103,19 @@ fi DIE=1 } + +echo -n "checking for pkg-config ... " +result="yes" +(pkg-config --version) < /dev/null > /dev/null 2>&1 || { + ec...
2006 Apr 25
1
Another undefined pri_restart failure
...ocal/lib/gtk-2.0:/opt/gnome/lib/gtk-2.0:/usr/lib/gtk-2.0 LESS=-M -I MACHTYPE=x86_64-suse-linux LOGNAME=root GTK_PATH64=/usr/local/lib64/gtk-2.0:/opt/gnome/lib64/gtk-2.0:/usr/lib64/gtk-2.0 CVS_RSH=ssh XDG_DATA_DIRS=/usr/local/share/:/usr/share/:/etc/opt/kde3/share/:/opt/kde3/share/:/opt/gnome/share/ ACLOCAL_FLAGS=-I /opt/gnome/share/aclocal LC_CTYPE=en_US.UTF-8 DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-z1RTWWV1Gq,guid=3beb4d44c3081877355afd4083cca800 PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/opt/kde3/lib64/pkgconfig:/opt/gnome/lib64...
2004 Jul 19
0
Ogg Vorbis CVS (ok,
...the path to the libtoolize you wish to" + echo "use in the environment used to invoke $0," + echo "for example:" + echo " $ env LIBTOOLIZE=/path/to/libtoolize $0" + echo " or $ env LIBTOOLIZE=libtoolize13 $0" DIE=1 } @@ -105,12 +131,12 @@ $ACLOCAL $ACLOCAL_FLAGS #echo " autoheader" #autoheader -echo " $LIBTOOLIZE --automake" -$LIBTOOLIZE --automake +echo " $libtoolize --automake" +$libtoolize --automake echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS" $AUTOMAKE --add-missing $AUTOMAKE_FLAGS -echo " autoconf2...
2004 Aug 06
2
compiling under redhat
...taining getipnodebyname... no checking for ANSI C header files... yes checking for stdint.h... yes checking for pwd.h... yes checking for unistd.h... yes checking for working const... yes checking for xslt-config... no configure: error: xslt-config could not be found this was already after I added ACLOCAL_FLAGS=-I /usr/share/aclocal/ to the environment for fixing the "macro `AM_PROG_LIBTOOL' not found in library" error. I read another mail with the same error and it told there that it might be needed to downgrade automake or other tools as 1.6 is not compatible anymore. I have a Redhat 7.2...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...cal: + $(RM) -r $(DESTDIR)$(docdir)/html + +endif diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..58d140a --- /dev/null +++ b/autogen.sh @@ -0,0 +1,16 @@ +#!/bin/sh +# Run this to set up the build system: configure, makefiles, etc. +set -e + +package="opusfile" + +ACLOCAL_FLAGS="-I m4" + +olddir=`pwd` +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +cd "$srcdir" + +echo "Updating build configuration files for $package, please wait...." +autoreconf -is diff --git a/configure.ac b/configure.ac new file mode 100644 index...
2004 Aug 06
3
autogen.sh trouble with latest CVS checkout
Hello All: I just checked out the whole icecast but cannot build anything because autogen wouldn't cooperate. I have automake-1.7.6 just installed from ftp.gnu.org. Below is an example output in trying to build "icecast"; it's not very short... Thanks in advance for any help. --- $~/icecast/icecast> ./autogen.sh Checking for automake version found automake found
2007 Oct 19
0
4 commits - configure.ac data/.gitignore data/icons data/Makefile.am data/swfdec-gtk.pc.in data/swfdec.pc.in .gitignore Makefile.am player/swfplay.c swfdec-gtk.pc.in swfdec.pc.in
...@@ -19,6 +19,3 @@ libtool ltmain.sh missing stamp-h1 -swfdec-*.pc -swfdec.pc -swfdec.spec diff --git a/Makefile.am b/Makefile.am index 27849d7..37b2970 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,6 +17,7 @@ SUBDIRS= \ libswfdec \ $(GTK_SUBDIRS) \ $(VIVI_SUBDIRS) \ + data \ test ACLOCAL_FLAGS = -I m4 @@ -32,21 +33,6 @@ EXTRA_DIST=depcomp \ m4/ax_create_stdint_h.m4 \ m4/gtk-doc.m4 -pkgconfigdir = $(libdir)/pkgconfig -if WITH_GTK -pkgconfig_DATA = swfdec- at SWFDEC_MAJORMINOR@.pc swfdec-gtk- at SWFDEC_MAJORMINOR@.pc -else -pkgconfig_DATA = swfdec- at SWFDEC_MAJORMINOR@.pc -endif - -...