mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 17:10:33 -04:00
After recent release of Samba 3.0.23c and corresponding version of port several problems with it were reported back by the users. - Fix for the broken OPTIONS menu due overlong line. That addresses PR ports/103158 and ports/102980 - Fix build on FreeBSD 7. PR ports/102919. - Several fixes to the rc.d/samba script, as well as a new code. Should handle 'restart' properly now. - Remove enforcement of a daemon shutdown during deinstallation due several requests. - SAMBA_PRIVATEDIR can now be redefined. - Warn the user if FAM_SUPPORT is enabled contrary to the selected OPTIONS. [2] PR: ports/103170 [1] ports/103276 [2] Submitted by: Timur I. Bakeyev <timur@gnu.org> (mainainer) [1], Scot Hetzel <swhetzel@gmail.com> [2] Approved by: maintainer [2]
16 lines
395 B
C
16 lines
395 B
C
--- include/includes.h.orig Wed Aug 23 18:16:38 2006
|
|
+++ include/includes.h Fri Sep 8 00:12:44 2006
|
|
@@ -475,10 +475,10 @@
|
|
#undef HAVE_LDAP
|
|
#endif
|
|
|
|
-#if HAVE_GSSAPI_H
|
|
-#include <gssapi.h>
|
|
-#elif HAVE_GSSAPI_GSSAPI_H
|
|
+#if HAVE_GSSAPI_GSSAPI_H
|
|
#include <gssapi/gssapi.h>
|
|
+#elif HAVE_GSSAPI_H
|
|
+#include <gssapi.h>
|
|
#elif HAVE_GSSAPI_GSSAPI_GENERIC_H
|
|
#include <gssapi/gssapi_generic.h>
|
|
#endif
|