[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Gnash] Add your libraries in the correct Makefile.am please
From: |
Stefan Schweizer |
Subject: |
[Gnash] Add your libraries in the correct Makefile.am please |
Date: |
Sat, 13 May 2006 11:21:16 +0200 |
User-agent: |
KNode/0.10.2 |
Hi,
today I noticed this in ChangeLog:
* utililites/Makefile.am, backend/Makefile.am: add CURL_LIBS.
* libbase/Makefile.am: curl_adapter build.
* Makefile.am: CURL config dump.
* macros/curl.m4: libcurl detection macro.
* libbase/curl_adapter.cpp, libbase/curl_adapter.h: initial
implementation of a libcurl adapter for tu_file.
Please add CURL_LIBS to libbase/Makefile.am, where it belongs. This
currently breaks compiling for me. The foolowing diff should fix it, but
please specify the DEPENDs in the correct library next time.
Regards,
Stefan
--- gnash/libbase/Makefile.am 2006-05-12 21:04:47.000000000 +0200
+++ gnash/libbase/Makefile.am 2006-05-12 21:14:47.000000000 +0200
@@ -99,7 +99,10 @@
utf8.cpp \
utility.cpp \
zlib_adapter.cpp
-libgnashbase_la_LIBADD = $(JPEG_LIBS) $(ZLIB_LIBS)
+libgnashbase_la_LIBADD = \
+ $(JPEG_LIBS) \
+ $(ZLIB_LIBS) \
+ $(OPENGL_LIBS) $(CURL_LIBS)
noinst_HEADERS = \
container.h \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Gnash] Add your libraries in the correct Makefile.am please,
Stefan Schweizer <=