pkgsrc/devel/intellij-idea-ce/patches/patch-native_fsNotifier_linux_main.c
ryoon e12c611852 Import intellij-idea-ce-12.1.2 as devel/intellij-idea-ce.
IntelliJ IDEA Community Edition is the open source version of IntelliJ
IDEA, a premier IDE (Integrated Development Environment) for Java,
Groovy and other programming languages such as Scala or Clojure.

The Community Edition includes:

    An Intelligent code editor that has all the smarts for
    understanding Java, XML and Groovy code

    Refactorings, code inspections and intentions, super-fast
    navigation and search

    Testing frameworks integration: JUnit and TestNG

    Build tools support: Ant and Maven

    Popular version control systems integration: CVS, Subversion
    and Git

    Swing UI designer
2013-11-24 10:44:34 +00:00

18 lines
444 B
C

$NetBSD: patch-native_fsNotifier_linux_main.c,v 1.1 2013/11/24 10:44:34 ryoon Exp $
* Use mntent compat from sysutils/fam
--- native/fsNotifier/linux/main.c.orig 2013-11-23 23:41:25.000000000 +0000
+++ native/fsNotifier/linux/main.c
@@ -18,7 +18,11 @@
#include <errno.h>
#include <limits.h>
+#if defined(__linux__)
#include <mntent.h>
+#else
+#include "fam-mntent.h"
+#endif
#include <paths.h>
#include <stdarg.h>
#include <stdlib.h>