Commit 2c92f038 authored by Cyril Deguet's avatar Cyril Deguet

* configure.ac: added the skins2 module (_should_ work ;)

parent b7dc5e88
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.138 2004/01/02 23:22:37 zorglub Exp $ dnl $Id: configure.ac,v 1.139 2004/01/03 23:37:08 asmax Exp $
AC_INIT(vlc,0.7.0) AC_INIT(vlc,0.7.0)
...@@ -1940,7 +1940,7 @@ dnl ...@@ -1940,7 +1940,7 @@ dnl
dnl MP4 module dnl MP4 module
dnl dnl
AC_CHECK_HEADERS(zlib.h, [ AC_CHECK_HEADERS(zlib.h, [
AX_ADD_LDFLAGS([mp4 skins sap],[-lz]) AX_ADD_LDFLAGS([mp4 skins skins2 sap],[-lz])
] ) ] )
...@@ -1948,7 +1948,7 @@ dnl ...@@ -1948,7 +1948,7 @@ dnl
dnl skins module dnl skins module
dnl dnl
AC_CHECK_HEADERS(libtar.h, [ AC_CHECK_HEADERS(libtar.h, [
AX_ADD_LDFLAGS([skins],[-ltar]) AX_ADD_LDFLAGS([skins skins2],[-ltar])
] ) ] )
...@@ -2724,20 +2724,38 @@ if test "${enable_skins}" != "no"; then ...@@ -2724,20 +2724,38 @@ if test "${enable_skins}" != "no"; then
AX_ADD_LDFLAGS([skins],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32]) AX_ADD_LDFLAGS([skins],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
else if test "${enable_skins}" = "yes"; then else if test "${enable_skins}" = "yes"; then
IMLIB2_PATH="${PATH}"
AC_PATH_PROG(IMLIB2_CONFIG_SKINS, imlib2-config, no, ${IMLIB2_PATH})
if test "${IMLIB2_CONFIG_SKINS}" = "no"; then
AC_MSG_ERROR([Couldn't find the imlib2 package. You can download imlib2 from http://enlightenment.org/, or configure with --disable-skins.])
fi
AX_ADD_PLUGINS([skins]) AX_ADD_PLUGINS([skins])
ALIASES="${ALIASES} svlc" ALIASES="${ALIASES} svlc"
AX_ADD_CPPFLAGS([skins],[-Imodules/gui/skins -I${x_includes} `${IMLIB2_CONFIG_SKINS} --cflags` -DX11_SKINS]) AX_ADD_CPPFLAGS([skins],[-Imodules/gui/skins -I${x_includes} -I/usr/include/freetype2 -DX11_SKINS])
AX_ADD_CXXFLAGS([skins],[-O2 -fno-rtti]) AX_ADD_CXXFLAGS([skins],[-O2 -fno-rtti])
AX_ADD_LDFLAGS([skins],[-L${x_libraries} -lXext -lX11 `${IMLIB2_CONFIG_SKINS} --libs`]) AX_ADD_LDFLAGS([skins],[-L${x_libraries} -lImlib2 -lXext -lX11 -lfreetype -lpng -lz ])
fi fi fi fi
fi fi
dnl
dnl Skins2 module
dnl
AC_ARG_ENABLE(skins2,
[ --enable-skins2 Skins2 interface module (experimental)])
if test "${enable_skins2}" != "no"; then
if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
AX_ADD_PLUGINS([skins2])
ALIASES="${ALIASES} svlc"
AX_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2])
AX_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
AX_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
else if test "${enable_skins2}" = "yes"; then
AX_ADD_PLUGINS([skins2])
ALIASES="${ALIASES} svlc"
AX_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -I${x_includes} -I/usr/include/freetype2 -DX11_SKINS])
AX_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
AX_ADD_LDFLAGS([skins2],[-L${x_libraries} -lXext -lX11 -lfreetype -lpng -lz ])
fi fi
fi
dnl dnl
dnl Gtk+ module dnl Gtk+ module
dnl dnl
...@@ -2810,20 +2828,20 @@ dnl fi ...@@ -2810,20 +2828,20 @@ dnl fi
dnl dnl
dnl PDA Gtk+2 module dnl PDA Gtk+2 module
dnl dnl
AC_ARG_ENABLE(pda, #AC_ARG_ENABLE(pda,
[ --enable-pda PDA interface needs Gtk2 support (default disabled)]) # [ --enable-pda PDA interface needs Gtk2 support (default disabled)])
if test "x${enable_pda}" = "xyes" #if test "x${enable_pda}" = "xyes"
then #then
PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0]) # PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}]) # AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}]) # AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
AX_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}]) # AX_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
AX_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}]) # AX_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
AX_ADD_PLUGINS([pda]) # AX_ADD_PLUGINS([pda])
if test "${SYS}" != "mingw32"; then # if test "${SYS}" != "mingw32"; then
NEED_GTK2_MAIN=yes # NEED_GTK2_MAIN=yes
fi # fi
fi #fi
dnl dnl
dnl Gnome module dnl Gnome module
...@@ -3559,6 +3577,7 @@ AC_CONFIG_FILES([ ...@@ -3559,6 +3577,7 @@ AC_CONFIG_FILES([
modules/gui/qnx/Makefile modules/gui/qnx/Makefile
modules/gui/qt/Makefile modules/gui/qt/Makefile
modules/gui/skins/Makefile modules/gui/skins/Makefile
modules/gui/skins2/Makefile
modules/gui/wxwindows/Makefile modules/gui/wxwindows/Makefile
modules/misc/Makefile modules/misc/Makefile
modules/misc/dummy/Makefile modules/misc/dummy/Makefile
......
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