diff options
Diffstat (limited to 'm4')
-rw-r--r-- | m4/Makefile.am | 26 | ||||
-rw-r--r-- | m4/_xine.m4 | 16 |
2 files changed, 30 insertions, 12 deletions
diff --git a/m4/Makefile.am b/m4/Makefile.am index d322b1856..c091d24f7 100644 --- a/m4/Makefile.am +++ b/m4/Makefile.am @@ -9,9 +9,28 @@ endif m4data_DATA = xine.m4 -EXTRA_DIST = _xine.m4 arts.m4 esd.m4 iconv.m4 lcmessage.m4 progtest.m4 xine.m4 \ - aa.m4 as.m4 gettext.m4 irixal.m4 libfame.m4 sdl.m4 xvid.m4 \ - alsa.m4 codeset.m4 glibc21.m4 isc-posix.m4 ogg.m4 vorbis.m4 dvdnav.m4 +EXTRA_DIST = \ + aa.m4 \ + alsa.m4 \ + arts.m4 \ + as.m4 \ + codeset.m4 \ + dvdnav.m4 \ + esd.m4 \ + gettext.m4 \ + glibc21.m4 \ + iconv.m4 \ + irixal.m4 \ + isc-posix.m4 \ + lcmessage.m4 \ + libfame.m4 \ + ogg.m4 \ + progtest.m4 \ + sdl.m4 \ + vorbis.m4 \ + xine.m4 \ + _xine.m4 \ + xvid.m4 debug: @@ -20,7 +39,6 @@ install-debug: install mostlyclean-generic: -rm -f *~ \#* .*~ .\#* - maintainer-clean-generic: -@echo "This command is intended for maintainers to use;" -@echo "it deletes files that may require special tools to rebuild." diff --git a/m4/_xine.m4 b/m4/_xine.m4 index de9c65905..a52b95d98 100644 --- a/m4/_xine.m4 +++ b/m4/_xine.m4 @@ -256,13 +256,13 @@ AC_DEFUN([AM_CHECK_CDROM_IOCTLS], dnl AC_CHECK_IP_MREQN dnl check for struct ip_mreqn in netinet/in.h AC_DEFUN([AC_CHECK_IP_MREQN], - [AC_CACHE_CHECK([for ip_mreqn],[ac_cv_have_ip_mreqn], - [AC_EGREP_HEADER([ip_mreqn],[netinet/in.h], - ac_cv_have_ip_mreqn=yes,ac_cv_have_ip_mreqn=no) - ]) - have_ip_mreqn=$ac_cv_have_ip_mreqn - if test "x$have_ip_mreqn" = xyes ; then - AC_DEFINE(HAVE_IP_MREQN) - fi + [AC_CACHE_CHECK([for ip_mreqn], [ac_cv_have_ip_mreqn], + [AC_EGREP_HEADER([ip_mreqn], + [netinet/in.h], + [ac_cv_have_ip_mreqn=yes], + [ac_cv_have_ip_mreqn=no])]) + if test $ac_cv_have_ip_mreqn = yes; then + AC_DEFINE([HAVE_IP_MREQN],1,[Define this if you have ip_mreqn in netinet/in.h]) + fi ]) |