mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
pptp: Add patch to fix build.
This commit is contained in:
1
lfs/pptp
1
lfs/pptp
@@ -70,6 +70,7 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/pptp-1.7.2-compat.patch
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
|
||||
71
src/patches/pptp-1.7.2-compat.patch
Normal file
71
src/patches/pptp-1.7.2-compat.patch
Normal file
@@ -0,0 +1,71 @@
|
||||
Index: pptp_compat.c
|
||||
===================================================================
|
||||
RCS file: /cvsroot/pptpclient/pptp-linux/pptp_compat.c,v
|
||||
retrieving revision 1.1
|
||||
retrieving revision 1.3
|
||||
diff -u -r1.1 -r1.3
|
||||
--- pptp_compat.c 19 Feb 2008 21:43:28 -0000 1.1
|
||||
+++ pptp_compat.c 25 Jul 2008 00:13:56 -0000 1.3
|
||||
@@ -7,14 +7,15 @@
|
||||
#include <fcntl.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
-#include <stropts.h>
|
||||
#include <stdlib.h>
|
||||
+#if defined (__SVR4) && defined (__sun) /* Solaris */
|
||||
+#include <stropts.h>
|
||||
+#endif
|
||||
#include <strings.h>
|
||||
#include "pptp_compat.h"
|
||||
#include <stdio.h>
|
||||
#include "util.h"
|
||||
|
||||
-
|
||||
#if defined (__SVR4) && defined (__sun) /* Solaris */
|
||||
/*
|
||||
* daemon implementation from uClibc
|
||||
Index: pptp.c
|
||||
===================================================================
|
||||
RCS file: /cvsroot/pptpclient/pptp-linux/pptp.c,v
|
||||
retrieving revision 1.49
|
||||
retrieving revision 1.51
|
||||
diff -u -r1.49 -r1.51
|
||||
--- pptp.c 14 May 2008 06:32:52 -0000 1.49
|
||||
+++ pptp.c 24 Jul 2008 05:53:05 -0000 1.51
|
||||
@@ -61,9 +61,8 @@
|
||||
#include "version.h"
|
||||
#if defined(__linux__)
|
||||
#include <sys/prctl.h>
|
||||
-#else
|
||||
-#include "inststr.h"
|
||||
#endif
|
||||
+#include "inststr.h"
|
||||
#include "util.h"
|
||||
#include "pptp_quirks.h"
|
||||
#include "pqueue.h"
|
||||
@@ -129,7 +128,7 @@
|
||||
}
|
||||
|
||||
#if defined (__SVR4) && defined (__sun)
|
||||
-struct in_addr localbind = { INADDR_ANY };
|
||||
+struct in_addr localbind = { .s_addr = INADDR_ANY };
|
||||
#else
|
||||
struct in_addr localbind = { INADDR_NONE };
|
||||
#endif
|
||||
@@ -183,6 +182,7 @@
|
||||
struct in_addr inetaddr;
|
||||
volatile int callmgr_sock = -1;
|
||||
char ttydev[PATH_MAX];
|
||||
+ char *tty_name;
|
||||
int pty_fd, tty_fd, gre_fd, rc;
|
||||
volatile pid_t parent_pid, child_pid;
|
||||
u_int16_t call_id, peer_call_id;
|
||||
@@ -391,7 +391,7 @@
|
||||
file2fd("/dev/null", "wb", STDERR_FILENO);
|
||||
}
|
||||
|
||||
- char *tty_name = ttyname(tty_fd);
|
||||
+ tty_name = ttyname(tty_fd);
|
||||
snprintf(buf, sizeof(buf), "pptp: GRE-to-PPP gateway on %s",
|
||||
tty_name ? tty_name : "(null)");
|
||||
#ifdef PR_SET_NAME
|
||||
Reference in New Issue
Block a user