~ubuntu-branches/ubuntu/trusty/vorbis-tools/trusty

« back to all changes in this revision

Viewing changes to debian/patches/vorbis-tools-head.diff

  • Committer: Bazaar Package Importer
  • Author(s): Jesus Climent
  • Date: 2005-04-10 09:22:24 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050410092224-xtukpa3qghghhjje
Tags: 1.0.1-1.3
* Authorized NMU.
* Modified alsa to mention alsa09 (although the device might be nowadays
  alsa, back, since alsa1.0 has been already released). (Closes: #258286)
* Modified the manpage/help message for vorbiscomment to make it a bit more
  userfiendly: Closes: #252531.
* Added oggdec to the long description field, so that it triggers apt-cache
  searches: Closes: #274894.
* Typos in manpages: Closes: #302150.
* Escaped dashes in manpage: Closes: #264365.
* Quiet option is actually with -Q, not -q (Closes: #211289) Reported
  upstream but patched for Debian.
* Change input.wav with inputfile, since we accept flac-formated files:
  Closes: #262509.
* Translation bits:
  * Updated translation hu.po: Closes: #272037.
  * French translation correction: Encodage -> Codage (Closes: #248431).
  * debian/rules: remove .gmo's to avoid clash with uploaded tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
diff -Nru vorbis-tools-1.0.1/ogg123/ogg123.c vorbis-tools-head/ogg123/ogg123.c
 
2
--- vorbis-tools-1.0.1/ogg123/ogg123.c  2003-09-02 14:37:05.000000000 -0500
 
3
+++ vorbis-tools-head/ogg123/ogg123.c   2003-11-27 13:38:29.000000000 -0600
 
4
@@ -14,7 +14,7 @@
 
5
  *                                                                  *
 
6
  ********************************************************************
 
7
 
 
8
- last mod: $Id: ogg123.c,v 1.70 2003/09/02 19:37:05 volsung Exp $
 
9
+ last mod: $Id: ogg123.c,v 1.71 2003/11/27 19:38:29 volsung Exp $
 
10
 
 
11
  ********************************************************************/
 
12
 
 
13
@@ -108,6 +108,10 @@
 
14
     sig_request.last_ctrl_c = now;
 
15
     break;
 
16
 
 
17
+  case SIGTERM:
 
18
+    sig_request.exit = 1;
 
19
+    break;
 
20
+
 
21
   case SIGTSTP:
 
22
     sig_request.pause = 1;
 
23
     /* buffer_Pause (Options.outputOpts.buffer);
 
24
@@ -381,7 +385,7 @@
 
25
   signal (SIGINT, signal_handler);
 
26
   signal (SIGTSTP, signal_handler);
 
27
   signal (SIGCONT, signal_handler);
 
28
-
 
29
+  signal (SIGTERM, signal_handler);
 
30
 
 
31
   /* Play the files/streams */
 
32
   i = 0;
 
33
diff -Nru vorbis-tools-1.0.1/oggdec/oggdec.c vorbis-tools-head/oggdec/oggdec.c
 
34
--- vorbis-tools-1.0.1/oggdec/oggdec.c  2003-09-03 02:58:04.000000000 -0500
 
35
+++ vorbis-tools-head/oggdec/oggdec.c   2003-11-18 13:16:18.000000000 -0600
 
36
@@ -32,7 +32,7 @@
 
37
     {NULL,0,0,0}
 
38
 };
 
39
 
 
40
-#define VERSIONSTRING "OggDec 1.0\n"
 
41
+#define VERSIONSTRING "OggDec 1.0.1\n"
 
42
 
 
43
 static int quiet = 0;
 
44
 static int bits = 16;
 
45
diff -Nru vorbis-tools-1.0.1/oggenc/man/oggenc.1 vorbis-tools-head/oggenc/man/oggenc.1
 
46
--- vorbis-tools-1.0.1/oggenc/man/oggenc.1      2003-09-03 02:58:05.000000000 -0500
 
47
+++ vorbis-tools-head/oggenc/man/oggenc.1       2003-11-25 11:54:50.000000000 -0600
 
48
@@ -149,7 +149,8 @@
 
49
 output Ogg Vorbis file.
 
50
 .IP "-o output_file, --output=output_file"
 
51
 Write the Ogg Vorbis stream to
 
52
-.I output_file (only valid if a single input file is specified)
 
53
+.I output_file
 
54
+(only valid if a single input file is specified).
 
55
 
 
56
 .IP "-n pattern, --names=pattern"
 
57
 Produce filenames as this string, with %g, %a, %l, %n, %t, %d replaced by
 
58
diff -Nru vorbis-tools-1.0.1/ogginfo/ogginfo.1 vorbis-tools-head/ogginfo/ogginfo.1
 
59
--- vorbis-tools-1.0.1/ogginfo/ogginfo.1        2003-09-03 02:58:05.000000000 -0500
 
60
+++ vorbis-tools-head/ogginfo/ogginfo.1 2003-11-25 11:54:50.000000000 -0600
 
61
@@ -39,7 +39,7 @@
 
62
 
 
63
 .SH OPTIONS
 
64
 .IP -h
 
65
-Show a help and usage message
 
66
+Show a help and usage message.
 
67
 .IP -q
 
68
 Quiet mode. This may be specified multiple times. Doing so once will remove
 
69
 the detailed informative messages, twice will remove warnings as well.
 
70
diff -Nru vorbis-tools-1.0.1/ogginfo/ogginfo2.c vorbis-tools-head/ogginfo/ogginfo2.c
 
71
--- vorbis-tools-1.0.1/ogginfo/ogginfo2.c       2003-09-10 10:05:09.000000000 -0500
 
72
+++ vorbis-tools-head/ogginfo/ogginfo2.c        2003-11-25 11:02:48.000000000 -0600
 
73
@@ -384,27 +384,28 @@
 
74
 static void vorbis_end(stream_processor *stream) 
 
75
 {
 
76
     misc_vorbis_info *inf = stream->data;
 
77
-    long minutes, seconds;
 
78
+    long minutes, seconds, milliseconds;
 
79
     double bitrate, time;
 
80
 
 
81
     /* This should be lastgranulepos - startgranulepos, or something like that*/
 
82
     time = (double)inf->lastgranulepos / inf->vi.rate;
 
83
     minutes = (long)time / 60;
 
84
     seconds = (long)time - minutes*60;
 
85
+    milliseconds = (long)((time - minutes*60 - seconds)*1000);
 
86
     bitrate = inf->bytes*8 / time / 1000.0;
 
87
 
 
88
 #ifdef _WIN32
 
89
     info(_("Vorbis stream %d:\n"
 
90
            "\tTotal data length: %I64d bytes\n"
 
91
-           "\tPlayback length: %ldm:%02lds\n"
 
92
+           "\tPlayback length: %ldm:%02ld.%03lds\n"
 
93
            "\tAverage bitrate: %f kbps\n"), 
 
94
-            stream->num,inf->bytes, minutes, seconds, bitrate);
 
95
+            stream->num,inf->bytes, minutes, seconds, milliseconds, bitrate);
 
96
 #else
 
97
     info(_("Vorbis stream %d:\n"
 
98
            "\tTotal data length: %lld bytes\n"
 
99
-           "\tPlayback length: %ldm:%02lds\n"
 
100
+           "\tPlayback length: %ldm:%02ld.%03lds\n"
 
101
            "\tAverage bitrate: %f kbps\n"), 
 
102
-            stream->num,inf->bytes, minutes, seconds, bitrate);
 
103
+            stream->num,inf->bytes, minutes, seconds, milliseconds, bitrate);
 
104
 #endif
 
105
 
 
106
     vorbis_comment_clear(&inf->vc);
 
107
@@ -719,8 +720,8 @@
 
108
 }
 
