octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

configure.ac for system with pcre/pcre.h


From: sergey
Subject: configure.ac for system with pcre/pcre.h
Date: Mon, 15 Oct 2012 11:12:08 +0000
User-agent: RoundCube Webmail/0.3.1

Hello,

trying to configure octave-3.6.3 for solaris 11 I had encountered an error
that pcre.h is unavailable.
This is due a typo in configure.ac
Here is the patch:

--- configure.ac.orig   Tue Sep  4 21:16:44 2012
+++ configure.ac        Mon Oct 15 14:59:06 2012
@@ -670,7 +670,8 @@
 #if defined (HAVE_PCRE_H)
 #include <pcre.h>
 #elif defined (HAVE_PCRE_PCRE_H)
-#include <pcre.h>
+#include <pcre/pcre.h>
+#else
 #error "NO PCRE HEADER"
 #endif
 #if defined (PCRE_INFO_NAMECOUNT) \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]