linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] sdlcam: fix linking
@ 2017-11-10 16:05 Rafaël Carré
  2017-11-11 12:04 ` Rafaël Carré
  0 siblings, 1 reply; 6+ messages in thread
From: Rafaël Carré @ 2017-11-10 16:05 UTC (permalink / raw)
  To: linux-media

---
 contrib/test/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/test/Makefile.am b/contrib/test/Makefile.am
index 6a4303d7..0188fe21 100644
--- a/contrib/test/Makefile.am
+++ b/contrib/test/Makefile.am
@@ -37,7 +37,7 @@ v4l2gl_LDADD = ../../lib/libv4l2/libv4l2.la ../../lib/libv4lconvert/libv4lconver
 
 sdlcam_LDFLAGS = $(JPEG_LIBS) $(SDL2_LIBS) -lm -ldl -lrt
 sdlcam_CFLAGS = -I../.. $(SDL2_CFLAGS)
-sdlcam_LDADD = ../../lib/libv4l2/.libs/libv4l2.a  ../../lib/libv4lconvert/.libs/libv4lconvert.a
+sdlcam_LDADD = ../../lib/libv4l2/libv4l2.la  ../../lib/libv4lconvert/libv4lconvert.la
 
 mc_nextgen_test_CFLAGS = $(LIBUDEV_CFLAGS)
 mc_nextgen_test_LDFLAGS = $(LIBUDEV_LIBS)
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] sdlcam: fix linking
  2017-11-10 16:05 Rafaël Carré
@ 2017-11-11 12:04 ` Rafaël Carré
  0 siblings, 0 replies; 6+ messages in thread
From: Rafaël Carré @ 2017-11-11 12:04 UTC (permalink / raw)
  To: linux-media

On 11/10/2017 05:05 PM, Rafaël Carré wrote:
> ---
>  contrib/test/Makefile.am | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/contrib/test/Makefile.am b/contrib/test/Makefile.am
> index 6a4303d7..0188fe21 100644
> --- a/contrib/test/Makefile.am
> +++ b/contrib/test/Makefile.am
> @@ -37,7 +37,7 @@ v4l2gl_LDADD = ../../lib/libv4l2/libv4l2.la ../../lib/libv4lconvert/libv4lconver
>  
>  sdlcam_LDFLAGS = $(JPEG_LIBS) $(SDL2_LIBS) -lm -ldl -lrt
>  sdlcam_CFLAGS = -I../.. $(SDL2_CFLAGS)
> -sdlcam_LDADD = ../../lib/libv4l2/.libs/libv4l2.a  ../../lib/libv4lconvert/.libs/libv4lconvert.a
> +sdlcam_LDADD = ../../lib/libv4l2/libv4l2.la  ../../lib/libv4lconvert/libv4lconvert.la
>  
>  mc_nextgen_test_CFLAGS = $(LIBUDEV_CFLAGS)
>  mc_nextgen_test_LDFLAGS = $(LIBUDEV_LIBS)
> 

Signed-off-by: Rafaël Carré <funman@videolan.org>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] sdlcam: fix linking
@ 2017-11-13  9:19 Rafaël Carré
  2017-11-13  9:19 ` [PATCH 2/2] sdlcam: ignore binary Rafaël Carré
  2017-11-13  9:20 ` [PATCH 1/2] sdlcam: fix linking Pavel Machek
  0 siblings, 2 replies; 6+ messages in thread
From: Rafaël Carré @ 2017-11-13  9:19 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Hans Verkuil, Linux Media Mailing List, Rafaël Carré

Signed-off-by: Rafaël Carré <funman@videolan.org>
---
 contrib/test/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/test/Makefile.am b/contrib/test/Makefile.am
index 6a4303d7..0188fe21 100644
--- a/contrib/test/Makefile.am
+++ b/contrib/test/Makefile.am
@@ -37,7 +37,7 @@ v4l2gl_LDADD = ../../lib/libv4l2/libv4l2.la ../../lib/libv4lconvert/libv4lconver
 
 sdlcam_LDFLAGS = $(JPEG_LIBS) $(SDL2_LIBS) -lm -ldl -lrt
 sdlcam_CFLAGS = -I../.. $(SDL2_CFLAGS)
