Changeset 701
- Timestamp:
 - May 8, 2012, 6:36:46 PM (14 years ago)
 - Location:
 - branches/samba-3.3.x/source
 - Files:
 - 
      
- 3 edited
 
- 
          
  build.cmd (modified) (2 diffs)
 - 
          
  build.options (modified) (1 diff)
 - 
          
  smbd/server.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
branches/samba-3.3.x/source/build.cmd
r699 r701 28 28 29 29 /* number of make jobs to execute at the same time */ 30 jobs = " 2"30 jobs = "3" 31 31 32 32 '@echo off' … … 85 85 build_parms = "" 86 86 87 /* delete the following 7lines to remove libc switching capability */87 /* delete the following 8 lines to remove libc switching capability */ 88 88 select 89 when pos("065", cmdline) > 0 then libc = "065" 89 90 when pos("064X", cmdline) > 0 then libc = "064X" 90 when pos("063", cmdline) > 0 then libc = "063" 91 otherwise libc = "064" 91 when pos("064", cmdline) > 0 then libc = "064" 92 when pos("063", cmdline) > 0 then libc = "063" 93 otherwise libc = "065" 92 94 end 93 95 address cmd "call "libc".cmd"  - 
      
branches/samba-3.3.x/source/build.options
r680 r701 1 1 MAKE="" 2 LIBC="06 4"2 LIBC="065" 3 3 BRAND="YES"  - 
      
branches/samba-3.3.x/source/smbd/server.c
r578 r701 975 975 976 976 #ifdef __OS2__ 977 /* On OS/2 - we need to remove the PID file on server exit otherwise we may not be able to restart Samba */ 978 char pidFile[1024]; 979 slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_piddir(), "smbd"); 980 unlink(pidFile); 977 if (am_parent){ 978 /* On OS/2 - we need to remove the PID file on server exit otherwise we may not be able to restart Samba */ 979 char pidFile[1024]; 980 slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_piddir(), "smbd"); 981 unlink(pidFile); 982 } 981 983 #endif 982 984  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  