From f9563ee14b530fa38701b00d551891a6bdcd0352 Mon Sep 17 00:00:00 2001 From: iovar Date: Fri, 6 Oct 2006 14:14:57 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r85, which included commits to RCS files with non-trunk default branches. git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@86 f606c939-3180-4ac9-a4b8-4b8779d57d0a --- rMD-exp/configure.ac | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 rMD-exp/configure.ac (limited to 'rMD-exp/configure.ac') diff --git a/rMD-exp/configure.ac b/rMD-exp/configure.ac new file mode 100644 index 0000000..6850723 --- /dev/null +++ b/rMD-exp/configure.ac @@ -0,0 +1,66 @@ + # -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.59) +AC_INIT(src/recordmydesktop.c) +AM_INIT_AUTOMAKE(recordmydesktop,0.2.6,) + +AC_CONFIG_SRCDIR([src/recordmydesktop.c]) +AM_CONFIG_HEADER(config.h) + + + +# Checks for programs. + +AC_PROG_CC + +# Checks for header files. + +AC_HEADER_DIRENT +AC_HEADER_STDC + +AC_PATH_X +AC_PATH_XTRA + +AC_CHECK_HEADER([png.h]) +AC_CHECK_HEADER([alsa/asoundlib.h]) +AC_CHECK_HEADERS([sys/time.h unistd.h vorbis/vorbisfile.h ]) + +LDFLAGS="$LD_FLAGS -L$x_libraries $X_LIBS $X_EXTRA_LIBS $X_PRE_LIBS" + +#no-O3s-thx.patch ;) +CFLAGS="${CFLAGS} -Wall -D_THREAD_SAFE -pthread" + + + + +# Checks for libraries. + +AC_CHECK_LIB([m],[isnan],,) +AC_CHECK_LIB([z],[deflate],,) +AC_CHECK_LIB([X11],[XOpenDisplay],,AC_MSG_ERROR([Can't find libX11]), + -L$x_libraries $X_PRE_LIBS) +AC_CHECK_LIB([Xext],[XShmQueryVersion],,AC_MSG_ERROR([Can't find libXext])) +AC_CHECK_LIB([Xfixes], [XFixesQueryExtension],,AC_MSG_ERROR([Can't find libXfixes])) +AC_CHECK_LIB([Xdamage], [XDamageQueryExtension],,AC_MSG_ERROR([Can't find libXdamage])) +AC_CHECK_LIB([vorbis],[vorbis_info_clear],,AC_MSG_ERROR([Can't find libvorbis])) +AC_CHECK_LIB([vorbisfile],[ov_open],,AC_MSG_ERROR([Can't find libvorbisfile]),-lvorbis) +AC_CHECK_LIB([vorbisenc],[vorbis_encode_init],,AC_MSG_ERROR([Can't find libvorbisenc]),-lvorbis) +AC_CHECK_LIB([ogg],[ogg_stream_init],,AC_MSG_ERROR([Can't find libogg])) +AC_CHECK_LIB([theora],[theora_encode_YUVin],,AC_MSG_ERROR([Can't find libtheora])) +AC_CHECK_LIB([pthread],[pthread_mutex_lock],,AC_MSG_ERROR([Can't find libpthread])) + +AC_CHECK_LIB([asound],[snd_pcm_drain],,AC_MSG_ERROR([Can't find libasound])) + + +# Checks for typedefs, structures, and compiler characteristics. + +# Checks for library functions. +AC_FUNC_CLOSEDIR_VOID +AC_FUNC_MALLOC + +AC_CONFIG_FILES([Makefile + src/Makefile + doc/Makefile ]) +AC_OUTPUT + -- cgit v1.2.1