Changeset 3cbfc06dc36bc0d178793558d52d71348e999106
- Timestamp:
- 06/24/00 00:28:42 (8 years ago)
- git-parent:
- Files:
-
- ChangeLog (modified) (1 diff)
- INSTALL (modified) (1 diff)
- Makefile.in (modified) (7 diffs)
- README (modified) (3 diffs)
- configure (modified) (117 diffs)
- configure.in (modified) (4 diffs)
- debian/changelog (modified) (1 diff)
- include/plugins.h (modified) (1 diff)
- plugins/beos/aout_beos.cpp (added)
- plugins/beos/intf_beos.cpp (added)
- plugins/beos/vout_beos.cpp (added)
- plugins/dsp/aout_dsp.c (added)
- plugins/dummy/aout_dummy.c (added)
- plugins/dummy/intf_dummy.c (added)
- plugins/dummy/vout_dummy.c (added)
- plugins/esd/aout_esd.c (added)
- plugins/fb/intf_fb.c (added)
- plugins/fb/vout_fb.c (added)
- plugins/ggi/intf_ggi.c (added)
- plugins/ggi/vout_ggi.c (added)
- plugins/glide/intf_glide.c (added)
- plugins/glide/vout_glide.c (added)
- plugins/gnome/intf_gnome.c (added)
- plugins/gnome/intf_gnome.h (added)
- plugins/gnome/intf_gnome_callbacks.c (added)
- plugins/gnome/intf_gnome_callbacks.h (added)
- plugins/gnome/intf_gnome_interface.c (added)
- plugins/gnome/intf_gnome_interface.h (added)
- plugins/gnome/intf_gnome_support.c (added)
- plugins/gnome/intf_gnome_support.h (added)
- plugins/gnome/intf_gnome_thread.h (added)
- plugins/gnome/vout_gnome.c (added)
- plugins/mga/intf_mga.c (added)
- plugins/mga/vout_mga.c (added)
- plugins/mga/vout_mga.h (added)
- plugins/x11/intf_x11.c (added)
- plugins/x11/vout_x11.c (added)
- src/audio_output/audio_output.c (modified) (1 diff)
- src/interface/interface.c (modified) (1 diff)
- src/misc/plugins.c (modified) (3 diffs)
- src/video_output/video_output.c (modified) (1 diff)
- src/video_output/video_yuv.c (modified) (3 diffs)
- vlc.spec (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ChangeLog
rea286a7 r3cbfc06 1 Tue Jun 20 14:17:56 CEST 2000 2 0.1.99d : 3 4 * fixed RPM build 5 * .deb is now more lintian-friendly 6 1 7 Sun Jun 18 18:54:48 CEST 2000 2 8 0.1.99c : 3 9 4 * fixed Makefile.in for debug version5 * caught Delete Window event in Gnome and X11 modes6 * fixed manpage7 * GGI output now works8 * fixed a segfault on exit for the Gnome plugin9 * fixed compile problems for BeOS10 * sound support almost works under BeOS11 * fixed a warning in ac3_exponent.c12 * automatic support for .rpm and .deb building10 * fixed Makefile.in for debug version 11 * caught Delete Window event in Gnome and X11 modes 12 * fixed manpage 13 * GGI output now works 14 * fixed a segfault on exit for the Gnome plugin 15 * fixed compile problems for BeOS 16 * sound support almost works under BeOS 17 * fixed a warning in ac3_exponent.c 18 * automatic support for .rpm and .deb building 13 19 14 20 Sat Jun 17 03:35:02 CEST 2000 15 21 0.1.99b : 16 22 17 * fixed a bug preventing to quit when run with no arguments18 * new VLAN changing code19 * created the ChangeLog file :)23 * fixed a bug preventing to quit when run with no arguments 24 * new VLAN changing code 25 * created the ChangeLog file :) 20 26 INSTALL
r12422fe r3cbfc06 1 INSTALL file for vlc, the VideoLAN Client 2 3 4 Building VideoLAN 5 ================= 6 7 A typical way to configure the vlc is : 8 9 ./configure --prefix=/usr --enable-ppro --enable-mmx --enable-gnome 10 11 See `./configure --help' for more information. 12 13 Then, run `make', and `make install' to install it. 14 15 16 To build a Debian package, you may use : 17 18 dpkg-buildpackage -rfakeroot -us -uc 19 20 21 To build RedHat packages, use : 22 23 rpm -ba vlc.spec 24 25 26 Installing and running VideoLAN 27 =============================== 28 29 You can install the vlc and its plugins by typing : 30 31 make install 32 33 But you don't need to do it if you don't want ; vlc can be launched 34 from the current directory as well : 35 36 ./vlc 37 Makefile.in
rea286a7 r3cbfc06 14 14 15 15 SYS=@SYS@ 16 ARCH=@ARCH@ 17 AOUT=@AOUT@ 18 VOUT=@VOUT@ 19 INTF=@VOUT@ 16 PLUGINS=@PLUGINS@ 20 17 SNAPSHOTDIR=vlc-@VLC_VERSION@ 21 18 INSTALL=@INSTALL@ … … 250 247 # Plugins 251 248 # 252 intf_plugin = $(INTF:%=plugins/intf/intf_%.so) 253 aout_plugin = $(AOUT:%=plugins/aout/aout_%.so) 254 vout_plugin = $(VOUT:%=plugins/vout/vout_%.so) 255 256 PLUGIN_OBJ = $(intf_plugin) $(aout_plugin) $(vout_plugin) 257 249 PLUGINS := $(PLUGINS:%=lib/%.so) 250 251 PLUGIN_BEOS = plugins/beos/aout_beos.o \ 252 plugins/beos/intf_beos.o \ 253 plugins/beos/vout_beos.o 254 255 PLUGIN_DSP = plugins/dsp/aout_dsp.o 256 257 PLUGIN_DUMMY = plugins/dummy/aout_dummy.o \ 258 plugins/dummy/intf_dummy.o \ 259 plugins/dummy/vout_dummy.o 260 261 PLUGIN_ESD = plugins/esd/aout_esd.o 262 263 PLUGIN_FB = plugins/fb/intf_fb.o \ 264 plugins/fb/vout_fb.o 265 266 PLUGIN_GGI = plugins/ggi/intf_ggi.o \ 267 plugins/ggi/vout_ggi.o 268 269 PLUGIN_GLIDE = plugins/glide/intf_glide.o \ 270 plugins/glide/vout_glide.o 271 272 PLUGIN_GNOME = plugins/gnome/intf_gnome.o \ 273 plugins/gnome/intf_gnome_callbacks.o \ 274 plugins/gnome/intf_gnome_interface.o \ 275 plugins/gnome/intf_gnome_support.o \ 276 plugins/gnome/vout_gnome.o 277 278 PLUGIN_MGA = plugins/mga/intf_mga.o \ 279 plugins/fb/vout_mga.o 280 281 PLUGIN_X11 = plugins/x11/intf_x11.o \ 282 plugins/x11/vout_x11.o 283 284 PLUGIN_OBJ = $(PLUGIN_BEOS) $(PLUGIN_DSP) $(PLUGIN_DUMMY) $(PLUGIN_ESD) \ 285 $(PLUGIN_FB) $(PLUGIN_GGI) $(PLUGIN_GLIDE) $(PLUGIN_GNOME) \ 286 $(PLUGIN_MGA) $(PLUGIN_X11) 258 287 # 259 288 # Other lists of files … … 281 310 282 311 distclean: clean 283 rm -f */*/*.o plugins/*/*.so **/*~ *.log312 rm -f src/*/*.o plugins/*/*.o lib/*.so **/*~ *.log 284 313 rm -f Makefile include/defs.h include/config.h 285 314 rm -f config.status config.cache config.log … … 291 320 mkdir -p $(prefix)/lib/videolan/vlc 292 321 mkdir -p $(prefix)/share/videolan/vlc 293 $(INSTALL) $(PLUGIN_OBJ) $(prefix)/lib/videolan/vlc294 $(INSTALL) share/*.psf $(prefix)/share/videolan/vlc295 $(INSTALL) share/*.png $(prefix)/share/videolan/vlc322 $(INSTALL) -m 644 $(PLUGINS) $(prefix)/lib/videolan/vlc 323 $(INSTALL) -m 644 share/*.psf $(prefix)/share/videolan/vlc 324 $(INSTALL) -m 644 share/*.png $(prefix)/share/videolan/vlc 296 325 297 326 show: … … 317 346 @echo "Sources are in ../${SNAPSHOTDIR}.tar.gz" 318 347 319 deb:320 dpkg-buildpackage -rfakeroot -us -uc321 322 rpm:323 rpm -ba vlc.spec324 325 348 FORCE: 326 349 … … 337 360 endif 338 361 339 plugins: $(PLUGIN _OBJ)362 plugins: $(PLUGINS) 340 363 341 364 # … … 360 383 #$(PLUGIN_OBJ): %.so: .dep/%.d 361 384 362 # audio plugins 363 plugins/aout/aout_dummy.so plugins/aout/aout_dsp.so: %.so: %.c 364 ifeq ($(SYS),beos) 365 $(CC) $(CCFLAGS) $(CFLAGS) -nostart -Xlinker -soname=$@ -o $@ $< plugins/_APP_ 385 #$(CC) $(LCFLAGS) $(CCFLAGS) $(CFLAGS) -nostart -Xlinker -soname=$@ -o $@ $< plugins/_APP_ 386 387 lib/beos.so: $(PLUGIN_BEOS) 388 ld -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_ 389 $(PLUGIN_BEOS): %.o: %.c 390 $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $< 391 392 lib/esd.so: $(PLUGIN_ESD) 393 ifneq (,$(findstring bsd,$(SYS))) 394 ld -shared -lesd -o $@ $^ 366 395 else 367 $(CC) $(CCFLAGS) $(CFLAGS) -shared -o $@ $< 368 endif 369 370 plugins/aout/aout_esd.so: %.so: %.c 371 ifneq (,$(findstring bsd,$(SYS))) 372 $(CC) $(CCFLAGS) $(CFLAGS) -lesd -shared -o $@ $< 373 else 374 $(CC) $(CCFLAGS) $(CFLAGS) -laudiofile -lesd -shared -o $@ $< 375 endif 376 377 plugins/aout/aout_beos.so: %.so: %.cpp 378 $(CC) $(LCFLAGS) $(CCFLAGS) $(CFLAGS) -nostart -Xlinker -soname=$@ -o $@ $< plugins/_APP_ 379 380 # video plugins 381 plugins/intf/intf_dummy.so plugins/vout/vout_dummy.so \ 382 plugins/intf/intf_fb.so plugins/vout/vout_fb.so: %.so: %.c 383 ifeq ($(SYS),beos) 384 $(CC) $(CCFLAGS) $(CFLAGS) -nostart -Xlinker -soname=$@ -o $@ $< plugins/_APP_ 385 else 386 $(CC) $(CCFLAGS) $(CFLAGS) -shared -o $@ $< 387 endif 388 389 plugins/intf/intf_x11.so plugins/vout/vout_x11.so: %.so: %.c 390 $(CC) $(CCFLAGS) $(CFLAGS) -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -lXext -shared -o $@ $< 391 392 plugins/intf/intf_mga.so plugins/vout/vout_mga.so: %.so: %.c 393 $(CC) $(CCFLAGS) $(CFLAGS) -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -lXext -shared -o $@ $< 394 395 plugins/intf/intf_gnome.so: %.so: %.c 396 $(CC) $(CCFLAGS) $(CFLAGS) $(LCFLAGS) `gnome-config --libs --cflags gnomeui` -shared -o $@ $< plugins/intf/intf_gnome_callbacks.c plugins/intf/intf_gnome_interface.c plugins/intf/intf_gnome_support.c 397 398 plugins/vout/vout_gnome.so: %.so: %.c 399 $(CC) $(CCFLAGS) $(CFLAGS) -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -lXext -shared -o $@ $< 400 401 plugins/intf/intf_glide.so plugins/vout/vout_glide.so: %.so: %.c 402 $(CC) $(CCFLAGS) $(CFLAGS) -I/usr/include/glide -lglide2x -shared -o $@ $< 403 404 plugins/intf/intf_ggi.so plugins/vout/vout_ggi.so: %.so: %.c 405 $(CC) $(CCFLAGS) $(CFLAGS) -lggi -shared -o $@ $< 406 407 plugins/intf/intf_beos.so: %.so: %.cpp 408 $(CC) $(LCFLAGS) $(CCFLAGS) $(CFLAGS) -nostart -Xlinker -soname=$@ -o $@ $< plugins/_APP_ 409 410 plugins/vout/vout_beos.so: %.so: %.cpp 411 $(CC) $(LCFLAGS) $(CCFLAGS) $(CFLAGS) -nostart -Xlinker -soname=$@ -o $@ $< plugins/_APP_ 412 396 ld -shared -laudiofile -lesd -o $@ $^ 397 endif 398 $(PLUGIN_ESD): %.o: %.c 399 $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $< 400 401 lib/dummy.so: $(PLUGIN_DUMMY) 402 ld -shared -o $@ $^ 403 $(PLUGIN_DUMMY): %.o: %.c 404 $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $< 405 406 lib/fb.so: $(PLUGIN_FB) 407 ld -shared -o $@ $^ 408 $(PLUGIN_FB): %.o: %.c 409 $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $< 410 411 lib/x11.so: $(PLUGIN_X11) 412 ld -shared -L/usr/X11R6/lib -lX11 -lXext -o $@ $^ 413 $(PLUGIN_X11): %.o: %.c 414 $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $< 415 416 lib/mga.so: $(PLUGIN_MGA) 417 ld -shared -L/usr/X11R6/lib -lX11 -lXext -o $@ $^ 418 $(PLUGIN_MGA): %.o: %.c 419 $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $< 420 421 lib/gnome.so: $(PLUGIN_GNOME) 422 ld -shared `gnome-config --libs gnomeui | sed 's,-rdynamic,,'` -o $@ $^ 423 $(PLUGIN_GNOME): %.o: %.c 424 $(CC) $(CCFLAGS) $(CFLAGS) `gnome-config --cflags gnomeui`-c -o $@ $< 425 426 lib/glide.so: $(PLUGIN_GLIDE) 427 ld -shared -lglide2x -o $@ $^ 428 $(PLUGIN_GLIDE): %.o: %.c 429 $(CC) $(CCFLAGS) $(CFLAGS) -I/usr/include/glide -c -o $@ $< 430 431 lib/ggi.so: $(PLUGIN_GGI) 432 ld -shared -lggi -o $@ $^ 433 $(PLUGIN_GGI): %.o: %.c 434 $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $< 413 435 414 436 ################################################################################ README
r3d11041 r3cbfc06 1 2 README for vlc, the VideoLAN Client 1 README for vlc, the VideoLAN Client 3 2 4 3 5 6 ... Introduction 4 Introduction 5 ============ 7 6 8 7 [ nothing appropriate yet ] 9 8 10 9 10 Building, Installing and Running VideoLAN 11 ========================================= 11 12 12 ... Building VideoLAN 13 14 A typical way to configure the vlc is : 15 16 ./configure --prefix=/usr --enable-ppro --enable-mmx --enable-gnome 17 18 See `./configure --help' for more information. 19 20 Then, run `make'. 13 See the INSTALL file for this. 21 14 22 15 23 ... Running VideoLAN 16 Troubleshooting 17 =============== 18 19 A mailing-list has been set up for support and discussion about the 20 vlc. Its address is : 21 22 <vlc@videolan.org> 23 24 To subscribe, send a mail to <listar@videolan.org> with the following 25 words in the mail body : 26 27 subscribe vlc 28 29 To unsubscribe, do the same with the words : 30 31 unsubscribe vlc 32 33 34 When reporting bugs, try to be as precise as possible (which OS, which 35 distribution, what plugins you were trying, and so on). 36 37 38 Resources 39 ========= 24 40 25 41 [ nothing appropriate yet ] 26 42 27 43 28 29 ... Troubleshooting 30 31 [ nothing appropriate yet ] 32 33 34 35 ... Resources 36 37 [ nothing appropriate yet ] 38 39 40 41 ... The team 44 The team 45 ======== 42 46 43 47 The following teachers were involved in the VideoLAN project : … … 53 57 R�s Duchesne <regis@via.ecp.fr> 54 58 Alexandre Francois <francois@via.ecp.fr> 59 Christian Gross <gross@via.ecp.fr> 55 60 Hugo Haas <hugo@via.ecp.fr> 56 61 Mikael Journo <mj32@cornell.edu> … … 62 67 Olivier Baxa <oli@via.ecp.fr> 63 68 Patrice Bazerque <patrice.bazerque@via.ecp.fr> 64 Etienne Bernard <eb@via.ecp.fr>65 69 Arnaud Bienvenu <arnaud.bienvenu@via.ecp.fr> 66 70 R�s Cl�nt <clement@via.ecp.fr> configure
rea286a7 r3cbfc06 13 13 # Any additions from configure.in: 14 14 ac_help="$ac_help 15 --enable-vout-dummy dummy video support (default enabled)"16 ac_help="$ac_help17 --enable-x11 X11 video support (default enabled)"18 ac_help="$ac_help19 --enable-fb Linux framebuffer video support (default disabled)"20 ac_help="$ac_help21 --enable-gnome Gnome video support (default disabled)"22 ac_help="$ac_help23 --enable-glide Glide (3dfx) video support (default disabled)"24 ac_help="$ac_help25 --enable-ggi GGI video support (default disabled)"26 ac_help="$ac_help27 --enable-aout-dummy dummy audio support (default enabled)"28 ac_help="$ac_help29 15 --enable-dsp Linux /dev/dsp support (default enabled)" 30 16 ac_help="$ac_help 17 --enable-dummy dummy audio and video support (default enabled)" 18 ac_help="$ac_help 31 19 --enable-esd Esound library support (default disabled)" 20 ac_help="$ac_help 21 --enable-fb Linux framebuffer support (default disabled)" 22 ac_help="$ac_help 23 --enable-ggi GGI support (default disabled)" 24 ac_help="$ac_help 25 --enable-glide Glide (3dfx) support (default disabled)" 26 ac_help="$ac_help 27 --enable-gnome Gnome support (default disabled)" 28 ac_help="$ac_help 29 --enable-x11 X11 support (default enabled)" 32 30 ac_help="$ac_help 33 31 --enable-ppro Enable PentiumPro optimizations (default is no)" … … 572 570 573 571 echo $ac_n "checking host system type""... $ac_c" 1>&6 574 echo "configure:57 5: checking host system type" >&5572 echo "configure:573: checking host system type" >&5 575 573 576 574 host_alias=$host … … 593 591 594 592 595 VLC_VERSION=0.1.99 c593 VLC_VERSION=0.1.99d 596 594 597 595 VLC_CODENAME=Onatopp … … 599 597 600 598 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 601 echo "configure:60 2: checking whether ${MAKE-make} sets \${MAKE}" >&5599 echo "configure:600: checking whether ${MAKE-make} sets \${MAKE}" >&5 602 600 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 603 601 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 628 626 set dummy gcc; ac_word=$2 629 627 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 630 echo "configure:6 31: checking for $ac_word" >&5628 echo "configure:629: checking for $ac_word" >&5 631 629 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 632 630 echo $ac_n "(cached) $ac_c" 1>&6 … … 658 656 set dummy cc; ac_word=$2 659 657 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 660 echo "configure:6 61: checking for $ac_word" >&5658 echo "configure:659: checking for $ac_word" >&5 661 659 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 662 660 echo $ac_n "(cached) $ac_c" 1>&6 … … 709 707 set dummy cl; ac_word=$2 710 708 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 711 echo "configure:71 2: checking for $ac_word" >&5709 echo "configure:710: checking for $ac_word" >&5 712 710 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 713 711 echo $ac_n "(cached) $ac_c" 1>&6 … … 741 739 742 740 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 743 echo "configure:74 4: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5741 echo "configure:742: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 744 742 745 743 ac_ext=c … … 752 750 cat > conftest.$ac_ext << EOF 753 751 754 #line 75 5"configure"752 #line 753 "configure" 755 753 #include "confdefs.h" 756 754 757 755 main(){return(0);} 758 756 EOF 759 if { (eval echo configure:7 60: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then757 if { (eval echo configure:758: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 760 758 ac_cv_prog_cc_works=yes 761 759 # If we can't run a trivial program, we are probably using a cross compiler. … … 783 781 fi 784 782 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 785 echo "configure:78 6: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5783 echo "configure:784: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 786 784 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 787 785 cross_compiling=$ac_cv_prog_cc_cross 788 786 789 787 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 790 echo "configure:7 91: checking whether we are using GNU C" >&5788 echo "configure:789: checking whether we are using GNU C" >&5 791 789 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 792 790 echo $ac_n "(cached) $ac_c" 1>&6 … … 797 795 #endif 798 796 EOF 799 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure: 800: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then797 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:798: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 800 798 ac_cv_prog_gcc=yes 801 799 else … … 816 814 CFLAGS= 817 815 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 818 echo "configure:81 9: checking whether ${CC-cc} accepts -g" >&5816 echo "configure:817: checking whether ${CC-cc} accepts -g" >&5 819 817 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 820 818 echo $ac_n "(cached) $ac_c" 1>&6 … … 848 846 849 847 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 850 echo "configure:8 51: checking how to run the C preprocessor" >&5848 echo "configure:849: checking how to run the C preprocessor" >&5 851 849 # On Suns, sometimes $CPP names a directory. 852 850 if test -n "$CPP" && test -d "$CPP"; then … … 863 861 # not just through cpp. 864 862 cat > conftest.$ac_ext <<EOF 865 #line 86 6"configure"863 #line 864 "configure" 866 864 #include "confdefs.h" 867 865 #include <assert.h> … … 869 867 EOF 870 868 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 871 { (eval echo configure:87 2: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }869 { (eval echo configure:870: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 872 870 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 873 871 if test -z "$ac_err"; then … … 880 878 CPP="${CC-cc} -E -traditional-cpp" 881 879 cat > conftest.$ac_ext <<EOF 882 #line 88 3"configure"880 #line 881 "configure" 883 881 #include "confdefs.h" 884 882 #include <assert.h> … … 886 884 EOF 887 885 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 888 { (eval echo configure:88 9: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }886 { (eval echo configure:887: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 889 887 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 890 888 if test -z "$ac_err"; then … … 897 895 CPP="${CC-cc} -nologo -E" 898 896 cat > conftest.$ac_ext <<EOF 899 #line 900"configure"897 #line 898 "configure" 900 898 #include "confdefs.h" 901 899 #include <assert.h> … … 903 901 EOF 904 902 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 905 { (eval echo configure:90 6: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }903 { (eval echo configure:904: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 906 904 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 907 905 if test -z "$ac_err"; then … … 940 938 # ./install, which can be erroneously created by make from ./install.sh. 941 939 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 942 echo "configure:94 3: checking for a BSD compatible install" >&5940 echo "configure:941: checking for a BSD compatible install" >&5 943 941 if test -z "$INSTALL"; then 944 942 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 994 992 995 993 echo $ac_n "checking for working const""... $ac_c" 1>&6 996 echo "configure:99 7: checking for working const" >&5994 echo "configure:995: checking for working const" >&5 997 995 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 998 996 echo $ac_n "(cached) $ac_c" 1>&6 999 997 else 1000 998 cat > conftest.$ac_ext <<EOF 1001 #line 100 2"configure"999 #line 1000 "configure" 1002 1000 #include "confdefs.h" 1003 1001 … … 1048 1046 ; return 0; } 1049 1047 EOF 1050 if { (eval echo configure:10 51: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1048 if { (eval echo configure:1049: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1051 1049 rm -rf conftest* 1052 1050 ac_cv_c_const=yes … … 1069 1067 1070 1068 echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 1071 echo "configure:107 2: checking whether byte ordering is bigendian" >&51069 echo "configure:1070: checking whether byte ordering is bigendian" >&5 1072 1070 if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then 1073 1071 echo $ac_n "(cached) $ac_c" 1>&6 … … 1076 1074 # See if sys/param.h defines the BYTE_ORDER macro. 1077 1075 cat > conftest.$ac_ext <<EOF 1078 #line 107 9"configure"1076 #line 1077 "configure" 1079 1077 #include "confdefs.h" 1080 1078 #include <sys/types.h> … … 1087 1085 ; return 0; } 1088 1086 EOF 1089 if { (eval echo configure:10 90: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1087 if { (eval echo configure:1088: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1090 1088 rm -rf conftest* 1091 1089 # It does; now see whether it defined to BIG_ENDIAN or not. 1092 1090 cat > conftest.$ac_ext <<EOF 1093 #line 109 4"configure"1091 #line 1092 "configure" 1094 1092 #include "confdefs.h" 1095 1093 #include <sys/types.h> … … 1102 1100 ; return 0; } 1103 1101 EOF 1104 if { (eval echo configure:110 5: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1102 if { (eval echo configure:1103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1105 1103 rm -rf conftest* 1106 1104 ac_cv_c_bigendian=yes … … 1122 1120 else 1123 1121 cat > conftest.$ac_ext <<EOF 1124 #line 112 5"configure"1122 #line 1123 "configure" 1125 1123 #include "confdefs.h" 1126 1124 main () { … … 1135 1133 } 1136 1134 EOF 1137 if { (eval echo configure:113 8: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null1135 if { (eval echo configure:1136: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 1138 1136 then 1139 1137 ac_cv_c_bigendian=no … … 1162 1160 do 1163 1161 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1164 echo "configure:116 5: checking for $ac_func" >&51162 echo "configure:1163: checking for $ac_func" >&5 1165 1163 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1166 1164 echo $ac_n "(cached) $ac_c" 1>&6 1167 1165 else 1168 1166 cat > conftest.$ac_ext <<EOF 1169 #line 11 70"configure"1167 #line 1168 "configure" 1170 1168 #include "confdefs.h" 1171 1169 /* System header to define __stub macros and hopefully few prototypes, … … 1190 1188 ; return 0; } 1191 1189 EOF 1192 if { (eval echo configure:119 3: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1190 if { (eval echo configure:1191: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1193 1191 rm -rf conftest* 1194 1192 eval "ac_cv_func_$ac_func=yes" … … 1217 1215 do 1218 1216 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1219 echo "configure:12 20: checking for $ac_func" >&51217 echo "configure:1218: checking for $ac_func" >&5 1220 1218 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1221 1219 echo $ac_n "(cached) $ac_c" 1>&6 1222 1220 else 1223 1221 cat > conftest.$ac_ext <<EOF 1224 #line 122 5"configure"1222 #line 1223 "configure" 1225 1223 #include "confdefs.h" 1226 1224 /* System header to define __stub macros and hopefully few prototypes, … … 1245 1243 ; return 0; } 1246 1244 EOF 1247 if { (eval echo configure:124 8: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1245 if { (eval echo configure:1246: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1248 1246 rm -rf conftest* 1249 1247 eval "ac_cv_func_$ac_func=yes" … … 1270 1268 1271 1269 echo $ac_n "checking for connect""... $ac_c" 1>&6 1272 echo "configure:127 3: checking for connect" >&51270 echo "configure:1271: checking for connect" >&5 1273 1271 if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then 1274 1272 echo $ac_n "(cached) $ac_c" 1>&6 1275 1273 else 1276 1274 cat > conftest.$ac_ext <<EOF 1277 #line 127 8"configure"1275 #line 1276 "configure" 1278 1276 #include "confdefs.h" 1279 1277 /* System header to define __stub macros and hopefully few prototypes, … … 1298 1296 ; return 0; } 1299 1297 EOF 1300 if { (eval echo configure:1 301: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1298 if { (eval echo configure:1299: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1301 1299 rm -rf conftest* 1302 1300 eval "ac_cv_func_connect=yes" … … 1316 1314 echo "$ac_t""no" 1>&6 1317 1315 echo $ac_n "checking for connect in -lsocket""... $ac_c" 1>&6 1318 echo "configure:131 9: checking for connect in -lsocket" >&51316 echo "configure:1317: checking for connect in -lsocket" >&5 1319 1317 ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'` 1320 1318 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1324 1322 LIBS="-lsocket $LIBS" 1325 1323 cat > conftest.$ac_ext <<EOF 1326 #line 132 7"configure"1324 #line 1325 "configure" 1327 1325 #include "confdefs.h" 1328 1326 /* Override any gcc2 internal prototype to avoid an error. */ … … 1335 1333 ; return 0; } 1336 1334 EOF 1337 if { (eval echo configure:133 8: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1335 if { (eval echo configure:1336: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1338 1336 rm -rf conftest* 1339 1337 eval "ac_cv_lib_$ac_lib_var=yes" … … 1365 1363 1366 1364 echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 1367 echo "configure:136 8: checking for gethostbyname" >&51365 echo "configure:1366: checking for gethostbyname" >&5 1368 1366 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 1369 1367 echo $ac_n "(cached) $ac_c" 1>&6 1370 1368 else 1371 1369 cat > conftest.$ac_ext <<EOF 1372 #line 137 3"configure"1370 #line 1371 "configure" 1373 1371 #include "confdefs.h" 1374 1372 /* System header to define __stub macros and hopefully few prototypes, … … 1393 1391 ; return 0; } 1394 1392 EOF 1395 if { (eval echo configure:139 6: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1393 if { (eval echo configure:1394: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1396 1394 rm -rf conftest* 1397 1395 eval "ac_cv_func_gethostbyname=yes" … … 1411 1409 echo "$ac_t""no" 1>&6 1412 1410 echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 1413 echo "configure:141 4: checking for gethostbyname in -lnsl" >&51411 echo "configure:1412: checking for gethostbyname in -lnsl" >&5 1414 1412 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` 1415 1413 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1419 1417 LIBS="-lnsl $LIBS" 1420 1418 cat > conftest.$ac_ext <<EOF 1421 #line 142 2"configure"1419 #line 1420 "configure" 1422 1420 #include "confdefs.h" 1423 1421 /* Override any gcc2 internal prototype to avoid an error. */ … … 1430 1428 ; return 0; } 1431 1429 EOF 1432 if { (eval echo configure:143 3: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1430 if { (eval echo configure:1431: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1433 1431 rm -rf conftest* 1434 1432 eval "ac_cv_lib_$ac_lib_var=yes" … … 1460 1458 1461 1459 echo $ac_n "checking for nanosleep""... $ac_c" 1>&6 1462 echo "configure:146 3: checking for nanosleep" >&51460 echo "configure:1461: checking for nanosleep" >&5 1463 1461 if eval "test \"`echo '$''{'ac_cv_func_nanosleep'+set}'`\" = set"; then 1464 1462 echo $ac_n "(cached) $ac_c" 1>&6 1465 1463 else 1466 1464 cat > conftest.$ac_ext <<EOF 1467 #line 146 8"configure"1465 #line 1466 "configure" 1468 1466 #include "confdefs.h" 1469 1467 /* System header to define __stub macros and hopefully few prototypes, … … 1488 1486 ; return 0; } 1489 1487 EOF 1490 if { (eval echo configure:14 91: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1488 if { (eval echo configure:1489: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1491 1489 rm -rf conftest* 1492 1490 eval "ac_cv_func_nanosleep=yes" … … 1506 1504 echo "$ac_t""no" 1>&6 1507 1505 echo $ac_n "checking for nanosleep in -lrt""... $ac_c" 1>&6 1508 echo "configure:150 9: checking for nanosleep in -lrt" >&51506 echo "configure:1507: checking for nanosleep in -lrt" >&5 1509 1507 ac_lib_var=`echo rt'_'nanosleep | sed 'y%./+-%__p_%'` 1510 1508 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1514 1512 LIBS="-lrt $LIBS" 1515 1513 cat > conftest.$ac_ext <<EOF 1516 #line 151 7"configure"1514 #line 1515 "configure" 1517 1515 #include "confdefs.h" 1518 1516 /* Override any gcc2 internal prototype to avoid an error. */ … … 1525 1523 ; return 0; } 1526 1524 EOF 1527 if { (eval echo configure:152 8: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1525 if { (eval echo configure:1526: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1528 1526 rm -rf conftest* 1529 1527 eval "ac_cv_lib_$ac_lib_var=yes" … … 1551 1549 echo "$ac_t""no" 1>&6 1552 1550 echo $ac_n "checking for nanosleep in -lposix4""... $ac_c" 1>&6 1553 echo "configure:155 4: checking for nanosleep in -lposix4" >&51551 echo "configure:1552: checking for nanosleep in -lposix4" >&5 1554 1552 ac_lib_var=`echo posix4'_'nanosleep | sed 'y%./+-%__p_%'` 1555 1553 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1559 1557 LIBS="-lposix4 $LIBS" 1560 1558 cat > conftest.$ac_ext <<EOF 1561 #line 156 2"configure"1559 #line 1560 "configure" 1562 1560 #include "confdefs.h" 1563 1561 /* Override any gcc2 internal prototype to avoid an error. */ … … 1570 1568 ; return 0; } 1571 1569 EOF 1572 if { (eval echo configure:157 3: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1570 if { (eval echo configure:1571: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1573 1571 rm -rf conftest* 1574 1572 eval "ac_cv_lib_$ac_lib_var=yes" … … 1604 1602 do 1605 1603 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1606 echo "configure:160 7: checking for $ac_func" >&51604 echo "configure:1605: checking for $ac_func" >&5 1607 1605 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1608 1606 echo $ac_n "(cached) $ac_c" 1>&6 1609 1607 else 1610 1608 cat > conftest.$ac_ext <<EOF 1611 #line 161 2"configure"1609 #line 1610 "configure" 1612 1610 #include "confdefs.h" 1613 1611 /* System header to define __stub macros and hopefully few prototypes, … … 1632 1630 ; return 0; } 1633 1631 EOF 1634 if { (eval echo configure:163 5: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1632 if { (eval echo configure:1633: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1635 1633 rm -rf conftest* 1636 1634 eval "ac_cv_func_$ac_func=yes" … … 1657 1655 1658 1656 echo $ac_n "checking for inet_aton""... $ac_c" 1>&6 1659 echo "configure:16 60: checking for inet_aton" >&51657 echo "configure:1658: checking for inet_aton" >&5 1660 1658 if eval "test \"`echo '$''{'ac_cv_func_inet_aton'+set}'`\" = set"; then 1661 1659 echo $ac_n "(cached) $ac_c" 1>&6 1662 1660 else 1663 1661 cat > conftest.$ac_ext <<EOF 1664 #line 166 5"configure"1662 #line 1663 "configure" 1665 1663 #include "confdefs.h" 1666 1664 /* System header to define __stub macros and hopefully few prototypes, … … 1685 1683 ; return 0; } 1686 1684 EOF 1687 if { (eval echo configure:168 8: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1685 if { (eval echo configure:1686: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1688 1686 rm -rf conftest* 1689 1687 eval "ac_cv_func_inet_aton=yes" … … 1703 1701 echo "$ac_t""no" 1>&6 1704 1702 echo $ac_n "checking for inet_aton in -lresolv""... $ac_c" 1>&6 1705 echo "configure:170 6: checking for inet_aton in -lresolv" >&51703 echo "configure:1704: checking for inet_aton in -lresolv" >&5 1706 1704 ac_lib_var=`echo resolv'_'inet_aton | sed 'y%./+-%__p_%'` 1707 1705 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1711 1709 LIBS="-lresolv $LIBS" 1712 1710 cat > conftest.$ac_ext <<EOF 1713 #line 171 4"configure"1711 #line 1712 "configure" 1714 1712 #include "confdefs.h" 1715 1713 /* Override any gcc2 internal prototype to avoid an error. */ … … 1722 1720 ; return 0; } 1723 1721 EOF 1724 if { (eval echo configure:172 5: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1722 if { (eval echo configure:1723: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1725 1723 rm -rf conftest* 1726 1724 eval "ac_cv_lib_$ac_lib_var=yes" … … 1755 1753 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1756 1754 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1757 echo "configure:175 8: checking for $ac_hdr" >&51755 echo "configure:1756: checking for $ac_hdr" >&5 1758 1756 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1759 1757 echo $ac_n "(cached) $ac_c" 1>&6 1760 1758 else 1761 1759 cat > conftest.$ac_ext <<EOF 1762 #line 176 3"configure"1760 #line 1761 "configure" 1763 1761 #include "confdefs.h" 1764 1762 #include <$ac_hdr> 1765 1763 EOF 1766 1764 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1767 { (eval echo configure:176 8: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1765 { (eval echo configure:1766: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1768 1766 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1769 1767 if test -z "$ac_err"; then … … 1794 1792 do 1795 1793 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1796 echo "configure:179 7: checking for $ac_func" >&51794 echo "configure:1795: checking for $ac_func" >&5 1797 1795 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1798 1796 echo $ac_n "(cached) $ac_c" 1>&6 1799 1797 else 1800 1798 cat > conftest.$ac_ext <<EOF 1801 #line 180 2"configure"1799 #line 1800 "configure" 1802 1800 #include "confdefs.h" 1803 1801 /* System header to define __stub macros and hopefully few prototypes, … … 1822 1820 ; return 0; } 1823 1821 EOF 1824 if { (eval echo configure:182 5: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1822 if { (eval echo configure:1823: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1825 1823 rm -rf conftest* 1826 1824 eval "ac_cv_func_$ac_func=yes" … … 1847 1845 1848 1846 echo $ac_n "checking for working mmap""... $ac_c" 1>&6 1849 echo "configure:18 50: checking for working mmap" >&51847 echo "configure:1848: checking for working mmap" >&5 1850 1848 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then 1851 1849 echo $ac_n "(cached) $ac_c" 1>&6 … … 1855 1853 else 1856 1854 cat > conftest.$ac_ext <<EOF 1857 #line 185 8"configure"1855 #line 1856 "configure" 1858 1856 #include "confdefs.h" 1859 1857 … … 1998 1996 1999 1997 EOF 2000 if { (eval echo configure: 2001: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null1998 if { (eval echo configure:1999: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2001 1999<
