annotate src/libogg-1.3.0/ogg.m4 @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 98c1576536ae
children
rev   line source
cannam@86 1 # Configure paths for libogg
cannam@86 2 # Jack Moffitt <jack@icecast.org> 10-21-2000
cannam@86 3 # Shamelessly stolen from Owen Taylor and Manish Singh
cannam@86 4
cannam@86 5 dnl XIPH_PATH_OGG([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
cannam@86 6 dnl Test for libogg, and define OGG_CFLAGS and OGG_LIBS
cannam@86 7 dnl
cannam@86 8 AC_DEFUN([XIPH_PATH_OGG],
cannam@86 9 [dnl
cannam@86 10 dnl Get the cflags and libraries
cannam@86 11 dnl
cannam@86 12 AC_ARG_WITH(ogg,AC_HELP_STRING([--with-ogg=PFX],[Prefix where libogg is installed (optional)]), ogg_prefix="$withval", ogg_prefix="")
cannam@86 13 AC_ARG_WITH(ogg-libraries,AC_HELP_STRING([--with-ogg-libraries=DIR],[Directory where libogg library is installed (optional)]), ogg_libraries="$withval", ogg_libraries="")
cannam@86 14 AC_ARG_WITH(ogg-includes,AC_HELP_STRING([--with-ogg-includes=DIR],[Directory where libogg header files are installed (optional)]), ogg_includes="$withval", ogg_includes="")
cannam@86 15 AC_ARG_ENABLE(oggtest,AC_HELP_STRING([--disable-oggtest],[Do not try to compile and run a test Ogg program]),, enable_oggtest=yes)
cannam@86 16
cannam@86 17 if test "x$ogg_libraries" != "x" ; then
cannam@86 18 OGG_LIBS="-L$ogg_libraries"
cannam@86 19 elif test "x$ogg_prefix" = "xno" || test "x$ogg_prefix" = "xyes" ; then
cannam@86 20 OGG_LIBS=""
cannam@86 21 elif test "x$ogg_prefix" != "x" ; then
cannam@86 22 OGG_LIBS="-L$ogg_prefix/lib"
cannam@86 23 elif test "x$prefix" != "xNONE" ; then
cannam@86 24 OGG_LIBS="-L$prefix/lib"
cannam@86 25 fi
cannam@86 26
cannam@86 27 if test "x$ogg_prefix" != "xno" ; then
cannam@86 28 OGG_LIBS="$OGG_LIBS -logg"
cannam@86 29 fi
cannam@86 30
cannam@86 31 if test "x$ogg_includes" != "x" ; then
cannam@86 32 OGG_CFLAGS="-I$ogg_includes"
cannam@86 33 elif test "x$ogg_prefix" = "xno" || test "x$ogg_prefix" = "xyes" ; then
cannam@86 34 OGG_CFLAGS=""
cannam@86 35 elif test "x$ogg_prefix" != "x" ; then
cannam@86 36 OGG_CFLAGS="-I$ogg_prefix/include"
cannam@86 37 elif test "x$prefix" != "xNONE"; then
cannam@86 38 OGG_CFLAGS="-I$prefix/include"
cannam@86 39 fi
cannam@86 40
cannam@86 41 AC_MSG_CHECKING(for Ogg)
cannam@86 42 if test "x$ogg_prefix" = "xno" ; then
cannam@86 43 no_ogg="disabled"
cannam@86 44 enable_oggtest="no"
cannam@86 45 else
cannam@86 46 no_ogg=""
cannam@86 47 fi
cannam@86 48
cannam@86 49
cannam@86 50 if test "x$enable_oggtest" = "xyes" ; then
cannam@86 51 ac_save_CFLAGS="$CFLAGS"
cannam@86 52 ac_save_LIBS="$LIBS"
cannam@86 53 CFLAGS="$CFLAGS $OGG_CFLAGS"
cannam@86 54 LIBS="$LIBS $OGG_LIBS"
cannam@86 55 dnl
cannam@86 56 dnl Now check if the installed Ogg is sufficiently new.
cannam@86 57 dnl
cannam@86 58 rm -f conf.oggtest
cannam@86 59 AC_TRY_RUN([
cannam@86 60 #include <stdio.h>
cannam@86 61 #include <stdlib.h>
cannam@86 62 #include <string.h>
cannam@86 63 #include <ogg/ogg.h>
cannam@86 64
cannam@86 65 int main ()
cannam@86 66 {
cannam@86 67 system("touch conf.oggtest");
cannam@86 68 return 0;
cannam@86 69 }
cannam@86 70
cannam@86 71 ],, no_ogg=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
cannam@86 72 CFLAGS="$ac_save_CFLAGS"
cannam@86 73 LIBS="$ac_save_LIBS"
cannam@86 74 fi
cannam@86 75
cannam@86 76 if test "x$no_ogg" = "xdisabled" ; then
cannam@86 77 AC_MSG_RESULT(no)
cannam@86 78 ifelse([$2], , :, [$2])
cannam@86 79 elif test "x$no_ogg" = "x" ; then
cannam@86 80 AC_MSG_RESULT(yes)
cannam@86 81 ifelse([$1], , :, [$1])
cannam@86 82 else
cannam@86 83 AC_MSG_RESULT(no)
cannam@86 84 if test -f conf.oggtest ; then
cannam@86 85 :
cannam@86 86 else
cannam@86 87 echo "*** Could not run Ogg test program, checking why..."
cannam@86 88 CFLAGS="$CFLAGS $OGG_CFLAGS"
cannam@86 89 LIBS="$LIBS $OGG_LIBS"
cannam@86 90 AC_TRY_LINK([
cannam@86 91 #include <stdio.h>
cannam@86 92 #include <ogg/ogg.h>
cannam@86 93 ], [ return 0; ],
cannam@86 94 [ echo "*** The test program compiled, but did not run. This usually means"
cannam@86 95 echo "*** that the run-time linker is not finding Ogg or finding the wrong"
cannam@86 96 echo "*** version of Ogg. If it is not finding Ogg, you'll need to set your"
cannam@86 97 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
cannam@86 98 echo "*** to the installed location Also, make sure you have run ldconfig if that"
cannam@86 99 echo "*** is required on your system"
cannam@86 100 echo "***"
cannam@86 101 echo "*** If you have an old version installed, it is best to remove it, although"
cannam@86 102 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
cannam@86 103 [ echo "*** The test program failed to compile or link. See the file config.log for the"
cannam@86 104 echo "*** exact error that occured. This usually means Ogg was incorrectly installed"
cannam@86 105 echo "*** or that you have moved Ogg since it was installed." ])
cannam@86 106 CFLAGS="$ac_save_CFLAGS"
cannam@86 107 LIBS="$ac_save_LIBS"
cannam@86 108 fi
cannam@86 109 OGG_CFLAGS=""
cannam@86 110 OGG_LIBS=""
cannam@86 111 ifelse([$2], , :, [$2])
cannam@86 112 fi
cannam@86 113 AC_SUBST(OGG_CFLAGS)
cannam@86 114 AC_SUBST(OGG_LIBS)
cannam@86 115 rm -f conf.oggtest
cannam@86 116 ])