~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/extras/FreeType/test/arch/win16/makedep

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# makedep
 
2
#
 
3
# This shell script creates a dependency file necessary for older compilers
 
4
# on the Windows 16-bit platform.
 
5
#
 
6
# If you run this script under non-Windows operating systems, expect
 
7
# warnings that `windows.h' can't be found.
 
8
 
 
9
echo "\
 
10
# This dependency file to be used with various Windows compilers
 
11
# has been generated automatically with the script \`makedep' on
 
12
# `date +%d-%b-%Y`.
 
13
" > depend.win
 
14
 
 
15
(cd ../..
 
16
 gcc -MM -I../lib/arch/win16 -I../lib -I../lib/extend -I. \
 
17
     *.c | \
 
18
   sed -e "s/\.o:/.obj:/" -e "s:/:\\\\:g") >> depend.win
 
19
 
 
20
echo "!ifndef __MAKE__" >> depend.win
 
21
 
 
22
(cd ../..
 
23
 gcc -MM -I../lib/arch/win16 -I../lib -I../lib/extend -I. \
 
24
     -DhInst -DhPrev arch/win16/*.c | \
 
25
   sed -e "s/^\(.*\)\.o:/arch\\\\win16\\\\\1.obj:/" \
 
26
       -e "s:/:\\\\:g") >> depend.win
 
27
 
 
28
echo "!endif" >> depend.win
 
29
 
 
30
# eof