Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Jul 2008 10:47:52 +0300
From:      "Okalany Daniel" <daniel@one2net.co.ug>
To:        "Garrett Cooper" <yanefbsd@gmail.com>
Cc:        Mike Brown <mike@skew.org>, =?ISO-8859-1?Q?Rafa=EBl_Carr=E9?= <funman@videolan.org>, Peter Pentchev <roam@ringlet.net>, freebsd-ports@freebsd.org
Subject:   Re: Vlc
Message-ID:  <28f643d90807230047w455eaa8qcfa8ef62c89cd217@mail.gmail.com>
In-Reply-To: <E48FE37B-C79B-41AB-8062-A90FEFD9B8A8@gmail.com>
References:  <28f643d90807170416i333b12ceqd96845577b27890c@mail.gmail.com> <7d6fde3d0807180314l4489e21jd7934d022f0c726f@mail.gmail.com> <28f643d90807180346h74aff268o94b52103d55c1e63@mail.gmail.com> <20080718113809.GA1175@straylight.m.ringlet.net> <20080719100140.GA3136@zod> <7d6fde3d0807191247u57c78ck4aac63a81f53ed7b@mail.gmail.com> <28f643d90807220132h1921a9adi7087c55bc1005bac@mail.gmail.com> <7d6fde3d0807220805w486c6028g69a8d417f5aae264@mail.gmail.com> <72c38b9b0807220846q5a77acbao8c070d8690d51ccc@mail.gmail.com> <E48FE37B-C79B-41AB-8062-A90FEFD9B8A8@gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, Jul 22, 2008 at 9:17 PM, Garrett Cooper <yanefbsd@gmail.com> wrote:

