The Samba-Bugzilla – Attachment 11954 Details for
Bug 11816
samba 4.4.0 fails to compile on illumos/Solaris due to FIONREAD not being declared
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
2nd version of the patch for source3
source3-v2.patch (text/plain), 825 bytes, created by
Jorge Schrauwen
on 2016-03-31 14:38:57 UTC
(
hide
)
Description:
2nd version of the patch for source3
Filename:
MIME Type:
Creator:
Jorge Schrauwen
Created:
2016-03-31 14:38:57 UTC
Size:
825 bytes
patch
obsolete
>$NetBSD$ > >--- source3/wscript.orig 2016-03-22 09:00:33.000000000 +0000 >+++ source3/wscript >@@ -135,10 +135,13 @@ long ret = splice(0,0,1,0,400,SPLICE_F_M > headers='fcntl.h'): > conf.CHECK_DECLS('splice', reverse=True, headers='fcntl.h') > >- # Check for inotify support >- conf.CHECK_HEADERS('sys/inotify.h') >- if "HAVE_SYS_INOTIFY_H" in conf.env: >- conf.DEFINE('HAVE_INOTIFY', 1) >+ # Check for inotify support (Skip if we are SunOS) >+ #NOTE: illumos provides sys/inotify.h but is not an exact match for linux >+ host_os = sys.platform >+ if host_os.rfind('sunos') == -1: >+ conf.CHECK_HEADERS('sys/inotify.h') >+ if "HAVE_SYS_INOTIFY_H" in conf.env: >+ conf.DEFINE('HAVE_INOTIFY', 1) > > # Check for kernel change notify support > conf.CHECK_CODE('''
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 11816
:
11950
|
11951
| 11954 |
11955
|
11956
|
11963
|
12027
|
12028
|
12029