Commit 0d691469 authored by Sam Hocevar's avatar Sam Hocevar

  * ./configure.in: added --enable-intfwin to enable the win32 interface and
    --with-bcbuilder to tell make where to find Borland C++ Builder.
parent e98aae28
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
HEAD HEAD
* ./configure.in: added --enable-intfwin to enable the win32 interface and
--with-bcbuilder to tell make where to find Borland C++ Builder.
* ./plugins/win32/intfwin.bpr: we now build intfwin.so at the right place. * ./plugins/win32/intfwin.bpr: we now build intfwin.so at the right place.
* ./plugins/win32/Makefile: intfwin.so can be built using commandline. * ./plugins/win32/Makefile: intfwin.so can be built using commandline.
* ./configure.in, ./include/threads.h, ./include/common.h: a custom defs.h * ./configure.in, ./include/threads.h, ./include/common.h: a custom defs.h
......
...@@ -48,8 +48,9 @@ CC = @CC@ ...@@ -48,8 +48,9 @@ CC = @CC@
CFLAGS = @CFLAGS@ CFLAGS = @CFLAGS@
SHELL = @SHELL@ SHELL = @SHELL@
RANLIB = @RANLIB@ RANLIB = @RANLIB@
WINDRES = @WINDRES@
MOC = @MOC@ MOC = @MOC@
WINDRES = @WINDRES@
BCBUILDER = @BCBUILDER@
DLL_PATH = @DLL_PATH@ DLL_PATH = @DLL_PATH@
# #
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -1208,14 +1208,20 @@ AC_ARG_ENABLE(qnx, ...@@ -1208,14 +1208,20 @@ AC_ARG_ENABLE(qnx,
fi fi
dnl dnl
dnl Windows MFC interface module dnl Windows native interface module, built with Borland C++ Builder
dnl dnl
AC_ARG_ENABLE(win32, AC_ARG_ENABLE(intfwin,
[ --enable-win32 Win32 interface support (default disabled)], [ --enable-intfwin Win32 interface support (default disabled)],
[ if test "x$enableval" != "xno" [ if test "x$enableval" != "xno"
then
AC_ARG_WITH(bcbuilder,
[ --with-bcbuilder=PATH Borland C++ Builder installation path])
if test "x$with_bcbuilder" != "x"
then then
PLUGINS="${PLUGINS} win32" BCBUILDER="$with_bcbuilder"
fi ]) fi
PLUGINS="${PLUGINS} intfwin"
fi ])
dnl dnl
dnl ncurses module dnl ncurses module
...@@ -1419,6 +1425,7 @@ AC_SUBST(TUNING) ...@@ -1419,6 +1425,7 @@ AC_SUBST(TUNING)
AC_SUBST(RELEASE) AC_SUBST(RELEASE)
AC_SUBST(MOC) AC_SUBST(MOC)
AC_SUBST(WINDRES) AC_SUBST(WINDRES)
AC_SUBST(BCBUILDER)
AC_SUBST(DLL_PATH) AC_SUBST(DLL_PATH)
AC_SUBST(VLC_PACKAGE) AC_SUBST(VLC_PACKAGE)
AC_SUBST(VLC_VERSION) AC_SUBST(VLC_VERSION)
......
...@@ -308,10 +308,10 @@ ...@@ -308,10 +308,10 @@
#undef HAVE_LIBST #undef HAVE_LIBST
/* Package name */ /* Package name */
#undef PACKAGE #undef VLC_PACKAGE
/* Package version */ /* Package version */
#undef VERSION #undef VLC_VERSION
/* Define if you have the iconv() function. */ /* Define if you have the iconv() function. */
#undef HAVE_ICONV #undef HAVE_ICONV
......
...@@ -8,7 +8,6 @@ waveout_SOURCES = waveout.c ...@@ -8,7 +8,6 @@ waveout_SOURCES = waveout.c
# we override everything by setting intfwin_CUSTOM # we override everything by setting intfwin_CUSTOM
# #
intfwin_CUSTOM = yes intfwin_CUSTOM = yes
BCBUILDER = "D:/Program Files/CBuilder5"
../intfwin.so: Makefile ../intfwin.so: Makefile
rm -f intfwin.mak rm -f intfwin.mak
......
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