Revision: 1618
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1618&view=rev
Author: tmzullinger
Date: 2007-07-04 09:25:16 -0700 (Wed, 04 Jul 2007)
Log Message:
-----------
fix compile with --as-needed (thanks to Santiago M. Mola)
Modified Paths:
--------------
gtkpod/trunk/ChangeLog_detailed
gtkpod/trunk/configure.in
gtkpod/trunk/src/Makefile.am
Modified: gtkpod/trunk/ChangeLog_detailed
===================================================================
--- gtkpod/trunk/ChangeLog_detailed 2007-07-03 02:22:55 UTC (rev 1617)
+++ gtkpod/trunk/ChangeLog_detailed 2007-07-04 16:25:16 UTC (rev 1618)
@@ -1,3 +1,9 @@
+2007-07-04 Todd Zullinger <tmzullinger at users.sourceforge.net>
+
+ * configure.ac
+ src/Makefile.am:
+ fix compile with --as-needed (thanks to Santiago M. Mola)
+
2007-06-29 Jorg Schuler <jcsjcs at users.sourceforge.net>
* src/details.c (details_setup_widget): fixed memory leak
Modified: gtkpod/trunk/configure.in
===================================================================
--- gtkpod/trunk/configure.in 2007-07-03 02:22:55 UTC (rev 1617)
+++ gtkpod/trunk/configure.in 2007-07-04 16:25:16 UTC (rev 1618)
@@ -88,7 +88,7 @@
have_curl="yes -- will build with coverart download support"
CPPFLAGS="$CPPFLAGS $CURL_CFLAGS"
CFLAGS="$CFLAGS $CURL_CFLAGS"
- LDFLAGS="$LDFLAGS $CURL_LIBS"
+ LIBS="$LIBS $CURL_LIBS"
else
echo "*** libcurl could not be found, not building coverart download
support"
have_curl="*no -- will build without coverart download support"
@@ -108,7 +108,7 @@
AC_DEFINE(HAVE_GNOME_VFS, 1, [Define if you have gnome-vfs support])
CPPFLAGS="$CPPFLAGS $GNOME_VFS_CFLAGS"
CFLAGS="$CFLAGS $GNOME_VFS_CFLAGS"
- LDFLAGS="$LDFLAGS $GNOME_VFS_LIBS"
+ LIBS="$LIBS $GNOME_VFS_LIBS"
else
echo "*** gnome-vfs-2 not found or disabled, not building iPod
autodetection support"
have_gnomevfs="*no -- will build without iPod autodetection support"
@@ -129,7 +129,7 @@
AC_DEFINE(HAVE_HAL, 1, [Define if you want HAL support])
CPPFLAGS="$CPPFLAGS $HAL_CFLAGS"
CFLAGS="$CFLAGS $HAL_CFLAGS"
- LDFLAGS="$LDFLAGS $HAL_LIBS"
+ LIBS="$LIBS $HAL_LIBS"
else
have_hal="*no -- will build without HAL support"
fi
Modified: gtkpod/trunk/src/Makefile.am
===================================================================
--- gtkpod/trunk/src/Makefile.am 2007-07-03 02:22:55 UTC (rev 1617)
+++ gtkpod/trunk/src/Makefile.am 2007-07-04 16:25:16 UTC (rev 1618)
@@ -54,7 +54,7 @@
tools.c tools.h \
wavfile.c wavfile.h
-gtkpod_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) @LIBOBJS@
+gtkpod_LDADD = $(LIBS) @PACKAGE_LIBS@ $(INTLLIBS) @LIBOBJS@
EXTRA_DIST = getopt.h
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2