diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-26 13:10:46 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-26 13:10:46 +0000 |
commit | 53868b49d5ac87f2f013fe92f1fb45a11ccd64c2 (patch) | |
tree | 5f0a7a791d5c7ea0bbfb8f988e206f4ffc7f4fa0 /net-dialup/wvdial/files | |
parent | ppc stable #321931 (diff) | |
download | gentoo-2-53868b49d5ac87f2f013fe92f1fb45a11ccd64c2.tar.gz gentoo-2-53868b49d5ac87f2f013fe92f1fb45a11ccd64c2.tar.bz2 gentoo-2-53868b49d5ac87f2f013fe92f1fb45a11ccd64c2.zip |
old
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-dialup/wvdial/files')
-rw-r--r-- | net-dialup/wvdial/files/wvdial-1.60-as-needed.patch | 16 | ||||
-rw-r--r-- | net-dialup/wvdial/files/wvdial-1.60-destdir.patch | 19 | ||||
-rw-r--r-- | net-dialup/wvdial/files/wvdial-1.60-dirent.patch | 21 |
3 files changed, 0 insertions, 56 deletions
diff --git a/net-dialup/wvdial/files/wvdial-1.60-as-needed.patch b/net-dialup/wvdial/files/wvdial-1.60-as-needed.patch deleted file mode 100644 index e88ac3a26e53..000000000000 --- a/net-dialup/wvdial/files/wvdial-1.60-as-needed.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff -NrU5 wvdial-1.60.orig/Makefile wvdial-1.60/Makefile ---- wvdial-1.60.orig/Makefile 2008-12-14 17:18:25.000000000 +0100 -+++ wvdial-1.60/Makefile 2008-12-14 17:20:13.000000000 +0100 -@@ -15,10 +15,12 @@ - ifeq ($(PC_LIBS),) - $(error WvStreams does not appear to be installed) - endif - LIBS+=$(PC_LIBS) - -+wvdial-LIBS+= -luniconf -+ - BINDIR=${prefix}/bin - MANDIR=${prefix}/share/man - PPPDIR=${DESTDIR}/etc/ppp/peers - - include wvrules.mk diff --git a/net-dialup/wvdial/files/wvdial-1.60-destdir.patch b/net-dialup/wvdial/files/wvdial-1.60-destdir.patch deleted file mode 100644 index a62e1d10a147..000000000000 --- a/net-dialup/wvdial/files/wvdial-1.60-destdir.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -Nru wvdial-1.60.orig/Makefile wvdial-1.60/Makefile ---- wvdial-1.60.orig/Makefile 2007-07-20 00:22:26.000000000 +0300 -+++ wvdial-1.60/Makefile 2007-08-17 23:13:42.000000000 +0300 -@@ -1,5 +1,5 @@ - --prefix=/usr/local -+prefix=${DESTDIR}/usr - WVSTREAMS_INC= - WVSTREAMS_LIB= - WVSTREAMS_BIN=$(prefix)/bin -@@ -19,7 +19,7 @@ - - BINDIR=${prefix}/bin - MANDIR=${prefix}/share/man --PPPDIR=/etc/ppp/peers -+PPPDIR=${DESTDIR}/etc/ppp/peers - - include wvrules.mk - diff --git a/net-dialup/wvdial/files/wvdial-1.60-dirent.patch b/net-dialup/wvdial/files/wvdial-1.60-dirent.patch deleted file mode 100644 index d840d0a232a4..000000000000 --- a/net-dialup/wvdial/files/wvdial-1.60-dirent.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nru a/wvdial-1.60/wvmodemscan.cc b/wvdial-1.60/wvmodemscan.cc ---- a/wvdial-1.60/wvmodemscan.cc 2007-07-20 00:22:03.000000000 +0300 -+++ b/wvdial-1.60/wvmodemscan.cc 2009-06-20 21:43:58.000000000 +0300 -@@ -495,11 +495,16 @@ - // (no internal ISDN support) || !strncmp(e->d_name, "ttyI", 4); - } - -- -+#if defined(__GLIBC__) && __GLIBC_PREREQ(2, 10) -+static int filesort(const dirent **e1, const dirent **e2) -+#else - static int filesort(const void *_e1, const void *_e2) -+#endif - { -+#if !(defined(__GLIBC__) && __GLIBC_PREREQ(2, 10)) - dirent const * const *e1 = (dirent const * const *)_e1; - dirent const * const *e2 = (dirent const * const *)_e2; -+#endif - const char *p1, *p2; - int diff; - |