diff options
author | Michael Lippautz <michael.lippautz@gmail.com> | 2010-02-23 06:34:14 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-02-25 11:35:44 +0100 |
commit | 3d5268dde73267487a810017ed3c43c9523bf732 (patch) | |
tree | fd739ced7fd7b2bf9214123a3bb72728a62db161 /recipes/gpsd/files/libtool.patch | |
parent | b141cd6cf58156e8d4b410ab93702b3c53393e02 (diff) |
gpsd: Bump version to 2.90 and clean recipe
* Removed board related stuff from the main gpsd recipe
* Add udev hotplugging support (seperate package 'gpsd-udev')
* Modified configuration and initscript in a way that a gps device could
either be added by /etc/default/gpsd OR via recipe using the local
gpsd socket.
* gpsd API changed! look at http://gpsd.berlios.de/#news
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'recipes/gpsd/files/libtool.patch')
-rw-r--r-- | recipes/gpsd/files/libtool.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/recipes/gpsd/files/libtool.patch b/recipes/gpsd/files/libtool.patch new file mode 100644 index 0000000000..37a7557aea --- /dev/null +++ b/recipes/gpsd/files/libtool.patch @@ -0,0 +1,14 @@ +--- a/Makefile.am 2010-01-22 21:27:04.000000000 +0100 ++++ b/Makefile.am 2010-01-22 21:27:43.000000000 +0100 +@@ -225,9 +225,9 @@ + # Warning: This overrides autoconf's normal link-line generatyion process + if LIBGPSMM_ENABLE + libgps_la_SOURCES += libgpsmm.cpp +-libgps_la_LINK = /bin/sh ./libtool --tag=CXX --mode=link g++ $(libgps_la_LDFLAGS) -o $@ ++libgps_la_LINK = $(LIBTOOL) --tag=CXX --mode=link g++ $(libgps_la_LDFLAGS) -o $@ + else +-libgps_la_LINK = /bin/sh ./libtool --tag=CC --mode=link gcc $(libgps_la_LDFLAGS) -o $@ ++libgps_la_LINK = $(LIBTOOL) --tag=CC --mode=link gcc $(libgps_la_LDFLAGS) -o $@ + endif + + nodist_libgps_la_SOURCES = packet_names.h ais_json.i |