-sdlcam_LDADD = ../../lib/libv4l2/.libs/libv4l2.a  ../../lib/libv4lconvert/.libs/libv4lconvert.a
+sdlcam_LDADD = ../../lib/libv4l2/libv4l2.la  ../../lib/libv4lconvert/libv4lconvert.la
 
 mc_nextgen_test_CFLAGS = $(LIBUDEV_CFLAGS)
 mc_nextgen_test_LDFLAGS = $(LIBUDEV_LIBS)
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] sdlcam: ignore binary
  2017-11-13  9:19 [PATCH 1/2] sdlcam: fix linking Rafaël Carré
@ 2017-11-13  9:19 ` Rafaël Carré
       [not found]   ` <20171113092012.GB20206@amd>
  2017-11-13  9:20 ` [PATCH 1/2] sdlcam: fix linking Pavel Machek
  1 sibling, 1 reply; 6+ messages in thread
From: Rafaël Carré @ 2017-11-13  9:19 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Hans Verkuil, Linux Media Mailing List, Rafaël Carré

Signed-off-by: Rafaël Carré <funman@videolan.org>
---
 contrib/test/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/contrib/test/.gitignore b/contrib/test/.gitignore
index ad64325b..5bd81d01 100644
--- a/contrib/test/.gitignore
+++ b/contrib/test/.gitignore
@@ -8,3 +8,4 @@ stress-buffer
 v4l2gl
 v4l2grab
 mc_nextgen_test
+sdlcam
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] sdlcam: fix linking
  2017-11-13  9:19 [PATCH 1/2] sdlcam: fix linking Rafaël Carré
  2017-11-13  9:19 ` [PATCH 2/2] sdlcam: ignore binary Rafaël Carré
@ 2017-11-13  9:20 ` Pavel Machek
  1 sibling, 0 replies; 6+ messages in thread
From: Pavel Machek @ 2017-11-13  9:20 UTC (permalink / raw)
  To: Rafaël Carré; +Cc: Hans Verkuil, Linux Media Mailing List

[-- Attachment #1: Type: text/plain, Size: 320 bytes --]

On Mon 2017-11-13 10:19:07, Rafaël Carré wrote:
> Signed-off-by: Rafaël Carré <funman@videolan.org>

Acked-by: Pavel Machek <pavel@ucw.cz>

Thanks!
								Pavel
								

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] sdlcam: ignore binary
       [not found]   ` <20171113092012.GB20206@amd>
@ 2017-11-13  9:34     ` Rafaël Carré
  0 siblings, 0 replies; 6+ messages in thread
From: Rafaël Carré @ 2017-11-13  9:34 UTC (permalink / raw)
  To: Pavel Machek; +Cc: Linux Media Mailing List

Adding linux-media, thanks

On 13/11/2017 10:20, Pavel Machek wrote:
> On Mon 2017-11-13 10:19:08, Rafaël Carré wrote:
>> Signed-off-by: Rafaël Carré <funman@videolan.org>
> 
> Acked-by: Pavel	 Machek <pavel@ucw.cz>
> 
>> ---
>>  contrib/test/.gitignore | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/contrib/test/.gitignore b/contrib/test/.gitignore
>> index ad64325b..5bd81d01 100644
>> --- a/contrib/test/.gitignore
>> +++ b/contrib/test/.gitignore
>> @@ -8,3 +8,4 @@ stress-buffer
>>  v4l2gl
>>  v4l2grab
>>  mc_nextgen_test
>> +sdlcam
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-11-13  9:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-13  9:19 [PATCH 1/2] sdlcam: fix linking Rafaël Carré
2017-11-13  9:19 ` [PATCH 2/2] sdlcam: ignore binary Rafaël Carré
     [not found]   ` <20171113092012.GB20206@amd>
2017-11-13  9:34     ` Rafaël Carré
2017-11-13  9:20 ` [PATCH 1/2] sdlcam: fix linking Pavel Machek
  -- strict thread matches above, loose matches on Subject: below --
2017-11-10 16:05 Rafaël Carré
2017-11-11 12:04 ` Rafaël Carré

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).