~ubuntu-branches/ubuntu/trusty/postgresql-9.3/trusty-proposed

« back to all changes in this revision

Viewing changes to src/tools/msvc/Solution.pm

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2016-03-31 11:04:53 UTC
  • mfrom: (1.1.11) (18.1.4 trusty-security)
  • Revision ID: package-import@ubuntu.com-20160331110453-h6xfs9f11suj3mze
Tags: 9.3.12-0ubuntu0.14.04
* New upstream bug fix release. (LP: #1564268)
  - See http://www.postgresql.org/about/news/1656/ for details.

Show diffs side-by-side

added added

removed removed

Lines of Context:
292
292
                        'src\include\utils\fmgroids.h');
293
293
        }
294
294
 
 
295
        if (IsNewer(
 
296
                        'src/include/dynloader.h',
 
297
                        'src/backend/port/dynloader/win32.h'))
 
298
        {
 
299
                copyFile('src/backend/port/dynloader/win32.h',
 
300
                        'src/include/dynloader.h');
 
301
        }
 
302
 
295
303
        if (IsNewer('src\include\utils\probes.h', 'src\backend\utils\probes.d'))
296
304
        {
297
305
                print "Generating probes.h...\n";
298
306
                system(
299
 
'psed -f src\backend\utils\Gen_dummy_probes.sed src\backend\utils\probes.d > src\include\utils\probes.h'
 
307
'perl src/backend/utils/Gen_dummy_probes.pl src/backend/utils/probes.d > src/include/utils/probes.h'
300
308
                );
301
309
        }
302
310