Changeset 25:2110e0cf64ac
- Timestamp:
- 02/27/09 20:13:00 (3 years ago)
- Branch:
- default
- convert_revision:
- svn:d0a2da98-017c-47d2-8c43-22b54484806d/trunk@26
- Files:
-
- 4 modified
-
autogen.sh (modified) (1 diff)
-
configure.ac (modified) (4 diffs)
-
music2/Makefile.am (modified) (1 diff)
-
system/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
autogen.sh
r22 r25 1 1 #!/bin/sh 2 2 autoheader && \ 3 aclocal -I . -I /usr/share/aclocal&& \3 aclocal -I . && \ 4 4 automake --add-missing && \ 5 5 autoconf -
configure.ac
r22 r25 79 79 AC_CHECK_LIB(jpeg, jpeg_start_decompress) 80 80 dnl ogg vobis 81 AC_ARG_ENABLE(tremor, 82 [ --enable-tremor enable tremor (integer-only implementation for vorbisfile) [ default no]]) 83 AC_CHECK_LIB(ogg, ogg_stream_init) 84 AC_CHECK_LIB(vorbis, vorbis_book_decode,,,-logg) 85 if test X$enable_tremor = X"yes"; then 86 AC_CHECK_LIB(vorbisidec, ov_read,,,-logg -lvorbis) 87 else 88 AC_CHECK_LIB(vorbisfile, ov_read,,,-logg -lvorbis) 81 AC_ARG_WITH(vorbis, 82 AS_HELP_STRING([--disable-vorbis], [Build with vorbis and ogg (default yes)])) 83 if test X$with_vorbis = X"yes"; then 84 AC_ARG_ENABLE(tremor, AS_HELP_STRING([--enable-tremor], 85 [enable tremor (integer-only implementation of vorbisfile) (default no)])) 86 AC_CHECK_LIB(ogg, ogg_stream_init) 87 AC_CHECK_LIB(vorbis, vorbis_book_decode,,,-logg) 88 if test X$enable_tremor = X"yes"; then 89 AC_CHECK_LIB(vorbisidec, ov_read,,,-logg -lvorbis) 90 else 91 AC_CHECK_LIB(vorbisfile, ov_read,,,-logg -lvorbis) 92 fi 89 93 fi 90 94 … … 123 127 DISPSIZE="no" 124 128 129 AC_ARG_ENABLE(nwatowav, 130 AS_HELP_STRING([--enable-nwatowav], [Build the nwatowav utility (default no)])) 131 if test X$enable_nwatowav = X"yes"; then 132 AC_SUBST(NWATOWAV, ['nwatowav${EXEEXT}']) 133 fi 134 135 AC_ARG_ENABLE(visarc, 136 AS_HELP_STRING([--enable-visarc], [Build the visarc utility (default no)])) 137 if test X$enable_visarc = X"yes"; then 138 AC_SUBST(VISARC, ['visarc${EXEEXT}']) 139 fi 140 125 141 AC_ARG_ENABLE(zaurus, 126 [ --enable-zaurus compile for zaurus environment [ default no]])142 AS_HELP_STRING([--enable-zaurus], [Compile for zaurus environment (default no)])) 127 143 if test X$enable_zaurus = X"yes"; then 128 144 USE_X11=0 … … 131 147 132 148 AC_ARG_ENABLE(x11, 133 [ --disable-x11 turn off using X11 library [default enable]])149 AS_HELP_STRING([--disable-x11], [Use the X11 library (default yes)])) 134 150 if test X$x11 = X"no"; then 135 151 USE_X11=0 … … 142 158 143 159 AC_ARG_ENABLE(displaysize, 144 [ --enable-displaysize=SIZE change default display size, for example --enable-displaysize=320x240], 160 AS_HELP_STRING([--enable-displaysize=SIZE], 161 [Change default display size, for example --enable-displaysize=320x240]), 145 162 displaysize=$enableval) 146 163 if test X$displaysize != X; then -
music2/Makefile.am
r23 r25 3 3 movie.cc nwatowav.cc music.h wavfile.h 4 4 5 #bin_PROGRAMS = nwatowav 6 #nwatowav_SOURCES = nwatowav.cc 7 #nwatowav_CPPFLAGS = -DUSE_MAIN 5 bin_PROGRAMS = $(NWATOWAV) 6 EXTRA_PROGRAMS = nwatowav 7 8 nwatowav_SOURCES = nwatowav.cc 9 nwatowav_CPPFLAGS = -DUSE_MAIN 8 10 9 11 INCLUDES = @SDL_CFLAGS@ -
system/Makefile.am
r22 r25 2 2 libsystem_a_SOURCES = file.cc system_config.cc file.h file_impl.h system_config.h 3 3 4 #bin_PROGRAMS = visarc 5 #visarc_SOURCES = visarc.cc 6 #visarc_LDADD = libsystem.a 4 bin_PROGRAMS = $(VISARC) 5 EXTRA_PROGRAMS = visarc 6 7 visarc_SOURCES = visarc.cc 8 visarc_LDADD = libsystem.a 7 9 8 10 AM_CPPFLAGS = @CFLAGS@ @DEFS@
![(please configure the [header_logo] section in trac.ini)](/otakunoraifu/chrome/site/your_project_logo.png)