[Toxine-cvs] CVS: toxine Makefile.am,1.2,1.3 configure.in,1.8,1.9
Brought to you by:
f1rmb
From: Daniel Caujolle-B. <f1...@us...> - 2002-06-24 21:35:08
|
Update of /cvsroot/toxine/toxine In directory usw-pr-cvs1:/tmp/cvs-serv3441 Modified Files: Makefile.am configure.in Log Message: more checks for release. Need 0.9.12. Index: Makefile.am =================================================================== RCS file: /cvsroot/toxine/toxine/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Makefile.am 21 Jun 2002 13:36:30 -0000 1.2 +++ Makefile.am 24 Jun 2002 21:35:05 -0000 1.3 @@ -32,6 +32,18 @@ cvs2cl.pl --fsf --hide-filenames --prune --day-of-week --ignore ChangeLog +release-check: misc/relchk.sh + @mv -f .cvsversion .cvsversion.tmp + @./configure && $(SHELL) misc/relchk.sh + @mv -f .cvsversion.tmp .cvsversion + + +release: release-check + @mv -f .cvsversion .cvsversion.tmp + ./configure && $(MAKE) distcheck + @mv -f .cvsversion.tmp .cvsversion + + mostlyclean-generic: -rm -f *~ \#* .*~ .\#* -rm -f $(PACKAGE)_$(VERSION).tar.gz Index: configure.in =================================================================== RCS file: /cvsroot/toxine/toxine/configure.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- configure.in 21 Jun 2002 13:14:59 -0000 1.8 +++ configure.in 24 Jun 2002 21:35:05 -0000 1.9 @@ -87,7 +87,7 @@ dnl dnl Check for xine-lib dnl -AM_PATH_XINE(0.9.10,, AC_MSG_ERROR(*** You should install xine-lib first ***)) +AM_PATH_XINE(0.9.12,, AC_MSG_ERROR(*** You should install xine-lib first ***)) dnl @@ -449,11 +449,12 @@ AC_OUTPUT([ Makefile misc/Makefile +misc/relchk.sh readline/Makefile m4/Makefile src/Makefile src/plugins/Makefile -]) +],[chmod +x ./misc/relchk.sh]) dnl ,[chmod +x ./misc/SlackBuild ./misc/build_rpms.sh]) dnl |