109
 
 
110
 static void usage(void) {
 
111
-    printf(_("ogginfo 1.0\n"
 
112
-             "(c) 2002 Michael Smith <msmith@xiph.org>\n"
 
113
+    printf(_("ogginfo 1.0.1\n"
 
114
+             "(c) 2003 Michael Smith <msmith@xiph.org>\n"
 
115
              "\n"
 
116
              "Usage: ogginfo [flags] file1.ogg [file2.ogg ... fileN.ogg]\n"
 
117
              "Flags supported:\n"
 
118
diff -Nru vorbis-tools-1.0.1/win32/oggdec.dsp vorbis-tools-head/win32/oggdec.dsp
 
119
--- vorbis-tools-1.0.1/win32/oggdec.dsp 1969-12-31 18:00:00.000000000 -0600
 
120
+++ vorbis-tools-head/win32/oggdec.dsp  2003-11-18 14:34:43.000000000 -0600
 
121
@@ -0,0 +1,111 @@
 
122
+# Microsoft Developer Studio Project File - Name="oggdec" - Package Owner=<4>
 
123
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
 
124
+# ** DO NOT EDIT **
 
125
+
 
126
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
 
127
+
 
128
+CFG=oggdec - Win32 Debug
 
129
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 
130
+!MESSAGE use the Export Makefile command and run
 
131
+!MESSAGE 
 
132
+!MESSAGE NMAKE /f "oggdec.mak".
 
133
+!MESSAGE 
 
134
+!MESSAGE You can specify a configuration when running NMAKE
 
135
+!MESSAGE by defining the macro CFG on the command line. For example:
 
136
+!MESSAGE 
 
137
+!MESSAGE NMAKE /f "oggdec.mak" CFG="oggdec - Win32 Debug"
 
138
+!MESSAGE 
 
139
+!MESSAGE Possible choices for configuration are:
 
140
+!MESSAGE 
 
141
+!MESSAGE "oggdec - Win32 Release" (based on "Win32 (x86) Console Application")
 
142
+!MESSAGE "oggdec - Win32 Debug" (based on "Win32 (x86) Console Application")
 
143
+!MESSAGE 
 
144
+
 
145
+# Begin Project
 
146
+# PROP AllowPerConfigDependencies 0
 
147
+# PROP Scc_ProjName ""
 
148
+# PROP Scc_LocalPath ""
 
149
+CPP=cl.exe
 
150
+RSC=rc.exe
 
151
+
 
152
+!IF  "$(CFG)" == "oggdec - Win32 Release"
 
153
+
 
154
+# PROP BASE Use_MFC 0
 
155
+# PROP BASE Use_Debug_Libraries 0
 
156
+# PROP BASE Output_Dir "Release"
 
157
+# PROP BASE Intermediate_Dir "Release"
 
158
+# PROP BASE Target_Dir ""
 
159
+# PROP Use_MFC 0
 
160
+# PROP Use_Debug_Libraries 0
 
161
+# PROP Output_Dir "Release\oggdec\static"
 
162
+# PROP Intermediate_Dir "Release\oggdec\static"
 
163
+# PROP Target_Dir ""
 
164
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 
165
+# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
 
166
+# SUBTRACT CPP /YX
 
167
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
 
168
+# ADD RSC /l 0x409 /d "NDEBUG"
 
169
+BSC32=bscmake.exe
 
170
+# ADD BASE BSC32 /nologo
 
171
+# ADD BSC32 /nologo
 
172
+LINK32=link.exe
 
173
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 
174
+# ADD LINK32 ogg_static.lib vorbis_static.lib vorbisenc_static.lib vorbisfile_static.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\ogg\win32\Static_Release" /libpath:"..\..\vorbis\win32\Vorbis_Static_Release" /libpath:"..\..\vorbis\win32\VorbisEnc_Static_Release" /libpath:"..\..\vorbis\win32\VorbisFile_Static_Release"
 
175
+
 
176
+!ELSEIF  "$(CFG)" == "oggdec - Win32 Debug"
 
177
+
 
178
+# PROP BASE Use_MFC 0
 
179
+# PROP BASE Use_Debug_Libraries 1
 
180
+# PROP BASE Output_Dir "oggdec___Win32_Debug"
 
181
+# PROP BASE Intermediate_Dir "oggdec___Win32_Debug"
 
182
+# PROP BASE Target_Dir ""
 
183
+# PROP Use_MFC 0
 
184
+# PROP Use_Debug_Libraries 1
 
185
+# PROP Output_Dir "Debug\oggdec\static"
 
186
+# PROP Intermediate_Dir "Debug\oggdec\static"
 
187
+# PROP Ignore_Export_Lib 0
 
188
+# PROP Target_Dir ""
 
189
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
 
190
+# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c
 
191
+# SUBTRACT CPP /YX
 
192
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
 
193
+# ADD RSC /l 0x409 /d "_DEBUG"
 
194
+BSC32=bscmake.exe
 
195
+# ADD BASE BSC32 /nologo
 
196
+# ADD BSC32 /nologo
 
197
+LINK32=link.exe
 
198
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 
199
+# ADD LINK32 ogg_static_d.lib vorbis_static_d.lib vorbisenc_static_d.lib vorbisfile_static_d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\ogg\win32\Static_Debug" /libpath:"..\..\vorbis\win32\Vorbis_Static_Debug" /libpath:"..\..\vorbis\win32\VorbisEnc_Static_Debug" /libpath:"..\..\vorbis\win32\VorbisFile_Static_Debug"
 
200
+
 
201
+!ENDIF 
 
202
+
 
203
+# Begin Target
 
204
+
 
205
+# Name "oggdec - Win32 Release"
 
206
+# Name "oggdec - Win32 Debug"
 
207
+# Begin Group "Source Files"
 
208
+
 
209
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 
210
+# Begin Source File
 
211
+
 
212
+SOURCE=..\share\getopt.c
 
213
+# End Source File
 
214
+# Begin Source File
 
215
+
 
216
+SOURCE=..\share\getopt1.c
 
217
+# End Source File
 
218
+# Begin Source File
 
219
+
 
220
+SOURCE=..\oggdec\oggdec.c
 
221
+# End Source File
 
222
+# End Group
 
223
+# Begin Group "Header Files"
 
224
+
 
225
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
 
226
+# End Group
 
227
+# Begin Group "Resource Files"
 
228
+
 
229
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 
230
+# End Group
 
231
+# End Target
 
232
+# End Project
 
233
diff -Nru vorbis-tools-1.0.1/win32/oggenc.dsp vorbis-tools-head/win32/oggenc.dsp
 
234
--- vorbis-tools-1.0.1/win32/oggenc.dsp 2002-07-04 04:16:13.000000000 -0500
 
235
+++ vorbis-tools-head/win32/oggenc.dsp  2003-11-18 14:34:43.000000000 -0600
 
236
@@ -1,155 +1,155 @@
 
237
-# Microsoft Developer Studio Project File - Name="oggenc" - Package Owner=<4>
 
238
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
 
239
-# ** DO NOT EDIT **
 
240
-
 
241
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
 
242
-
 
243
-CFG=oggenc - Win32 Debug
 
244
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 
245
-!MESSAGE use the Export Makefile command and run
 
246
-!MESSAGE 
 
247
-!MESSAGE NMAKE /f "oggenc.mak".
 
248
-!MESSAGE 
 
249
-!MESSAGE You can specify a configuration when running NMAKE
 
250
-!MESSAGE by defining the macro CFG on the command line. For example:
 
251
-!MESSAGE 
 
252
-!MESSAGE NMAKE /f "oggenc.mak" CFG="oggenc - Win32 Debug"
 
253
-!MESSAGE 
 
254
-!MESSAGE Possible choices for configuration are:
 
255
-!MESSAGE 
 
256
-!MESSAGE "oggenc - Win32 Release" (based on "Win32 (x86) Console Application")
 
257
-!MESSAGE "oggenc - Win32 Debug" (based on "Win32 (x86) Console Application")
 
258
-!MESSAGE 
 
259
-
 
260
-# Begin Project
 
261
-# PROP AllowPerConfigDependencies 0
 
262
-# PROP Scc_ProjName ""
 
263
-# PROP Scc_LocalPath ""
 
264
-CPP=cl.exe
 
265
-RSC=rc.exe
 
266
-
 
267
-!IF  "$(CFG)" == "oggenc - Win32 Release"
 
268
-
 
269
-# PROP BASE Use_MFC 0
 
270
-# PROP BASE Use_Debug_Libraries 0
 
271
-# PROP BASE Output_Dir "Release"
 
272
-# PROP BASE Intermediate_Dir "Release"
 
273
-# PROP BASE Target_Dir ""
 
274
-# PROP Use_MFC 0
 
275
-# PROP Use_Debug_Libraries 0
 
276
-# PROP Output_Dir "Release\oggenc\static"
 
277
-# PROP Intermediate_Dir "Release\oggenc\static"
 
278
-# PROP Target_Dir ""
 
279
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 
280
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
 
281
-# SUBTRACT CPP /YX
 
282
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
 
283
-# ADD RSC /l 0x409 /d "NDEBUG"
 
284
-BSC32=bscmake.exe
 
285
-# ADD BASE BSC32 /nologo
 
286
-# ADD BSC32 /nologo
 
287
-LINK32=link.exe
 
288
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 
289
-# ADD LINK32 ogg_static.lib vorbis_static.lib vorbisenc_static.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\ogg\win32\Static_Release" /libpath:"..\..\vorbis\win32\Vorbis_Static_Release" /libpath:"..\..\vorbis\win32\VorbisEnc_Static_Release"
 
290
-
 
291
-!ELSEIF  "$(CFG)" == "oggenc - Win32 Debug"
 
292
-
 
293
-# PROP BASE Use_MFC 0
 
294
-# PROP BASE Use_Debug_Libraries 1
 
295
-# PROP BASE Output_Dir "oggenc___Win32_Debug"
 
296
-# PROP BASE Intermediate_Dir "oggenc___Win32_Debug"
 
297
-# PROP BASE Target_Dir ""
 
298
-# PROP Use_MFC 0
 
299
-# PROP Use_Debug_Libraries 1
 
300
-# PROP Output_Dir "Debug\oggenc\static"
 
301
-# PROP Intermediate_Dir "Debug\oggenc\static"
 
302
-# PROP Ignore_Export_Lib 0
 
303
-# PROP Target_Dir ""
 
304
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
 
305
-# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c
 
306
-# SUBTRACT CPP /YX
 
307
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
 
308
-# ADD RSC /l 0x409 /d "_DEBUG"
 
309
-BSC32=bscmake.exe
 
310
-# ADD BASE BSC32 /nologo
 
311
-# ADD BSC32 /nologo
 
312
-LINK32=link.exe
 
313
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 
314
-# ADD LINK32 ogg_static_d.lib vorbis_static_d.lib vorbisenc_static_d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\ogg\win32\Static_Debug" /libpath:"..\..\vorbis\win32\Vorbis_Static_Debug" /libpath:"..\..\vorbis\win32\VorbisEnc_Static_Debug"
 
315
-
 
316
-!ENDIF 
 
317
-
 
318
-# Begin Target
 
319
-
 
320
-# Name "oggenc - Win32 Release"
 
321
-# Name "oggenc - Win32 Debug"
 
322
-# Begin Group "Source Files"
 
323
-
 
324
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 
325
-# Begin Source File
 
326
-
 
327
-SOURCE=..\oggenc\audio.c
 
328
-# End Source File
 
329
-# Begin Source File
 
330
-
 
331
-SOURCE=..\oggenc\encode.c
 
332
-# End Source File
 
333
-# Begin Source File
 
334
-
 
335
-SOURCE=..\share\getopt.c
 
336
-# End Source File
 
337
-# Begin Source File
 
338
-
 
339
-SOURCE=..\share\getopt1.c
 
340
-# End Source File
 
341
-# Begin Source File
 
342
-
 
343
-SOURCE=..\oggenc\oggenc.c
 
344
-# End Source File
 
345
-# Begin Source File
 
346
-
 
347
-SOURCE=..\oggenc\platform.c
 
348
-# End Source File
 
349
-# Begin Source File
 
350
-
 
351
-SOURCE=..\oggenc\resample.c
 
352
-# End Source File
 
353
-# Begin Source File
 
354
-
 
355
-SOURCE=..\share\utf8.c
 
356
-# End Source File
 
357
-# End Group
 
358
-# Begin Group "Header Files"
 
359
-
 
360
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
 
361
-# Begin Source File
 
362
-
 
363
-SOURCE=..\oggenc\audio.h
 
364
-# End Source File
 
365
-# Begin Source File
 
366
-
 
367
-SOURCE=..\oggenc\encode.h
 
368
-# End Source File
 
369
-# Begin Source File
 
370
-
 
371
-SOURCE=..\include\getopt.h
 
372
-# End Source File
 
373
-# Begin Source File
 
374
-
 
375
-SOURCE=..\oggenc\platform.h
 
376
-# End Source File
 
377
-# Begin Source File
 
378
-
 
379
-SOURCE=..\oggenc\resample.h
 
380
-# End Source File
 
381
-# Begin Source File
 
382
-
 
383
-SOURCE=..\include\utf8.h
 
384
-# End Source File
 
385
-# End Group
 
386
-# Begin Group "Resource Files"
 
387
-
 
388
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 
389
-# End Group
 
390
-# End Target
 
391
-# End Project
 
392
+# Microsoft Developer Studio Project File - Name="oggenc" - Package Owner=<4>
 
393
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
 
394
+# ** DO NOT EDIT **
 
395
+
 
396
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
 
397
+
 
398
+CFG=oggenc - Win32 Debug
 
399
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 
400
+!MESSAGE use the Export Makefile command and run
 
401
+!MESSAGE 
 
402
+!MESSAGE NMAKE /f "oggenc.mak".
 
403
+!MESSAGE 
 
404
+!MESSAGE You can specify a configuration when running NMAKE
 
405
+!MESSAGE by defining the macro CFG on the command line. For example:
 
406
+!MESSAGE 
 
407
+!MESSAGE NMAKE /f "oggenc.mak" CFG="oggenc - Win32 Debug"
 
408
+!MESSAGE 
 
409
+!MESSAGE Possible choices for configuration are:
 
410
+!MESSAGE 
 
411
+!MESSAGE "oggenc - Win32 Release" (based on "Win32 (x86) Console Application")
 
412
+!MESSAGE "oggenc - Win32 Debug" (based on "Win32 (x86) Console Application")
 
413
+!MESSAGE 
 
414
+
 
415
+# Begin Project
 
416
+# PROP AllowPerConfigDependencies 0
 
417
+# PROP Scc_ProjName ""
 
418
+# PROP Scc_LocalPath ""
 
419
+CPP=cl.exe
 
420
+RSC=rc.exe
 
421
+
 
422
+!IF  "$(CFG)" == "oggenc - Win32 Release"
 
423
+
 
424
+# PROP BASE Use_MFC 0
 
425
+# PROP BASE Use_Debug_Libraries 0
 
426
+# PROP BASE Output_Dir "Release"
 
427
+# PROP BASE Intermediate_Dir "Release"
 
428
+# PROP BASE Target_Dir ""
 
429
+# PROP Use_MFC 0
 
430
+# PROP Use_Debug_Libraries 0
 
431
+# PROP Output_Dir "Release\oggenc\static"
 
432
+# PROP Intermediate_Dir "Release\oggenc\static"
 
433
+# PROP Target_Dir ""
 
434
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 
435
+# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
 
436
+# SUBTRACT CPP /YX
 
437
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
 
438
+# ADD RSC /l 0x409 /d "NDEBUG"
 
439
+BSC32=bscmake.exe
 
440
+# ADD BASE BSC32 /nologo
 
441
+# ADD BSC32 /nologo
 
442
+LINK32=link.exe
 
443
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 
444
+# ADD LINK32 ogg_static.lib vorbis_static.lib vorbisenc_static.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\ogg\win32\Static_Release" /libpath:"..\..\vorbis\win32\Vorbis_Static_Release" /libpath:"..\..\vorbis\win32\VorbisEnc_Static_Release"
 
445
+
 
446
+!ELSEIF  "$(CFG)" == "oggenc - Win32 Debug"
 
447
+
 
448
+# PROP BASE Use_MFC 0
 
449
+# PROP BASE Use_Debug_Libraries 1
 
450
+# PROP BASE Output_Dir "oggenc___Win32_Debug"
 
451
+# PROP BASE Intermediate_Dir "oggenc___Win32_Debug"
 
452
+# PROP BASE Target_Dir ""
 
453
+# PROP Use_MFC 0
 
454
+# PROP Use_Debug_Libraries 1
 
455
+# PROP Output_Dir "Debug\oggenc\static"
 
456
+# PROP Intermediate_Dir "Debug\oggenc\static"
 
457
+# PROP Ignore_Export_Lib 0
 
458
+# PROP Target_Dir ""
 
459
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
 
460
+# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c
 
461
+# SUBTRACT CPP /YX
 
462
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
 
463
+# ADD RSC /l 0x409 /d "_DEBUG"
 
464
+BSC32=bscmake.exe
 
465
+# ADD BASE BSC32 /nologo
 
466
+# ADD BSC32 /nologo
 
467
+LINK32=link.exe
 
468
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 
469
+# ADD LINK32 ogg_static_d.lib vorbis_static_d.lib vorbisenc_static_d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\ogg\win32\Static_Debug" /libpath:"..\..\vorbis\win32\Vorbis_Static_Debug" /libpath:"..\..\vorbis\win32\VorbisEnc_Static_Debug"
 
470
+
 
471
+!ENDIF 
 
472
+
 
473
+# Begin Target
 
474
+
 
475
+# Name "oggenc - Win32 Release"
 
476
+# Name "oggenc - Win32 Debug"
 
477
+# Begin Group "Source Files"
 
478
+
 
479
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 
480
+# Begin Source File
 
481
+
 
482
+SOURCE=..\oggenc\audio.c
 
483
+# End Source File
 
484
+# Begin Source File
 
485
+
 
486
+SOURCE=..\oggenc\encode.c
 
487
+# End Source File
 
488
+# Begin Source File
 
489
+
 
490
+SOURCE=..\share\getopt.c
 
491
+# End Source File
 
492
+# Begin Source File
 
493
+
 
494
+SOURCE=..\share\getopt1.c
 
495
+# End Source File
 
496
+# Begin Source File
 
497
+
 
498
+SOURCE=..\oggenc\oggenc.c
 
499
+# End Source File
 
500
+# Begin Source File
 
501
+
 
502
+SOURCE=..\oggenc\platform.c
 
503
+# End Source File
 
504
+# Begin Source File
 
505
+
 
506
+SOURCE=..\oggenc\resample.c
 
507
+# End Source File
 
508
+# Begin Source File
 
509
+
 
510
+SOURCE=..\share\utf8.c
 
511
+# End Source File
 
512
+# End Group
 
513
+# Begin Group "Header Files"
 
514
+
 
515
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
 
516
+# Begin Source File
 
517
+
 
518
+SOURCE=..\oggenc\audio.h
 
519
+# End Source File
 
520
+# Begin Source File
 
521
+
 
522
+SOURCE=..\oggenc\encode.h
 
523
+# End Source File
 
524
+# Begin Source File
 
525
+
 
526
+SOURCE=..\include\getopt.h
 
527
+# End Source File
 
528
+# Begin Source File
 
529
+
 
530
+SOURCE=..\oggenc\platform.h
 
531
+# End Source File
 
532
+# Begin Source File
 
533
+
 
534
+SOURCE=..\oggenc\resample.h
 
535
+# End Source File
 
536
+# Begin Source File
 
537
+
 
538
+SOURCE=..\include\utf8.h
 
539
+# End Source File
 
540
+# End Group
 
541
+# Begin Group "Resource Files"
 
542
+
 
543
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 
544
+# End Group
 
545
+# End Target
 
546
+# End Project
 
547
diff -Nru vorbis-tools-1.0.1/win32/oggenc_dynamic.dsp vorbis-tools-head/win32/oggenc_dynamic.dsp
 
548
--- vorbis-tools-1.0.1/win32/oggenc_dynamic.dsp 2002-07-04 04:16:13.000000000 -0500
 
549
+++ vorbis-tools-head/win32/oggenc_dynamic.dsp  2003-11-18 14:34:43.000000000 -0600
 
550
@@ -1,152 +1,152 @@
 
551
-# Microsoft Developer Studio Project File - Name="oggenc_dynamic" - Package Owner=<4>
 
552
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
 
553
-# ** DO NOT EDIT **
 
554
-
 
555
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
 
556
-
 
557
-CFG=oggenc_dynamic - Win32 Debug
 
558
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 
559
-!MESSAGE use the Export Makefile command and run
 
560
-!MESSAGE 
 
561
-!MESSAGE NMAKE /f "oggenc_dynamic.mak".
 
562
-!MESSAGE 
 
563
-!MESSAGE You can specify a configuration when running NMAKE
 
564
-!MESSAGE by defining the macro CFG on the command line. For example:
 
565
-!MESSAGE 
 
566
-!MESSAGE NMAKE /f "oggenc_dynamic.mak" CFG="oggenc_dynamic - Win32 Debug"
 
567
-!MESSAGE 
 
568
-!MESSAGE Possible choices for configuration are:
 
569
-!MESSAGE 
 
570
-!MESSAGE "oggenc_dynamic - Win32 Release" (based on "Win32 (x86) Console Application")
 
571
-!MESSAGE "oggenc_dynamic - Win32 Debug" (based on "Win32 (x86) Console Application")
 
572
-!MESSAGE 
 
573
-
 
574
-# Begin Project
 
575
-# PROP AllowPerConfigDependencies 0
 
576
-# PROP Scc_ProjName ""
 
577
-# PROP Scc_LocalPath ""
 
578
-CPP=cl.exe
 
579
-RSC=rc.exe
 
580
-
 
581
-!IF  "$(CFG)" == "oggenc_dynamic - Win32 Release"
 
582
-
 
583
-# PROP BASE Use_MFC 0
 
584
-# PROP BASE Use_Debug_Libraries 0
 
585
-# PROP BASE Output_Dir "oggenc_dynamic___Win32_Release"
 
586
-# PROP BASE Intermediate_Dir "oggenc_dynamic___Win32_Release"
 
587
-# PROP BASE Target_Dir ""
 
588
-# PROP Use_MFC 0
 
589
-# PROP Use_Debug_Libraries 0
 
590
-# PROP Output_Dir "Release\oggenc\dynamic"
 
591
-# PROP Intermediate_Dir "Release\oggenc\dynamic"
 
592
-# PROP Ignore_Export_Lib 0
 
593
-# PROP Target_Dir ""
 
594
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 
595
-# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
 
596
-# SUBTRACT CPP /YX
 
597
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
 
598
-# ADD RSC /l 0x409 /d "NDEBUG"
 
599
-BSC32=bscmake.exe
 
600
-# ADD BASE BSC32 /nologo
 
601
-# ADD BSC32 /nologo
 
602
-LINK32=link.exe
 
603
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 
604
-# ADD LINK32 ogg.lib vorbis.lib vorbisenc.lib /nologo /subsystem:console /machine:I386 /out:"Release\oggenc\dynamic/oggenc.exe" /libpath:"..\..\ogg\win32\Dynamic_Release" /libpath:"..\..\vorbis\win32\Vorbis_Dynamic_Release" /libpath:"..\..\vorbis\win32\VorbisEnc_Dynamic_Release"
 
605
-
 
606
-!ELSEIF  "$(CFG)" == "oggenc_dynamic - Win32 Debug"
 
607
-
 
608
-# PROP BASE Use_MFC 0
 
609
-# PROP BASE Use_Debug_Libraries 1
 
610
-# PROP BASE Output_Dir "oggenc_dynamic___Win32_Debug"
 
611
-# PROP BASE Intermediate_Dir "oggenc_dynamic___Win32_Debug"
 
612
-# PROP BASE Target_Dir ""
 
613
-# PROP Use_MFC 0
 
614
-# PROP Use_Debug_Libraries 1
 
615
-# PROP Output_Dir "Debug\oggenc\dynamic"
 
616
-# PROP Intermediate_Dir "Debug\oggenc\dynamic"
 
617
-# PROP Ignore_Export_Lib 0
 
618
-# PROP Target_Dir ""
 
619
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
 
620
-# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c
 
621
-# SUBTRACT CPP /YX
 
622
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
 
623
-# ADD RSC /l 0x409 /d "_DEBUG"
 
624
-BSC32=bscmake.exe
 
625
-# ADD BASE BSC32 /nologo
 
626
-# ADD BSC32 /nologo
 
627
-LINK32=link.exe
 
628
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 
629
-# ADD LINK32 ogg_d.lib vorbis_d.lib vorbisenc_d.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug\oggenc\dynamic/oggenc.exe" /pdbtype:sept /libpath:"..\..\ogg\win32\Dynamic_Debug" /libpath:"..\..\vorbis\win32\Vorbis_Dynamic_Debug" /libpath:"..\..\vorbis\win32\VorbisEnc_Dynamic_Debug"
 
630
-
 
631
-!ENDIF 
 
632
-
 
633
-# Begin Target
 
634
-
 
635
-# Name "oggenc_dynamic - Win32 Release"
 
636
-# Name "oggenc_dynamic - Win32 Debug"
 
637
-# Begin Group "Source Files"
 
638
-
 
639
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 
640
-# Begin Source File
 
641
-
 
642
-SOURCE=..\oggenc\audio.c
 
643
-# End Source File
 
644
-# Begin Source File
 
645
-
 
646
-SOURCE=..\oggenc\encode.c
 
647
-# End Source File
 
648
-# Begin Source File
 
649
-
 
650
-SOURCE=..\share\getopt.c
 
651
-# End Source File
 
652
-# Begin Source File
 
653
-
 
654
-SOURCE=..\share\getopt1.c
 
655
-# End Source File
 
656
-# Begin Source File
 
657
-
 
658
-SOURCE=..\oggenc\oggenc.c
 
659
-# End Source File
 
660
-# Begin Source File
 
661
-
 
662
-SOURCE=..\oggenc\platform.c
 
663
-# End Source File
 
664
-# Begin Source File
 
665
-
 
666
-SOURCE=..\oggenc\resample.c
 
667
-# End Source File
 
668
-# Begin Source File
 
669
-
 
670
-SOURCE=..\share\utf8.c
 
671
-# End Source File
 
672
-# End Group
 
673
-# Begin Group "Header Files"
 
674
-
 
675
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
 
676
-# Begin Source File
 
677
-
 
678
-SOURCE=..\oggenc\audio.h
 
679
-# End Source File
 
680
-# Begin Source File
 
681
-
 
682
-SOURCE=..\oggenc\encode.h
 
683
-# End Source File
 
684
-# Begin Source File
 
685
-
 
686
-SOURCE=..\include\getopt.h
 
687
-# End Source File
 
688
-# Begin Source File
 
689
-
 
690
-SOURCE=..\oggenc\platform.h
 
691
-# End Source File
 
692
-# Begin Source File
 
693
-
 
694
-SOURCE=..\include\utf8.h
 
695
-# End Source File
 
696
-# End Group
 
697
-# Begin Group "Resource Files"
 
698
-
 
699
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 
700
-# End Group
 
701
-# End Target
 
702
-# End Project
 
703
+# Microsoft Developer Studio Project File - Name="oggenc_dynamic" - Package Owner=<4>
 
704
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
 
705
+# ** DO NOT EDIT **
 
706
+
 
707
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
 
708
+
 
709
+CFG=oggenc_dynamic - Win32 Debug
 
710
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 
711
+!MESSAGE use the Export Makefile command and run
 
712
+!MESSAGE 
 
713
+!MESSAGE NMAKE /f "oggenc_dynamic.mak".
 
714
+!MESSAGE 
 
715
+!MESSAGE You can specify a configuration when running NMAKE
 
716
+!MESSAGE by defining the macro CFG on the command line. For example:
 
717
+!MESSAGE 
 
718
+!MESSAGE NMAKE /f "oggenc_dynamic.mak" CFG="oggenc_dynamic - Win32 Debug"
 
719
+!MESSAGE 
 
720
+!MESSAGE Possible choices for configuration are:
 
721
+!MESSAGE 
 
722
+!MESSAGE "oggenc_dynamic - Win32 Release" (based on "Win32 (x86) Console Application")
 
723
+!MESSAGE "oggenc_dynamic - Win32 Debug" (based on "Win32 (x86) Console Application")
 
724
+!MESSAGE 
 
725
+
 
726
+# Begin Project
 
727
+# PROP AllowPerConfigDependencies 0
 
728
+# PROP Scc_ProjName ""
 
729
+# PROP Scc_LocalPath ""
 
730
+CPP=cl.exe
 
731
+RSC=rc.exe
 
732
+
 
733
+!IF  "$(CFG)" == "oggenc_dynamic - Win32 Release"
 
734
+
 
735
+# PROP BASE Use_MFC 0
 
736
+# PROP BASE Use_Debug_Libraries 0
 
737
+# PROP BASE Output_Dir "oggenc_dynamic___Win32_Release"
 
738
+# PROP BASE Intermediate_Dir "oggenc_dynamic___Win32_Release"
 
739
+# PROP BASE Target_Dir ""
 
740
+# PROP Use_MFC 0
 
741
+# PROP Use_Debug_Libraries 0
 
742
+# PROP Output_Dir "Release\oggenc\dynamic"
 
743
+# PROP Intermediate_Dir "Release\oggenc\dynamic"
 
744
+# PROP Ignore_Export_Lib 0
 
745
+# PROP Target_Dir ""
 
746
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 
747
+# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
 
748
+# SUBTRACT CPP /YX
 
749
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
 
750
+# ADD RSC /l 0x409 /d "NDEBUG"
 
751
+BSC32=bscmake.exe
 
752
+# ADD BASE BSC32 /nologo
 
753
+# ADD BSC32 /nologo
 
754
+LINK32=link.exe
 
755
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 
756
+# ADD LINK32 ogg.lib vorbis.lib vorbisenc.lib /nologo /subsystem:console /machine:I386 /out:"Release\oggenc\dynamic/oggenc.exe" /libpath:"..\..\ogg\win32\Dynamic_Release" /libpath:"..\..\vorbis\win32\Vorbis_Dynamic_Release" /libpath:"..\..\vorbis\win32\VorbisEnc_Dynamic_Release"
 
757
+
 
758
+!ELSEIF  "$(CFG)" == "oggenc_dynamic - Win32 Debug"
 
759
+
 
760
+# PROP BASE Use_MFC 0
 
761
+# PROP BASE Use_Debug_Libraries 1
 
762
+# PROP BASE Output_Dir "oggenc_dynamic___Win32_Debug"
 
763
+# PROP BASE Intermediate_Dir "oggenc_dynamic___Win32_Debug"
 
764
+# PROP BASE Target_Dir ""
 
765
+# PROP Use_MFC 0
 
766
+# PROP Use_Debug_Libraries 1
 
767
+# PROP Output_Dir "Debug\oggenc\dynamic"
 
768
+# PROP Intermediate_Dir "Debug\oggenc\dynamic"
 
769
+# PROP Ignore_Export_Lib 0
 
770
+# PROP Target_Dir ""
 
771
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
 
772
+# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c
 
773
+# SUBTRACT CPP /YX
 
774
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
 
775
+# ADD RSC /l 0x409 /d "_DEBUG"
 
776
+BSC32=bscmake.exe
 
777
+# ADD BASE BSC32 /nologo
 
778
+# ADD BSC32 /nologo
 
779
+LINK32=link.exe
 
780
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 
781
+# ADD LINK32 ogg_d.lib vorbis_d.lib vorbisenc_d.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug\oggenc\dynamic/oggenc.exe" /pdbtype:sept /libpath:"..\..\ogg\win32\Dynamic_Debug" /libpath:"..\..\vorbis\win32\Vorbis_Dynamic_Debug" /libpath:"..\..\vorbis\win32\VorbisEnc_Dynamic_Debug"
 
782
+
 
783
+!ENDIF 
 
784
+
 
785
+# Begin Target
 
786
+
 
787
+# Name "oggenc_dynamic - Win32 Release"
 
788
+# Name "oggenc_dynamic - Win32 Debug"
 
789
+# Begin Group "Source Files"
 
790
+
 
791
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 
792
+# Begin Source File
 
793
+
 
794
+SOURCE=..\oggenc\audio.c
 
795
+# End Source File
 
796
+# Begin Source File
 
797
+
 
798
+SOURCE=..\oggenc\encode.c
 
799
+# End Source File
 
800
+# Begin Source File
 
801
+
 
802
+SOURCE=..\share\getopt.c
 
803
+# End Source File
 
804
+# Begin Source File
 
805
+
 
806
+SOURCE=..\share\getopt1.c
 
807
+# End Source File
 
808
+# Begin Source File
 
809
+
 
810
+SOURCE=..\oggenc\oggenc.c
 
811
+# End Source File
 
812
+# Begin Source File
 
813
+
 
814
+SOURCE=..\oggenc\platform.c
 
815
+# End Source File
 
816
+# Begin Source File
 
817
+
 
818
+SOURCE=..\oggenc\resample.c
 
819
+# End Source File
 
820
+# Begin Source File
 
821
+
 
822
+SOURCE=..\share\utf8.c
 
823
+# End Source File
 
824
+# End Group
 
825
+# Begin Group "Header Files"
 
826
+
 
827
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
 
828
+# Begin Source File
 
829
+
 
830
+SOURCE=..\oggenc\audio.h
 
831
+# End Source File
 
832
+# Begin Source File
 
833
+
 
834
+SOURCE=..\oggenc\encode.h
 
835
+# End Source File
 
836
+# Begin Source File
 
837
+
 
838
+SOURCE=..\include\getopt.h
 
839
+# End Source File
 
840
+# Begin Source File
 
841
+
 
842
+SOURCE=..\oggenc\platform.h
 
843
+# End Source File
 
844
+# Begin Source File
 
845
+
 
846
+SOURCE=..\include\utf8.h
 
847
+# End Source File
 
848
+# End Group
 
849
+# Begin Group "Resource Files"
 
850
+
 
851
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 
852
+# End Group
 
853
+# End Target
 
854
+# End Project
 
855
diff -Nru vorbis-tools-1.0.1/win32/tools.dsw vorbis-tools-head/win32/tools.dsw
 
856
--- vorbis-tools-1.0.1/win32/tools.dsw  2002-07-04 04:16:13.000000000 -0500
 
857
+++ vorbis-tools-head/win32/tools.dsw   2003-11-18 14:34:43.000000000 -0600
 
858
@@ -1,104 +1,119 @@
 
859
-Microsoft Developer Studio Workspace File, Format Version 6.00
 
860
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
 
861
-
 
862
-###############################################################################
 
863
-
 
864
-Project: "oggenc"=".\oggenc.dsp" - Package Owner=<4>
 
865
-
 
866
-Package=<5>
 
867
-{{{
 
868
-}}}
 
869
-
 
870
-Package=<4>
 
871
-{{{
 
872
-}}}
 
873
-
 
874
-###############################################################################
 
875
-
 
876
-Project: "oggenc_dynamic"=".\oggenc_dynamic.dsp" - Package Owner=<4>
 
877
-
 
878
-Package=<5>
 
879
-{{{
 
880
-}}}
 
881
-
 
882
-Package=<4>
 
883
-{{{
 
884
-}}}
 
885
-
 
886
-###############################################################################
 
887
-
 
888
-Project: "ogginfo"=".\ogginfo.dsp" - Package Owner=<4>
 
889
-
 
890
-Package=<5>
 
891
-{{{
 
892
-}}}
 
893
-
 
894
-Package=<4>
 
895
-{{{
 
896
-}}}
 
897
-
 
898
-###############################################################################
 
899
-
 
900
-Project: "tools"=".\tools.dsp" - Package Owner=<4>
 
901
-
 
902
-Package=<5>
 
903
-{{{
 
904
-}}}
 
905
-
 
906
-Package=<4>
 
907
-{{{
 
908
-    Begin Project Dependency
 
909
-    Project_Dep_Name oggenc
 
910
-    End Project Dependency
 
911
-    Begin Project Dependency
 
912
-    Project_Dep_Name oggenc_dynamic
 
913
-    End Project Dependency
 
914
-    Begin Project Dependency
 
915
-    Project_Dep_Name ogginfo
 
916
-    End Project Dependency
 
917
-    Begin Project Dependency
 
918
-    Project_Dep_Name vcut
 
919
-    End Project Dependency
 
920
-    Begin Project Dependency
 
921
-    Project_Dep_Name vorbiscomment
 
922
-    End Project Dependency
 
923
-}}}
 
924
-
 
925
-###############################################################################
 
926
-
 
927
-Project: "vcut"=".\vcut.dsp" - Package Owner=<4>
 
928
-
 
929
-Package=<5>
 
930
-{{{
 
931
-}}}
 
932
-
 
933
-Package=<4>
 
934
-{{{
 
935
-}}}
 
936
-
 
937
-###############################################################################
 
938
-
 
939
-Project: "vorbiscomment"=".\vorbiscomment.dsp" - Package Owner=<4>
 
940
-
 
941
-Package=<5>
 
942
-{{{
 
943
-}}}
 
944
-
 
945
-Package=<4>
 
946
-{{{
 
947
-}}}
 
948
-
 
949
-###############################################################################
 
950
-
 
951
-Global:
 
952
-
 
953
-Package=<5>
 
954
-{{{
 
955
-}}}
 
956
-
 
957
-Package=<3>
 
958
-{{{
 
959
-}}}
 
960
-
 
961
-###############################################################################
 
962
-
 
963
+Microsoft Developer Studio Workspace File, Format Version 6.00
 
964
+# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
 
965
+
 
966
+###############################################################################
 
967
+
 
968
+Project: "oggdec"=".\oggdec.dsp" - Package Owner=<4>
 
969
+
 
970
+Package=<5>
 
971
+{{{
 
972
+}}}
 
973
+
 
974
+Package=<4>
 
975
+{{{
 
976
+}}}
 
977
+
 
978
+###############################################################################
 
979
+
 
980
+Project: "oggenc"=".\oggenc.dsp" - Package Owner=<4>
 
981
+
 
982
+Package=<5>
 
983
+{{{
 
984
+}}}
 
985
+
 
986
+Package=<4>
 
987
+{{{
 
988
+}}}
 
989
+
 
990
+###############################################################################
 
991
+
 
992
+Project: "oggenc_dynamic"=".\oggenc_dynamic.dsp" - Package Owner=<4>
 
993
+
 
994
+Package=<5>
 
995
+{{{
 
996
+}}}
 
997
+
 
998
+Package=<4>
 
999
+{{{
 
1000
+}}}
 
1001
+
 
1002
+###############################################################################
 
1003
+
 
1004
+Project: "ogginfo"=".\ogginfo.dsp" - Package Owner=<4>
 
1005
+
 
1006
+Package=<5>
 
1007
+{{{
 
1008
+}}}
 
1009
+
 
1010
+Package=<4>
 
1011
+{{{
 
1012
+}}}
 
1013
+
 
1014
+###############################################################################
 
1015
+
 
1016
+Project: "tools"=".\tools.dsp" - Package Owner=<4>
 
1017
+
 
1018
+Package=<5>
 
1019
+{{{
 
1020
+}}}
 
1021
+
 
1022
+Package=<4>
 
1023
+{{{
 
1024
+    Begin Project Dependency
 
1025
+    Project_Dep_Name oggenc
 
1026
+    End Project Dependency
 
1027
+    Begin Project Dependency
 
1028
+    Project_Dep_Name oggenc_dynamic
 
1029
+    End Project Dependency
 
1030
+    Begin Project Dependency
 
1031
+    Project_Dep_Name ogginfo
 
1032
+    End Project Dependency
 
1033
+    Begin Project Dependency
 
1034
+    Project_Dep_Name vcut
 
1035
+    End Project Dependency
 
1036
+    Begin Project Dependency
 
1037
+    Project_Dep_Name vorbiscomment
 
1038
+    End Project Dependency
 
1039
+    Begin Project Dependency
 
1040
+    Project_Dep_Name oggdec
 
1041
+    End Project Dependency
 
1042
+}}}
 
1043
+
 
1044
+###############################################################################
 
1045
+
 
1046
+Project: "vcut"=".\vcut.dsp" - Package Owner=<4>
 
1047
+
 
1048
+Package=<5>
 
1049
+{{{
 
1050
+}}}
 
1051
+
 
1052
+Package=<4>
 
1053
+{{{
 
1054
+}}}
 
1055
+
 
1056
+###############################################################################
 
1057
+
 
1058
+Project: "vorbiscomment"=".\vorbiscomment.dsp" - Package Owner=<4>
 
1059
+
 
1060
+Package=<5>
 
1061
+{{{
 
1062
+}}}
 
1063
+
 
1064
+Package=<4>
 
1065
+{{{
 
1066
+}}}
 
1067
+
 
1068
+###############################################################################
 
1069
+
 
1070
+Global:
 
1071
+
 
1072
+Package=<5>
 
1073
+{{{
 
1074
+}}}
 
1075
+
 
1076
+Package=<3>
 
1077
+{{{
 
1078
+}}}
 
1079
+
 
1080
+###############################################################################
 
1081
+
 
1082
Binary files vorbis-tools-1.0.1/win32/tools.opt and vorbis-tools-head/win32/tools.opt differ
 
1083
diff -Nru vorbis-tools-1.0.1/win32/vorbiscomment.dsp vorbis-tools-head/win32/vorbiscomment.dsp
 
1084
--- vorbis-tools-1.0.1/win32/vorbiscomment.dsp  2002-07-04 04:16:13.000000000 -0500
 
1085
+++ vorbis-tools-head/win32/vorbiscomment.dsp   2003-11-18 13:51:30.000000000 -0600
 
1086
@@ -1,122 +1,122 @@
 
1087
-# Microsoft Developer Studio Project File - Name="vorbiscomment" - Package Owner=<4>
 
1088
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
 
1089
-# ** DO NOT EDIT **
 
1090
-
 
1091
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
 
1092
-
 
1093
-CFG=vorbiscomment - Win32 Debug
 
1094
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 
1095
-!MESSAGE use the Export Makefile command and run
 
1096
-!MESSAGE 
 
1097
-!MESSAGE NMAKE /f "vorbiscomment.mak".
 
1098
-!MESSAGE 
 
1099
-!MESSAGE You can specify a configuration when running NMAKE
 
1100
-!MESSAGE by defining the macro CFG on the command line. For example:
 
1101
-!MESSAGE 
 
1102
-!MESSAGE NMAKE /f "vorbiscomment.mak" CFG="vorbiscomment - Win32 Debug"
 
1103
-!MESSAGE 
 
1104
-!MESSAGE Possible choices for configuration are:
 
1105
-!MESSAGE 
 
1106
-!MESSAGE "vorbiscomment - Win32 Release" (based on "Win32 (x86) Console Application")
 
1107
-!MESSAGE "vorbiscomment - Win32 Debug" (based on "Win32 (x86) Console Application")
 
1108
-!MESSAGE 
 
1109
-
 
1110
-# Begin Project
 
1111
-# PROP AllowPerConfigDependencies 0
 
1112
-# PROP Scc_ProjName ""
 
1113
-# PROP Scc_LocalPath ""
 
1114
-CPP=cl.exe
 
1115
-RSC=rc.exe
 
1116
-
 
1117
-!IF  "$(CFG)" == "vorbiscomment - Win32 Release"
 
1118
-
 
1119
-# PROP BASE Use_MFC 0
 
1120
-# PROP BASE Use_Debug_Libraries 0
 
1121
-# PROP BASE Output_Dir "vorbiscomment___Win32_Release"
 
1122
-# PROP BASE Intermediate_Dir "vorbiscomment___Win32_Release"
 
1123
-# PROP BASE Target_Dir ""
 
1124
-# PROP Use_MFC 0
 
1125
-# PROP Use_Debug_Libraries 0
 
1126
-# PROP Output_Dir "Release\vorbiscomment\static"
 
1127
-# PROP Intermediate_Dir "Release\vorbiscomment\static"
 
1128
-# PROP Target_Dir ""
 
1129
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 
1130
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 
1131
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
 
1132
-# ADD RSC /l 0x409 /d "NDEBUG"
 
1133
-BSC32=bscmake.exe
 
1134
-# ADD BASE BSC32 /nologo
 
1135
-# ADD BSC32 /nologo
 
1136
-LINK32=link.exe
 
1137
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib  kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 
1138
-# ADD LINK32 ogg_static.lib vorbis_static.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\ogg\win32\Static_Release" /libpath:"..\..\vorbis\win32\Vorbis_Static_Release"
 
1139
-
 
1140
-!ELSEIF  "$(CFG)" == "vorbiscomment - Win32 Debug"
 
1141
-
 
1142
-# PROP BASE Use_MFC 0
 
1143
-# PROP BASE Use_Debug_Libraries 1
 
1144
-# PROP BASE Output_Dir "vorbiscomment___Win32_Debug"
 
1145
-# PROP BASE Intermediate_Dir "vorbiscomment___Win32_Debug"
 
1146
-# PROP BASE Target_Dir ""
 
1147
-# PROP Use_MFC 0
 
1148
-# PROP Use_Debug_Libraries 1
 
1149
-# PROP Output_Dir "Debug\vorbiscomment\static"
 
1150
-# PROP Intermediate_Dir "Debug\vorbiscomment\static"
 
1151
-# PROP Ignore_Export_Lib 0
 
1152
-# PROP Target_Dir ""
 
1153
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ  /c
 
1154
-# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /FD /GZ  /c
 
1155
-# SUBTRACT CPP /YX
 
1156
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
 
1157
-# ADD RSC /l 0x409 /d "_DEBUG"
 
1158
-BSC32=bscmake.exe
 
1159
-# ADD BASE BSC32 /nologo
 
1160
-# ADD BSC32 /nologo
 
1161
-LINK32=link.exe
 
1162
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib  kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 
1163
-# ADD LINK32 ogg_static_d.lib vorbis_static_d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\ogg\win32\Static_Debug" /libpath:"..\..\vorbis\win32\Vorbis_Static_Debug"
 
1164
-
 
1165
-!ENDIF 
 
1166
-
 
1167
-# Begin Target
 
1168
-
 
1169
-# Name "vorbiscomment - Win32 Release"
 
1170
-# Name "vorbiscomment - Win32 Debug"
 
1171
-# Begin Group "Source Files"
 
1172
-
 
1173
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 
1174
-# Begin Source File
 
1175
-
 
1176
-SOURCE=..\share\getopt.c
 
1177
-# End Source File
 
1178
-# Begin Source File
 
1179
-
 
1180
-SOURCE=..\share\getopt1.c
 
1181
-# End Source File
 
1182
-# Begin Source File
 
1183
-
 
1184
-SOURCE=..\share\utf8.c
 
1185
-# End Source File
 
1186
-# Begin Source File
 
1187
-
 
1188
-SOURCE=..\vorbiscomment\vcedit.c
 
1189
-# End Source File
 
1190
-# Begin Source File
 
1191
-
 
1192
-SOURCE=..\vorbiscomment\vcomment.c
 
1193
-# End Source File
 
1194
-# End Group
 
1195
-# Begin Group "Header Files"
 
1196
-
 
1197
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
 
1198
-# Begin Source File
 
1199
-
 
1200
-SOURCE=..\vorbiscomment\vcedit.h
 
1201
-# End Source File
 
1202
-# End Group
 
1203
-# Begin Group "Resource Files"
 
1204
-
 
1205
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 
1206
-# End Group
 
1207
-# End Target
 
1208
-# End Project
 
1209
+# Microsoft Developer Studio Project File - Name="vorbiscomment" - Package Owner=<4>
 
1210
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
 
1211
+# ** DO NOT EDIT **
 
1212
+
 
1213
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
 
1214
+
 
1215
+CFG=vorbiscomment - Win32 Debug
 
1216
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 
1217
+!MESSAGE use the Export Makefile command and run
 
1218
+!MESSAGE 
 
1219
+!MESSAGE NMAKE /f "vorbiscomment.mak".
 
1220
+!MESSAGE 
 
1221
+!MESSAGE You can specify a configuration when running NMAKE
 
1222
+!MESSAGE by defining the macro CFG on the command line. For example:
 
1223
+!MESSAGE 
 
1224
+!MESSAGE NMAKE /f "vorbiscomment.mak" CFG="vorbiscomment - Win32 Debug"
 
1225
+!MESSAGE 
 
1226
+!MESSAGE Possible choices for configuration are:
 
1227
+!MESSAGE 
 
1228
+!MESSAGE "vorbiscomment - Win32 Release" (based on "Win32 (x86) Console Application")
 
1229
+!MESSAGE "vorbiscomment - Win32 Debug" (based on "Win32 (x86) Console Application")
 
1230
+!MESSAGE 
 
1231
+
 
1232
+# Begin Project
 
1233
+# PROP AllowPerConfigDependencies 0
 
1234
+# PROP Scc_ProjName ""
 
1235
+# PROP Scc_LocalPath ""
 
1236
+CPP=cl.exe
 
1237
+RSC=rc.exe
 
1238
+
 
1239
+!IF  "$(CFG)" == "vorbiscomment - Win32 Release"
 
1240
+
 
1241
+# PROP BASE Use_MFC 0
 
1242
+# PROP BASE Use_Debug_Libraries 0
 
1243
+# PROP BASE Output_Dir "vorbiscomment___Win32_Release"
 
1244
+# PROP BASE Intermediate_Dir "vorbiscomment___Win32_Release"
 
1245
+# PROP BASE Target_Dir ""
 
1246
+# PROP Use_MFC 0
 
1247
+# PROP Use_Debug_Libraries 0
 
1248
+# PROP Output_Dir "Release\vorbiscomment\static"
 
1249
+# PROP Intermediate_Dir "Release\vorbiscomment\static"
 
1250
+# PROP Target_Dir ""
 
1251
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 
1252
+# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D VERSION=\"1.0.1\" /YX /FD /c
 
1253
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
 
1254
+# ADD RSC /l 0x409 /d "NDEBUG"
 
1255
+BSC32=bscmake.exe
 
1256
+# ADD BASE BSC32 /nologo
 
1257
+# ADD BSC32 /nologo
 
1258
+LINK32=link.exe
 
1259
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 
1260
+# ADD LINK32 ogg_static.lib vorbis_static.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\ogg\win32\Static_Release" /libpath:"..\..\vorbis\win32\Vorbis_Static_Release"
 
1261
+
 
1262
+!ELSEIF  "$(CFG)" == "vorbiscomment - Win32 Debug"
 
1263
+
 
1264
+# PROP BASE Use_MFC 0
 
1265
+# PROP BASE Use_Debug_Libraries 1
 
1266
+# PROP BASE Output_Dir "vorbiscomment___Win32_Debug"
 
1267
+# PROP BASE Intermediate_Dir "vorbiscomment___Win32_Debug"
 
1268
+# PROP BASE Target_Dir ""
 
1269
+# PROP Use_MFC 0
 
1270
+# PROP Use_Debug_Libraries 1
 
1271
+# PROP Output_Dir "Debug\vorbiscomment\static"
 
1272
+# PROP Intermediate_Dir "Debug\vorbiscomment\static"
 
1273
+# PROP Ignore_Export_Lib 0
 
1274
+# PROP Target_Dir ""
 
1275
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
 
1276
+# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\include" /I "..\..\ogg\include" /I "..\..\vorbis\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D VERSION=\"1.0.1\" /FR /FD /GZ /c
 
1277
+# SUBTRACT CPP /YX
 
1278
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
 
1279
+# ADD RSC /l 0x409 /d "_DEBUG"
 
1280
+BSC32=bscmake.exe
 
1281
+# ADD BASE BSC32 /nologo
 
1282
+# ADD BSC32 /nologo
 
1283
+LINK32=link.exe
 
1284
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 
1285
+# ADD LINK32 ogg_static_d.lib vorbis_static_d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\ogg\win32\Static_Debug" /libpath:"..\..\vorbis\win32\Vorbis_Static_Debug"
 
1286
+
 
1287
+!ENDIF 
 
1288
+
 
1289
+# Begin Target
 
1290
+
 
1291
+# Name "vorbiscomment - Win32 Release"
 
1292
+# Name "vorbiscomment - Win32 Debug"
 
1293
+# Begin Group "Source Files"
 
1294
+
 
1295
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 
1296
+# Begin Source File
 
1297
+
 
1298
+SOURCE=..\share\getopt.c
 
1299
+# End Source File
 
1300
+# Begin Source File
 
1301
+
 
1302
+SOURCE=..\share\getopt1.c
 
1303
+# End Source File
 
1304
+# Begin Source File
 
1305
+
 
1306
+SOURCE=..\share\utf8.c
 
1307
+# End Source File
 
1308
+# Begin Source File
 
1309
+
 
1310
+SOURCE=..\vorbiscomment\vcedit.c
 
1311
+# End Source File
 
1312
+# Begin Source File
 
1313
+
 
1314
+SOURCE=..\vorbiscomment\vcomment.c
 
1315
+# End Source File
 
1316
+# End Group
 
1317
+# Begin Group "Header Files"
 
1318
+
 
1319
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
 
1320
+# Begin Source File
 
1321
+
 
1322
+SOURCE=..\vorbiscomment\vcedit.h
 
1323
+# End Source File
 
1324
+# End Group
 
1325
+# Begin Group "Resource Files"
 
1326
+
 
1327
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 
1328
+# End Group
 
1329
+# End Target
 
1330
+# End Project