[Git][videolan/libdvdcss][master] Remove autotools and Visual Studio project files
"Jean-Baptiste Kempf (@jbk)" <[email protected]> Fri, 05 Sep 2025 22:36:22 +0200
| Newsgroups | gmane.comp.video.videolan.libdvdcss.devel |
|---|---|
| Message-ID | <[email protected]> |
--===============0306657122662387208==
Content-Type: multipart/alternative;
boundary="--==_mimepart_68bb49bc456de_80cf91f143c219198fa";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_68bb49bc456de_80cf91f143c219198fa
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Jean-Baptiste Kempf pushed to branch master at VideoLAN / libdvdcss
Commits:
76c4f213 by Rob Hall at 2025-09-03T09:22:00+01:00
Remove autotools and Visual Studio project files
- - - - -
9 changed files:
- =E2=88=92 Makefile.am
- =E2=88=92 configure.ac
- =E2=88=92 m4/attributes.m4
- =E2=88=92 msvc/config.h
- =E2=88=92 msvc/csstest.dsp
- =E2=88=92 msvc/libdvdcss.dsp
- =E2=88=92 msvc/libdvdcss.vcxproj
- =E2=88=92 msvc/workspace.dsw
- =E2=88=92 src/libdvdcss.pc.in
Changes:
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Makefile.am deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,92 +0,0 @@
-ACLOCAL_AMFLAGS =3D -I m4
-AM_CPPFLAGS =3D -I$(top_srcdir)/src -I$(top_builddir)/src/dvdcss
-
-EXTRA_DIST =3D msvc libdvdcss.spec INSTALL
-
-dist_doc_DATA =3D AUTHORS COPYING NEWS README.md
-if MAINTAINER_MODE
-dist_doc_DATA +=3D ChangeLog
-endif
-
-MAINTAINERCLEANFILES =3D ChangeLog
-
-ChangeLog: $(wildcard $(srcdir)/.git/logs/HEAD)
-if GIT
- -cd $(srcdir) && git log > $(abs_builddir)/$(@)-tmp
- test -s $(@)-tmp && mv $(@)-tmp $(@)
- -rm -f $(@)-tmp
-endif
- test -e $(@) || touch $(@)
-
-lib_LTLIBRARIES =3D libdvdcss.la
-EXTRA_PROGRAMS =3D test/csstest test/dvd_region
-
-libdvdcss_la_SOURCES =3D \
- src/bswap.h \
- src/cpxm.h \
- src/cpxm.c \
- src/libdvdcpxm.h \
- src/libdvdcpxm.c \
- src/libdvdcss.c \
- src/libdvdcss.h \
- src/device.c \
- src/device.h \
- src/css.c \
- src/css.h \
- src/csstables.h \
- src/ioctl.c \
- src/ioctl.h \
- src/error.c \
- src/common.h
-
-libdvdcss_la_LDFLAGS =3D -version-info $(DVDCSS_LTVERSION) $(DVDCSS_LDFL=
AGS)
-libdvdcss_la_LIBADD =3D
-
-if !SYS_MSVC
-libdvdcss_la_LDFLAGS +=3D -no-undefined
-endif
-
-test_csstest_SOURCES =3D test/csstest.c
-test_csstest_LDADD =3D libdvdcss.la
-test_csstest_CFLAGS =3D -I $(top_srcdir)/src
-
-test_dvd_region_SOURCES =3D test/dvd_region.c
-test_dvd_region_LDADD =3D libdvdcss.la
-test_dvd_region_CFLAGS =3D -I $(top_srcdir)/src
-
-pkgincludedir =3D $(includedir)/dvdcss
-pkginclude_HEADERS =3D \
- src/dvdcss/dvdcss.h \
- src/dvdcss/dvdcpxm.h \
- src/dvdcss/version.h
-
-pkgconfigdir =3D $(libdir)/pkgconfig
-pkgconfig_DATA =3D src/libdvdcss.pc
-
-if APIDOC
-all-local: apidoc
-install-data-local: install-apidoc
-uninstall-hook: uninstall-apidoc
-endif
-
-apidoc: stamp-doxygen
-
-stamp-doxygen: doc/doxygen.cfg src/libdvdcss.c src/dvdcss/dvdcss.h
- doxygen $<
- touch $@
-
-tools: test/csstest$(EXEEXT) test/dvd_region$(EXEEXT)
-
-clean-local:
- -rm -Rf stamp-doxygen doc/doxygen_sqlite3.db libdvdcss.spec doc/html
-
-install-apidoc:
- $(MKDIR_P) $(DESTDIR)$(htmldir)
- for file in doc/html/*; do \
- $(INSTALL_DATA) $$file "$(DESTDIR)$(htmldir)" || exit 1; \
- done;
-
-uninstall-apidoc:
- -rm -Rf $(DESTDIR)$(htmldir)/*.png $(DESTDIR)$(htmldir)/*.html $(DESTDI=
R)$(htmldir)/*.css $(DESTDIR)$(htmldir)/*.js
-
-.PHONY: apidoc tools
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
configure.ac deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,255 +0,0 @@
-dnl library version number
-m4_define([dvdcss_major], 1)
-m4_define([dvdcss_minor], 5)
-m4_define([dvdcss_micro], 0)
-m4_define([dvdcss_version],[dvdcss_major.dvdcss_minor.dvdcss_micro])
-
-AC_INIT(libdvdcss, dvdcss_version, , , https://www.videolan.org/develope=
rs/libdvdcss.html)
-AC_CONFIG_SRCDIR([src/libdvdcss.c])
-
-AC_PREREQ(2.50)
-AC_CANONICAL_HOST
-
-AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip subdir-objects])
-AM_MAINTAINER_MODE([enable])
-dnl Enable silent rules only when available (automake 1.11 or later).
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-
-LT_INIT([win32-dll])
-
-AC_CONFIG_HEADER(config.h)
-AC_CONFIG_MACRO_DIR([m4])
-
-dnl The libtool version numbers (DVDCSS_LT_*); Don't even think about fa=
king this!
-dnl
-dnl immediately before every release do:
-dnl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-dnl if (the interface is totally unchanged from previous release)
-dnl DVDCSS_LT_REVISION ++;
-dnl else { /* interfaces have been added, removed or changed */
-dnl DVDCSS_LT_REVISION =3D 0;
-dnl DVDCSS_LT_CURRENT ++;
-dnl if (any interfaces have been _added_ since last release)
-dnl AGE ++;
-dnl if (any interfaces have been _removed_ or _incompatibly changed_)=
-dnl AGE =3D 0;
-dnl }
-dnl
-dnl If you want to know more about what you are doing, here are some det=
ails:
-dnl * DVDCSS_LT_CURRENT is the current API version
-dnl * DVDCSS_LT_REVISION is an internal revision number which is increa=
sed when the API
-dnl itself did not change
-dnl * DVDCSS_LT_AGE is the number of previous API versions still suppor=
ted by this library
-dnl * libtool has its own numbering scheme, because local library numbe=
ring schemes
-dnl are platform dependent
-dnl * in Linux, the library will be named
-dnl libname.so.(DVDCSS_LT_CURRENT - DVDCSS_LT_AGE).DVDCSS_LT_AGE.DVDC=
SS_LT_REVISION
-
-DVDCSS_LT_CURRENT=3D5
-DVDCSS_LT_AGE=3D3
-DVDCSS_LT_REVISION=3D0
-
-AC_SUBST([DVDCSS_LTVERSION], [$DVDCSS_LT_CURRENT:$DVDCSS_LT_REVISION:$DV=
DCSS_LT_AGE])
-
-AC_PROG_CC
-AC_HEADER_STDC
-
-AC_C_CONST
-AC_C_INLINE
-AC_TYPE_SIZE_T
-
-AC_CHECK_HEADERS([unistd.h sys/param.h sys/uio.h pwd.h]dnl
- [errno.h sys/types.h sys/stat.h fcntl.h io.h])
-
-AC_CHECK_DECL([O_BINARY], [],
- [AC_DEFINE([O_BINARY], [0], [Define O_BINARY if missing])],
- [
- #if HAVE_SYS_TYPES_H
- # include <sys/types.h>
- #endif
- #if HAVE_SYS_STAT_H
- # include <sys/stat.h>
- #endif
- #if HAVE_FCNTL_H
- # include <fcntl.h>
- #endif
- ])
-
-AC_SYS_LARGEFILE
-
-AC_CACHE_CHECK(
- [for posix mkdir()],
- [css_cv_mkdir_posix], [
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([
-#ifdef HAVE_IO_H
-# include <io.h>
-#endif
-#ifdef HAVE_SYS_STAT_H
-# include <sys/stat.h>
-#endif
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
-
-int mkdir(const char *path, mode_t mode);
- ])
- ],
- [css_cv_mkdir_posix=3Dyes],
- [css_cv_mkdir_posix=3Dno])
- ])
-
-AS_IF([test "$css_cv_mkdir_posix" =3D "no"], [
- AC_DEFINE([HAVE_BROKEN_MKDIR], 1, [Define if you have a broken mkdir])=
-])
-
-dnl
-dnl Check the operating system
-dnl
-
-case x"${host_os}" in
- xdarwin*)
- CFLAGS=3D"${CFLAGS} -no-cpp-precomp"
- ;;
- x*cygwin* | x*msys*)
- CFLAGS=3D"${CFLAGS} -mwin32"
- AC_DEFINE([_WIN32_IE], 0x0501, [Define to '0x0501' for IE 5.01 (and =
shell) APIs.])
- ;;
- xos2*)
- LDFLAGS=3D"-Zbin-files"
- ;;
- x*msvc*)
- SYS_MSVC=3D1
- AC_DEFINE([_WIN32_IE], 0x0501, [Define to '0x0501' for IE 5.01 (and =
shell) APIs.])
- ;;
- x*mingw* | x*wince* | x*mingwce*)
- AC_DEFINE([_WIN32_IE], 0x0501, [Define to '0x0501' for IE 5.01 (and =
shell) APIs.])
- ;;
- x*)
- ;;
-esac
-
-dnl
-dnl libdvdcss: check for DVD ioctls
-dnl
-
-dnl default is no
-CAN_BUILD_LIBDVDCSS=3D0
-
-dnl for windoze
-AC_CHECK_HEADERS(windows.h,[
- AC_CHECK_HEADERS(winioctl.h,[
- CAN_BUILD_LIBDVDCSS=3D1
- ],,[
- #include <windows.h>
- ])
-])
-
-dnl for Unix
-AC_CHECK_HEADERS(sys/ioctl.h,[
- CAN_BUILD_LIBDVDCSS=3D1
- AC_CHECK_HEADERS(sys/cdio.h sys/dvdio.h linux/cdrom.h dvd.h)
- BSD_DVD_STRUCT=3D0
- LINUX_DVD_STRUCT=3D0
- OPENBSD_DVD_STRUCT=3D0
- dnl
- dnl Old FreeBSD: sys/cdio.h
- dnl
- AC_EGREP_HEADER(dvd_struct,sys/cdio.h,[
- AC_DEFINE(DVD_STRUCT_IN_SYS_CDIO_H, 1,
- Define if <sys/cdio.h> defines dvd_struct.)
- AC_EGREP_HEADER(struct dvd_struct,sys/cdio.h,[
- BSD_DVD_STRUCT=3D1],[LINUX_DVD_STRUCT=3D1; OPENBSD_D=
VD_STRUCT=3D1])
- ])
- dnl
- dnl Newer FreeBSD: sys/dvdio.h
- dnl
- AC_EGREP_HEADER(dvd_struct,sys/dvdio.h,[
- AC_DEFINE(DVD_STRUCT_IN_SYS_DVDIO_H, 1,
- Define if <sys/dvdio.h> defines dvd_struct.)
- AC_EGREP_HEADER(struct dvd_struct,sys/dvdio.h,[
- BSD_DVD_STRUCT=3D1],[LINUX_DVD_STRUCT=3D1])
- ])
- dnl
- dnl Linux: linux/cdrom.h
- dnl
- AC_EGREP_HEADER(dvd_struct,linux/cdrom.h,[
- AC_DEFINE(DVD_STRUCT_IN_LINUX_CDROM_H, 1,
- Define if <linux/cdrom.h> defines DVD_STRUCT.)
- LINUX_DVD_STRUCT=3D1
- ])
- dnl
- dnl Solaris: sys/scsi/scsi_types.h, sys/scsi/impl/uscsi.h
- dnl
- solaris_uscsi=3Dyes
- AC_CHECK_HEADERS([sys/scsi/scsi_types.h sys/scsi/impl/uscsi.h], [],
- [solaris_uscsi=3Dno; break;])
- AS_IF([test "$solaris_uscsi" =3D "yes"], [
- AC_DEFINE(SOLARIS_USCSI, 1, Have userspace SCSI headers.)
- ])
- dnl
- dnl Darwin
- dnl
- AC_CHECK_HEADER(IOKit/storage/IODVDMediaBSDClient.h,[
- AC_DEFINE(DARWIN_DVD_IOCTL, 1, Have IOKit DVD IOCTL headers)
- DVDCSS_LDFLAGS=3D"-Wl,-framework -Wl,CoreFoundation -Wl,-framework -=
Wl,IOKit"
- ])
- dnl
- dnl Final tests to check what was detected
- dnl
- if test x$LINUX_DVD_STRUCT =3D x1; then
- AC_DEFINE(HAVE_LINUX_DVD_STRUCT, 1,
- Define if Linux-like dvd_struct is defined.)
- if test x$OPENBSD_DVD_STRUCT =3D x1; then
- AC_DEFINE(HAVE_OPENBSD_DVD_STRUCT, 1,
- Define if OpenBSD-like dvd_struct is defined.)
- fi
- else
- if test x$BSD_DVD_STRUCT =3D x1; then
- AC_DEFINE(HAVE_BSD_DVD_STRUCT, 1,
- Define if FreeBSD-like dvd_struct is defined.)
- fi
- fi
-])
-
-CC_CHECK_CFLAGS_APPEND([-Wall -Wextra])
-CC_FLAG_VISIBILITY([
- CC_ATTRIBUTE_VISIBILITY([default], [
- CFLAGS=3D"${CFLAGS} -fvisibility=3Dhidden"
- ])
-])
-
-AM_CONDITIONAL(SYS_MSVC, test "${SYS_MSVC}" =3D "1")
-
-AC_ARG_ENABLE([doc],
- AS_HELP_STRING([--disable-doc], [Disable building (with Doxygen) and i=
nstalling API documentation @<:@default=3Dauto@:@>]))
-
-AS_IF([test "x$enable_doc" !=3D "xno"], [
- AC_PATH_PROG([DOXYGEN], [doxygen])
-])
-
-AS_IF([test "x$DOXYGEN" =3D "x"], [
- AS_IF([test "x$enable_doc" =3D "xyes"], [
- AC_MSG_ERROR([You need Doxygen to build API documentation])
- ])
-])
-AM_CONDITIONAL([APIDOC], [test "x$DOXYGEN" !=3D "x"])
-
-AC_PATH_PROG([GIT], [git])
-AM_CONDITIONAL([GIT], [test "x$GIT" !=3D "x"])
-
-dnl export library version number
-DVDCSS_VERSION_MAJOR=3Ddvdcss_major()
-DVDCSS_VERSION_MINOR=3Ddvdcss_minor()
-DVDCSS_VERSION_MICRO=3Ddvdcss_micro()
-AC_SUBST(DVDCSS_VERSION_MAJOR)
-AC_SUBST(DVDCSS_VERSION_MINOR)
-AC_SUBST(DVDCSS_VERSION_MICRO)
-
-AC_SUBST(DVDCSS_LDFLAGS)
-AC_OUTPUT([
- Makefile
- libdvdcss.spec
- doc/doxygen.cfg
- src/libdvdcss.pc
- src/dvdcss/version.h
-])
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
m4/attributes.m4 deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,295 +0,0 @@
-dnl Macros to check the presence of generic (non-typed) symbols.
-dnl Copyright (c) 2006-2007 Diego Petten=C3=B2 <[email protected]>
-dnl Copyright (c) 2006-2007 xine project
-dnl
-dnl This program is free software; you can redistribute it and/or modify=
-dnl it under the terms of the GNU General Public License as published by=
-dnl the Free Software Foundation; either version 2, or (at your option)
-dnl any later version.
-dnl
-dnl This program is distributed in the hope that it will be useful,
-dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
-dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-dnl GNU General Public License for more details.
-dnl
-dnl You should have received a copy of the GNU General Public License
-dnl along with this program; if not, write to the Free Software
-dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-dnl 02110-1301, USA.
-dnl
-dnl As a special exception, the copyright owners of the
-dnl macro gives unlimited permission to copy, distribute and modify the
-dnl configure scripts that are the output of Autoconf when processing th=
e
-dnl Macro. You need not follow the terms of the GNU General Public
-dnl License when using or distributing such scripts, even though portion=
s
-dnl of the text of the Macro appear in them. The GNU General Public
-dnl License (GPL) does govern all other use of the material that
-dnl constitutes the Autoconf Macro.
-dnl
-dnl This special exception to the GPL applies to versions of the
-dnl Autoconf Macro released by this project. When you make and
-dnl distribute a modified version of the Autoconf Macro, you may extend
-dnl this special exception to the GPL to apply to your modified version =
as
-dnl well.
-
-dnl Check if the flag is supported by compiler
-dnl CC_CHECK_CFLAGS_SILENT([FLAG], [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUN=
D])
-
-AC_DEFUN([CC_CHECK_CFLAGS_SILENT], [
- AC_CACHE_VAL(AS_TR_SH([cc_cv_cflags_$1]),
- [ac_save_CFLAGS=3D"$CFLAGS"
- CFLAGS=3D"$CFLAGS $1"
- AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return 0; }])],
- [eval "AS_TR_SH([cc_cv_cflags_$1])=3D'yes'"],
- [eval "AS_TR_SH([cc_cv_cflags_$1])=3D'no'"])
- CFLAGS=3D"$ac_save_CFLAGS"
- ])
-
- AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ =3D xyes],
- [$2], [$3])
-])
-
-dnl Check if the flag is supported by compiler (cacheable)
-dnl CC_CHECK_CFLAGS([FLAG], [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND])
-
-AC_DEFUN([CC_CHECK_CFLAGS], [
- AC_CACHE_CHECK([if $CC supports $1 flag],
- AS_TR_SH([cc_cv_cflags_$1]),
- CC_CHECK_CFLAGS_SILENT([$1]) dnl Don't execute actions here!
- )
-
- AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ =3D xyes],
- [$2], [$3])
-])
-
-dnl CC_CHECK_CFLAG_APPEND(FLAG, [action-if-found], [action-if-not-found]=
)
-dnl Check for CFLAG and appends them to CFLAGS if supported
-AC_DEFUN([CC_CHECK_CFLAG_APPEND], [
- AC_CACHE_CHECK([if $CC supports $1 flag],
- AS_TR_SH([cc_cv_cflags_$1]),
- CC_CHECK_CFLAGS_SILENT([$1]) dnl Don't execute actions here!
- )
-
- AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ =3D xyes],
- [CFLAGS=3D"$CFLAGS $1"; $2], [$3])
-])
-
-dnl CC_CHECK_CFLAGS_APPEND([FLAG1 FLAG2], [action-if-found], [action-if-=
not])
-AC_DEFUN([CC_CHECK_CFLAGS_APPEND], [
- for flag in $1; do
- CC_CHECK_CFLAG_APPEND($flag, [$2], [$3])
- done
-])
-
-dnl Check if the flag is supported by linker (cacheable)
-dnl CC_CHECK_LDFLAGS([FLAG], [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND])
-
-AC_DEFUN([CC_CHECK_LDFLAGS], [
- AC_CACHE_CHECK([if $CC supports $1 flag],
- AS_TR_SH([cc_cv_ldflags_$1]),
- [ac_save_LDFLAGS=3D"$LDFLAGS"
- LDFLAGS=3D"$LDFLAGS $1"
- AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return 1; }])],
- [eval "AS_TR_SH([cc_cv_ldflags_$1])=3D'yes'"],
- [eval "AS_TR_SH([cc_cv_ldflags_$1])=3D"])
- LDFLAGS=3D"$ac_save_LDFLAGS"
- ])
-
- AS_IF([eval test x$]AS_TR_SH([cc_cv_ldflags_$1])[ =3D xyes],
- [$2], [$3])
-])
-
-dnl Check for a -Werror flag or equivalent. -Werror is the GCC
-dnl and ICC flag that tells the compiler to treat all the warnings
-dnl as fatal. We usually need this option to make sure that some
-dnl constructs (like attributes) are not simply ignored.
-dnl
-dnl Other compilers don't support -Werror per se, but they support
-dnl an equivalent flag:
-dnl - Sun Studio compiler supports -errwarn=3D%all
-AC_DEFUN([CC_CHECK_WERROR], [
- AC_CACHE_CHECK(
- [for $CC way to treat warnings as errors],
- [cc_cv_werror],
- [CC_CHECK_CFLAGS_SILENT([-Werror], [cc_cv_werror=3D-Werror],
- [CC_CHECK_CFLAGS_SILENT([-errwarn=3D%all], [cc_cv_werror=3D-errwar=
n=3D%all])])
- ])
-])
-
-AC_DEFUN([CC_CHECK_ATTRIBUTE], [
- AC_REQUIRE([CC_CHECK_WERROR])
- AC_CACHE_CHECK([if $CC supports __attribute__(( ifelse([$2], , [$1], [=
$2]) ))],
- AS_TR_SH([cc_cv_attribute_$1]),
- [ac_save_CFLAGS=3D"$CFLAGS"
- CFLAGS=3D"$CFLAGS $cc_cv_werror"
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([$3])],
- [eval "AS_TR_SH([cc_cv_attribute_$1])=3D'yes'"],
- [eval "AS_TR_SH([cc_cv_attribute_$1])=3D'no'"])
- CFLAGS=3D"$ac_save_CFLAGS"
- ])
-
- AS_IF([eval test x$]AS_TR_SH([cc_cv_attribute_$1])[ =3D xyes],
- [AC_DEFINE(
- AS_TR_CPP([SUPPORT_ATTRIBUTE_$1]), 1,
- Define this if the compiler supports __attribute__((ifelse([$2], =
, [$1], [$2]))))
- $4],
- [$5])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_CONSTRUCTOR], [
- CC_CHECK_ATTRIBUTE(
- [constructor],,
- [extern void foo();
- void __attribute__((constructor)) ctor() { foo(); }],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_DESTRUCTOR], [
- CC_CHECK_ATTRIBUTE(
- [destructor],,
- [extern void foo();
- void __attribute__((destructor)) dtor() { foo(); }],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_FORMAT], [
- CC_CHECK_ATTRIBUTE(
- [format], [format(printf, n, n)],
- [void __attribute__((format(printf, 1, 2))) printflike(const char *f=
mt, ...) { fmt =3D (void *)0; }],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_FORMAT_ARG], [
- CC_CHECK_ATTRIBUTE(
- [format_arg], [format_arg(printf)],
- [char *__attribute__((format_arg(1))) gettextlike(const char *fmt) {=
fmt =3D (void *)0; }],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_VISIBILITY], [
- CC_CHECK_ATTRIBUTE(
- [visibility_$1], [visibility("$1")],
- [void __attribute__((visibility("$1"))) $1_function() { }],
- [$2], [$3])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_NONNULL], [
- CC_CHECK_ATTRIBUTE(
- [nonnull], [nonnull()],
- [void __attribute__((nonnull())) some_function(void *foo, void *bar)=
{ foo =3D (void*)0; bar =3D (void*)0; }],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_UNUSED], [
- CC_CHECK_ATTRIBUTE(
- [unused], ,
- [void some_function(void *foo, __attribute__((unused)) void *bar);],=
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_SENTINEL], [
- CC_CHECK_ATTRIBUTE(
- [sentinel], ,
- [void some_function(void *foo, ...) __attribute__((sentinel));],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_DEPRECATED], [
- CC_CHECK_ATTRIBUTE(
- [deprecated], ,
- [void some_function(void *foo, ...) __attribute__((deprecated));],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_ALIAS], [
- CC_CHECK_ATTRIBUTE(
- [alias], [weak, alias],
- [void other_function(void *foo) { }
- void some_function(void *foo) __attribute__((weak, alias("other_fun=
ction")));],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_MALLOC], [
- CC_CHECK_ATTRIBUTE(
- [malloc], ,
- [void * __attribute__((malloc)) my_alloc(int n);],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_PACKED], [
- CC_CHECK_ATTRIBUTE(
- [packed], ,
- [struct astructure { char a; int b; long c; void *d; } __attribute__=
((packed));
- char assert@<:@(sizeof(struct astructure) =3D=3D (sizeof(char)+size=
of(int)+sizeof(long)+sizeof(void*)))-1@:>@;],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_CONST], [
- CC_CHECK_ATTRIBUTE(
- [const], ,
- [int __attribute__((const)) twopow(int n) { return 1 << n; } ],
- [$1], [$2])
-])
-
-AC_DEFUN([CC_FLAG_VISIBILITY], [
- AC_REQUIRE([CC_CHECK_WERROR])
- AC_CACHE_CHECK([if $CC supports -fvisibility=3Dhidden],
- [cc_cv_flag_visibility],
- [cc_flag_visibility_save_CFLAGS=3D"$CFLAGS"
- CFLAGS=3D"$CFLAGS $cc_cv_werror"
- CC_CHECK_CFLAGS_SILENT([-fvisibility=3Dhidden],
- cc_cv_flag_visibility=3D'yes',
- cc_cv_flag_visibility=3D'no')
- CFLAGS=3D"$cc_flag_visibility_save_CFLAGS"])
-
- AS_IF([test "x$cc_cv_flag_visibility" =3D "xyes"],
- [AC_DEFINE([SUPPORT_FLAG_VISIBILITY], 1,
- [Define this if the compiler supports the -fvisibility flag])
- $1],
- [$2])
-])
-
-AC_DEFUN([CC_FUNC_EXPECT], [
- AC_REQUIRE([CC_CHECK_WERROR])
- AC_CACHE_CHECK([if compiler has __builtin_expect function],
- [cc_cv_func_expect],
- [ac_save_CFLAGS=3D"$CFLAGS"
- CFLAGS=3D"$CFLAGS $cc_cv_werror"
- AC_COMPILE_IFELSE(
- [int some_function() {
- int a =3D 3;
- return (int)__builtin_expect(a, 3);
- }],
- [cc_cv_func_expect=3Dyes],
- [cc_cv_func_expect=3Dno])
- CFLAGS=3D"$ac_save_CFLAGS"
- ])
-
- AS_IF([test "x$cc_cv_func_expect" =3D "xyes"],
- [AC_DEFINE([SUPPORT__BUILTIN_EXPECT], 1,
- [Define this if the compiler supports __builtin_expect() function])=
- $1],
- [$2])
-])
-
-AC_DEFUN([CC_ATTRIBUTE_ALIGNED], [
- AC_REQUIRE([CC_CHECK_WERROR])
- AC_CACHE_CHECK([highest __attribute__ ((aligned ())) supported],
- [cc_cv_attribute_aligned],
- [ac_save_CFLAGS=3D"$CFLAGS"
- CFLAGS=3D"$CFLAGS $cc_cv_werror"
- for cc_attribute_align_try in 64 32 16 8 4 2; do
- AC_COMPILE_IFELSE([
- int main(void) {
- static char c __attribute__ ((aligned($cc_attribute_align_tr=
y))) =3D 0;
- return c;
- }], [cc_cv_attribute_aligned=3D$cc_attribute_align_try; break]=
)
- done
- CFLAGS=3D"$ac_save_CFLAGS"
- ])
-
- if test "x$cc_cv_attribute_aligned" !=3D "x"; then
- AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX], [$cc_cv_attribute_align=
ed],
- [Define the highest alignment supported])
- fi
-])
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
msvc/config.h deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,44 +0,0 @@
-/* config.h. Generated by hand. */
-
-/* #undef DARWIN_DVD_IOCTL */
-/* #undef DVD_STRUCT_IN_DVD_H */
-/* #undef DVD_STRUCT_IN_LINUX_CDROM_H */
-/* #undef DVD_STRUCT_IN_SYS_CDIO_H */
-/* #undef DVD_STRUCT_IN_SYS_DVDIO_H */
-/* #undef HAVE_BSD_DVD_STRUCT */
-#define HAVE_DLFCN_H 1
-/* #undef HAVE_DVD_H */
-/* #undef HAVE_INTTYPES_H */
-/* #undef HAVE_LINUX_CDROM_H */
-/* #undef HAVE_LINUX_DVD_STRUCT */
-#define HAVE_MEMORY_H 1
-/* #undef HAVE_OPENBSD_DVD_STRUCT */
-#define HAVE_STDLIB_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_STRING_H 1
-/* #undef HAVE_SYS_CDIO_H */
-/* #undef HAVE_SYS_DVDIO_H */
-#define HAVE_SYS_IOCTL_H 1
-/* #undef HAVE_SYS_PARAM_H */
-#define HAVE_SYS_STAT_H 1
-#define HAVE_SYS_TYPES_H 1
-/* #undef HAVE_UNISTD_H */
-#define HAVE_WINDOWS_H 1
-#define HAVE_WINIOCTL_H 1
-/* #undef HAVE__SYS_DEV_SCSI_SCSI_IOCTL_H */
-#define PACKAGE "libdvdcss"
-#define PACKAGE_BUGREPORT ""
-#define PACKAGE_NAME "libdvdcss"
-#define PACKAGE_STRING "libdvdcss 1.3.0"
-#define PACKAGE_TARNAME "libdvdcss"
-#define PACKAGE_VERSION "1.3.0"
-/* #undef SOLARIS_USCSI */
-#define STDC_HEADERS 1
-#define VERSION "1.3.0"
-#define _WIN32_IE 0x0501
-/* #undef const */
-/* #undef inline */
-/* #undef size_t */
-#define HAVE_BROKEN_MKDIR 1
-#define _CRT_SECURE_NO_WARNINGS 1
-#define LIBDVDCSS_EXPORTS 1
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
msvc/csstest.dsp deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,104 +0,0 @@
-# Microsoft Developer Studio Project File - Name=3D"csstest" - Package O=
wner=3D<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-
-CFG=3Dcsstest - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE=
,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE =
-!MESSAGE NMAKE /f "csstest.mak".
-!MESSAGE =
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE =
-!MESSAGE NMAKE /f "csstest.mak" CFG=3D"csstest - Win32 Debug"
-!MESSAGE =
-!MESSAGE Possible choices for configuration are:
-!MESSAGE =
-!MESSAGE "csstest - Win32 Release" (based on "Win32 (x86) Console Applic=
ation")
-!MESSAGE "csstest - Win32 Debug" (based on "Win32 (x86) Console Applicat=
ion")
-!MESSAGE =
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=3Dcl.exe
-RSC=3Drc.exe
-
-!IF "$(CFG)" =3D=3D "csstest - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" =
/D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /O2 /I "." /I "..\src" /D "WIN32" /D "NDEBUG" =
/D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=3Dbscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=3Dlink.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg3=
2.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib=
odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib=
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbc=
cp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib=
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbc=
cp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib adva=
pi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.=
lib /nologo /subsystem:console /machine:I386
-
-!ELSEIF "$(CFG)" =3D=3D "csstest - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "csstest___Win32_Debug"
-# PROP BASE Intermediate_Dir "csstest___Win32_Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "csstest___Win32_Debug"
-# PROP Intermediate_Dir "csstest___Win32_Debug"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_C=
ONSOLE" /D "_MBCS" /YX /FD /GZ /c
-# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "." /I "..\src" /D "WIN32" /D "=
_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=3Dbscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=3Dlink.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg3=
2.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib=
odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib=
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbc=
cp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib=
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbc=
cp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib adva=
pi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.=
lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-
-!ENDIF =
-
-# Begin Target
-
-# Name "csstest - Win32 Release"
-# Name "csstest - Win32 Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=3D..\test\csstest.c
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=3D..\src\dvdcss\dvdcss.h
-# End Source File
-# End Group
-# Begin Group "Resource Files"
-
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"=
-# End Group
-# End Target
-# End Project
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
msvc/libdvdcss.dsp deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,144 +0,0 @@
-# Microsoft Developer Studio Project File - Name=3D"libdvdcss" - Package=
Owner=3D<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Static Library" 0x0104
-
-CFG=3Dlibdvdcss - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE=
,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE =
-!MESSAGE NMAKE /f "libdvdcss.mak".
-!MESSAGE =
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE =
-!MESSAGE NMAKE /f "libdvdcss.mak" CFG=3D"libdvdcss - Win32 Debug"
-!MESSAGE =
-!MESSAGE Possible choices for configuration are:
-!MESSAGE =
-!MESSAGE "libdvdcss - Win32 Release" (based on "Win32 (x86) Static Libra=
ry")
-!MESSAGE "libdvdcss - Win32 Debug" (based on "Win32 (x86) Static Library=
")
-!MESSAGE =
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=3Dcl.exe
-RSC=3Drc.exe
-
-!IF "$(CFG)" =3D=3D "libdvdcss - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D =
"_LIB" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /O2 /I "." /D "NDEBUG" /D "WIN32" /D "_MBCS" /=
D "_LIB" /D PATH_MAX=3D2048 /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=3Dbscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LIB32=3Dlink.exe -lib
-# ADD BASE LIB32 /nologo
-# ADD LIB32 /nologo
-
-!ELSEIF "$(CFG)" =3D=3D "libdvdcss - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "Debug"
-# PROP Intermediate_Dir "Debug"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_M=
BCS" /D "_LIB" /YX /FD /GZ /c
-# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "." /D "_DEBUG" /D "WIN32" /D "=
_MBCS" /D "_LIB" /D PATH_MAX=3D2048 /YX /FD /GZ /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=3Dbscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LIB32=3Dlink.exe -lib
-# ADD BASE LIB32 /nologo
-# ADD LIB32 /nologo
-
-!ENDIF =
-
-# Begin Target
-
-# Name "libdvdcss - Win32 Release"
-# Name "libdvdcss - Win32 Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=3D..\src\css.c
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\device.c
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\error.c
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\ioctl.c
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\libdvdcss.c
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=3D..\src\common.h
-# End Source File
-# Begin Source File
-
-SOURCE=3D.\config.h
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\css.h
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\csstables.h
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\device.h
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\dvdcss\dvdcss.h
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\ioctl.h
-# End Source File
-# Begin Source File
-
-SOURCE=3D..\src\libdvdcss.h
-# End Source File
-# End Group
-# End Target
-# End Project
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
msvc/libdvdcss.vcxproj deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,133 +0,0 @@
-=EF=BB=BF<?xml version=3D"1.0" encoding=3D"utf-8"?>
-<Project DefaultTargets=3D"Build" ToolsVersion=3D"4.0" xmlns=3D"http://s=
chemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup Label=3D"ProjectConfigurations">
- <ProjectConfiguration Include=3D"Debug|Win32">
- <Configuration>Debug</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include=3D"Release|Win32">
- <Configuration>Release</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- </ItemGroup>
- <PropertyGroup Label=3D"Globals">
- <SccProjectName />
- <SccLocalPath />
- <ProjectGuid>{50F2BF62-8520-4B37-97DD-578EA282EC04}</ProjectGuid>
- </PropertyGroup>
- <Import Project=3D"$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
- <PropertyGroup Condition=3D"'$(Configuration)|$(Platform)'=3D=3D'Debug=
|Win32'" Label=3D"Configuration">
- <ConfigurationType>StaticLibrary</ConfigurationType>
- <PlatformToolset>v110</PlatformToolset>
- <UseOfMfc>false</UseOfMfc>
- <CharacterSet>MultiByte</CharacterSet>
- </PropertyGroup>
- <PropertyGroup Condition=3D"'$(Configuration)|$(Platform)'=3D=3D'Relea=
se|Win32'" Label=3D"Configuration">
- <ConfigurationType>StaticLibrary</ConfigurationType>
- <PlatformToolset>v110</PlatformToolset>
- <UseOfMfc>false</UseOfMfc>
- <CharacterSet>MultiByte</CharacterSet>
- </PropertyGroup>
- <Import Project=3D"$(VCTargetsPath)\Microsoft.Cpp.props" />
- <ImportGroup Label=3D"ExtensionSettings">
- </ImportGroup>
- <ImportGroup Condition=3D"'$(Configuration)|$(Platform)'=3D=3D'Debug|W=
in32'" Label=3D"PropertySheets">
- <Import Project=3D"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.pro=
ps" Condition=3D"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.pr=
ops')" Label=3D"LocalAppDataPlatform" />
- <Import Project=3D"$(VCTargetsPath)Microsoft.Cpp.UpgradeFromVC60.pro=
ps" />
- </ImportGroup>
- <ImportGroup Condition=3D"'$(Configuration)|$(Platform)'=3D=3D'Release=
|Win32'" Label=3D"PropertySheets">
- <Import Project=3D"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.pro=
ps" Condition=3D"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.pr=
ops')" Label=3D"LocalAppDataPlatform" />
- <Import Project=3D"$(VCTargetsPath)Microsoft.Cpp.UpgradeFromVC60.pro=
ps" />
- </ImportGroup>
- <PropertyGroup Label=3D"UserMacros" />
- <PropertyGroup Condition=3D"'$(Configuration)|$(Platform)'=3D=3D'Relea=
se|Win32'">
- <OutDir>.\Release\</OutDir>
- <IntDir>.\Release\</IntDir>
- <LinkIncremental>false</LinkIncremental>
- </PropertyGroup>
- <PropertyGroup Condition=3D"'$(Configuration)|$(Platform)'=3D=3D'Debug=
|Win32'">
- <OutDir>.\Debug\</OutDir>
- <IntDir>.\Debug\</IntDir>
- <LinkIncremental>true</LinkIncremental>
- </PropertyGroup>
- <ItemDefinitionGroup Condition=3D"'$(Configuration)|$(Platform)'=3D=3D=
'Release|Win32'">
- <ClCompile>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- <InlineFunctionExpansion>Default</InlineFunctionExpansion>
- <StringPooling>true</StringPooling>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <Optimization>MaxSpeed</Optimization>
- <SuppressStartupBanner>true</SuppressStartupBanner>
- <WarningLevel>Level3</WarningLevel>
- <AdditionalIncludeDirectories>.;%(AdditionalIncludeDirectories)</A=
dditionalIncludeDirectories>
- <PreprocessorDefinitions>NDEBUG;WIN32;_LIB;PATH_MAX=3D2048;%(Prepr=
ocessorDefinitions)</PreprocessorDefinitions>
- <AssemblerListingLocation>.\Release\</AssemblerListingLocation>
- <PrecompiledHeaderOutputFile>.\Release\libdvdcss.pch</PrecompiledH=
eaderOutputFile>
- <ObjectFileName>.\Release\</ObjectFileName>
- <ProgramDataBaseFileName>.\Release\</ProgramDataBaseFileName>
- </ClCompile>
- <ResourceCompile>
- <Culture>0x0409</Culture>
- <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</Prepro=
cessorDefinitions>
- </ResourceCompile>
- <Bscmake>
- <SuppressStartupBanner>true</SuppressStartupBanner>
- <OutputFile>.\Release\libdvdcss.bsc</OutputFile>
- </Bscmake>
- <Lib>
- <SuppressStartupBanner>true</SuppressStartupBanner>
- <OutputFile>.\Release\libdvdcss.lib</OutputFile>
- </Lib>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition=3D"'$(Configuration)|$(Platform)'=3D=3D=
'Debug|Win32'">
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
- <InlineFunctionExpansion>Default</InlineFunctionExpansion>
- <FunctionLevelLinking>false</FunctionLevelLinking>
- <Optimization>Disabled</Optimization>
- <SuppressStartupBanner>true</SuppressStartupBanner>
- <WarningLevel>Level3</WarningLevel>
- <MinimalRebuild>true</MinimalRebuild>
- <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
- <AdditionalIncludeDirectories>.;%(AdditionalIncludeDirectories)</A=
dditionalIncludeDirectories>
- <PreprocessorDefinitions>_DEBUG;WIN32;_LIB;PATH_MAX=3D2048;%(Prepr=
ocessorDefinitions)</PreprocessorDefinitions>
- <AssemblerListingLocation>.\Debug\</AssemblerListingLocation>
- <PrecompiledHeaderOutputFile>.\Debug\libdvdcss.pch</PrecompiledHea=
derOutputFile>
- <ObjectFileName>.\Debug\</ObjectFileName>
- <ProgramDataBaseFileName>.\Debug\</ProgramDataBaseFileName>
- <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
- </ClCompile>
- <ResourceCompile>
- <Culture>0x0409</Culture>
- <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</Prepro=
cessorDefinitions>
- </ResourceCompile>
- <Bscmake>
- <SuppressStartupBanner>true</SuppressStartupBanner>
- <OutputFile>.\Debug\libdvdcss.bsc</OutputFile>
- </Bscmake>
- <Lib>
- <SuppressStartupBanner>true</SuppressStartupBanner>
- <OutputFile>.\Debug\libdvdcss.lib</OutputFile>
- </Lib>
- </ItemDefinitionGroup>
- <ItemGroup>
- <ClCompile Include=3D"..\src\css.c" />
- <ClCompile Include=3D"..\src\device.c" />
- <ClCompile Include=3D"..\src\error.c" />
- <ClCompile Include=3D"..\src\ioctl.c" />
- <ClCompile Include=3D"..\src\libdvdcss.c" />
- </ItemGroup>
- <ItemGroup>
- <ClInclude Include=3D"..\src\common.h" />
- <ClInclude Include=3D"config.h" />
- <ClInclude Include=3D"..\src\css.h" />
- <ClInclude Include=3D"..\src\csstables.h" />
- <ClInclude Include=3D"..\src\device.h" />
- <ClInclude Include=3D"..\src\dvdcss\dvdcss.h" />
- <ClInclude Include=3D"..\src\ioctl.h" />
- <ClInclude Include=3D"..\src\libdvdcss.h" />
- </ItemGroup>
- <Import Project=3D"$(VCTargetsPath)\Microsoft.Cpp.targets" />
- <ImportGroup Label=3D"ExtensionTargets">
- </ImportGroup>
-</Project>
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
msvc/workspace.dsw deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,44 +0,0 @@
-Microsoft Developer Studio Workspace File, Format Version 6.00
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
-
-########################################################################=
#######
-
-Project: "csstest"=3D.\csstest.dsp - Package Owner=3D<4>
-
-Package=3D<5>
-{{{
-}}}
-
-Package=3D<4>
-{{{
- Begin Project Dependency
- Project_Dep_Name libdvdcss
- End Project Dependency
-}}}
-
-########################################################################=
#######
-
-Project: "libdvdcss"=3D.\libdvdcss.dsp - Package Owner=3D<4>
-
-Package=3D<5>
-{{{
-}}}
-
-Package=3D<4>
-{{{
-}}}
-
-########################################################################=
#######
-
-Global:
-
-Package=3D<5>
-{{{
-}}}
-
-Package=3D<3>
-{{{
-}}}
-
-########################################################################=
#######
-
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
src/libdvdcss.pc.in deleted
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
@@ -1,10 +0,0 @@
-prefix=3D@prefix@
-exec_prefix=3D@exec_prefix@
-libdir=3D@libdir@
-includedir=3D@includedir@
-
-Name: libdvdcss
-Description: DVD access and decryption library.
-Version: @VERSION@
-Libs: -L${libdir} -ldvdcss
-Cflags: -I${includedir} -I${includedir}/dvdcss
View it on GitLab: https://code.videolan.org/videolan/libdvdcss/-/commit/=
76c4f213b61021651b80baf8884574017bf0d1bd
-- =
View it on GitLab: https://code.videolan.org/videolan/libdvdcss/-/commit/=
76c4f213b61021651b80baf8884574017bf0d1bd
You're receiving this email because of your account on code.videolan.org.=
VideoLAN code repository instance=
----==_mimepart_68bb49bc456de_80cf91f143c219198fa--
--===============0306657122662387208==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
libdvdcss-devel mailing list
[email protected]
https://mailman.videolan.org/listinfo/libdvdcss-devel
--===============0306657122662387208==--