diff options
author | leeym <leeym@FreeBSD.org> | 2003-08-09 07:16:29 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2003-08-09 07:16:29 +0800 |
commit | 69258998b84bcafb5e5afdb8e14faae01fee5ba0 (patch) | |
tree | c9d4164ffe770d77519a481d489354328def7aee /astro/gpsdrive/files | |
parent | fe864fa063d2c9c6e473dbd25fc17f6b54192fa2 (diff) | |
download | freebsd-ports-gnome-69258998b84bcafb5e5afdb8e14faae01fee5ba0.tar.gz freebsd-ports-gnome-69258998b84bcafb5e5afdb8e14faae01fee5ba0.tar.zst freebsd-ports-gnome-69258998b84bcafb5e5afdb8e14faae01fee5ba0.zip |
Update of astro/gpsdrive to latest version (1.33)
PR: 54759
Submitted by: Marco Molteni <molter@tin.it>
Diffstat (limited to 'astro/gpsdrive/files')
-rw-r--r-- | astro/gpsdrive/files/patch-configure | 11 | ||||
-rw-r--r-- | astro/gpsdrive/files/patch-ltmain.sh | 10 | ||||
-rw-r--r-- | astro/gpsdrive/files/patch-src-Makefile.in | 11 | ||||
-rw-r--r-- | astro/gpsdrive/files/patch-src-battery.c | 43 |
4 files changed, 4 insertions, 71 deletions
diff --git a/astro/gpsdrive/files/patch-configure b/astro/gpsdrive/files/patch-configure deleted file mode 100644 index 0fefcf80cbb9..000000000000 --- a/astro/gpsdrive/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sat Dec 7 06:51:08 2002 -+++ configure Fri Jul 11 15:42:44 2003 -@@ -12623,8 +12623,6 @@ - - - --CFLAGS="-O2 -Wall" --CXXFLAGS="$CFLAGS" - - - # Check whether --with-pentiumpro or --without-pentiumpro was given. diff --git a/astro/gpsdrive/files/patch-ltmain.sh b/astro/gpsdrive/files/patch-ltmain.sh index 7d378834222d..4abc20321994 100644 --- a/astro/gpsdrive/files/patch-ltmain.sh +++ b/astro/gpsdrive/files/patch-ltmain.sh @@ -1,7 +1,5 @@ -$FreeBSD$ - ---- ltmain.sh.orig Wed Sep 26 23:26:27 2001 -+++ ltmain.sh Sat Nov 17 08:35:28 2001 +--- ltmain.sh.orig Sun Jul 14 20:22:08 2002 ++++ ltmain.sh Thu Jul 31 17:46:34 2003 @@ -1043,7 +1043,7 @@ # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue @@ -11,7 +9,7 @@ $FreeBSD$ # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; -@@ -2441,7 +2441,7 @@ +@@ -2445,7 +2445,7 @@ *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; @@ -20,7 +18,7 @@ $FreeBSD$ # Do not include libc due to us having libc/libc_r. ;; *) -@@ -4210,10 +4210,12 @@ +@@ -4225,10 +4225,12 @@ fi # Install the pseudo-library for information purposes. diff --git a/astro/gpsdrive/files/patch-src-Makefile.in b/astro/gpsdrive/files/patch-src-Makefile.in deleted file mode 100644 index 37e0df52b2d3..000000000000 --- a/astro/gpsdrive/files/patch-src-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig Thu Aug 8 23:52:40 2002 -+++ src/Makefile.in Thu Aug 8 23:54:21 2002 -@@ -173,7 +173,7 @@ - - am_friendsd_OBJECTS = friendsd.$(OBJEXT) - friendsd_OBJECTS = $(am_friendsd_OBJECTS) --friendsd_LDADD = $(LDADD) -+friendsd_LDADD = $(LDADD) -lintl - friendsd_DEPENDENCIES = - friendsd_LDFLAGS = - @DISABLEGARMIN_TRUE@am_garble_OBJECTS = diff --git a/astro/gpsdrive/files/patch-src-battery.c b/astro/gpsdrive/files/patch-src-battery.c deleted file mode 100644 index 0680e1deaefa..000000000000 --- a/astro/gpsdrive/files/patch-src-battery.c +++ /dev/null @@ -1,43 +0,0 @@ ---- src/battery.c.orig Mon Aug 12 14:07:55 2002 -+++ src/battery.c Mon Aug 12 14:16:49 2002 -@@ -70,10 +70,11 @@ - #include <gdk-pixbuf/gdk-pixbuf.h> - #include <gtk/gtk.h> - --#ifdef __FreeBSD__ -+/* APM is i386-specific. */ -+#if defined(__FreeBSD__) && defined(__i386__) - #include <fcntl.h> - #include <machine/apm_bios.h> --#endif /* __FreeBSD__ */ -+#endif /* __FreeBSD__ && __i386__ */ - - #include "../config.h" - #include "battery.h" -@@ -237,7 +238,7 @@ - #endif /* Linux */ - - --#ifdef __FreeBSD__ -+#if defined(__FreeBSD__) && defined(__i386__) - /* - * Return TRUE on success, FALSE on error. - */ -@@ -311,7 +312,7 @@ - close (fd); - return TRUE; - } --#endif /* __FreeBSD__ */ -+#endif /* __FreeBSD__ && __i386__ */ - - - /* -@@ -326,7 +327,7 @@ - } - #if defined(__linux__) - return battery_get_values_linux (&batlevel, &batloading); --#elif defined(__FreeBSD__) -+#elif defined(__FreeBSD__) && defined(__i386__) - return battery_get_values_fbsd (&batlevel, &batloading); - #else - /* add support for your favourite OS here */ |