Je sais, j'ai fait des trucs super moches, mais bon c'est provisoire, des que j'aurai maitrise les autotools, je corrigerai tout ca :)
Index: ChangeLog from Damien Thivolle damien@lrde.epita.fr
* config/oln.m4: Fix compiler detection.
Index: doc/ChangeLog from Damien Thivolle damien@lrde.epita.fr * doc/ref/Makefile.am: Add `CLEANFILES' variable to delete all the created files.
+2004-04-03 Damien Thivolle damien@lrde.epita.fr + * doc/ref/out/exdoc.config.in: Remove -DNEED_ROUND -DNEED_ROUNDF flags.
2004-04-03 Damien Thivolle damien@lrde.epita.fr Index: olena/ChangeLog from Damien Thivolle damien@lrde.epita.fr
* olena/oln/Makefile.am: Add forgotten files to the distribution.
Index: doc/ref/Makefile.am --- doc/ref/Makefile.am Sat, 03 Apr 2004 23:02:21 +0200 thivol_d (oln/d/51_Makefile.a 1.27.1.16 600) +++ doc/ref/Makefile.am Wed, 07 Apr 2004 11:39:33 +0200 thivol_d (oln/d/51_Makefile.a 1.27.1.17 600) @@ -7,7 +7,14 @@ EXDOC = $(srcdir)/exdoc.pl OUT_DIR = "out" IMG_CONV = $(srcdir)/img_conv.pl - +CLEANFILES = -r -- html.tar.gz \ + oln-ref.pdf \ + ./$(OUT_DIR)/out* \ + ./html \ + ./latex \ + ./img \ + ./$(OUT_DIR)/makefile \ + ./$(OUT_DIR)/all.mk
doc: html.tar.gz oln-ref.pdf @@ -30,7 +37,7 @@ dist_noinst_DATA = oln-ref.pdf html.tar.gz $(srcdir)/exdoc.pl $(srcdir)/img_conv.pl
dist-local: - rm -rf img/* out/* + rm -rf img/*
MAINTAINERCLEANFILES = $(dist_noinst_DATA) \ ./html/* ./img/* ./$(OUT_DIR)/* Index: config/oln.m4 --- config/oln.m4 Sat, 03 Apr 2004 23:02:21 +0200 thivol_d (oln/j/15_oln.m4 1.37 600) +++ config/oln.m4 Sun, 04 Apr 2004 22:36:14 +0200 thivol_d (oln/j/15_oln.m4 1.38 600) @@ -435,7 +435,7 @@ [ac_cv_cxx_style], [ac_cv_cxx_style=unknown if test "x$ac_compiler_gnu" != xno; then - if $CXX --version | grep ' 3.[34]' >/dev/null ; then + if $CXX --version | grep " 3.(3|4)" >/dev/null ; then ac_cv_cxx_style=GNU else ac_cv_cxx_style=weakGNU Index: olena/oln/Makefile.am --- olena/oln/Makefile.am Sun, 04 Apr 2004 16:48:06 +0200 odou_s (oln/q/47_Makefile.a 1.3.1.1.1.6.1.7.1.6 600) +++ olena/oln/Makefile.am Sun, 04 Apr 2004 18:34:45 +0200 thivol_d (oln/q/47_Makefile.a 1.3.1.1.1.6.1.7.1.7 600) @@ -38,6 +38,8 @@ convol/fast_gaussian.hh \ convol/fast_gaussian.hxx \ convol/fast_gaussian_coefficient.hh \ + convol/nagao.hh \ + convol/nagao.hxx \ core/abstract/binary_image.hh \ core/abstract/behavior.hh \ core/abstract/dpoint.hh \ @@ -221,6 +223,8 @@ utils/buffer.hh \ utils/buffer.hxx \ utils/histogram.hh \ + utils/se_stat.hh \ + utils/se_stat.hxx \ utils/stat.hh \ utils/special_points.hh \ utils/timer.hh
"Damien" == Damien Thivolle damien@lrde.epita.fr writes:
Index: doc/ref/Makefile.am --- doc/ref/Makefile.am Sat, 03 Apr 2004 23:02:21 +0200 thivol_d (oln/d/51_Makefile.a 1.27.1.16 600) +++ doc/ref/Makefile.am Wed, 07 Apr 2004 11:39:33 +0200 thivol_d (oln/d/51_Makefile.a 1.27.1.17 600) @@ -7,7 +7,14 @@ EXDOC = $(srcdir)/exdoc.pl OUT_DIR = "out" IMG_CONV = $(srcdir)/img_conv.pl
+CLEANFILES = -r -- html.tar.gz \
- oln-ref.pdf \
- ./$(OUT_DIR)/out* \
./html \
- ./latex \
- ./img \
- ./$(OUT_DIR)/makefile \
- ./$(OUT_DIR)/all.mk
doc: html.tar.gz oln-ref.pdf @@ -30,7 +37,7 @@ dist_noinst_DATA = oln-ref.pdf html.tar.gz $(srcdir)/exdoc.pl $(srcdir)/img_conv.pl
dist-local:
- rm -rf img/* out/*
- rm -rf img/*
La suppression de rép c'est dans dist-local que ça se fait. Ton CLEANFILES = -r est très laid.
@@ -435,7 +435,7 @@ [ac_cv_cxx_style], [ac_cv_cxx_style=unknown if test "x$ac_compiler_gnu" != xno; then
if $CXX --version | grep ' 3\.[34]' >/dev/null ; then
if $CXX --version | grep " 3\.\(3\|4\)" >/dev/null ; then
Non, pas portable.
if $CXX --version | grep [' 3.[34]'] >/dev/null ; then
Akim Demaille akim@epita.fr writes:
"Damien" == Damien Thivolle damien@lrde.epita.fr writes:
Index: doc/ref/Makefile.am --- doc/ref/Makefile.am Sat, 03 Apr 2004 23:02:21 +0200 thivol_d (oln/d/51_Makefile.a 1.27.1.16 600) +++ doc/ref/Makefile.am Wed, 07 Apr 2004 11:39:33 +0200 thivol_d (oln/d/51_Makefile.a 1.27.1.17 600) @@ -7,7 +7,14 @@ EXDOC = $(srcdir)/exdoc.pl OUT_DIR = "out" IMG_CONV = $(srcdir)/img_conv.pl
+CLEANFILES = -r -- html.tar.gz \
- oln-ref.pdf \
- ./$(OUT_DIR)/out* \
./html \
- ./latex \
- ./img \
- ./$(OUT_DIR)/makefile \
- ./$(OUT_DIR)/all.mk
doc: html.tar.gz oln-ref.pdf @@ -30,7 +37,7 @@ dist_noinst_DATA = oln-ref.pdf html.tar.gz $(srcdir)/exdoc.pl $(srcdir)/img_conv.pl
dist-local:
- rm -rf img/* out/*
- rm -rf img/*
La suppression de rép c'est dans dist-local que ça se fait. Ton CLEANFILES = -r est très laid.
@@ -435,7 +435,7 @@ [ac_cv_cxx_style], [ac_cv_cxx_style=unknown if test "x$ac_compiler_gnu" != xno; then
if $CXX --version | grep ' 3\.[34]' >/dev/null ; then
if $CXX --version | grep " 3\.\(3\|4\)" >/dev/null ; then
Non, pas portable.
if $CXX --version | grep [' 3\.[34]'] >/dev/null ; then
Merci :)