Changeset 4014 in orxonox.OLD
- Timestamp:
- May 2, 2005, 6:06:39 PM (20 years ago)
- Location:
- orxonox/branches/movie_player
- Files:
-
- 11 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/movie_player/aclocal.m4
r4010 r4014 1 # generated automatically by aclocal 1.8. 2-*- Autoconf -*-1 # generated automatically by aclocal 1.8.5 -*- Autoconf -*- 2 2 3 3 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 … … 41 41 # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. 42 42 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], 43 [AM_AUTOMAKE_VERSION([1.8. 2])])43 [AM_AUTOMAKE_VERSION([1.8.5])]) 44 44 45 45 # AM_AUX_DIR_EXPAND … … 150 150 fi])]) 151 151 152 # serial 6-*- Autoconf -*-152 # serial 7 -*- Autoconf -*- 153 153 154 154 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 … … 237 237 for i in 1 2 3 4 5 6; do 238 238 echo '#include "conftst'$i'.h"' >> sub/conftest.c 239 : > sub/conftst$i.h 239 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 240 # Solaris 8's {/usr,}/bin/sh. 241 touch sub/conftst$i.h 240 242 done 241 243 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 265 267 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 266 268 # icc doesn't choke on unknown options, it will just issue warnings 267 # (even with -Werror). So we grep stderr for any message 268 # that says an option was ignored. 269 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 269 # or remarks (even with -Werror). So we grep stderr for any message 270 # that says an option was ignored or not supported. 271 # When given -MP, icc 7.0 and 7.1 complain thusly: 272 # icc: Command line warning: ignoring option '-M'; no argument required 273 # The diagnosis changed in icc 8.0: 274 # icc: Command line remark: option '-MP' not supported 275 if (grep 'ignoring option' conftest.err || 276 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 270 277 am_cv_$1_dependencies_compiler_type=$depmode 271 278 break … … 313 320 # Generate code to set up dependency tracking. -*- Autoconf -*- 314 321 315 # Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.322 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. 316 323 317 324 # This program is free software; you can redistribute it and/or modify … … 352 359 # Extract the definition of DEP_FILES from the Makefile without 353 360 # running `make'. 354 DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`361 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` 355 362 test -z "$DEPDIR" && continue 356 363 # When using ansi2knr, U may be empty or an underscore; expand it 357 U=`sed -n -e '/^U = / s///p' < "$mf"`364 U=`sed -n 's/^U = //p' < "$mf"` 358 365 test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" 359 366 # We invoke sed twice because it is the simplest approach to 360 367 # changing $(DEPDIR) to its actual value in the expansion. 361 for file in `sed -n -e'368 for file in `sed -n ' 362 369 /^DEP_FILES = .*\\\\$/ { 363 370 s/^DEP_FILES = // … … 718 725 # Do not use -m 0755 and let people choose whatever they expect by 719 726 # setting umask. 727 # 728 # We cannot accept any implementation of `mkdir' that recognizes `-p'. 729 # Some implementations (such as Solaris 8's) are not thread-safe: if a 730 # parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' 731 # concurrently, both version can detect that a/ is missing, but only 732 # one can create it and the other will error out. Consequently we 733 # restrict ourselves to GNU make (using the --version option ensures 734 # this.) 720 735 AC_DEFUN([AM_PROG_MKDIR_P], 721 [if mkdir -p -- . 2>/dev/null; then736 [if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 722 737 # Keeping the `.' argument allows $(mkdir_p) to be used without 723 738 # argument. Indeed, we sometimes output rules like … … 732 747 # directories to create, and then abort because `.' already 733 748 # exists. 734 for d in ./-p ./-- ;749 for d in ./-p ./--version; 735 750 do 736 751 test -d $d && rmdir $d -
orxonox/branches/movie_player/configure
r4010 r4014 1604 1604 fi 1605 1605 1606 if mkdir -p -- . 2>/dev/null; then1606 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 1607 1607 # Keeping the `.' argument allows $(mkdir_p) to be used without 1608 1608 # argument. Indeed, we sometimes output rules like … … 1617 1617 # directories to create, and then abort because `.' already 1618 1618 # exists. 1619 for d in ./-p ./-- ;1619 for d in ./-p ./--version; 1620 1620 do 1621 1621 test -d $d && rmdir $d … … 2523 2523 for i in 1 2 3 4 5 6; do 2524 2524 echo '#include "conftst'$i'.h"' >> sub/conftest.c 2525 : > sub/conftst$i.h 2525 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 2526 # Solaris 8's {/usr,}/bin/sh. 2527 touch sub/conftst$i.h 2526 2528 done 2527 2529 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 2551 2553 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 2552 2554 # icc doesn't choke on unknown options, it will just issue warnings 2553 # (even with -Werror). So we grep stderr for any message 2554 # that says an option was ignored. 2555 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 2555 # or remarks (even with -Werror). So we grep stderr for any message 2556 # that says an option was ignored or not supported. 2557 # When given -MP, icc 7.0 and 7.1 complain thusly: 2558 # icc: Command line warning: ignoring option '-M'; no argument required 2559 # The diagnosis changed in icc 8.0: 2560 # icc: Command line remark: option '-MP' not supported 2561 if (grep 'ignoring option' conftest.err || 2562 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 2556 2563 am_cv_CXX_dependencies_compiler_type=$depmode 2557 2564 break … … 3354 3361 for i in 1 2 3 4 5 6; do 3355 3362 echo '#include "conftst'$i'.h"' >> sub/conftest.c 3356 : > sub/conftst$i.h 3363 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 3364 # Solaris 8's {/usr,}/bin/sh. 3365 touch sub/conftst$i.h 3357 3366 done 3358 3367 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 3382 3391 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 3383 3392 # icc doesn't choke on unknown options, it will just issue warnings 3384 # (even with -Werror). So we grep stderr for any message 3385 # that says an option was ignored. 3386 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 3393 # or remarks (even with -Werror). So we grep stderr for any message 3394 # that says an option was ignored or not supported. 3395 # When given -MP, icc 7.0 and 7.1 complain thusly: 3396 # icc: Command line warning: ignoring option '-M'; no argument required 3397 # The diagnosis changed in icc 8.0: 3398 # icc: Command line remark: option '-MP' not supported 3399 if (grep 'ignoring option' conftest.err || 3400 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 3387 3401 am_cv_CC_dependencies_compiler_type=$depmode 3388 3402 break … … 9525 9539 # Extract the definition of DEP_FILES from the Makefile without 9526 9540 # running `make'. 9527 DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`9541 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` 9528 9542 test -z "$DEPDIR" && continue 9529 9543 # When using ansi2knr, U may be empty or an underscore; expand it 9530 U=`sed -n -e '/^U = / s///p' < "$mf"`9544 U=`sed -n 's/^U = //p' < "$mf"` 9531 9545 test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" 9532 9546 # We invoke sed twice because it is the simplest approach to 9533 9547 # changing $(DEPDIR) to its actual value in the expansion. 9534 for file in `sed -n -e'9548 for file in `sed -n ' 9535 9549 /^DEP_FILES = .*\\\\$/ { 9536 9550 s/^DEP_FILES = // -
orxonox/branches/movie_player/src/Makefile.in
r4010 r4014 393 393 esac; \ 394 394 done; \ 395 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/Makefile'; \395 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ 396 396 cd $(top_srcdir) && \ 397 $(AUTOMAKE) -- foreignsrc/Makefile397 $(AUTOMAKE) --gnu src/Makefile 398 398 .PRECIOUS: Makefile 399 399 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/movie_player/src/lib/Makefile.in
r3789 r4014 184 184 esac; \ 185 185 done; \ 186 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/lib/Makefile'; \186 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/lib/Makefile'; \ 187 187 cd $(top_srcdir) && \ 188 $(AUTOMAKE) -- foreignsrc/lib/Makefile188 $(AUTOMAKE) --gnu src/lib/Makefile 189 189 .PRECIOUS: Makefile 190 190 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/movie_player/src/lib/graphics/Makefile.in
r3789 r4014 178 178 esac; \ 179 179 done; \ 180 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/lib/graphics/Makefile'; \180 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/lib/graphics/Makefile'; \ 181 181 cd $(top_srcdir) && \ 182 $(AUTOMAKE) -- foreignsrc/lib/graphics/Makefile182 $(AUTOMAKE) --gnu src/lib/graphics/Makefile 183 183 .PRECIOUS: Makefile 184 184 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/movie_player/src/lib/graphics/importer/Makefile.in
r3907 r4014 236 236 esac; \ 237 237 done; \ 238 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/lib/graphics/importer/Makefile'; \238 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/lib/graphics/importer/Makefile'; \ 239 239 cd $(top_srcdir) && \ 240 $(AUTOMAKE) -- foreignsrc/lib/graphics/importer/Makefile240 $(AUTOMAKE) --gnu src/lib/graphics/importer/Makefile 241 241 .PRECIOUS: Makefile 242 242 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/movie_player/src/lib/gui/Makefile.in
r3789 r4014 180 180 esac; \ 181 181 done; \ 182 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/lib/gui/Makefile'; \182 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/lib/gui/Makefile'; \ 183 183 cd $(top_srcdir) && \ 184 $(AUTOMAKE) -- foreignsrc/lib/gui/Makefile184 $(AUTOMAKE) --gnu src/lib/gui/Makefile 185 185 .PRECIOUS: Makefile 186 186 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/movie_player/src/lib/gui/console/Makefile.in
r3789 r4014 206 206 esac; \ 207 207 done; \ 208 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/lib/gui/console/Makefile'; \208 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/lib/gui/console/Makefile'; \ 209 209 cd $(top_srcdir) && \ 210 $(AUTOMAKE) -- foreignsrc/lib/gui/console/Makefile210 $(AUTOMAKE) --gnu src/lib/gui/console/Makefile 211 211 .PRECIOUS: Makefile 212 212 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/movie_player/src/lib/gui/gui/Makefile.in
r3789 r4014 240 240 esac; \ 241 241 done; \ 242 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/lib/gui/gui/Makefile'; \242 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/lib/gui/gui/Makefile'; \ 243 243 cd $(top_srcdir) && \ 244 $(AUTOMAKE) -- foreignsrc/lib/gui/gui/Makefile244 $(AUTOMAKE) --gnu src/lib/gui/gui/Makefile 245 245 .PRECIOUS: Makefile 246 246 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/movie_player/src/subprojects/Makefile.in
r3789 r4014 178 178 esac; \ 179 179 done; \ 180 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/subprojects/Makefile'; \180 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/subprojects/Makefile'; \ 181 181 cd $(top_srcdir) && \ 182 $(AUTOMAKE) -- foreignsrc/subprojects/Makefile182 $(AUTOMAKE) --gnu src/subprojects/Makefile 183 183 .PRECIOUS: Makefile 184 184 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/movie_player/src/subprojects/testmain/Makefile.in
r3789 r4014 198 198 esac; \ 199 199 done; \ 200 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/subprojects/testmain/Makefile'; \200 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/subprojects/testmain/Makefile'; \ 201 201 cd $(top_srcdir) && \ 202 $(AUTOMAKE) -- foreignsrc/subprojects/testmain/Makefile202 $(AUTOMAKE) --gnu src/subprojects/testmain/Makefile 203 203 .PRECIOUS: Makefile 204 204 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset
for help on using the changeset viewer.