~ubuntu-branches/debian/jessie/ldb/jessie

« back to all changes in this revision

Viewing changes to buildtools/wafsamba/samba_patterns.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2014-07-05 23:32:23 UTC
  • mfrom: (1.3.16)
  • Revision ID: package-import@ubuntu.com-20140705233223-dss2i2wmfksxbivh
Tags: 1:1.1.18-1
* New upstream release.
 + Depend on tdb >= 1.3.2.
 + Fixes __attribute__((visibility)) check to not use nested functions.
   Closes: #749987
* Use canonical URL in Vcs-Git field.
* Specify branch in Vcs-Git field.
* Add 02_hurd: link against pthread on the Hurd, to fix ldb module
  loading. Closes: #749095

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
    fp.write("       output(screen, \"   sizeof(char):         %lu\\n\",(unsigned long)sizeof(char));\n")
140
140
    fp.write("       output(screen, \"   sizeof(int):          %lu\\n\",(unsigned long)sizeof(int));\n")
141
141
    fp.write("       output(screen, \"   sizeof(long):         %lu\\n\",(unsigned long)sizeof(long));\n")
142
 
    fp.write("#if HAVE_LONGLONG\n")
143
142
    fp.write("       output(screen, \"   sizeof(long long):    %lu\\n\",(unsigned long)sizeof(long long));\n")
144
 
    fp.write("#endif\n")
145
143
    fp.write("       output(screen, \"   sizeof(uint8):        %lu\\n\",(unsigned long)sizeof(uint8));\n")
146
144
    fp.write("       output(screen, \"   sizeof(uint16):       %lu\\n\",(unsigned long)sizeof(uint16));\n")
147
145
    fp.write("       output(screen, \"   sizeof(uint32):       %lu\\n\",(unsigned long)sizeof(uint32));\n")
207
205
    '''generate the bld_options.c for Samba'''
208
206
    t = bld.SAMBA_GENERATOR(target,
209
207
                            rule=write_build_options,
210
 
                            target=target,
211
 
                            always=True)
 
208
                            dep_vars=['defines'],
 
209
                            target=target)
212
210
Build.BuildContext.SAMBA_BLDOPTIONS = SAMBA_BLDOPTIONS