> On Jul 22, 2008, at 8:46 AM, Rafa=EBl Carr=E9 wrote:
>
>  2008/7/22 Garrett Cooper <yanefbsd@gmail.com>:
>>
>>> On Tue, Jul 22, 2008 at 1:32 AM, Okalany Daniel <daniel@one2net.co.ug>
>>> wrote:
>>>
>>>>
>>>>
>>>> On Sat, Jul 19, 2008 at 10:47 PM, Garrett Cooper <yanefbsd@gmail.com>
>>>> wrote:
>>>>
>>>>>
>>>>> On Sat, Jul 19, 2008 at 3:01 AM, Rafa=EBl Carr=E9 <rafael.carre@gmail=
.com>
>>>>> wrote:
>>>>>
>>>>>> If you feel so, you can make all these options conditional on
>>>>>> WITHOUT_X
>>>>>> and send me a patch ;)
>>>>>>
>>>>>> i.e. for skins2 that would be:
>>>>>> .if defined(WITH_SKINS) && !defined(WITHOUT_SKINS) &&
>>>>>> !defined(WITHOUT_X)
>>>>>>
>>>>>
>> That is the way to go in my opinion.
>>
>>  Thanks alot guys.. The options that worked for me ( to install text onl=
y
>>>> vlc) are:
>>>> ./configure --disable-x11 --disable-xvideo --disable-glx --disable-sdl
>>>> --disable-sd --disable-wxwidgets --disable-skins2 --disable-freetype
>>>> --disable-mad --disable-ffmpeg
>>>>
>>>
>> Do you have libX11 installed anyway on your system ?
>>
>> It would be clever to build VLC the same way on a system with libX11
>> and then verify each .so built, to see if they are not linked with
>> libX11.
>>
>> That is to be sure autodetection will not enable something you don't
>> want, i.e. not enabled if libX11 was not detected, but enabled if it
>> was detected.
>> If this is the case, that would mean more --disable-xx are required.
>>
>> The debian people verify each plugin (prefix/lib/vlc/**.so) when
>> building vlc-nox package.
>>
>> Extract from debian/rules :
>>
>>   # Check that we did not install a plugin linked with libX11 in vlc-nox
>> ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
>>   BORKED=3Dno; \
>>   for file in $$(find debian/vlc-nox/usr/lib/vlc -name '*.so'); do \
>>     if ldd $$file | grep -q libX11; then \
>>       BORKED=3Dyes; \
>>       echo $$file depends on libX11; \
>>     fi; \
>>   done; \
>>   if test "$$BORKED" =3D yes; then exit 1; fi
>> endif
>>
>>  Hi,
>>>   I'm contacting you because you are listed as the maintainer on
>>> Freshports for the multimedia/vlc port for FreeBSD.
>>>   The user cited above, Okalany, was interested in compiling VLC
>>> without X11 support to act as a multimedia server, but currently the
>>> port doesn't allow for that type of functionality at this time.
>>>
>>
>> Ok
>>
>>    However, Okalany was able to get the source to compile without
>>> X11 using the above options to configure (don't believe the
>>> --disable-mad and --disable-ffmpeg options are required, but you
>>> probably know better than us about that :)...), so we were wondering
>>> whether or not the port could be modified to add a WITHOUT_X11 knob.
>>>
>>
>> Of course, but I am lazy to do the patch, so you have to do the work :)
>> However I'm glad to help if you have trouble
>>
>>  Thanks and we hope to hear back from you soon,
>>> -Garrett, Okalany, et all
>>>
>>
>
> Rafael:
>
> Ah, didn't realize that was you. rofl... As the saying goes, good thing y=
ou
> weren't a snake -- otherwise I'd be dead =3Do....
>
> I'll fix up a patch for you soon.
>
> Okalany:
> Do this on a compiled tree please --
>
> sh -c 'for i in `find -type f`; if ldd "$i" | grep -q libX11; then echo "=
$i
> depends on libX11.so"; fi; done'


The command above didn't work for me so i used(because i think it would
amount to the same):

find . -type f -print | xargs ldd 2>/dev/null | grep -B 10 -A 4 libX11

Whose output is:

        libthr.so.3 =3D> /lib/libthr.so.3 (0x281aa000)
        libc.so.7 =3D> /lib/libc.so.7 (0x28089000)
./modules/access/vcd/libvcd_plugin.so:
        libthr.so.3 =3D> /lib/libthr.so.3 (0x281a4000)
        libc.so.7 =3D> /lib/libc.so.7 (0x28089000)
./modules/access/screen/libscreen_plugin.so:
        libthr.so.3 =3D> /lib/libthr.so.3 (0x281a1000)
        libSM.so.6 =3D> /usr/local/lib/libSM.so.6 (0x281b6000)
        libICE.so.6 =3D> /usr/local/lib/libICE.so.6 (0x281be000)
        libXext.so.6 =3D> /usr/local/lib/libXext.so.6 (0x281d5000)
*        libX11.so.6 =3D> /usr/local/lib/libX11.so.6 (0x281e3000)*
        libXdmcp.so.6 =3D> /usr/local/lib/libXdmcp.so.6 (0x282d0000)
        librpcsvc.so.4 =3D> /usr/lib/librpcsvc.so.4 (0x282d5000)
        libXau.so.6 =3D> /usr/local/lib/libXau.so.6 (0x282de000)
        libc.so.7 =3D> /lib/libc.so.7 (0x28089000)
--
        libc.so.7 =3D> /lib/libc.so.7 (0x28089000)
./modules/stream_out/libstream_out_mosaic_bridge_plugin.so:
        libthr.so.3 =3D> /lib/libthr.so.3 (0x281a2000)
        libc.so.7 =3D> /lib/libc.so.7 (0x28089000)
./modules/video_output/libopengl_plugin.so:
        libthr.so.3 =3D> /lib/libthr.so.3 (0x281a2000)
        libGL.so.1 =3D> /usr/local/lib/libGL.so.1 (0x281b7000)
        libGLU.so.1 =3D> /usr/local/lib/libGLU.so.1 (0x28218000)
        libm.so.5 =3D> /lib/libm.so.5 (0x28295000)
        libc.so.7 =3D> /lib/libc.so.7 (0x28089000)
*        libX11.so.6 =3D> /usr/local/lib/libX11.so.6 (0x282ae000)*
        libXext.so.6 =3D> /usr/local/lib/libXext.so.6 (0x2839b000)
        libXxf86vm.so.1 =3D> /usr/local/lib/libXxf86vm.so.1 (0x283a9000)
        libXdamage.so.1 =3D> /usr/local/lib/libXdamage.so.1 (0x283ae000)
        libXfixes.so.3 =3D> /usr/local/lib/libXfixes.so.3 (0x283b1000)

So i think the files you're looking for are
./modules/access/screen/libscreen_plugin.so:
./modules/video_output/libopengl_plugin.so:

Atleast thats it in my build.

--=20
OKALANY DANIEL
P.O BOX 26150
KAMPALA.
http://okaman.one2net.co.ug
--
Youth is a wonderful thing. What a crime to waste it on children.

The Word was spoken before it was written, and it was written so it could b=
e
spoken!

Words can move mountais because mountains are created by words!



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?28f643d90807230047w455eaa8qcfa8ef62c89cd217>