~ubuntu-branches/ubuntu/gutsy/samba/gutsy-updates

« back to all changes in this revision

Viewing changes to source/script/mkbuildoptions.awk

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Mitchell
  • Date: 2006-11-28 20:14:37 UTC
  • mfrom: (0.10.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061128201437-a6x4lzlhempazocp
Tags: 3.0.23d-1ubuntu1
* Merge from debian unstable.
* Drop python2.4-samba, replace with python-samba. Added Conflicts/Replaces
  on python2.4-samba
* Drop track-connection-dos.patch, ubuntu-winbind-panic.patch, 
  ubuntu-fix-ldap.patch, ubuntu-setlocale.patch, ubuntu-setlocale-fixes.patch
* Remaining Ubuntu changes:
  - Revert Debian's installation of mount.cifs and umount.cifs as suid
  - Comment out the default [homes] shares and add more verbose comments to
    explain what they do and how they work (closes: launchpad.net/27608)
  - Add a "valid users = %S" stanza to the commented-out [homes] section, to
    show users how to restrict access to \\server\username to only username.
  - Change the (commented-out) "printer admin" example to use "@lpadmin"
    instead of "@ntadmin", since the lpadmin group is used for spool admin.
  - Alter the panic-action script to encourage users to report their
    bugs in Ubuntu packages to Ubuntu, rather than reporting to Debian.
    Modify text to more closely match the Debian script
  - Munge our init script to deal with the fact that our implementation
    (or lack thereof) of log_daemon_msg and log_progress_msg differs
    from Debian's implementation of the same (Ubuntu #19691)
  - Kept ubuntu-auxsrc.patch: some auxilliary sources (undocumented in 
    previous changelogs)
  - Set default workgroup to MSHOME

Show diffs side-by-side

added added

removed removed

Lines of Context:
242
242
        # add code to display the various type sizes
243
243
        print "       /* Output the sizes of the various types */";
244
244
        print "       output(screen, \"\\nType sizes:\\n\");";
245
 
        print "       output(screen, \"   sizeof(char):    %lu\\n\",(unsigned long)sizeof(char));";
246
 
        print "       output(screen, \"   sizeof(int):     %lu\\n\",(unsigned long)sizeof(int));";
247
 
        print "       output(screen, \"   sizeof(long):    %lu\\n\",(unsigned long)sizeof(long));";
248
 
        print "       output(screen, \"   sizeof(uint8):   %lu\\n\",(unsigned long)sizeof(uint8));";
249
 
        print "       output(screen, \"   sizeof(uint16):  %lu\\n\",(unsigned long)sizeof(uint16));";
250
 
        print "       output(screen, \"   sizeof(uint32):  %lu\\n\",(unsigned long)sizeof(uint32));";
251
 
        print "       output(screen, \"   sizeof(short):   %lu\\n\",(unsigned long)sizeof(short));";
252
 
        print "       output(screen, \"   sizeof(void*):   %lu\\n\",(unsigned long)sizeof(void*));";
 
245
        print "       output(screen, \"   sizeof(char):         %lu\\n\",(unsigned long)sizeof(char));";
 
246
        print "       output(screen, \"   sizeof(int):          %lu\\n\",(unsigned long)sizeof(int));";
 
247
        print "       output(screen, \"   sizeof(long):         %lu\\n\",(unsigned long)sizeof(long));";
 
248
        print "#if HAVE_LONGLONG"
 
249
        print "       output(screen, \"   sizeof(long long):    %lu\\n\",(unsigned long)sizeof(long long));";
 
250
        print "#endif"
 
251
        print "       output(screen, \"   sizeof(uint8):        %lu\\n\",(unsigned long)sizeof(uint8));";
 
252
        print "       output(screen, \"   sizeof(uint16):       %lu\\n\",(unsigned long)sizeof(uint16));";
 
253
        print "       output(screen, \"   sizeof(uint32):       %lu\\n\",(unsigned long)sizeof(uint32));";
 
254
        print "       output(screen, \"   sizeof(short):        %lu\\n\",(unsigned long)sizeof(short));";
 
255
        print "       output(screen, \"   sizeof(void*):        %lu\\n\",(unsigned long)sizeof(void*));";
 
256
        print "       output(screen, \"   sizeof(size_t):       %lu\\n\",(unsigned long)sizeof(size_t));";
 
257
        print "       output(screen, \"   sizeof(off_t):        %lu\\n\",(unsigned long)sizeof(off_t));";
 
258
        print "       output(screen, \"   sizeof(ino_t):        %lu\\n\",(unsigned long)sizeof(ino_t));";
 
259
        print "       output(screen, \"   sizeof(dev_t):        %lu\\n\",(unsigned long)sizeof(dev_t));";
253
260
 
254
261
        ##################################################
255
262
        # add code to give information about modules