opnsense-ports/sysutils/mapchan/files/patch-mapchan.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

24 lines
532 B
C

--- mapchan.c.orig 2008-09-12 01:47:59.000000000 +0500
+++ mapchan.c 2013-05-26 14:55:43.000000000 +0400
@@ -15,7 +15,12 @@
#include <stdlib.h>
#include <signal.h>
#include <libgen.h>
+#ifdef __FreeBSD__
+#include <libutil.h>
+#include <sys/ioctl.h>
+#else
#include <pty.h>
+#endif
#include <utmp.h>
#ifdef SYSLOG
#include <syslog.h>
@@ -50,7 +55,7 @@ char *DEFAULT_LOGFILE = "mapchan.log";
#endif
#ifndef CPATH
- #define CPATH "/etc/mapchan"
+ #define CPATH "/usr/local/etc/mapchan"
#endif
#define BUFSIZE 32*1024