[Verse-cvs] [verse] SVN commit:[4530] Added support for PAM at darwin (Mac OS X) scons build system.

Jiri Hnidek jiri.hnidek at tul.cz
Sat Jul 19 17:17:44 CEST 2008


Revision: 4530
          https://svn.blender.org//revision/?rev=4530&view=rev
Author:   jiri
Date:     2008-07-19 17:16:56 +0200 (Sat, 19 Jul 2008)

Log Message:
-----------
Added support for PAM at darwin (Mac OS X) scons build system.
Commit new function prototype to verse.h ... not sure, if it is right think.

Modified Paths:
--------------
    branches/verse-pam-branch/SConstruct
    branches/verse-pam-branch/verse.h

Modified: branches/verse-pam-branch/SConstruct
===================================================================
--- branches/verse-pam-branch/SConstruct	2008-07-18 14:13:26 UTC (rev 4529)
+++ branches/verse-pam-branch/SConstruct	2008-07-19 15:16:56 UTC (rev 4530)
@@ -45,6 +45,11 @@
 elif sys.platform == 'openbsd3':
     print "Building on openbsd3"
     platform_libs = ['pam']
+elif sys.platform == 'darwin':
+    print "Building on darwin"
+    platform_libs = ['pam']
+else:
+    print "Building on", sys.platform
 
 
 env_dict = env.Dictionary()

Modified: branches/verse-pam-branch/verse.h
===================================================================
--- branches/verse-pam-branch/verse.h	2008-07-18 14:13:26 UTC (rev 4529)
+++ branches/verse-pam-branch/verse.h	2008-07-19 15:16:56 UTC (rev 4530)
@@ -401,6 +401,7 @@
 } VNABlock;
 
 extern void		verse_set_port(uint16 port);
+extern void		verse_set_protocol(uint32 protocol);
 extern void		verse_host_id_create(uint8 *id);
 extern void		verse_host_id_set(uint8 *id);
 extern void		verse_callback_set(void *send_func, void *callback, void *user_data);





More information about the Verse-cvs mailing list