Commit 1f4f2234 authored by Sam Hocevar's avatar Sam Hocevar

* debian/changelog:

    + Updated to the latest Debian unstable upload.
  * debian/rules:
    + Moved the skins interface into the wxvlc package.
    + Cosmetic fixes.
  * debian/control:
    + Updated the description of the wxvlc package.
  * bootstrap:
    + Put subdirectories of modules/ in SUBDIRS, not DIST_SUBDIRS.
  * Makefile.am:
    + Put modules in SUBDIRS, not DIST_SUBDIRS.
  * .cvsignore:
    + Ignore vlc-config.in.
parent e2ea67fb
...@@ -25,6 +25,7 @@ aclocal.m4 ...@@ -25,6 +25,7 @@ aclocal.m4
vlc-debug.* vlc-debug.*
vlc-log.* vlc-log.*
vlc-config vlc-config
vlc-config.in
vlc vlc
VLC.app VLC.app
vlc.exe vlc.exe
...@@ -7,8 +7,8 @@ NULL = ...@@ -7,8 +7,8 @@ NULL =
# SUBDIRS stores the directories where a "make" is required when building # SUBDIRS stores the directories where a "make" is required when building
# something. DIST_SUBDIRS stores the directories where nothing is built but # something. DIST_SUBDIRS stores the directories where nothing is built but
# which have makefiles with distribution information. # which have makefiles with distribution information.
SUBDIRS = intl . share po m4 SUBDIRS = intl modules . share po m4
DIST_SUBDIRS = $(SUBDIRS) modules src debian doc ipkg lib autotools DIST_SUBDIRS = $(SUBDIRS) src debian doc ipkg lib autotools
EXTRA_DIST = \ EXTRA_DIST = \
HACKING \ HACKING \
......
#! /bin/sh #! /bin/sh
## bootstrap file for the VLC media player ## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.52 2003/06/27 13:50:07 sam Exp $ ## $Id: bootstrap,v 1.53 2003/06/27 23:31:24 sam Exp $
## ##
## Authors: Sam Hocevar <sam@zoy.org> ## Authors: Sam Hocevar <sam@zoy.org>
...@@ -68,8 +68,8 @@ count=0 ...@@ -68,8 +68,8 @@ count=0
rm -f modules/Makefile.am && cat > modules/Makefile.am << EOF rm -f modules/Makefile.am && cat > modules/Makefile.am << EOF
# Autogenerated by bootstrap - DO NOT EDIT # Autogenerated by bootstrap - DO NOT EDIT
EXTRA_DIST = LIST EXTRA_DIST = LIST
SUBDIRS = . SUBDIRS = `sed -ne 's,modules/\([^/]*\)/Makefile,\1,p' configure.ac | xargs`
DIST_SUBDIRS = `sed -ne 's,modules/\([^/]*\)/Makefile,\1,p' configure.ac | xargs` #DIST_SUBDIRS = \$(SUBDIRS)
EOF EOF
for dir in `sed -ne 's,\(modules/.*\)/Makefile,\1,p' configure.ac` for dir in `sed -ne 's,\(modules/.*\)/Makefile,\1,p' configure.ac`
...@@ -91,8 +91,8 @@ noinst_LIBRARIES = ...@@ -91,8 +91,8 @@ noinst_LIBRARIES =
noinst_HEADERS = noinst_HEADERS =
EXTRA_DIST = Modules.am EXTRA_DIST = Modules.am
BUILT_SOURCES = BUILT_SOURCES =
SUBDIRS = . SUBDIRS = ${subdirs}
DIST_SUBDIRS = ${subdirs} #DIST_SUBDIRS = \$(SUBDIRS)
libvlcdir = \$(libdir)/vlc/${basedir} libvlcdir = \$(libdir)/vlc/${basedir}
include Modules.am include Modules.am
EOF EOF
......
vlc (0.6.0-1) unstable; urgency=low vlc (0.6.0+cvs-20030627-1) unstable; urgency=low
* New upstream release.
* debian/rules: * debian/rules:
+ Replaced $(DEB_BUILD_ARCH) with `dpkg-architecture -qDEB_BUILD_GNU_CPU` + Replaced $(DEB_BUILD_ARCH) with `dpkg-architecture -qDEB_BUILD_GNU_CPU`
so that the rules can be called directly. so that the rules can be called directly.
......
...@@ -156,9 +156,11 @@ Package: wxvlc ...@@ -156,9 +156,11 @@ Package: wxvlc
Architecture: any Architecture: any
Depends: vlc (= ${Source-Version}), ${shlibs:Depends} Depends: vlc (= ${Source-Version}), ${shlibs:Depends}
Provides: vlc-gui Provides: vlc-gui
Description: wxWindows frontend for VLC Description: wxWindows and skins frontends for VLC
This plugin adds a wxWindow interface to the VLC media player. To This plugin adds a wxWindow interface and a skinnable interface to the
activate it, use the `--intf wxwin' flag or run the `wxvlc' program. VLC media player. To activate the wxWindow GUI, use the `--intf wxwin'
flag or run the `wxvlc' program. To activate the skinnable GUI, use the
`--intf skins' flag.
Package: vlc-alsa Package: vlc-alsa
Architecture: any Architecture: any
......
...@@ -84,44 +84,44 @@ configure-stamp: ...@@ -84,44 +84,44 @@ configure-stamp:
# Check that we have an ffmpeg tree in here (can be a symlink) # Check that we have an ffmpeg tree in here (can be a symlink)
test -d extras/ffmpeg test -d extras/ffmpeg
if test ! -d CVS; then \ if test ! -d CVS; then \
cd extras/ffmpeg \ cd extras/ffmpeg \
&& ./configure \ && ./configure \
&& cd libavcodec \ && cd libavcodec \
&& $(MAKE); \ && $(MAKE); \
fi fi
# Check that we have an faad tree in here (can be a symlink) # Check that we have an faad tree in here (can be a symlink)
test -d extras/faad test -d extras/faad
if test ! -d CVS; then \ if test ! -d CVS; then \
cd extras/faad \ cd extras/faad \
&& touch `find . -name configure.in` \ && touch `find . -name configure.in` \
&& touch `find . -name aclocal.m4` \ && touch `find . -name aclocal.m4` \
&& touch `find . -name configure` \ && touch `find . -name configure` \
&& touch `find . -name config.h.in` \ && touch `find . -name config.h.in` \
&& touch `find . -name Makefile.in` \ && touch `find . -name Makefile.in` \
&& ./configure --disable-shared \ && ./configure --disable-shared \
&& cd libfaad \ && cd libfaad \
&& $(MAKE); \ && $(MAKE); \
fi fi
# Check that we have an mpeg2dec tree in here (can be a symlink) # Check that we have an mpeg2dec tree in here (can be a symlink)
test -d extras/mpeg2dec test -d extras/mpeg2dec
if test ! -d CVS; then \ if test ! -d CVS; then \
cd extras/mpeg2dec \ cd extras/mpeg2dec \
&& touch configure.in \ && touch configure.in \
&& touch aclocal.m4 \ && touch aclocal.m4 \
&& touch acinclude.m4 \ && touch acinclude.m4 \
&& touch configure \ && touch configure \
&& touch `find . -name config.h.in` \ && touch `find . -name config.h.in` \
&& touch `find . -name Makefile.in` \ && touch `find . -name Makefile.in` \
&& ./configure --disable-shared \ && ./configure --disable-shared \
&& cd libmpeg2 \ && cd libmpeg2 \
&& $(MAKE); \ && $(MAKE); \
fi fi
# Configure VLC # Configure VLC
./configure --mandir=$${prefix}/share/man \ ./configure --mandir=$${prefix}/share/man \
--infodir=$${prefix}/share/info $(CONFIG_FLAGS) --infodir=$${prefix}/share/info $(CONFIG_FLAGS)
touch configure-stamp touch configure-stamp
...@@ -135,26 +135,26 @@ build-stamp: ...@@ -135,26 +135,26 @@ build-stamp:
ifneq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386) ifneq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386)
# Hackety hackety hack # Hackety hackety hack
if test ! -d CVS; then \ if test ! -d CVS; then \
cd extras/ffmpeg/libavcodec \ cd extras/ffmpeg/libavcodec \
&& $(MAKE) clean \ && $(MAKE) clean \
&& rm -f Makefile.pic \ && rm -f Makefile.pic \
&& sed 's/^CFLAGS *=/&-fPIC -DPIC /' <Makefile >Makefile.pic \ && sed 's/^CFLAGS *=/&-fPIC -DPIC /' <Makefile >Makefile.pic \
&& $(MAKE) -f Makefile.pic \ && $(MAKE) -f Makefile.pic \
&& rm -f Makefile.pic; \ && rm -f Makefile.pic; \
fi fi
# HACKETY HACKETY HACK # HACKETY HACKETY HACK
if test ! -d CVS; then \ if test ! -d CVS; then \
cd extras/faad/libfaad \ cd extras/faad/libfaad \
&& $(MAKE) clean \ && $(MAKE) clean \
&& $(MAKE) AM_CFLAGS=-fPIC; \ && $(MAKE) AM_CFLAGS=-fPIC; \
fi fi
# HACK ME PLENTY MORE!!! # HACK ME PLENTY MORE!!!
if test ! -d CVS; then \ if test ! -d CVS; then \
cd extras/mpeg2dec/libmpeg2 \ cd extras/mpeg2dec/libmpeg2 \
&& $(MAKE) clean \ && $(MAKE) clean \
&& $(MAKE) LIBMPEG2_CFLAGS=-fPIC; \ && $(MAKE) LIBMPEG2_CFLAGS=-fPIC; \
fi fi
endif endif
...@@ -214,9 +214,9 @@ install: build ...@@ -214,9 +214,9 @@ install: build
mv debian/vlc/usr/bin/gnome-vlc debian/gnome-vlc/usr/bin/ mv debian/vlc/usr/bin/gnome-vlc debian/gnome-vlc/usr/bin/
ln -s vlc debian/gnome-vlc/usr/share/doc/gnome-vlc ln -s vlc debian/gnome-vlc/usr/share/doc/gnome-vlc
mv debian/vlc/usr/lib/vlc/misc/libgnome_main_plugin.so \ mv debian/vlc/usr/lib/vlc/misc/libgnome_main_plugin.so \
debian/gnome-vlc/usr/lib/vlc/gui/ debian/gnome-vlc/usr/lib/vlc/gui/
mv debian/vlc/usr/lib/vlc/gui/libgnome_plugin.so \ mv debian/vlc/usr/lib/vlc/gui/libgnome_plugin.so \
debian/gnome-vlc/usr/lib/vlc/gui/ debian/gnome-vlc/usr/lib/vlc/gui/
ln -s vlc.1.gz debian/gnome-vlc/usr/share/man/man1/gnome-vlc.1.gz ln -s vlc.1.gz debian/gnome-vlc/usr/share/man/man1/gnome-vlc.1.gz
mv debian/vlc/$(VIDDIR)/gnome-vlc32x32.xpm debian/gnome-vlc/$(VIDDIR)/gnome-vlc.xpm mv debian/vlc/$(VIDDIR)/gnome-vlc32x32.xpm debian/gnome-vlc/$(VIDDIR)/gnome-vlc.xpm
mv debian/vlc/$(VIDDIR)/gnome-vlc48x48.png debian/gnome-vlc/$(PIXDIR)/gnome-vlc.png mv debian/vlc/$(VIDDIR)/gnome-vlc48x48.png debian/gnome-vlc/$(PIXDIR)/gnome-vlc.png
...@@ -229,11 +229,11 @@ install: build ...@@ -229,11 +229,11 @@ install: build
mv debian/vlc/usr/bin/gvlc debian/gvlc/usr/bin/ mv debian/vlc/usr/bin/gvlc debian/gvlc/usr/bin/
ln -s vlc debian/gvlc/usr/share/doc/gvlc ln -s vlc debian/gvlc/usr/share/doc/gvlc
mv debian/vlc/usr/lib/vlc/misc/libgtk_main_plugin.so \ mv debian/vlc/usr/lib/vlc/misc/libgtk_main_plugin.so \
debian/gvlc/usr/lib/vlc/gui/ debian/gvlc/usr/lib/vlc/gui/
mv debian/vlc/usr/lib/vlc/gui/libgtk_plugin.so \ mv debian/vlc/usr/lib/vlc/gui/libgtk_plugin.so \
debian/gvlc/usr/lib/vlc/gui/ debian/gvlc/usr/lib/vlc/gui/
mv debian/vlc/usr/lib/vlc/gui/libfamiliar_plugin.so \ mv debian/vlc/usr/lib/vlc/gui/libfamiliar_plugin.so \
debian/gvlc/usr/lib/vlc/gui/ debian/gvlc/usr/lib/vlc/gui/
ln -s vlc.1.gz debian/gvlc/usr/share/man/man1/gvlc.1.gz ln -s vlc.1.gz debian/gvlc/usr/share/man/man1/gvlc.1.gz
mv debian/vlc/$(VIDDIR)/gvlc32x32.xpm debian/gvlc/$(VIDDIR)/gvlc.xpm mv debian/vlc/$(VIDDIR)/gvlc32x32.xpm debian/gvlc/$(VIDDIR)/gvlc.xpm
mv debian/vlc/$(VIDDIR)/gvlc48x48.png debian/gvlc/$(PIXDIR)/gvlc.png mv debian/vlc/$(VIDDIR)/gvlc48x48.png debian/gvlc/$(PIXDIR)/gvlc.png
...@@ -245,7 +245,7 @@ install: build ...@@ -245,7 +245,7 @@ install: build
# Package: vlc-plugin-esd # Package: vlc-plugin-esd
ln -s vlc debian/vlc-plugin-esd/usr/share/doc/vlc-plugin-esd ln -s vlc debian/vlc-plugin-esd/usr/share/doc/vlc-plugin-esd
mv debian/vlc/usr/lib/vlc/audio_output/libesd_plugin.so \ mv debian/vlc/usr/lib/vlc/audio_output/libesd_plugin.so \
debian/vlc-plugin-esd/usr/lib/vlc/audio_output/ debian/vlc-plugin-esd/usr/lib/vlc/audio_output/
# Package: vlc-esd # Package: vlc-esd
mkdir -p debian/vlc-esd/usr/share/doc/ mkdir -p debian/vlc-esd/usr/share/doc/
...@@ -254,7 +254,7 @@ install: build ...@@ -254,7 +254,7 @@ install: build
# Package: vlc-plugin-alsa # Package: vlc-plugin-alsa
ln -s vlc debian/vlc-plugin-alsa/usr/share/doc/vlc-plugin-alsa ln -s vlc debian/vlc-plugin-alsa/usr/share/doc/vlc-plugin-alsa
mv debian/vlc/usr/lib/vlc/audio_output/libalsa_plugin.so \ mv debian/vlc/usr/lib/vlc/audio_output/libalsa_plugin.so \
debian/vlc-plugin-alsa/usr/lib/vlc/audio_output/ debian/vlc-plugin-alsa/usr/lib/vlc/audio_output/
# Package: vlc-alsa # Package: vlc-alsa
mkdir -p debian/vlc-alsa/usr/share/doc/ mkdir -p debian/vlc-alsa/usr/share/doc/
...@@ -263,9 +263,9 @@ install: build ...@@ -263,9 +263,9 @@ install: build
# Package: vlc-plugin-sdl # Package: vlc-plugin-sdl
ln -s vlc debian/vlc-plugin-sdl/usr/share/doc/vlc-plugin-sdl ln -s vlc debian/vlc-plugin-sdl/usr/share/doc/vlc-plugin-sdl
mv debian/vlc/usr/lib/vlc/audio_output/libaout_sdl_plugin.so \ mv debian/vlc/usr/lib/vlc/audio_output/libaout_sdl_plugin.so \
debian/vlc-plugin-sdl/usr/lib/vlc/audio_output/ debian/vlc-plugin-sdl/usr/lib/vlc/audio_output/
mv debian/vlc/usr/lib/vlc/video_output/libvout_sdl_plugin.so \ mv debian/vlc/usr/lib/vlc/video_output/libvout_sdl_plugin.so \
debian/vlc-plugin-sdl/usr/lib/vlc/video_output/ debian/vlc-plugin-sdl/usr/lib/vlc/video_output/
# Package: vlc-sdl # Package: vlc-sdl
mkdir -p debian/vlc-sdl/usr/share/doc/ mkdir -p debian/vlc-sdl/usr/share/doc/
...@@ -274,7 +274,7 @@ install: build ...@@ -274,7 +274,7 @@ install: build
# Package: vlc-plugin-ggi # Package: vlc-plugin-ggi
ln -s vlc debian/vlc-plugin-ggi/usr/share/doc/vlc-plugin-ggi ln -s vlc debian/vlc-plugin-ggi/usr/share/doc/vlc-plugin-ggi
mv debian/vlc/usr/lib/vlc/video_output/libggi_plugin.so \ mv debian/vlc/usr/lib/vlc/video_output/libggi_plugin.so \
debian/vlc-plugin-ggi/usr/lib/vlc/video_output/ debian/vlc-plugin-ggi/usr/lib/vlc/video_output/
# Package: vlc-ggi # Package: vlc-ggi
mkdir -p debian/vlc-ggi/usr/share/doc/ mkdir -p debian/vlc-ggi/usr/share/doc/
...@@ -284,7 +284,7 @@ install: build ...@@ -284,7 +284,7 @@ install: build
ifeq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386) ifeq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386)
ln -s vlc debian/vlc-plugin-glide/usr/share/doc/vlc-plugin-glide ln -s vlc debian/vlc-plugin-glide/usr/share/doc/vlc-plugin-glide
mv debian/vlc/usr/lib/vlc/video_output/libglide_plugin.so \ mv debian/vlc/usr/lib/vlc/video_output/libglide_plugin.so \
debian/vlc-plugin-glide/usr/lib/vlc/video_output/ debian/vlc-plugin-glide/usr/lib/vlc/video_output/
# Package: vlc-glide # Package: vlc-glide
mkdir -p debian/vlc-glide/usr/share/doc/ mkdir -p debian/vlc-glide/usr/share/doc/
...@@ -295,7 +295,7 @@ endif ...@@ -295,7 +295,7 @@ endif
mv debian/vlc/usr/bin/qvlc debian/qvlc/usr/bin/ mv debian/vlc/usr/bin/qvlc debian/qvlc/usr/bin/
ln -s vlc debian/qvlc/usr/share/doc/qvlc ln -s vlc debian/qvlc/usr/share/doc/qvlc
mv debian/vlc/usr/lib/vlc/gui/libqt_plugin.so \ mv debian/vlc/usr/lib/vlc/gui/libqt_plugin.so \
debian/qvlc/usr/lib/vlc/gui/ debian/qvlc/usr/lib/vlc/gui/
ln -s vlc.1.gz debian/qvlc/usr/share/man/man1/qvlc.1.gz ln -s vlc.1.gz debian/qvlc/usr/share/man/man1/qvlc.1.gz
mv debian/vlc/$(VIDDIR)/qvlc32x32.xpm debian/qvlc/$(VIDDIR)/qvlc.xpm mv debian/vlc/$(VIDDIR)/qvlc32x32.xpm debian/qvlc/$(VIDDIR)/qvlc.xpm
mv debian/vlc/$(VIDDIR)/qvlc48x48.png debian/qvlc/$(PIXDIR)/qvlc.png mv debian/vlc/$(VIDDIR)/qvlc48x48.png debian/qvlc/$(PIXDIR)/qvlc.png
...@@ -307,7 +307,7 @@ endif ...@@ -307,7 +307,7 @@ endif
# Package: vlc-plugin-arts # Package: vlc-plugin-arts
ln -s vlc debian/vlc-plugin-arts/usr/share/doc/vlc-plugin-arts ln -s vlc debian/vlc-plugin-arts/usr/share/doc/vlc-plugin-arts
mv debian/vlc/usr/lib/vlc/audio_output/libarts_plugin.so \ mv debian/vlc/usr/lib/vlc/audio_output/libarts_plugin.so \
debian/vlc-plugin-arts/usr/lib/vlc/audio_output/ debian/vlc-plugin-arts/usr/lib/vlc/audio_output/
# Package: mozilla-plugin-vlc # Package: mozilla-plugin-vlc
ln -s vlc debian/mozilla-plugin-vlc/usr/share/doc/mozilla-plugin-vlc ln -s vlc debian/mozilla-plugin-vlc/usr/share/doc/mozilla-plugin-vlc
...@@ -317,9 +317,9 @@ endif ...@@ -317,9 +317,9 @@ endif
mv debian/vlc/usr/bin/kvlc debian/kvlc/usr/bin/ mv debian/vlc/usr/bin/kvlc debian/kvlc/usr/bin/
ln -s vlc debian/kvlc/usr/share/doc/kvlc ln -s vlc debian/kvlc/usr/share/doc/kvlc
mv debian/vlc/usr/lib/vlc/gui/libkde_plugin.so \ mv debian/vlc/usr/lib/vlc/gui/libkde_plugin.so \
debian/kvlc/usr/lib/vlc/gui/ debian/kvlc/usr/lib/vlc/gui/
mv debian/vlc/usr/share/vlc/ui.rc \ mv debian/vlc/usr/share/vlc/ui.rc \
debian/kvlc/usr/share/vlc debian/kvlc/usr/share/vlc
ln -s vlc.1.gz debian/kvlc/usr/share/man/man1/kvlc.1.gz ln -s vlc.1.gz debian/kvlc/usr/share/man/man1/kvlc.1.gz
mv debian/vlc/$(VIDDIR)/kvlc32x32.xpm debian/kvlc/$(VIDDIR)/kvlc.xpm mv debian/vlc/$(VIDDIR)/kvlc32x32.xpm debian/kvlc/$(VIDDIR)/kvlc.xpm
mv debian/vlc/$(VIDDIR)/kvlc48x48.png debian/kvlc/$(PIXDIR)/kvlc.png mv debian/vlc/$(VIDDIR)/kvlc48x48.png debian/kvlc/$(PIXDIR)/kvlc.png
...@@ -328,14 +328,18 @@ endif ...@@ -328,14 +328,18 @@ endif
ifeq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386) ifeq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386)
ln -s vlc debian/vlc-plugin-svgalib/usr/share/doc/vlc-plugin-svgalib ln -s vlc debian/vlc-plugin-svgalib/usr/share/doc/vlc-plugin-svgalib
mv debian/vlc/usr/lib/vlc/video_output/libsvgalib_plugin.so \ mv debian/vlc/usr/lib/vlc/video_output/libsvgalib_plugin.so \
debian/vlc-plugin-svgalib/usr/lib/vlc/video_output debian/vlc-plugin-svgalib/usr/lib/vlc/video_output
endif endif
# Package: wxvlc # Package: wxvlc
mv debian/vlc/usr/bin/wxvlc debian/wxvlc/usr/bin/ mv debian/vlc/usr/bin/wxvlc debian/wxvlc/usr/bin/
ln -s vlc debian/wxvlc/usr/share/doc/wxvlc ln -s vlc debian/wxvlc/usr/share/doc/wxvlc
mv debian/vlc/usr/lib/vlc/gui/libwxwindows_plugin.so \ mv debian/vlc/usr/lib/vlc/gui/libwxwindows_plugin.so \
debian/wxvlc/usr/lib/vlc/gui/ debian/wxvlc/usr/lib/vlc/gui/
mv debian/vlc/usr/lib/vlc/gui/libskins_plugin.so \
debian/wxvlc/usr/lib/vlc/gui/
mv debian/vlc/usr/share/vlc/skins \
debian/wxvlc/usr/share/vlc/
ln -s vlc.1.gz debian/wxvlc/usr/share/man/man1/wxvlc.1.gz ln -s vlc.1.gz debian/wxvlc/usr/share/man/man1/wxvlc.1.gz
# Clean up # Clean up
......
...@@ -13,6 +13,12 @@ optim="@optim@" ...@@ -13,6 +13,12 @@ optim="@optim@"
plugins="@PLUGINS@" plugins="@PLUGINS@"
builtins="@BUILTINS@" builtins="@BUILTINS@"
cppflags="${cppflags} -DDEBUG"
cflags="${cflags} -g"
cxxflags="${cxxflags} -g"
objcflags="${objcflags} -g"
ldflags="${objcflags} -g"
cflags_tuning="@CFLAGS_TUNING@" cflags_tuning="@CFLAGS_TUNING@"
cflags_optim="@CFLAGS_OPTIM@" cflags_optim="@CFLAGS_OPTIM@"
cflags_optim_nodebug="@CFLAGS_OPTIM_NODEBUG@" cflags_optim_nodebug="@CFLAGS_OPTIM_NODEBUG@"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment