~ubuntu-branches/ubuntu/gutsy/irssi/gutsy

« back to all changes in this revision

Viewing changes to debian/patches/07gnutls-support-automakery.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): David Pashley
  • Date: 2005-12-10 21:25:51 UTC
  • Revision ID: james.westby@ubuntu.com-20051210212551-2iq3p5jfilqd1r6l
Tags: 0.8.10-1
new upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh /usr/share/dpatch/dpatch-run
 
2
## 07gnutls-support-automakery.dpatch by David Pashley <david@davidpashley.com>
 
3
##
 
4
## All lines beginning with `## DP:' are a description of the patch.
 
5
## DP: No description.
 
6
 
 
7
@DPATCH@
 
8
diff -urNad --exclude=CVS --exclude=.svn ./aclocal.m4 /tmp/dpep-work.mDzhRz/irssi/aclocal.m4
 
9
--- ./aclocal.m4        2005-07-17 16:30:14.000000000 +0300
 
10
+++ /tmp/dpep-work.mDzhRz/irssi/aclocal.m4      2005-07-17 16:47:48.000000000 +0300
 
11
@@ -11,6 +11,167 @@
 
12
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
13
 # PARTICULAR PURPOSE.
 
14
 
 
15
+dnl Autoconf macros for libgnutls
 
16
+dnl $id$
 
17
+
 
18
+# Modified for LIBGNUTLS -- nmav
 
19
+# Configure paths for LIBGCRYPT
 
20
+# Shamelessly stolen from the one of XDELTA by Owen Taylor
 
21
+# Werner Koch   99-12-09
 
22
+
 
23
+dnl AM_PATH_LIBGNUTLS([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])
 
24
+dnl Test for libgnutls, and define LIBGNUTLS_CFLAGS and LIBGNUTLS_LIBS
 
25
+dnl
 
26
+AC_DEFUN([AM_PATH_LIBGNUTLS],
 
27
+[dnl
 
28
+dnl Get the cflags and libraries from the libgnutls-config script
 
29
+dnl
 
30
+AC_ARG_WITH(libgnutls-prefix,
 
31
+          [  --with-libgnutls-prefix=PFX   Prefix where libgnutls is installed (optional)],
 
32
+          libgnutls_config_prefix="$withval", libgnutls_config_prefix="")
 
33
+
 
34
+  if test x$libgnutls_config_prefix != x ; then
 
35
+     if test x${LIBGNUTLS_CONFIG+set} != xset ; then
 
36
+        LIBGNUTLS_CONFIG=$libgnutls_config_prefix/bin/libgnutls-config
 
37
+     fi
 
38
+  fi
 
39
+
 
40
+  AC_PATH_PROG(LIBGNUTLS_CONFIG, libgnutls-config, no)
 
41
+  min_libgnutls_version=ifelse([$1], ,0.1.0,$1)
 
42
+  AC_MSG_CHECKING(for libgnutls - version >= $min_libgnutls_version)
 
43
+  no_libgnutls=""
 
44
+  if test "$LIBGNUTLS_CONFIG" = "no" ; then
 
45
+    no_libgnutls=yes
 
46
+  else
 
47
+    LIBGNUTLS_CFLAGS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --cflags`
 
48
+    LIBGNUTLS_LIBS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --libs`
 
49
+    libgnutls_config_version=`$LIBGNUTLS_CONFIG $libgnutls_config_args --version`
 
50
+
 
51
+
 
52
+      ac_save_CFLAGS="$CFLAGS"
 
53
+      ac_save_LIBS="$LIBS"
 
54
+      CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"
 
55
+      LIBS="$LIBS $LIBGNUTLS_LIBS"
 
56
+dnl
 
57
+dnl Now check if the installed libgnutls is sufficiently new. Also sanity
 
58
+dnl checks the results of libgnutls-config to some extent
 
59
+dnl
 
60
+      rm -f conf.libgnutlstest
 
61
+      AC_TRY_RUN([
 
62
+#include <stdio.h>
 
63
+#include <stdlib.h>
 
64
+#include <string.h>
 
65
+#include <gnutls/gnutls.h>
 
66
+
 
67
+int
 
68
+main ()
 
69
+{
 
70
+    system ("touch conf.libgnutlstest");
 
71
+
 
72
+    if( strcmp( gnutls_check_version(NULL), "$libgnutls_config_version" ) )
 
73
+    {
 
74
+      printf("\n*** 'libgnutls-config --version' returned %s, but LIBGNUTLS (%s)\n",
 
75
+             "$libgnutls_config_version", gnutls_check_version(NULL) );
 
76
+      printf("*** was found! If libgnutls-config was correct, then it is best\n");
 
77
+      printf("*** to remove the old version of LIBGNUTLS. You may also be able to fix the error\n");
 
78
+      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
 
79
+      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
 
80
+      printf("*** required on your system.\n");
 
81
+      printf("*** If libgnutls-config was wrong, set the environment variable LIBGNUTLS_CONFIG\n");
 
82
+      printf("*** to point to the correct copy of libgnutls-config, and remove the file config.cache\n");
 
83
+      printf("*** before re-running configure\n");
 
84
+    }
 
85
+    else if ( strcmp(gnutls_check_version(NULL), LIBGNUTLS_VERSION ) )
 
86
+    {
 
87
+      printf("\n*** LIBGNUTLS header file (version %s) does not match\n", LIBGNUTLS_VERSION);
 
88
+      printf("*** library (version %s)\n", gnutls_check_version(NULL) );
 
89
+    }
 
90
+    else
 
91
+    {
 
92
+      if ( gnutls_check_version( "$min_libgnutls_version" ) )
 
93
+      {
 
94
+        return 0;
 
95
+      }
 
96
+     else
 
97
+      {
 
98
+        printf("no\n*** An old version of LIBGNUTLS (%s) was found.\n",
 
99
+                gnutls_check_version(NULL) );
 
100
+        printf("*** You need a version of LIBGNUTLS newer than %s. The latest version of\n",
 
101
+               "$min_libgnutls_version" );
 
102
+        printf("*** LIBGNUTLS is always available from ftp://gnutls.hellug.gr/pub/gnutls.\n");
 
103
+        printf("*** \n");
 
104
+        printf("*** If you have already installed a sufficiently new version, this error\n");
 
105
+        printf("*** probably means that the wrong copy of the libgnutls-config shell script is\n");
 
106
+        printf("*** being found. The easiest way to fix this is to remove the old version\n");
 
107
+        printf("*** of LIBGNUTLS, but you can also set the LIBGNUTLS_CONFIG environment to point to the\n");
 
108
+        printf("*** correct copy of libgnutls-config. (In this case, you will have to\n");
 
109
+        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
 
110
+        printf("*** so that the correct libraries are found at run-time))\n");
 
111
+      }
 
112
+    }
 
113
+  return 1;
 
114
+}
 
115
+],, no_libgnutls=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
 
116
+       CFLAGS="$ac_save_CFLAGS"
 
117
+       LIBS="$ac_save_LIBS"
 
118
+  fi
 
119
+
 
120
+  if test "x$no_libgnutls" = x ; then
 
121
+     AC_MSG_RESULT(yes)
 
122
+     ifelse([$2], , :, [$2])
 
123
+  else
 
124
+     if test -f conf.libgnutlstest ; then
 
125
+        :
 
126
+     else
 
127
+        AC_MSG_RESULT(no)
 
128
+     fi
 
129
+     if test "$LIBGNUTLS_CONFIG" = "no" ; then
 
130
+       echo "*** The libgnutls-config script installed by LIBGNUTLS could not be found"
 
131
+       echo "*** If LIBGNUTLS was installed in PREFIX, make sure PREFIX/bin is in"
 
132
+       echo "*** your path, or set the LIBGNUTLS_CONFIG environment variable to the"
 
133
+       echo "*** full path to libgnutls-config."
 
134
+     else
 
135
+       if test -f conf.libgnutlstest ; then
 
136
+        :
 
137
+       else
 
138
+          echo "*** Could not run libgnutls test program, checking why..."
 
139
+          CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"
 
140
+          LIBS="$LIBS $LIBGNUTLS_LIBS"
 
141
+          AC_TRY_LINK([
 
142
+#include <stdio.h>
 
143
+#include <stdlib.h>
 
144
+#include <string.h>
 
145
+#include <gnutls/gnutls.h>
 
146
+],      [ return !!gnutls_check_version(NULL); ],
 
147
+        [ echo "*** The test program compiled, but did not run. This usually means"
 
148
+          echo "*** that the run-time linker is not finding LIBGNUTLS or finding the wrong"
 
149
+          echo "*** version of LIBGNUTLS. If it is not finding LIBGNUTLS, you'll need to set your"
 
150
+          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
 
151
+          echo "*** to the installed location  Also, make sure you have run ldconfig if that"
 
152
+          echo "*** is required on your system"
 
153
+          echo "***"
 
154
+          echo "*** If you have an old version installed, it is best to remove it, although"
 
155
+          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
 
156
+          echo "***" ],
 
157
+        [ echo "*** The test program failed to compile or link. See the file config.log for the"
 
158
+          echo "*** exact error that occured. This usually means LIBGNUTLS was incorrectly installed"
 
159
+          echo "*** or that you have moved LIBGNUTLS since it was installed. In the latter case, you"
 
160
+          echo "*** may want to edit the libgnutls-config script: $LIBGNUTLS_CONFIG" ])
 
161
+          CFLAGS="$ac_save_CFLAGS"
 
162
+          LIBS="$ac_save_LIBS"
 
163
+       fi
 
164
+     fi
 
165
+     LIBGNUTLS_CFLAGS=""
 
166
+     LIBGNUTLS_LIBS=""
 
167
+     ifelse([$3], , :, [$3])
 
168
+  fi
 
169
+  rm -f conf.libgnutlstest
 
170
+  AC_SUBST(LIBGNUTLS_CFLAGS)
 
171
+  AC_SUBST(LIBGNUTLS_LIBS)
 
172
+])
 
173
+
 
174
+dnl *-*wedit:notab*-*  Please keep this as the last line.
 
175
+
 
176
 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
 
177
 
 
178
 # serial 47 AC_PROG_LIBTOOL
 
179
diff -urNad --exclude=CVS --exclude=.svn ./config.h /tmp/dpep-work.mDzhRz/irssi/config.h
 
180
--- ./config.h  1970-01-01 02:00:00.000000000 +0200
 
181
+++ /tmp/dpep-work.mDzhRz/irssi/config.h        2005-07-17 16:48:40.000000000 +0300
 
182
@@ -0,0 +1,162 @@
 
183
+/* config.h.  Generated by configure.  */
 
184
+/* config.h.in.  Generated from configure.in by autoheader.  */
 
185
+/* paths */
 
186
+/* #undef SYSCONFDIR */
 
187
+/* #undef HELPDIR */
 
188
+/* #undef PLUGINSDIR */
 
189
+
 
190
+/* misc.. */
 
191
+/* #undef HAVE_IPV6 */
 
192
+/* #undef HAVE_POPT_H */
 
193
+/* #undef HAVE_SOCKS_H */
 
194
+#define HAVE_PL_PERL 1
 
195
+#define HAVE_STATIC_PERL 1
 
196
+#define HAVE_GMODULE 1
 
197
+/* #undef HAVE_GC_H */
 
198
+/* #undef HAVE_GC_GC_H */
 
199
+/* #undef WANT_BIG5 */
 
200
+/* #undef USE_GC */
 
201
+#define HAVE_GLIB2 1
 
202
+
 
203
+/* macros/curses checks */
 
204
+#define HAS_CURSES 1
 
205
+/* #undef USE_SUNOS_CURSES */
 
206
+/* #undef USE_BSD_CURSES */
 
207
+/* #undef USE_SYSV_CURSES */
 
208
+#define USE_NCURSES 1
 
209
+/* #undef NO_COLOR_CURSES */
 
210
+/* #undef SCO_FLAVOR */
 
211
+
 
212
+/* our own curses checks */
 
213
+#define HAVE_NCURSES_USE_DEFAULT_COLORS 1
 
214
+#define HAVE_CURSES_IDCOK 1
 
215
+#define HAVE_CURSES_RESIZETERM 1
 
216
+#define HAVE_CURSES_WRESIZE 1
 
217
+
 
218
+/* terminfo/termcap */
 
219
+#define HAVE_TERMINFO 1
 
220
+
 
221
+/* nls */
 
222
+/* #undef ENABLE_NLS */
 
223
+/* #undef HAVE_CATGETS */
 
224
+/* #undef HAVE_GETTEXT */
 
225
+/* #undef HAVE_LC_MESSAGES */
 
226
+/* #undef HAVE_STPCPY */
 
227
+
 
228
+/* SSL */
 
229
+#define HAVE_OPENSSL 
 
230
+
 
231
+/* If set to 64, enables 64bit off_t for some systems (eg. Linux, Solaris) */
 
232
+#define _FILE_OFFSET_BITS 64
 
233
+
 
234
+/* What type should be used for uoff_t */
 
235
+/* #undef UOFF_T_INT */
 
236
+/* #undef UOFF_T_LONG */
 
237
+#define UOFF_T_LONG_LONG 1
 
238
+
 
239
+/* printf()-format for uoff_t, eg. "u" or "lu" or "llu" */
 
240
+#define PRIuUOFF_T "llu"
 
241
+
 
242
+/* Define to 1 if you have the <dirent.h> header file. */
 
243
+#define HAVE_DIRENT_H 1
 
244
+
 
245
+/* Define to 1 if you have the <dlfcn.h> header file. */
 
246
+#define HAVE_DLFCN_H 1
 
247
+
 
248
+/* Define to 1 if you have the `fcntl' function. */
 
249
+#define HAVE_FCNTL 1
 
250
+
 
251
+/* Build with GNUTLS support */
 
252
+#define HAVE_GNUTLS 
 
253
+
 
254
+/* Define to 1 if you have the <inttypes.h> header file. */
 
255
+#define HAVE_INTTYPES_H 1
 
256
+
 
257
+/* Define to 1 if you have the <memory.h> header file. */
 
258
+#define HAVE_MEMORY_H 1
 
259
+
 
260
+/* Define to 1 if you have the `mkfifo' function. */
 
261
+#define HAVE_MKFIFO 1
 
262
+
 
263
+/* Define to 1 if you have the `nl_langinfo' function. */
 
264
+#define HAVE_NL_LANGINFO 1
 
265
+
 
266
+/* Build with OpenSSL support */
 
267
+#define HAVE_OPENSSL 
 
268
+
 
269
+/* Define to 1 if you have the <openssl/err.h> header file. */
 
270
+/* #undef HAVE_OPENSSL_ERR_H */
 
271
+
 
272
+/* Define to 1 if you have the <openssl/ssl.h> header file. */
 
273
+/* #undef HAVE_OPENSSL_SSL_H */
 
274
+
 
275
+/* Define to 1 if you have the <regex.h> header file. */
 
276
+#define HAVE_REGEX_H 1
 
277
+
 
278
+/* Define to 1 if you have the <stdint.h> header file. */
 
279
+#define HAVE_STDINT_H 1
 
280
+
 
281
+/* Define to 1 if you have the <stdlib.h> header file. */
 
282
+#define HAVE_STDLIB_H 1
 
283
+
 
284
+/* Define to 1 if you have the <strings.h> header file. */
 
285
+#define HAVE_STRINGS_H 1
 
286
+
 
287
+/* Define to 1 if you have the <string.h> header file. */
 
288
+#define HAVE_STRING_H 1
 
289
+
 
290
+/* Define to 1 if you have the <sys/ioctl.h> header file. */
 
291
+#define HAVE_SYS_IOCTL_H 1
 
292
+
 
293
+/* Define to 1 if you have the <sys/resource.h> header file. */
 
294
+#define HAVE_SYS_RESOURCE_H 1
 
295
+
 
296
+/* Define to 1 if you have the <sys/stat.h> header file. */
 
297
+#define HAVE_SYS_STAT_H 1
 
298
+
 
299
+/* Define to 1 if you have the <sys/time.h> header file. */
 
300
+#define HAVE_SYS_TIME_H 1
 
301
+
 
302
+/* Define to 1 if you have the <sys/types.h> header file. */
 
303
+#define HAVE_SYS_TYPES_H 1
 
304
+
 
305
+/* Define to 1 if you have the <sys/utsname.h> header file. */
 
306
+#define HAVE_SYS_UTSNAME_H 1
 
307
+
 
308
+/* Define to 1 if you have the <unistd.h> header file. */
 
309
+#define HAVE_UNISTD_H 1
 
310
+
 
311
+/* Name of package */
 
312
+#define PACKAGE "irssi"
 
313
+
 
314
+/* Define to the address where bug reports for this package should be sent. */
 
315
+#define PACKAGE_BUGREPORT ""
 
316
+
 
317
+/* Define to the full name of this package. */
 
318
+#define PACKAGE_NAME ""
 
319
+
 
320
+/* Define to the full name and version of this package. */
 
321
+#define PACKAGE_STRING ""
 
322
+
 
323
+/* Define to the one symbol short name of this package. */
 
324
+#define PACKAGE_TARNAME ""
 
325
+
 
326
+/* Define to the version of this package. */
 
327
+#define PACKAGE_VERSION ""
 
328
+
 
329
+/* The size of a `int', as computed by sizeof. */
 
330
+#define SIZEOF_INT 4
 
331
+
 
332
+/* The size of a `long', as computed by sizeof. */
 
333
+#define SIZEOF_LONG 4
 
334
+
 
335
+/* The size of a `long long', as computed by sizeof. */
 
336
+#define SIZEOF_LONG_LONG 8
 
337
+
 
338
+/* Define to 1 if you have the ANSI C header files. */
 
339
+#define STDC_HEADERS 1
 
340
+
 
341
+/* Version number of package */
 
342
+
 
343
+/* Define to 'int' if <sys/socket.h> doesn't define. */
 
344
+/* #undef socklen_t */
 
345
diff -urNad --exclude=CVS --exclude=.svn ./config.h.in /tmp/dpep-work.mDzhRz/irssi/config.h.in
 
346
--- ./config.h.in       2005-07-17 16:30:39.000000000 +0300
 
347
+++ /tmp/dpep-work.mDzhRz/irssi/config.h.in     2005-07-17 16:48:15.000000000 +0300
 
348
@@ -65,6 +65,9 @@
 
349
 /* Define to 1 if you have the `fcntl' function. */
 
350
 #undef HAVE_FCNTL
 
351
 
 
352
+/* Build with GNUTLS support */
 
353
+#undef HAVE_GNUTLS
 
354
+
 
355
 /* Define to 1 if you have the <inttypes.h> header file. */
 
356
 #undef HAVE_INTTYPES_H
 
357
 
 
358
diff -urNad --exclude=CVS --exclude=.svn ./config.h.in~ /tmp/dpep-work.mDzhRz/irssi/config.h.in~
 
359
--- ./config.h.in~      1970-01-01 02:00:00.000000000 +0200
 
360
+++ /tmp/dpep-work.mDzhRz/irssi/config.h.in~    2005-07-17 16:30:39.000000000 +0300
 
361
@@ -0,0 +1,158 @@
 
362
+/* config.h.in.  Generated from configure.in by autoheader.  */
 
363
+/* paths */
 
364
+#undef SYSCONFDIR
 
365
+#undef HELPDIR
 
366
+#undef PLUGINSDIR
 
367
+
 
368
+/* misc.. */
 
369
+#undef HAVE_IPV6
 
370
+#undef HAVE_POPT_H
 
371
+#undef HAVE_SOCKS_H
 
372
+#undef HAVE_PL_PERL
 
373
+#undef HAVE_STATIC_PERL
 
374
+#undef HAVE_GMODULE
 
375
+#undef HAVE_GC_H
 
376
+#undef HAVE_GC_GC_H
 
377
+#undef WANT_BIG5
 
378
+#undef USE_GC
 
379
+#undef HAVE_GLIB2
 
380
+
 
381
+/* macros/curses checks */
 
382
+#undef HAS_CURSES
 
383
+#undef USE_SUNOS_CURSES
 
384
+#undef USE_BSD_CURSES
 
385
+#undef USE_SYSV_CURSES
 
386
+#undef USE_NCURSES
 
387
+#undef NO_COLOR_CURSES
 
388
+#undef SCO_FLAVOR
 
389
+
 
390
+/* our own curses checks */
 
391
+#undef HAVE_NCURSES_USE_DEFAULT_COLORS
 
392
+#undef HAVE_CURSES_IDCOK
 
393
+#undef HAVE_CURSES_RESIZETERM
 
394
+#undef HAVE_CURSES_WRESIZE
 
395
+
 
396
+/* terminfo/termcap */
 
397
+#undef HAVE_TERMINFO
 
398
+
 
399
+/* nls */
 
400
+#undef ENABLE_NLS
 
401
+#undef HAVE_CATGETS
 
402
+#undef HAVE_GETTEXT
 
403
+#undef HAVE_LC_MESSAGES
 
404
+#undef HAVE_STPCPY
 
405
+
 
406
+/* SSL */
 
407
+#undef HAVE_OPENSSL
 
408
+
 
409
+/* If set to 64, enables 64bit off_t for some systems (eg. Linux, Solaris) */
 
410
+#undef _FILE_OFFSET_BITS
 
411
+
 
412
+/* What type should be used for uoff_t */
 
413
+#undef UOFF_T_INT
 
414
+#undef UOFF_T_LONG
 
415
+#undef UOFF_T_LONG_LONG
 
416
+
 
417
+/* printf()-format for uoff_t, eg. "u" or "lu" or "llu" */
 
418
+#undef PRIuUOFF_T
 
419
+
 
420
+/* Define to 1 if you have the <dirent.h> header file. */
 
421
+#undef HAVE_DIRENT_H
 
422
+
 
423
+/* Define to 1 if you have the <dlfcn.h> header file. */
 
424
+#undef HAVE_DLFCN_H
 
425
+
 
426
+/* Define to 1 if you have the `fcntl' function. */
 
427
+#undef HAVE_FCNTL
 
428
+
 
429
+/* Define to 1 if you have the <inttypes.h> header file. */
 
430
+#undef HAVE_INTTYPES_H
 
431
+
 
432
+/* Define to 1 if you have the <memory.h> header file. */
 
433
+#undef HAVE_MEMORY_H
 
434
+
 
435
+/* Define to 1 if you have the `mkfifo' function. */
 
436
+#undef HAVE_MKFIFO
 
437
+
 
438
+/* Define to 1 if you have the `nl_langinfo' function. */
 
439
+#undef HAVE_NL_LANGINFO
 
440
+
 
441
+/* Build with OpenSSL support */
 
442
+#undef HAVE_OPENSSL
 
443
+
 
444
+/* Define to 1 if you have the <openssl/err.h> header file. */
 
445
+#undef HAVE_OPENSSL_ERR_H
 
446
+
 
447
+/* Define to 1 if you have the <openssl/ssl.h> header file. */
 
448
+#undef HAVE_OPENSSL_SSL_H
 
449
+
 
450
+/* Define to 1 if you have the <regex.h> header file. */
 
451
+#undef HAVE_REGEX_H
 
452
+
 
453
+/* Define to 1 if you have the <stdint.h> header file. */
 
454
+#undef HAVE_STDINT_H
 
455
+
 
456
+/* Define to 1 if you have the <stdlib.h> header file. */
 
457
+#undef HAVE_STDLIB_H
 
458
+
 
459
+/* Define to 1 if you have the <strings.h> header file. */
 
460
+#undef HAVE_STRINGS_H
 
461
+
 
462
+/* Define to 1 if you have the <string.h> header file. */
 
463
+#undef HAVE_STRING_H
 
464
+
 
465
+/* Define to 1 if you have the <sys/ioctl.h> header file. */
 
466
+#undef HAVE_SYS_IOCTL_H
 
467
+
 
468
+/* Define to 1 if you have the <sys/resource.h> header file. */
 
469
+#undef HAVE_SYS_RESOURCE_H
 
470
+
 
471
+/* Define to 1 if you have the <sys/stat.h> header file. */
 
472
+#undef HAVE_SYS_STAT_H
 
473
+
 
474
+/* Define to 1 if you have the <sys/time.h> header file. */
 
475
+#undef HAVE_SYS_TIME_H
 
476
+
 
477
+/* Define to 1 if you have the <sys/types.h> header file. */
 
478
+#undef HAVE_SYS_TYPES_H
 
479
+
 
480
+/* Define to 1 if you have the <sys/utsname.h> header file. */
 
481
+#undef HAVE_SYS_UTSNAME_H
 
482
+
 
483
+/* Define to 1 if you have the <unistd.h> header file. */
 
484
+#undef HAVE_UNISTD_H
 
485
+
 
486
+/* Name of package */
 
487
+#undef PACKAGE
 
488
+
 
489
+/* Define to the address where bug reports for this package should be sent. */
 
490
+#undef PACKAGE_BUGREPORT
 
491
+
 
492
+/* Define to the full name of this package. */
 
493
+#undef PACKAGE_NAME
 
494
+
 
495
+/* Define to the full name and version of this package. */
 
496
+#undef PACKAGE_STRING
 
497
+
 
498
+/* Define to the one symbol short name of this package. */
 
499
+#undef PACKAGE_TARNAME
 
500
+
 
501
+/* Define to the version of this package. */
 
502
+#undef PACKAGE_VERSION
 
503
+
 
504
+/* The size of a `int', as computed by sizeof. */
 
505
+#undef SIZEOF_INT
 
506
+
 
507
+/* The size of a `long', as computed by sizeof. */
 
508
+#undef SIZEOF_LONG
 
509
+
 
510
+/* The size of a `long long', as computed by sizeof. */
 
511
+#undef SIZEOF_LONG_LONG
 
512
+
 
513
+/* Define to 1 if you have the ANSI C header files. */
 
514
+#undef STDC_HEADERS
 
515
+
 
516
+/* Version number of package */
 
517
+
 
518
+/* Define to 'int' if <sys/socket.h> doesn't define. */
 
519
+#undef socklen_t
 
520
diff -urNad --exclude=CVS --exclude=.svn ./config.log /tmp/dpep-work.mDzhRz/irssi/config.log
 
521
--- ./config.log        1970-01-01 02:00:00.000000000 +0200
 
522
+++ /tmp/dpep-work.mDzhRz/irssi/config.log      2005-07-17 16:48:42.000000000 +0300
 
523
@@ -0,0 +1,1322 @@
 
524
+This file contains any messages produced by compilers while
 
525
+running configure, to aid debugging if configure makes a mistake.
 
526
+
 
527
+It was created by configure, which was
 
528
+generated by GNU Autoconf 2.59.  Invocation command line was
 
529
+
 
530
+  $ ./configure --enable-maintainer-mode --enable-compile-warnings
 
531
+
 
532
+## --------- ##
 
533
+## Platform. ##
 
534
+## --------- ##
 
535
+
 
536
+hostname = beebo
 
537
+uname -m = i686
 
538
+uname -r = 2.6.11-1-686
 
539
+uname -s = Linux
 
540
+uname -v = #1 Mon Jun 20 22:00:38 MDT 2005
 
541
+
 
542
+/usr/bin/uname -p = unknown
 
543
+/bin/uname -X     = unknown
 
544
+
 
545
+/bin/arch              = i686
 
546
+/usr/bin/arch -k       = unknown
 
547
+/usr/convex/getsysinfo = unknown
 
548
+hostinfo               = unknown
 
549
+/bin/machine           = unknown
 
550
+/usr/bin/oslevel       = unknown
 
551
+/bin/universe          = unknown
 
552
+
 
553
+PATH: /usr/lib/ccache
 
554
+PATH: /home/david/usr/bin
 
555
+PATH: /usr/lib/ccache
 
556
+PATH: /home/david/usr/bin
 
557
+PATH: /usr/local/bin
 
558
+PATH: /usr/bin
 
559
+PATH: /bin
 
560
+PATH: /usr/bin/X11
 
561
+PATH: /usr/games
 
562
+
 
563
+
 
564
+## ----------- ##
 
565
+## Core tests. ##
 
566
+## ----------- ##
 
567
+
 
568
+configure:1591: checking for a BSD-compatible install
 
569
+configure:1646: result: /usr/bin/install -c
 
570
+configure:1657: checking whether build environment is sane
 
571
+configure:1700: result: yes
 
572
+configure:1765: checking for gawk
 
573
+configure:1781: found /usr/bin/gawk
 
574
+configure:1791: result: gawk
 
575
+configure:1801: checking whether make sets $(MAKE)
 
576
+configure:1821: result: yes
 
577
+configure:1990: checking whether to enable maintainer-specific portions of Makefiles
 
578
+configure:1999: result: yes
 
579
+configure:2027: checking for style of include used by make
 
580
+configure:2055: result: GNU
 
581
+configure:2126: checking for gcc
 
582
+configure:2142: found /usr/bin/gcc
 
583
+configure:2152: result: gcc
 
584
+configure:2396: checking for C compiler version
 
585
+configure:2399: gcc --version </dev/null >&5
 
586
+gcc (GCC) 4.0.1 (Debian 4.0.1-2)
 
587
+Copyright (C) 2005 Free Software Foundation, Inc.
 
588
+This is free software; see the source for copying conditions.  There is NO
 
589
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
590
+
 
591
+configure:2402: $? = 0
 
592
+configure:2404: gcc -v </dev/null >&5
 
593
+Using built-in specs.
 
594
+Target: i486-linux-gnu
 
595
+Configured with: ../src/configure -v --enable-languages=c,c++,java,f95,objc,ada,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --enable-nls --without-included-gettext --enable-threads=posix --program-suffix=-4.0 --enable-__cxa_atexit --enable-libstdcxx-allocator=mt --enable-clocale=gnu --enable-libstdcxx-debug --enable-java-gc=boehm --enable-java-awt=gtk --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre --enable-mpfr --disable-werror --enable-checking=release i486-linux-gnu
 
596
+Thread model: posix
 
597
+gcc version 4.0.1 (Debian 4.0.1-2)
 
598
+configure:2407: $? = 0
 
599
+configure:2409: gcc -V </dev/null >&5
 
600
+gcc: '-V' option must have argument
 
601
+configure:2412: $? = 1
 
602
+configure:2435: checking for C compiler default output file name
 
603
+configure:2438: gcc    conftest.c  >&5
 
604
+configure:2441: $? = 0
 
605
+configure:2487: result: a.out
 
606
+configure:2492: checking whether the C compiler works
 
607
+configure:2498: ./a.out
 
608
+configure:2501: $? = 0
 
609
+configure:2518: result: yes
 
610
+configure:2525: checking whether we are cross compiling
 
611
+configure:2527: result: no
 
612
+configure:2530: checking for suffix of executables
 
613
+configure:2532: gcc -o conftest    conftest.c  >&5
 
614
+configure:2535: $? = 0
 
615
+configure:2560: result: 
 
616
+configure:2566: checking for suffix of object files
 
617
+configure:2587: gcc -c   conftest.c >&5
 
618
+configure:2590: $? = 0
 
619
+configure:2612: result: o
 
620
+configure:2616: checking whether we are using the GNU C compiler
 
621
+configure:2640: gcc -c   conftest.c >&5
 
622
+configure:2646: $? = 0
 
623
+configure:2649: test -z                         || test ! -s conftest.err
 
624
+configure:2652: $? = 0
 
625
+configure:2655: test -s conftest.o
 
626
+configure:2658: $? = 0
 
627
+configure:2671: result: yes
 
628
+configure:2677: checking whether gcc accepts -g
 
629
+configure:2698: gcc -c -g  conftest.c >&5
 
630
+configure:2704: $? = 0
 
631
+configure:2707: test -z                         || test ! -s conftest.err
 
632
+configure:2710: $? = 0
 
633
+configure:2713: test -s conftest.o
 
634
+configure:2716: $? = 0
 
635
+configure:2727: result: yes
 
636
+configure:2744: checking for gcc option to accept ANSI C
 
637
+configure:2814: gcc  -c -g -O2  conftest.c >&5
 
638
+configure:2820: $? = 0
 
639
+configure:2823: test -z                         || test ! -s conftest.err
 
640
+configure:2826: $? = 0
 
641
+configure:2829: test -s conftest.o
 
642
+configure:2832: $? = 0
 
643
+configure:2850: result: none needed
 
644
+configure:2868: gcc -c -g -O2  conftest.c >&5
 
645
+conftest.c:2: error: syntax error before 'me'
 
646
+configure:2874: $? = 1
 
647
+configure: failed program was:
 
648
+| #ifndef __cplusplus
 
649
+|   choke me
 
650
+| #endif
 
651
+configure:3006: checking dependency style of gcc
 
652
+configure:3096: result: gcc3
 
653
+configure:3114: checking for library containing strerror
 
654
+configure:3144: gcc -o conftest -g -O2   conftest.c  >&5
 
655
+configure:3150: $? = 0
 
656
+configure:3153: test -z                         || test ! -s conftest.err
 
657
+configure:3156: $? = 0
 
658
+configure:3159: test -s conftest
 
659
+configure:3162: $? = 0
 
660
+configure:3231: result: none required
 
661
+configure:3284: checking for gcc
 
662
+configure:3310: result: gcc
 
663
+configure:3554: checking for C compiler version
 
664
+configure:3557: gcc --version </dev/null >&5
 
665
+gcc (GCC) 4.0.1 (Debian 4.0.1-2)
 
666
+Copyright (C) 2005 Free Software Foundation, Inc.
 
667
+This is free software; see the source for copying conditions.  There is NO
 
668
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
669
+
 
670
+configure:3560: $? = 0
 
671
+configure:3562: gcc -v </dev/null >&5
 
672
+Using built-in specs.
 
673
+Target: i486-linux-gnu
 
674
+Configured with: ../src/configure -v --enable-languages=c,c++,java,f95,objc,ada,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --enable-nls --without-included-gettext --enable-threads=posix --program-suffix=-4.0 --enable-__cxa_atexit --enable-libstdcxx-allocator=mt --enable-clocale=gnu --enable-libstdcxx-debug --enable-java-gc=boehm --enable-java-awt=gtk --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre --enable-mpfr --disable-werror --enable-checking=release i486-linux-gnu
 
675
+Thread model: posix
 
676
+gcc version 4.0.1 (Debian 4.0.1-2)
 
677
+configure:3565: $? = 0
 
678
+configure:3567: gcc -V </dev/null >&5
 
679
+gcc: '-V' option must have argument
 
680
+configure:3570: $? = 1
 
681
+configure:3573: checking whether we are using the GNU C compiler
 
682
+configure:3628: result: yes
 
683
+configure:3634: checking whether gcc accepts -g
 
684
+configure:3684: result: yes
 
685
+configure:3701: checking for gcc option to accept ANSI C
 
686
+configure:3807: result: none needed
 
687
+configure:3825: gcc -c -g -O2  conftest.c >&5
 
688
+conftest.c:2: error: syntax error before 'me'
 
689
+configure:3831: $? = 1
 
690
+configure: failed program was:
 
691
+| #ifndef __cplusplus
 
692
+|   choke me
 
693
+| #endif
 
694
+configure:3963: checking dependency style of gcc
 
695
+configure:4053: result: gcc3
 
696
+configure:4075: checking how to run the C preprocessor
 
697
+configure:4110: gcc -E  conftest.c
 
698
+configure:4116: $? = 0
 
699
+configure:4148: gcc -E  conftest.c
 
700
+conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
 
701
+configure:4154: $? = 1
 
702
+configure: failed program was:
 
703
+| /* confdefs.h.  */
 
704
+| 
 
705
+| #define PACKAGE_NAME ""
 
706
+| #define PACKAGE_TARNAME ""
 
707
+| #define PACKAGE_VERSION ""
 
708
+| #define PACKAGE_STRING ""
 
709
+| #define PACKAGE_BUGREPORT ""
 
710
+| #define PACKAGE "irssi"
 
711
+| #define VERSION "0.8.10-rc5"
 
712
+| /* end confdefs.h.  */
 
713
+| #include <ac_nonexistent.h>
 
714
+configure:4193: result: gcc -E
 
715
+configure:4217: gcc -E  conftest.c
 
716
+configure:4223: $? = 0
 
717
+configure:4255: gcc -E  conftest.c
 
718
+conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
 
719
+configure:4261: $? = 1
 
720
+configure: failed program was:
 
721
+| /* confdefs.h.  */
 
722
+| 
 
723
+| #define PACKAGE_NAME ""
 
724
+| #define PACKAGE_TARNAME ""
 
725
+| #define PACKAGE_VERSION ""
 
726
+| #define PACKAGE_STRING ""
 
727
+| #define PACKAGE_BUGREPORT ""
 
728
+| #define PACKAGE "irssi"
 
729
+| #define VERSION "0.8.10-rc5"
 
730
+| /* end confdefs.h.  */
 
731
+| #include <ac_nonexistent.h>
 
732
+configure:4305: checking for egrep
 
733
+configure:4315: result: grep -E
 
734
+configure:4320: checking for ANSI C header files
 
735
+configure:4345: gcc -c -g -O2  conftest.c >&5
 
736
+configure:4351: $? = 0
 
737
+configure:4354: test -z                         || test ! -s conftest.err
 
738
+configure:4357: $? = 0
 
739
+configure:4360: test -s conftest.o
 
740
+configure:4363: $? = 0
 
741
+configure:4452: gcc -o conftest -g -O2   conftest.c  >&5
 
742
+conftest.c: In function 'main':
 
743
+conftest.c:28: warning: incompatible implicit declaration of built-in function 'exit'
 
744
+configure:4455: $? = 0
 
745
+configure:4457: ./conftest
 
746
+configure:4460: $? = 0
 
747
+configure:4475: result: yes
 
748
+configure:4564: checking build system type
 
749
+configure:4582: result: i686-pc-linux-gnu
 
750
+configure:4590: checking host system type
 
751
+configure:4604: result: i686-pc-linux-gnu
 
752
+configure:4612: checking for a sed that does not truncate output
 
753
+configure:4666: result: /bin/sed
 
754
+configure:4680: checking for ld used by gcc
 
755
+configure:4747: result: /usr/bin/ld
 
756
+configure:4756: checking if the linker (/usr/bin/ld) is GNU ld
 
757
+configure:4771: result: yes
 
758
+configure:4776: checking for /usr/bin/ld option to reload object files
 
759
+configure:4783: result: -r
 
760
+configure:4792: checking for BSD-compatible nm
 
761
+configure:4834: result: /usr/bin/nm -B
 
762
+configure:4838: checking whether ln -s works
 
763
+configure:4842: result: yes
 
764
+configure:4849: checking how to recognise dependent libraries
 
765
+configure:5023: result: pass_all
 
766
+configure:5244: checking for sys/types.h
 
767
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
768
+configure:5266: $? = 0
 
769
+configure:5269: test -z                         || test ! -s conftest.err
 
770
+configure:5272: $? = 0
 
771
+configure:5275: test -s conftest.o
 
772
+configure:5278: $? = 0
 
773
+configure:5289: result: yes
 
774
+configure:5244: checking for sys/stat.h
 
775
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
776
+configure:5266: $? = 0
 
777
+configure:5269: test -z                         || test ! -s conftest.err
 
778
+configure:5272: $? = 0
 
779
+configure:5275: test -s conftest.o
 
780
+configure:5278: $? = 0
 
781
+configure:5289: result: yes
 
782
+configure:5244: checking for stdlib.h
 
783
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
784
+configure:5266: $? = 0
 
785
+configure:5269: test -z                         || test ! -s conftest.err
 
786
+configure:5272: $? = 0
 
787
+configure:5275: test -s conftest.o
 
788
+configure:5278: $? = 0
 
789
+configure:5289: result: yes
 
790
+configure:5244: checking for string.h
 
791
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
792
+configure:5266: $? = 0
 
793
+configure:5269: test -z                         || test ! -s conftest.err
 
794
+configure:5272: $? = 0
 
795
+configure:5275: test -s conftest.o
 
796
+configure:5278: $? = 0
 
797
+configure:5289: result: yes
 
798
+configure:5244: checking for memory.h
 
799
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
800
+configure:5266: $? = 0
 
801
+configure:5269: test -z                         || test ! -s conftest.err
 
802
+configure:5272: $? = 0
 
803
+configure:5275: test -s conftest.o
 
804
+configure:5278: $? = 0
 
805
+configure:5289: result: yes
 
806
+configure:5244: checking for strings.h
 
807
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
808
+configure:5266: $? = 0
 
809
+configure:5269: test -z                         || test ! -s conftest.err
 
810
+configure:5272: $? = 0
 
811
+configure:5275: test -s conftest.o
 
812
+configure:5278: $? = 0
 
813
+configure:5289: result: yes
 
814
+configure:5244: checking for inttypes.h
 
815
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
816
+configure:5266: $? = 0
 
817
+configure:5269: test -z                         || test ! -s conftest.err
 
818
+configure:5272: $? = 0
 
819
+configure:5275: test -s conftest.o
 
820
+configure:5278: $? = 0
 
821
+configure:5289: result: yes
 
822
+configure:5244: checking for stdint.h
 
823
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
824
+configure:5266: $? = 0
 
825
+configure:5269: test -z                         || test ! -s conftest.err
 
826
+configure:5272: $? = 0
 
827
+configure:5275: test -s conftest.o
 
828
+configure:5278: $? = 0
 
829
+configure:5289: result: yes
 
830
+configure:5244: checking for unistd.h
 
831
+configure:5260: gcc -c -g -O2  conftest.c >&5
 
832
+configure:5266: $? = 0
 
833
+configure:5269: test -z                         || test ! -s conftest.err
 
834
+configure:5272: $? = 0
 
835
+configure:5275: test -s conftest.o
 
836
+configure:5278: $? = 0
 
837
+configure:5289: result: yes
 
838
+configure:5315: checking dlfcn.h usability
 
839
+configure:5327: gcc -c -g -O2  conftest.c >&5
 
840
+configure:5333: $? = 0
 
841
+configure:5336: test -z                         || test ! -s conftest.err
 
842
+configure:5339: $? = 0
 
843
+configure:5342: test -s conftest.o
 
844
+configure:5345: $? = 0
 
845
+configure:5355: result: yes
 
846
+configure:5359: checking dlfcn.h presence
 
847
+configure:5369: gcc -E  conftest.c
 
848
+configure:5375: $? = 0
 
849
+configure:5395: result: yes
 
850
+configure:5430: checking for dlfcn.h
 
851
+configure:5437: result: yes
 
852
+configure:5502: checking for g++
 
853
+configure:5518: found /usr/bin/g++
 
854
+configure:5528: result: g++
 
855
+configure:5544: checking for C++ compiler version
 
856
+configure:5547: g++ --version </dev/null >&5
 
857
+g++ (GCC) 4.0.1 (Debian 4.0.1-2)
 
858
+Copyright (C) 2005 Free Software Foundation, Inc.
 
859
+This is free software; see the source for copying conditions.  There is NO
 
860
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
861
+
 
862
+configure:5550: $? = 0
 
863
+configure:5552: g++ -v </dev/null >&5
 
864
+Using built-in specs.
 
865
+Target: i486-linux-gnu
 
866
+Configured with: ../src/configure -v --enable-languages=c,c++,java,f95,objc,ada,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --enable-nls --without-included-gettext --enable-threads=posix --program-suffix=-4.0 --enable-__cxa_atexit --enable-libstdcxx-allocator=mt --enable-clocale=gnu --enable-libstdcxx-debug --enable-java-gc=boehm --enable-java-awt=gtk --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre --enable-mpfr --disable-werror --enable-checking=release i486-linux-gnu
 
867
+Thread model: posix
 
868
+gcc version 4.0.1 (Debian 4.0.1-2)
 
869
+configure:5555: $? = 0
 
870
+configure:5557: g++ -V </dev/null >&5
 
871
+g++: '-V' option must have argument
 
872
+configure:5560: $? = 1
 
873
+configure:5563: checking whether we are using the GNU C++ compiler
 
874
+configure:5587: g++ -c   conftest.cc >&5
 
875
+configure:5593: $? = 0
 
876
+configure:5596: test -z                         || test ! -s conftest.err
 
877
+configure:5599: $? = 0
 
878
+configure:5602: test -s conftest.o
 
879
+configure:5605: $? = 0
 
880
+configure:5618: result: yes
 
881
+configure:5624: checking whether g++ accepts -g
 
882
+configure:5645: g++ -c -g  conftest.cc >&5
 
883
+configure:5651: $? = 0
 
884
+configure:5654: test -z                         || test ! -s conftest.err
 
885
+configure:5657: $? = 0
 
886
+configure:5660: test -s conftest.o
 
887
+configure:5663: $? = 0
 
888
+configure:5674: result: yes
 
889
+configure:5716: g++ -c -g -O2  conftest.cc >&5
 
890
+configure:5722: $? = 0
 
891
+configure:5725: test -z                         || test ! -s conftest.err
 
892
+configure:5728: $? = 0
 
893
+configure:5731: test -s conftest.o
 
894
+configure:5734: $? = 0
 
895
+configure:5760: g++ -c -g -O2  conftest.cc >&5
 
896
+conftest.cc: In function 'int main()':
 
897
+conftest.cc:26: error: 'exit' was not declared in this scope
 
898
+configure:5766: $? = 1
 
899
+configure: failed program was:
 
900
+| /* confdefs.h.  */
 
901
+| 
 
902
+| #define PACKAGE_NAME ""
 
903
+| #define PACKAGE_TARNAME ""
 
904
+| #define PACKAGE_VERSION ""
 
905
+| #define PACKAGE_STRING ""
 
906
+| #define PACKAGE_BUGREPORT ""
 
907
+| #define PACKAGE "irssi"
 
908
+| #define VERSION "0.8.10-rc5"
 
909
+| #define STDC_HEADERS 1
 
910
+| #define HAVE_SYS_TYPES_H 1
 
911
+| #define HAVE_SYS_STAT_H 1
 
912
+| #define HAVE_STDLIB_H 1
 
913
+| #define HAVE_STRING_H 1
 
914
+| #define HAVE_MEMORY_H 1
 
915
+| #define HAVE_STRINGS_H 1
 
916
+| #define HAVE_INTTYPES_H 1
 
917
+| #define HAVE_STDINT_H 1
 
918
+| #define HAVE_UNISTD_H 1
 
919
+| #define HAVE_DLFCN_H 1
 
920
+| /* end confdefs.h.  */
 
921
+| 
 
922
+| int
 
923
+| main ()
 
924
+| {
 
925
+| exit (42);
 
926
+|   ;
 
927
+|   return 0;
 
928
+| }
 
929
+configure:5716: g++ -c -g -O2  conftest.cc >&5
 
930
+configure:5722: $? = 0
 
931
+configure:5725: test -z                         || test ! -s conftest.err
 
932
+configure:5728: $? = 0
 
933
+configure:5731: test -s conftest.o
 
934
+configure:5734: $? = 0
 
935
+configure:5760: g++ -c -g -O2  conftest.cc >&5
 
936
+configure:5766: $? = 0
 
937
+configure:5769: test -z                         || test ! -s conftest.err
 
938
+configure:5772: $? = 0
 
939
+configure:5775: test -s conftest.o
 
940
+configure:5778: $? = 0
 
941
+configure:5803: checking dependency style of g++
 
942
+configure:5893: result: gcc3
 
943
+configure:5915: checking how to run the C++ preprocessor
 
944
+configure:5946: g++ -E  conftest.cc
 
945
+configure:5952: $? = 0
 
946
+configure:5984: g++ -E  conftest.cc
 
947
+conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory
 
948
+configure:5990: $? = 1
 
949
+configure: failed program was:
 
950
+| /* confdefs.h.  */
 
951
+| 
 
952
+| #define PACKAGE_NAME ""
 
953
+| #define PACKAGE_TARNAME ""
 
954
+| #define PACKAGE_VERSION ""
 
955
+| #define PACKAGE_STRING ""
 
956
+| #define PACKAGE_BUGREPORT ""
 
957
+| #define PACKAGE "irssi"
 
958
+| #define VERSION "0.8.10-rc5"
 
959
+| #define STDC_HEADERS 1
 
960
+| #define HAVE_SYS_TYPES_H 1
 
961
+| #define HAVE_SYS_STAT_H 1
 
962
+| #define HAVE_STDLIB_H 1
 
963
+| #define HAVE_STRING_H 1
 
964
+| #define HAVE_MEMORY_H 1
 
965
+| #define HAVE_STRINGS_H 1
 
966
+| #define HAVE_INTTYPES_H 1
 
967
+| #define HAVE_STDINT_H 1
 
968
+| #define HAVE_UNISTD_H 1
 
969
+| #define HAVE_DLFCN_H 1
 
970
+| #ifdef __cplusplus
 
971
+| extern "C" void std::exit (int) throw (); using std::exit;
 
972
+| #endif
 
973
+| /* end confdefs.h.  */
 
974
+| #include <ac_nonexistent.h>
 
975
+configure:6029: result: g++ -E
 
976
+configure:6053: g++ -E  conftest.cc
 
977
+configure:6059: $? = 0
 
978
+configure:6091: g++ -E  conftest.cc
 
979
+conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory
 
980
+configure:6097: $? = 1
 
981
+configure: failed program was:
 
982
+| /* confdefs.h.  */
 
983
+| 
 
984
+| #define PACKAGE_NAME ""
 
985
+| #define PACKAGE_TARNAME ""
 
986
+| #define PACKAGE_VERSION ""
 
987
+| #define PACKAGE_STRING ""
 
988
+| #define PACKAGE_BUGREPORT ""
 
989
+| #define PACKAGE "irssi"
 
990
+| #define VERSION "0.8.10-rc5"
 
991
+| #define STDC_HEADERS 1
 
992
+| #define HAVE_SYS_TYPES_H 1
 
993
+| #define HAVE_SYS_STAT_H 1
 
994
+| #define HAVE_STDLIB_H 1
 
995
+| #define HAVE_STRING_H 1
 
996
+| #define HAVE_MEMORY_H 1
 
997
+| #define HAVE_STRINGS_H 1
 
998
+| #define HAVE_INTTYPES_H 1
 
999
+| #define HAVE_STDINT_H 1
 
1000
+| #define HAVE_UNISTD_H 1
 
1001
+| #define HAVE_DLFCN_H 1
 
1002
+| #ifdef __cplusplus
 
1003
+| extern "C" void std::exit (int) throw (); using std::exit;
 
1004
+| #endif
 
1005
+| /* end confdefs.h.  */
 
1006
+| #include <ac_nonexistent.h>
 
1007
+configure:6192: checking for g77
 
1008
+configure:6221: result: no
 
1009
+configure:6192: checking for f77
 
1010
+configure:6221: result: no
 
1011
+configure:6192: checking for xlf
 
1012
+configure:6221: result: no
 
1013
+configure:6192: checking for frt
 
1014
+configure:6221: result: no
 
1015
+configure:6192: checking for pgf77
 
1016
+configure:6221: result: no
 
1017
+configure:6192: checking for fort77
 
1018
+configure:6221: result: no
 
1019
+configure:6192: checking for fl32
 
1020
+configure:6221: result: no
 
1021
+configure:6192: checking for af77
 
1022
+configure:6221: result: no
 
1023
+configure:6192: checking for f90
 
1024
+configure:6221: result: no
 
1025
+configure:6192: checking for xlf90
 
1026
+configure:6221: result: no
 
1027
+configure:6192: checking for pgf90
 
1028
+configure:6221: result: no
 
1029
+configure:6192: checking for epcf90
 
1030
+configure:6221: result: no
 
1031
+configure:6192: checking for f95
 
1032
+configure:6221: result: no
 
1033
+configure:6192: checking for fort
 
1034
+configure:6221: result: no
 
1035
+configure:6192: checking for xlf95
 
1036
+configure:6221: result: no
 
1037
+configure:6192: checking for ifc
 
1038
+configure:6221: result: no
 
1039
+configure:6192: checking for efc
 
1040
+configure:6221: result: no
 
1041
+configure:6192: checking for pgf95
 
1042
+configure:6221: result: no
 
1043
+configure:6192: checking for lf95
 
1044
+configure:6221: result: no
 
1045
+configure:6192: checking for gfortran
 
1046
+configure:6221: result: no
 
1047
+configure:6233: checking for Fortran 77 compiler version
 
1048
+configure:6236:  --version </dev/null >&5
 
1049
+./configure: line 6237: --version: command not found
 
1050
+configure:6239: $? = 127
 
1051
+configure:6241:  -v </dev/null >&5
 
1052
+./configure: line 6242: -v: command not found
 
1053
+configure:6244: $? = 127
 
1054
+configure:6246:  -V </dev/null >&5
 
1055
+./configure: line 6247: -V: command not found
 
1056
+configure:6249: $? = 127
 
1057
+configure:6257: checking whether we are using the GNU Fortran 77 compiler
 
1058
+configure:6271:  -c  conftest.F >&5
 
1059
+./configure: line 6272: -c: command not found
 
1060
+configure:6277: $? = 127
 
1061
+configure: failed program was:
 
1062
+|       program main
 
1063
+| #ifndef __GNUC__
 
1064
+|        choke me
 
1065
+| #endif
 
1066
+| 
 
1067
+|       end
 
1068
+configure:6302: result: no
 
1069
+configure:6308: checking whether  accepts -g
 
1070
+configure:6320:  -c -g conftest.f >&5
 
1071
+./configure: line 6321: -c: command not found
 
1072
+configure:6326: $? = 127
 
1073
+configure: failed program was:
 
1074
+|       program main
 
1075
+| 
 
1076
+|       end
 
1077
+configure:6350: result: no
 
1078
+configure:6380: checking the maximum length of command line arguments
 
1079
+configure:6445: result: 32768
 
1080
+configure:6456: checking command to parse /usr/bin/nm -B output from gcc object
 
1081
+configure:6545: gcc -c -g -O2  conftest.c >&5
 
1082
+configure:6548: $? = 0
 
1083
+configure:6552: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[         ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[         ][      ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' \> conftest.nm
 
1084
+configure:6555: $? = 0
 
1085
+configure:6607: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
 
1086
+configure:6610: $? = 0
 
1087
+configure:6648: result: ok
 
1088
+configure:6652: checking for objdir
 
1089
+configure:6667: result: .libs
 
1090
+configure:6757: checking for ar
 
1091
+configure:6773: found /usr/bin/ar
 
1092
+configure:6784: result: ar
 
1093
+configure:6837: checking for ranlib
 
1094
+configure:6853: found /usr/bin/ranlib
 
1095
+configure:6864: result: ranlib
 
1096
+configure:6917: checking for strip
 
1097
+configure:6933: found /usr/bin/strip
 
1098
+configure:6944: result: strip
 
1099
+configure:7206: checking if gcc static flag  works
 
1100
+configure:7229: result: yes
 
1101
+configure:7247: checking if gcc supports -fno-rtti -fno-exceptions
 
1102
+configure:7265: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
 
1103
+cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
 
1104
+configure:7269: $? = 0
 
1105
+configure:7280: result: no
 
1106
+configure:7295: checking for gcc option to produce PIC
 
1107
+configure:7472: result: -fPIC
 
1108
+configure:7480: checking if gcc PIC flag -fPIC works
 
1109
+configure:7498: gcc -c -g -O2  -fPIC -DPIC conftest.c >&5
 
1110
+configure:7502: $? = 0
 
1111
+configure:7513: result: yes
 
1112
+configure:7537: checking if gcc supports -c -o file.o
 
1113
+configure:7558: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
 
1114
+configure:7562: $? = 0
 
1115
+configure:7582: result: yes
 
1116
+configure:7608: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
 
1117
+configure:8455: result: yes
 
1118
+configure:8481: checking whether -lc should be explicitly linked in
 
1119
+configure:8486: gcc -c -g -O2  conftest.c >&5
 
1120
+configure:8489: $? = 0
 
1121
+configure:8503: gcc -shared conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep  -lc  \>/dev/null 2\>\&1
 
1122
+configure:8506: $? = 0
 
1123
+configure:8518: result: no
 
1124
+configure:8526: checking dynamic linker characteristics
 
1125
+configure:9078: result: GNU/Linux ld.so
 
1126
+configure:9082: checking how to hardcode library paths into programs
 
1127
+configure:9107: result: immediate
 
1128
+configure:9121: checking whether stripping libraries is possible
 
1129
+configure:9126: result: yes
 
1130
+configure:9949: checking if libtool supports shared libraries
 
1131
+configure:9951: result: yes
 
1132
+configure:9954: checking whether to build shared libraries
 
1133
+configure:10012: result: yes
 
1134
+configure:10015: checking whether to build static libraries
 
1135
+configure:10019: result: yes
 
1136
+configure:10111: creating libtool
 
1137
+configure:10658: checking for ld used by g++
 
1138
+configure:10725: result: /usr/bin/ld
 
1139
+configure:10734: checking if the linker (/usr/bin/ld) is GNU ld
 
1140
+configure:10749: result: yes
 
1141
+configure:10800: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
 
1142
+configure:11626: result: yes
 
1143
+configure:11644: g++ -c -g -O2  conftest.cc >&5
 
1144
+configure:11647: $? = 0
 
1145
+configure:11743: checking for g++ option to produce PIC
 
1146
+configure:11995: result: -fPIC
 
1147
+configure:12003: checking if g++ PIC flag -fPIC works
 
1148
+configure:12021: g++ -c -g -O2  -fPIC -DPIC conftest.cc >&5
 
1149
+configure:12025: $? = 0
 
1150
+configure:12036: result: yes
 
1151
+configure:12060: checking if g++ supports -c -o file.o
 
1152
+configure:12081: g++ -c -g -O2  -o out/conftest2.o conftest.cc >&5
 
1153
+configure:12085: $? = 0
 
1154
+configure:12105: result: yes
 
1155
+configure:12131: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
 
1156
+configure:12159: result: yes
 
1157
+configure:12230: checking dynamic linker characteristics
 
1158
+configure:12782: result: GNU/Linux ld.so
 
1159
+configure:12786: checking how to hardcode library paths into programs
 
1160
+configure:12811: result: immediate
 
1161
+configure:12825: checking whether stripping libraries is possible
 
1162
+configure:12830: result: yes
 
1163
+configure:20076: checking for sed
 
1164
+configure:20094: found /bin/sed
 
1165
+configure:20106: result: /bin/sed
 
1166
+configure:20115: checking for perl
 
1167
+configure:20133: found /usr/bin/perl
 
1168
+configure:20145: result: /usr/bin/perl
 
1169
+configure:20169: checking for string.h
 
1170
+configure:20174: result: yes
 
1171
+configure:20169: checking for stdlib.h
 
1172
+configure:20174: result: yes
 
1173
+configure:20169: checking for unistd.h
 
1174
+configure:20174: result: yes
 
1175
+configure:20178: checking dirent.h usability
 
1176
+configure:20190: gcc -c -g -O2  conftest.c >&5
 
1177
+configure:20196: $? = 0
 
1178
+configure:20199: test -z                        || test ! -s conftest.err
 
1179
+configure:20202: $? = 0
 
1180
+configure:20205: test -s conftest.o
 
1181
+configure:20208: $? = 0
 
1182
+configure:20218: result: yes
 
1183
+configure:20222: checking dirent.h presence
 
1184
+configure:20232: gcc -E  conftest.c
 
1185
+configure:20238: $? = 0
 
1186
+configure:20258: result: yes
 
1187
+configure:20293: checking for dirent.h
 
1188
+configure:20300: result: yes
 
1189
+configure:20178: checking sys/ioctl.h usability
 
1190
+configure:20190: gcc -c -g -O2  conftest.c >&5
 
1191
+configure:20196: $? = 0
 
1192
+configure:20199: test -z                        || test ! -s conftest.err
 
1193
+configure:20202: $? = 0
 
1194
+configure:20205: test -s conftest.o
 
1195
+configure:20208: $? = 0
 
1196
+configure:20218: result: yes
 
1197
+configure:20222: checking sys/ioctl.h presence
 
1198
+configure:20232: gcc -E  conftest.c
 
1199
+configure:20238: $? = 0
 
1200
+configure:20258: result: yes
 
1201
+configure:20293: checking for sys/ioctl.h
 
1202
+configure:20300: result: yes
 
1203
+configure:20178: checking sys/resource.h usability
 
1204
+configure:20190: gcc -c -g -O2  conftest.c >&5
 
1205
+configure:20196: $? = 0
 
1206
+configure:20199: test -z                        || test ! -s conftest.err
 
1207
+configure:20202: $? = 0
 
1208
+configure:20205: test -s conftest.o
 
1209
+configure:20208: $? = 0
 
1210
+configure:20218: result: yes
 
1211
+configure:20222: checking sys/resource.h presence
 
1212
+configure:20232: gcc -E  conftest.c
 
1213
+configure:20238: $? = 0
 
1214
+configure:20258: result: yes
 
1215
+configure:20293: checking for sys/resource.h
 
1216
+configure:20300: result: yes
 
1217
+configure:20331: checking sys/time.h usability
 
1218
+configure:20343: gcc -c -g -O2  conftest.c >&5
 
1219
+configure:20349: $? = 0
 
1220
+configure:20352: test -z                        || test ! -s conftest.err
 
1221
+configure:20355: $? = 0
 
1222
+configure:20358: test -s conftest.o
 
1223
+configure:20361: $? = 0
 
1224
+configure:20371: result: yes
 
1225
+configure:20375: checking sys/time.h presence
 
1226
+configure:20385: gcc -E  conftest.c
 
1227
+configure:20391: $? = 0
 
1228
+configure:20411: result: yes
 
1229
+configure:20446: checking for sys/time.h
 
1230
+configure:20453: result: yes
 
1231
+configure:20331: checking sys/utsname.h usability
 
1232
+configure:20343: gcc -c -g -O2  conftest.c >&5
 
1233
+configure:20349: $? = 0
 
1234
+configure:20352: test -z                        || test ! -s conftest.err
 
1235
+configure:20355: $? = 0
 
1236
+configure:20358: test -s conftest.o
 
1237
+configure:20361: $? = 0
 
1238
+configure:20371: result: yes
 
1239
+configure:20375: checking sys/utsname.h presence
 
1240
+configure:20385: gcc -E  conftest.c
 
1241
+configure:20391: $? = 0
 
1242
+configure:20411: result: yes
 
1243
+configure:20446: checking for sys/utsname.h
 
1244
+configure:20453: result: yes
 
1245
+configure:20331: checking regex.h usability
 
1246
+configure:20343: gcc -c -g -O2  conftest.c >&5
 
1247
+configure:20349: $? = 0
 
1248
+configure:20352: test -z                        || test ! -s conftest.err
 
1249
+configure:20355: $? = 0
 
1250
+configure:20358: test -s conftest.o
 
1251
+configure:20361: $? = 0
 
1252
+configure:20371: result: yes
 
1253
+configure:20375: checking regex.h presence
 
1254
+configure:20385: gcc -E  conftest.c
 
1255
+configure:20391: $? = 0
 
1256
+configure:20411: result: yes
 
1257
+configure:20446: checking for regex.h
 
1258
+configure:20453: result: yes
 
1259
+configure:20722: checking for libgnutls-config
 
1260
+configure:20740: found /usr/bin/libgnutls-config
 
1261
+configure:20753: result: /usr/bin/libgnutls-config
 
1262
+configure:20761: checking for libgnutls - version >= 1.0.16
 
1263
+configure:20843: gcc -o conftest -g -O2 -I/usr/include   conftest.c  -lgnutls >&5
 
1264
+configure:20846: $? = 0
 
1265
+configure:20848: ./conftest
 
1266
+configure:20851: $? = 0
 
1267
+configure:20869: result: yes
 
1268
+configure:20997: checking for mkfifo
 
1269
+configure:21054: gcc -o conftest -g -O2   conftest.c  >&5
 
1270
+configure:21060: $? = 0
 
1271
+configure:21063: test -z                        || test ! -s conftest.err
 
1272
+configure:21066: $? = 0
 
1273
+configure:21069: test -s conftest
 
1274
+configure:21072: $? = 0
 
1275
+configure:21084: result: yes
 
1276
+configure:20997: checking for fcntl
 
1277
+configure:21054: gcc -o conftest -g -O2   conftest.c  >&5
 
1278
+configure:21060: $? = 0
 
1279
+configure:21063: test -z                        || test ! -s conftest.err
 
1280
+configure:21066: $? = 0
 
1281
+configure:21069: test -s conftest
 
1282
+configure:21072: $? = 0
 
1283
+configure:21084: result: yes
 
1284
+configure:20997: checking for nl_langinfo
 
1285
+configure:21054: gcc -o conftest -g -O2   conftest.c  >&5
 
1286
+configure:21060: $? = 0
 
1287
+configure:21063: test -z                        || test ! -s conftest.err
 
1288
+configure:21066: $? = 0
 
1289
+configure:21069: test -s conftest
 
1290
+configure:21072: $? = 0
 
1291
+configure:21084: result: yes
 
1292
+configure:21095: checking for socket
 
1293
+configure:21152: gcc -o conftest -g -O2   conftest.c  >&5
 
1294
+configure:21158: $? = 0
 
1295
+configure:21161: test -z                        || test ! -s conftest.err
 
1296
+configure:21164: $? = 0
 
1297
+configure:21167: test -s conftest
 
1298
+configure:21170: $? = 0
 
1299
+configure:21182: result: yes
 
1300
+configure:21261: checking for inet_addr
 
1301
+configure:21318: gcc -o conftest -g -O2   conftest.c  >&5
 
1302
+configure:21324: $? = 0
 
1303
+configure:21327: test -z                        || test ! -s conftest.err
 
1304
+configure:21330: $? = 0
 
1305
+configure:21333: test -s conftest
 
1306
+configure:21336: $? = 0
 
1307
+configure:21348: result: yes
 
1308
+configure:21431: checking for socklen_t
 
1309
+configure:21454: gcc -c -g -O2 -Wall  conftest.c >&5
 
1310
+conftest.c: In function 'main':
 
1311
+conftest.c:44: warning: unused variable 't'
 
1312
+configure:21460: $? = 0
 
1313
+configure:21463: test -z                        || test ! -s conftest.err
 
1314
+configure:21466: $? = 0
 
1315
+configure:21469: test -s conftest.o
 
1316
+configure:21472: $? = 0
 
1317
+configure:21491: result: yes
 
1318
+configure:21499: checking for int
 
1319
+configure:21523: gcc -c -g -O2 -Wall  conftest.c >&5
 
1320
+configure:21529: $? = 0
 
1321
+configure:21532: test -z                        || test ! -s conftest.err
 
1322
+configure:21535: $? = 0
 
1323
+configure:21538: test -s conftest.o
 
1324
+configure:21541: $? = 0
 
1325
+configure:21552: result: yes
 
1326
+configure:21555: checking size of int
 
1327
+configure:21867: gcc -o conftest -g -O2 -Wall   conftest.c  >&5
 
1328
+configure:21870: $? = 0
 
1329
+configure:21872: ./conftest
 
1330
+configure:21875: $? = 0
 
1331
+configure:21898: result: 4
 
1332
+configure:21905: checking for long
 
1333
+configure:21929: gcc -c -g -O2 -Wall  conftest.c >&5
 
1334
+configure:21935: $? = 0
 
1335
+configure:21938: test -z                        || test ! -s conftest.err
 
1336
+configure:21941: $? = 0
 
1337
+configure:21944: test -s conftest.o
 
1338
+configure:21947: $? = 0
 
1339
+configure:21958: result: yes
 
1340
+configure:21961: checking size of long
 
1341
+configure:22273: gcc -o conftest -g -O2 -Wall   conftest.c  >&5
 
1342
+configure:22276: $? = 0
 
1343
+configure:22278: ./conftest
 
1344
+configure:22281: $? = 0
 
1345
+configure:22304: result: 4
 
1346
+configure:22311: checking for long long
 
1347
+configure:22335: gcc -c -g -O2 -Wall  conftest.c >&5
 
1348
+configure:22341: $? = 0
 
1349
+configure:22344: test -z                        || test ! -s conftest.err
 
1350
+configure:22347: $? = 0
 
1351
+configure:22350: test -s conftest.o
 
1352
+configure:22353: $? = 0
 
1353
+configure:22364: result: yes
 
1354
+configure:22367: checking size of long long
 
1355
+configure:22679: gcc -o conftest -g -O2 -Wall   conftest.c  >&5
 
1356
+configure:22682: $? = 0
 
1357
+configure:22684: ./conftest
 
1358
+configure:22687: $? = 0
 
1359
+configure:22710: result: 8
 
1360
+configure:22718: checking size of off_t
 
1361
+configure:22745: gcc -o conftest -g -O2 -Wall   conftest.c  >&5
 
1362
+conftest.c: In function 'main':
 
1363
+conftest.c:47: warning: implicit declaration of function 'exit'
 
1364
+conftest.c:47: warning: incompatible implicit declaration of built-in function 'exit'
 
1365
+configure:22748: $? = 0
 
1366
+configure:22750: ./conftest
 
1367
+configure:22753: $? = 0
 
1368
+configure:22773: result: 8
 
1369
+configure:23050: checking whether GLib is unpacked to irssi dir
 
1370
+configure:23098: result: no
 
1371
+configure:23460: checking for pkg-config
 
1372
+configure:23478: found /usr/bin/pkg-config
 
1373
+configure:23491: result: /usr/bin/pkg-config
 
1374
+configure:23514: checking for GLIB - version >= 2.0.0
 
1375
+configure:23633: gcc -o conftest -g -O2 -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include     conftest.c -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0    >&5
 
1376
+configure:23636: $? = 0
 
1377
+configure:23638: ./conftest
 
1378
+configure:23641: $? = 0
 
1379
+configure:23659: result: yes (version 2.6.5)
 
1380
+configure:23957: checking pkg-config is at least version 0.9.0
 
1381
+configure:23960: result: yes
 
1382
+configure:23971: checking for SSL
 
1383
+configure:23976: $PKG_CONFIG --exists --print-errors "openssl"
 
1384
+configure:23979: $? = 0
 
1385
+configure:23990: $PKG_CONFIG --exists --print-errors "openssl"
 
1386
+configure:23993: $? = 0
 
1387
+configure:24048: result: yes
 
1388
+configure:24676: checking if we can use recode, requires GLIB2
 
1389
+configure:24683: result: yes
 
1390
+configure:24691: checking if we can link dynamic libraries with modules
 
1391
+configure:24738: result: yes
 
1392
+configure:25049: checking "location of ncurses.h file"...
 
1393
+configure:25057: result: Found ncurses on /usr/include/ncurses.h
 
1394
+configure:25061: checking for initscr in -lncurses
 
1395
+configure:25091: gcc -o conftest -g -O2 -Wall     conftest.c -lncurses -lncurses  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl   >&5
 
1396
+configure:25097: $? = 0
 
1397
+configure:25100: test -z                        || test ! -s conftest.err
 
1398
+configure:25103: $? = 0
 
1399
+configure:25106: test -s conftest
 
1400
+configure:25109: $? = 0
 
1401
+configure:25122: result: yes
 
1402
+configure:26515: checking for use_default_colors
 
1403
+configure:26572: gcc -o conftest -g -O2 -Wall     conftest.c  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl   -lncurses >&5
 
1404
+configure:26578: $? = 0
 
1405
+configure:26581: test -z                        || test ! -s conftest.err
 
1406
+configure:26584: $? = 0
 
1407
+configure:26587: test -s conftest
 
1408
+configure:26590: $? = 0
 
1409
+configure:26602: result: yes
 
1410
+configure:26611: checking for idcok
 
1411
+configure:26668: gcc -o conftest -g -O2 -Wall     conftest.c  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl   -lncurses >&5
 
1412
+configure:26674: $? = 0
 
1413
+configure:26677: test -z                        || test ! -s conftest.err
 
1414
+configure:26680: $? = 0
 
1415
+configure:26683: test -s conftest
 
1416
+configure:26686: $? = 0
 
1417
+configure:26698: result: yes
 
1418
+configure:26707: checking for resizeterm
 
1419
+configure:26764: gcc -o conftest -g -O2 -Wall     conftest.c  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl   -lncurses >&5
 
1420
+configure:26770: $? = 0
 
1421
+configure:26773: test -z                        || test ! -s conftest.err
 
1422
+configure:26776: $? = 0
 
1423
+configure:26779: test -s conftest
 
1424
+configure:26782: $? = 0
 
1425
+configure:26794: result: yes
 
1426
+configure:26803: checking for wresize
 
1427
+configure:26860: gcc -o conftest -g -O2 -Wall     conftest.c  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl   -lncurses >&5
 
1428
+configure:26866: $? = 0
 
1429
+configure:26869: test -z                        || test ! -s conftest.err
 
1430
+configure:26872: $? = 0
 
1431
+configure:26875: test -s conftest
 
1432
+configure:26878: $? = 0
 
1433
+configure:26890: result: yes
 
1434
+configure:26899: checking for setupterm
 
1435
+configure:26956: gcc -o conftest -g -O2 -Wall     conftest.c  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl   -lncurses >&5
 
1436
+configure:26962: $? = 0
 
1437
+configure:26965: test -z                        || test ! -s conftest.err
 
1438
+configure:26968: $? = 0
 
1439
+configure:26971: test -s conftest
 
1440
+configure:26974: $? = 0
 
1441
+configure:26986: result: yes
 
1442
+configure:27326: checking for working Perl support
 
1443
+configure:27411: result: ok
 
1444
+configure:27904: creating ./config.status
 
1445
+
 
1446
+## ---------------------- ##
 
1447
+## Running config.status. ##
 
1448
+## ---------------------- ##
 
1449
+
 
1450
+This file was extended by config.status, which was
 
1451
+generated by GNU Autoconf 2.59.  Invocation command line was
 
1452
+
 
1453
+  CONFIG_FILES    = 
 
1454
+  CONFIG_HEADERS  = 
 
1455
+  CONFIG_LINKS    = 
 
1456
+  CONFIG_COMMANDS = 
 
1457
+  $ ./config.status 
 
1458
+
 
1459
+on beebo
 
1460
+
 
1461
+config.status:846: creating Makefile
 
1462
+config.status:846: creating src/Makefile
 
1463
+config.status:846: creating src/core/Makefile
 
1464
+config.status:846: creating src/irc/Makefile
 
1465
+config.status:846: creating src/irc/core/Makefile
 
1466
+config.status:846: creating src/irc/dcc/Makefile
 
1467
+config.status:846: creating src/irc/notifylist/Makefile
 
1468
+config.status:846: creating src/irc/proxy/Makefile
 
1469
+config.status:846: creating src/irc/flood/Makefile
 
1470
+config.status:846: creating src/fe-common/Makefile
 
1471
+config.status:846: creating src/fe-common/core/Makefile
 
1472
+config.status:846: creating src/fe-common/irc/Makefile
 
1473
+config.status:846: creating src/fe-common/irc/dcc/Makefile
 
1474
+config.status:846: creating src/fe-common/irc/notifylist/Makefile
 
1475
+config.status:846: creating src/fe-none/Makefile
 
1476
+config.status:846: creating src/fe-text/Makefile
 
1477
+config.status:846: creating src/lib-config/Makefile
 
1478
+config.status:846: creating src/lib-popt/Makefile
 
1479
+config.status:846: creating src/perl/Makefile
 
1480
+config.status:846: creating src/perl/common/Makefile.PL
 
1481
+config.status:846: creating src/perl/irc/Makefile.PL
 
1482
+config.status:846: creating src/perl/ui/Makefile.PL
 
1483
+config.status:846: creating src/perl/textui/Makefile.PL
 
1484
+config.status:846: creating scripts/Makefile
 
1485
+config.status:846: creating scripts/examples/Makefile
 
1486
+config.status:846: creating docs/Makefile
 
1487
+config.status:846: creating docs/help/Makefile
 
1488
+config.status:846: creating docs/help/in/Makefile
 
1489
+config.status:846: creating irssi-version.h
 
1490
+config.status:846: creating stamp.h
 
1491
+config.status:846: creating irssi.spec
 
1492
+config.status:846: creating irssi-config
 
1493
+config.status:912: creating config.h
 
1494
+config.status:1280: executing depfiles commands
 
1495
+
 
1496
+## ---------------- ##
 
1497
+## Cache variables. ##
 
1498
+## ---------------- ##
 
1499
+
 
1500
+ac_cv_build=i686-pc-linux-gnu
 
1501
+ac_cv_build_alias=i686-pc-linux-gnu
 
1502
+ac_cv_c_compiler_gnu=yes
 
1503
+ac_cv_cxx_compiler_gnu=yes
 
1504
+ac_cv_env_CC_set=
 
1505
+ac_cv_env_CC_value=
 
1506
+ac_cv_env_CFLAGS_set=
 
1507
+ac_cv_env_CFLAGS_value=
 
1508
+ac_cv_env_CPPFLAGS_set=
 
1509
+ac_cv_env_CPPFLAGS_value=
 
1510
+ac_cv_env_CPP_set=
 
1511
+ac_cv_env_CPP_value=
 
1512
+ac_cv_env_CXXCPP_set=
 
1513
+ac_cv_env_CXXCPP_value=
 
1514
+ac_cv_env_CXXFLAGS_set=
 
1515
+ac_cv_env_CXXFLAGS_value=
 
1516
+ac_cv_env_CXX_set=
 
1517
+ac_cv_env_CXX_value=
 
1518
+ac_cv_env_F77_set=
 
1519
+ac_cv_env_F77_value=
 
1520
+ac_cv_env_FFLAGS_set=
 
1521
+ac_cv_env_FFLAGS_value=
 
1522
+ac_cv_env_LDFLAGS_set=
 
1523
+ac_cv_env_LDFLAGS_value=
 
1524
+ac_cv_env_PKG_CONFIG_set=
 
1525
+ac_cv_env_PKG_CONFIG_value=
 
1526
+ac_cv_env_SSL_CFLAGS_set=
 
1527
+ac_cv_env_SSL_CFLAGS_value=
 
1528
+ac_cv_env_SSL_LIBS_set=
 
1529
+ac_cv_env_SSL_LIBS_value=
 
1530
+ac_cv_env_build_alias_set=
 
1531
+ac_cv_env_build_alias_value=
 
1532
+ac_cv_env_host_alias_set=
 
1533
+ac_cv_env_host_alias_value=
 
1534
+ac_cv_env_target_alias_set=
 
1535
+ac_cv_env_target_alias_value=
 
1536
+ac_cv_exeext=
 
1537
+ac_cv_f77_compiler_gnu=no
 
1538
+ac_cv_func_fcntl=yes
 
1539
+ac_cv_func_idcok=yes
 
1540
+ac_cv_func_inet_addr=yes
 
1541
+ac_cv_func_mkfifo=yes
 
1542
+ac_cv_func_nl_langinfo=yes
 
1543
+ac_cv_func_resizeterm=yes
 
1544
+ac_cv_func_setupterm=yes
 
1545
+ac_cv_func_socket=yes
 
1546
+ac_cv_func_use_default_colors=yes
 
1547
+ac_cv_func_wresize=yes
 
1548
+ac_cv_header_dirent_h=yes
 
1549
+ac_cv_header_dlfcn_h=yes
 
1550
+ac_cv_header_inttypes_h=yes
 
1551
+ac_cv_header_memory_h=yes
 
1552
+ac_cv_header_regex_h=yes
 
1553
+ac_cv_header_stdc=yes
 
1554
+ac_cv_header_stdint_h=yes
 
1555
+ac_cv_header_stdlib_h=yes
 
1556
+ac_cv_header_string_h=yes
 
1557
+ac_cv_header_strings_h=yes
 
1558
+ac_cv_header_sys_ioctl_h=yes
 
1559
+ac_cv_header_sys_resource_h=yes
 
1560
+ac_cv_header_sys_stat_h=yes
 
1561
+ac_cv_header_sys_time_h=yes
 
1562
+ac_cv_header_sys_types_h=yes
 
1563
+ac_cv_header_sys_utsname_h=yes
 
1564
+ac_cv_header_unistd_h=yes
 
1565
+ac_cv_host=i686-pc-linux-gnu
 
1566
+ac_cv_host_alias=i686-pc-linux-gnu
 
1567
+ac_cv_lib_ncurses_initscr=yes
 
1568
+ac_cv_objext=o
 
1569
+ac_cv_path_LIBGNUTLS_CONFIG=/usr/bin/libgnutls-config
 
1570
+ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config
 
1571
+ac_cv_path_install='/usr/bin/install -c'
 
1572
+ac_cv_path_perlpath=/usr/bin/perl
 
1573
+ac_cv_path_sedpath=/bin/sed
 
1574
+ac_cv_prog_AWK=gawk
 
1575
+ac_cv_prog_CPP='gcc -E'
 
1576
+ac_cv_prog_CXXCPP='g++ -E'
 
1577
+ac_cv_prog_ac_ct_AR=ar
 
1578
+ac_cv_prog_ac_ct_CC=gcc
 
1579
+ac_cv_prog_ac_ct_CXX=g++
 
1580
+ac_cv_prog_ac_ct_RANLIB=ranlib
 
1581
+ac_cv_prog_ac_ct_STRIP=strip
 
1582
+ac_cv_prog_cc_g=yes
 
1583
+ac_cv_prog_cc_stdc=
 
1584
+ac_cv_prog_cxx_g=yes
 
1585
+ac_cv_prog_egrep='grep -E'
 
1586
+ac_cv_prog_f77_g=no
 
1587
+ac_cv_prog_make_make_set=yes
 
1588
+ac_cv_search_strerror='none required'
 
1589
+ac_cv_sizeof_int=4
 
1590
+ac_cv_sizeof_long=4
 
1591
+ac_cv_sizeof_long_long=8
 
1592
+ac_cv_type_int=yes
 
1593
+ac_cv_type_long=yes
 
1594
+ac_cv_type_long_long=yes
 
1595
+am_cv_CC_dependencies_compiler_type=gcc3
 
1596
+am_cv_CXX_dependencies_compiler_type=gcc3
 
1597
+irssi_cv_type_socklen_t=yes
 
1598
+lt_cv_deplibs_check_method=pass_all
 
1599
+lt_cv_file_magic_cmd='$MAGIC_CMD'
 
1600
+lt_cv_file_magic_test_file=
 
1601
+lt_cv_ld_reload_flag=-r
 
1602
+lt_cv_objdir=.libs
 
1603
+lt_cv_path_LD=/usr/bin/ld
 
1604
+lt_cv_path_LDCXX=/usr/bin/ld
 
1605
+lt_cv_path_NM='/usr/bin/nm -B'
 
1606
+lt_cv_path_SED=/bin/sed
 
1607
+lt_cv_prog_compiler_c_o=yes
 
1608
+lt_cv_prog_compiler_c_o_CXX=yes
 
1609
+lt_cv_prog_compiler_rtti_exceptions=no
 
1610
+lt_cv_prog_gnu_ld=yes
 
1611
+lt_cv_prog_gnu_ldcxx=yes
 
1612
+lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[     ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[         ][      ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p'\'''
 
1613
+lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/  {"\2", (lt_ptr) \&\2},/p'\'''
 
1614
+lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
 
1615
+lt_cv_sys_max_cmd_len=32768
 
1616
+lt_lt_cv_prog_compiler_c_o='"yes"'
 
1617
+lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
 
1618
+lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[         ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[       ][      ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'\''"'
 
1619
+lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
 
1620
+lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
 
1621
+pkg_cv_SSL_CFLAGS=' '
 
1622
+pkg_cv_SSL_LIBS='-lssl -lcrypto -ldl  '
 
1623
+
 
1624
+## ----------------- ##
 
1625
+## Output variables. ##
 
1626
+## ----------------- ##
 
1627
+
 
1628
+ACLOCAL='${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9'
 
1629
+AMDEPBACKSLASH='\'
 
1630
+AMDEP_FALSE='#'
 
1631
+AMDEP_TRUE=''
 
1632
+AMTAR='${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar'
 
1633
+AR='ar'
 
1634
+AUTOCONF='${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf'
 
1635
+AUTOHEADER='${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader'
 
1636
+AUTOMAKE='${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9'
 
1637
+AWK='gawk'
 
1638
+BUILD_IRSSIBOT_FALSE=''
 
1639
+BUILD_IRSSIBOT_TRUE='#'
 
1640
+BUILD_IRSSIPROXY_FALSE=''
 
1641
+BUILD_IRSSIPROXY_TRUE='#'
 
1642
+BUILD_PLUGINS_FALSE=''
 
1643
+BUILD_PLUGINS_TRUE='#'
 
1644
+BUILD_TEXTUI_FALSE='#'
 
1645
+BUILD_TEXTUI_TRUE=''
 
1646
+CC='gcc'
 
1647
+CCDEPMODE='depmode=gcc3'
 
1648
+CFLAGS='-g -O2 -Wall  '
 
1649
+CHAT_MODULES='irc'
 
1650
+COMMON_LIBS='../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a'
 
1651
+COMMON_NOUI_LIBS=' ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a'
 
1652
+CPP='gcc -E'
 
1653
+CPPFLAGS=''
 
1654
+CURSES_INCLUDEDIR=''
 
1655
+CURSES_LIBS='-lncurses'
 
1656
+CXX='g++'
 
1657
+CXXCPP='g++ -E'
 
1658
+CXXDEPMODE='depmode=gcc3'
 
1659
+CXXFLAGS='-g -O2'
 
1660
+CYGPATH_W='echo'
 
1661
+DEFS='-DHAVE_CONFIG_H'
 
1662
+DEPDIR='.deps'
 
1663
+DYNALOADER_A=''
 
1664
+ECHO='echo'
 
1665
+ECHO_C=''
 
1666
+ECHO_N='-n'
 
1667
+ECHO_T=''
 
1668
+EGREP='grep -E'
 
1669
+EXEEXT=''
 
1670
+F77=''
 
1671
+FFLAGS=''
 
1672
+GLIB_CFLAGS='-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
 
1673
+GLIB_CONFIG=''
 
1674
+GLIB_GENMARSHAL='glib-genmarshal'
 
1675
+GLIB_LIBS='-Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  '
 
1676
+GLIB_MKENUMS='glib-mkenums'
 
1677
+GOBJECT_QUERY='gobject-query'
 
1678
+HAVE_GNUTLS_FALSE='#'
 
1679
+HAVE_GNUTLS_TRUE=''
 
1680
+HAVE_PERL_FALSE='#'
 
1681
+HAVE_PERL_TRUE=''
 
1682
+HAVE_STATIC_PERL_FALSE='#'
 
1683
+HAVE_STATIC_PERL_TRUE=''
 
1684
+INSTALL_DATA='${INSTALL} -m 644'
 
1685
+INSTALL_PROGRAM='${INSTALL}'
 
1686
+INSTALL_SCRIPT='${INSTALL}'
 
1687
+INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
 
1688
+LDFLAGS=''
 
1689
+LIBGNUTLS_CFLAGS='-I/usr/include'
 
1690
+LIBGNUTLS_CONFIG='/usr/bin/libgnutls-config'
 
1691
+LIBGNUTLS_LIBS='-lgnutls'
 
1692
+LIBOBJS=''
 
1693
+LIBPERL_A=''
 
1694
+LIBS=''
 
1695
+LIBTOOL='$(SHELL) $(top_builddir)/libtool'
 
1696
+LN_S='ln -s'
 
1697
+LTLIBOBJS=''
 
1698
+MAINT=''
 
1699
+MAINTAINER_MODE_FALSE='#'
 
1700
+MAINTAINER_MODE_TRUE=''
 
1701
+MAKEINFO='${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo'
 
1702
+NEED_TPARM_FALSE=''
 
1703
+NEED_TPARM_TRUE='#'
 
1704
+OBJEXT='o'
 
1705
+PACKAGE='irssi'
 
1706
+PACKAGE_BUGREPORT=''
 
1707
+PACKAGE_NAME=''
 
1708
+PACKAGE_STRING=''
 
1709
+PACKAGE_TARNAME=''
 
1710
+PACKAGE_VERSION=''
 
1711
+PATH_SEPARATOR=':'
 
1712
+PERL_CFLAGS=' -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE '
 
1713
+PERL_EXTRA_OPTS=''
 
1714
+PERL_FE_LINK_LIBS='../perl/libfe_perl_static.la'
 
1715
+PERL_LDFLAGS=''
 
1716
+PERL_LIBTOOL='$(SHELL) $(top_builddir)/libtool'
 
1717
+PERL_LINK_FLAGS='-Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt'
 
1718
+PERL_LINK_LIBS='../perl/libperl_core_static.la'
 
1719
+PERL_MM_PARAMS=''
 
1720
+PERL_STATIC_LIBS='0'
 
1721
+PERL_USE_LIB=''
 
1722
+PKG_CONFIG='/usr/bin/pkg-config'
 
1723
+PROG_LIBS=' -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  '
 
1724
+RANLIB='ranlib'
 
1725
+SET_MAKE=''
 
1726
+SHELL='/bin/sh'
 
1727
+SSL_CFLAGS=' '
 
1728
+SSL_LIBS='-lssl -lcrypto -ldl  '
 
1729
+STRIP='strip'
 
1730
+TEXTUI_LIBS='-lncurses'
 
1731
+USE_CURSES_FALSE=''
 
1732
+USE_CURSES_TRUE='#'
 
1733
+VERSION='0.8.10-rc5'
 
1734
+VERSION_DATE='20050717'
 
1735
+VERSION_TIME='1223'
 
1736
+ac_ct_AR='ar'
 
1737
+ac_ct_CC='gcc'
 
1738
+ac_ct_CXX='g++'
 
1739
+ac_ct_F77=''
 
1740
+ac_ct_RANLIB='ranlib'
 
1741
+ac_ct_STRIP='strip'
 
1742
+ac_pt_PKG_CONFIG=''
 
1743
+am__fastdepCC_FALSE='#'
 
1744
+am__fastdepCC_TRUE=''
 
1745
+am__fastdepCXX_FALSE='#'
 
1746
+am__fastdepCXX_TRUE=''
 
1747
+am__include='include'
 
1748
+am__leading_dot='.'
 
1749
+am__quote=''
 
1750
+am__tar='${AMTAR} chof - "$$tardir"'
 
1751
+am__untar='${AMTAR} xf -'
 
1752
+bindir='${exec_prefix}/bin'
 
1753
+build='i686-pc-linux-gnu'
 
1754
+build_alias=''
 
1755
+build_cpu='i686'
 
1756
+build_os='linux-gnu'
 
1757
+build_vendor='pc'
 
1758
+datadir='${prefix}/share'
 
1759
+exec_prefix='${prefix}'
 
1760
+host='i686-pc-linux-gnu'
 
1761
+host_alias=''
 
1762
+host_cpu='i686'
 
1763
+host_os='linux-gnu'
 
1764
+host_vendor='pc'
 
1765
+includedir='${prefix}/include'
 
1766
+infodir='${prefix}/info'
 
1767
+install_sh='/tmp/dpep-work.mDzhRz/irssi/install-sh'
 
1768
+irc_MODULES='dcc flood notifylist'
 
1769
+libdir='${exec_prefix}/lib'
 
1770
+libexecdir='${exec_prefix}/libexec'
 
1771
+localstatedir='${prefix}/var'
 
1772
+mandir='${prefix}/man'
 
1773
+mkdir_p='mkdir -p --'
 
1774
+oldincludedir='/usr/include'
 
1775
+perl_module_fe_lib=''
 
1776
+perl_module_lib=''
 
1777
+perl_static_fe_lib='libfe_perl_static.la'
 
1778
+perl_static_lib='libperl_core_static.la'
 
1779
+perlpath='/usr/bin/perl'
 
1780
+prefix='/usr/local'
 
1781
+program_transform_name='s,x,x,'
 
1782
+sbindir='${exec_prefix}/sbin'
 
1783
+sedpath='/bin/sed'
 
1784
+sharedstatedir='${prefix}/com'
 
1785
+sysconfdir='${prefix}/etc'
 
1786
+target_alias=''
 
1787
+
 
1788
+## ----------- ##
 
1789
+## confdefs.h. ##
 
1790
+## ----------- ##
 
1791
+
 
1792
+#define HAS_CURSES 1
 
1793
+#define HAVE_CURSES_IDCOK 1
 
1794
+#define HAVE_CURSES_RESIZETERM 1
 
1795
+#define HAVE_CURSES_WRESIZE 1
 
1796
+#define HAVE_DIRENT_H 1
 
1797
+#define HAVE_DLFCN_H 1
 
1798
+#define HAVE_FCNTL 1
 
1799
+#define HAVE_GLIB2 1
 
1800
+#define HAVE_GMODULE 1
 
1801
+#define HAVE_GNUTLS
 
1802
+#define HAVE_INTTYPES_H 1
 
1803
+#define HAVE_MEMORY_H 1
 
1804
+#define HAVE_MKFIFO 1
 
1805
+#define HAVE_NCURSES_USE_DEFAULT_COLORS 1
 
1806
+#define HAVE_NL_LANGINFO 1
 
1807
+#define HAVE_OPENSSL
 
1808
+#define HAVE_PL_PERL 1
 
1809
+#define HAVE_REGEX_H 1
 
1810
+#define HAVE_STATIC_PERL 1
 
1811
+#define HAVE_STDINT_H 1
 
1812
+#define HAVE_STDLIB_H 1
 
1813
+#define HAVE_STDLIB_H 1
 
1814
+#define HAVE_STRINGS_H 1
 
1815
+#define HAVE_STRING_H 1
 
1816
+#define HAVE_STRING_H 1
 
1817
+#define HAVE_SYS_IOCTL_H 1
 
1818
+#define HAVE_SYS_RESOURCE_H 1
 
1819
+#define HAVE_SYS_STAT_H 1
 
1820
+#define HAVE_SYS_TIME_H 1
 
1821
+#define HAVE_SYS_TYPES_H 1
 
1822
+#define HAVE_SYS_UTSNAME_H 1
 
1823
+#define HAVE_TERMINFO 1
 
1824
+#define HAVE_UNISTD_H 1
 
1825
+#define HAVE_UNISTD_H 1
 
1826
+#define PACKAGE "irssi"
 
1827
+#define PACKAGE_BUGREPORT ""
 
1828
+#define PACKAGE_NAME ""
 
1829
+#define PACKAGE_STRING ""
 
1830
+#define PACKAGE_TARNAME ""
 
1831
+#define PACKAGE_VERSION ""
 
1832
+#define PRIuUOFF_T "llu"
 
1833
+#define SIZEOF_INT 4
 
1834
+#define SIZEOF_LONG 4
 
1835
+#define SIZEOF_LONG_LONG 8
 
1836
+#define STDC_HEADERS 1
 
1837
+#define UOFF_T_LONG_LONG 1
 
1838
+#define USE_NCURSES 1
 
1839
+#define VERSION "0.8.10-rc5"
 
1840
+#define _FILE_OFFSET_BITS 64
 
1841
+#endif
 
1842
+#ifdef __cplusplus
 
1843
+extern "C" void std::exit (int) throw (); using std::exit;
 
1844
+
 
1845
+configure: exit 0
 
1846
diff -urNad --exclude=CVS --exclude=.svn ./config.status /tmp/dpep-work.mDzhRz/irssi/config.status
 
1847
--- ./config.status     1970-01-01 02:00:00.000000000 +0200
 
1848
+++ /tmp/dpep-work.mDzhRz/irssi/config.status   2005-07-17 16:48:38.000000000 +0300
 
1849
@@ -0,0 +1,1371 @@
 
1850
+#! /bin/sh
 
1851
+# Generated by configure.
 
1852
+# Run this file to recreate the current configuration.
 
1853
+# Compiler output produced by configure, useful for debugging
 
1854
+# configure, is in config.log if it exists.
 
1855
+
 
1856
+debug=false
 
1857
+ac_cs_recheck=false
 
1858
+ac_cs_silent=false
 
1859
+SHELL=${CONFIG_SHELL-/bin/sh}
 
1860
+## --------------------- ##
 
1861
+## M4sh Initialization.  ##
 
1862
+## --------------------- ##
 
1863
+
 
1864
+# Be Bourne compatible
 
1865
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
1866
+  emulate sh
 
1867
+  NULLCMD=:
 
1868
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
1869
+  # is contrary to our usage.  Disable this feature.
 
1870
+  alias -g '${1+"$@"}'='"$@"'
 
1871
+elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
 
1872
+  set -o posix
 
1873
+fi
 
1874
+DUALCASE=1; export DUALCASE # for MKS sh
 
1875
+
 
1876
+# Support unset when possible.
 
1877
+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
 
1878
+  as_unset=unset
 
1879
+else
 
1880
+  as_unset=false
 
1881
+fi
 
1882
+
 
1883
+
 
1884
+# Work around bugs in pre-3.0 UWIN ksh.
 
1885
+$as_unset ENV MAIL MAILPATH
 
1886
+PS1='$ '
 
1887
+PS2='> '
 
1888
+PS4='+ '
 
1889
+
 
1890
+# NLS nuisances.
 
1891
+for as_var in \
 
1892
+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
 
1893
+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
 
1894
+  LC_TELEPHONE LC_TIME
 
1895
+do
 
1896
+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
 
1897
+    eval $as_var=C; export $as_var
 
1898
+  else
 
1899
+    $as_unset $as_var
 
1900
+  fi
 
1901
+done
 
1902
+
 
1903
+# Required to use basename.
 
1904
+if expr a : '\(a\)' >/dev/null 2>&1; then
 
1905
+  as_expr=expr
 
1906
+else
 
1907
+  as_expr=false
 
1908
+fi
 
1909
+
 
1910
+if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
 
1911
+  as_basename=basename
 
1912
+else
 
1913
+  as_basename=false
 
1914
+fi
 
1915
+
 
1916
+
 
1917
+# Name of the executable.
 
1918
+as_me=`$as_basename "$0" ||
 
1919
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
1920
+        X"$0" : 'X\(//\)$' \| \
 
1921
+        X"$0" : 'X\(/\)$' \| \
 
1922
+        .     : '\(.\)' 2>/dev/null ||
 
1923
+echo X/"$0" |
 
1924
+    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
 
1925
+         /^X\/\(\/\/\)$/{ s//\1/; q; }
 
1926
+         /^X\/\(\/\).*/{ s//\1/; q; }
 
1927
+         s/.*/./; q'`
 
1928
+
 
1929
+
 
1930
+# PATH needs CR, and LINENO needs CR and PATH.
 
1931
+# Avoid depending upon Character Ranges.
 
1932
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
1933
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
1934
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
1935
+as_cr_digits='0123456789'
 
1936
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
1937
+
 
1938
+# The user is always right.
 
1939
+if test "${PATH_SEPARATOR+set}" != set; then
 
1940
+  echo "#! /bin/sh" >conf$$.sh
 
1941
+  echo  "exit 0"   >>conf$$.sh
 
1942
+  chmod +x conf$$.sh
 
1943
+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 
1944
+    PATH_SEPARATOR=';'
 
1945
+  else
 
1946
+    PATH_SEPARATOR=:
 
1947
+  fi
 
1948
+  rm -f conf$$.sh
 
1949
+fi
 
1950
+
 
1951
+
 
1952
+  as_lineno_1=$LINENO
 
1953
+  as_lineno_2=$LINENO
 
1954
+  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
 
1955
+  test "x$as_lineno_1" != "x$as_lineno_2" &&
 
1956
+  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
 
1957
+  # Find who we are.  Look in the path if we contain no path at all
 
1958
+  # relative or not.
 
1959
+  case $0 in
 
1960
+    *[\\/]* ) as_myself=$0 ;;
 
1961
+    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1962
+for as_dir in $PATH
 
1963
+do
 
1964
+  IFS=$as_save_IFS
 
1965
+  test -z "$as_dir" && as_dir=.
 
1966
+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
1967
+done
 
1968
+
 
1969
+       ;;
 
1970
+  esac
 
1971
+  # We did not find ourselves, most probably we were run as `sh COMMAND'
 
1972
+  # in which case we are not to be found in the path.
 
1973
+  if test "x$as_myself" = x; then
 
1974
+    as_myself=$0
 
1975
+  fi
 
1976
+  if test ! -f "$as_myself"; then
 
1977
+    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
 
1978
+echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
 
1979
+   { (exit 1); exit 1; }; }
 
1980
+  fi
 
1981
+  case $CONFIG_SHELL in
 
1982
+  '')
 
1983
+    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1984
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 
1985
+do
 
1986
+  IFS=$as_save_IFS
 
1987
+  test -z "$as_dir" && as_dir=.
 
1988
+  for as_base in sh bash ksh sh5; do
 
1989
+        case $as_dir in
 
1990
+        /*)
 
1991
+          if ("$as_dir/$as_base" -c '
 
1992
+  as_lineno_1=$LINENO
 
1993
+  as_lineno_2=$LINENO
 
1994
+  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
 
1995
+  test "x$as_lineno_1" != "x$as_lineno_2" &&
 
1996
+  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
 
1997
+            $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
 
1998
+            $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
 
1999
+            CONFIG_SHELL=$as_dir/$as_base
 
2000
+            export CONFIG_SHELL
 
2001
+            exec "$CONFIG_SHELL" "$0" ${1+"$@"}
 
2002
+          fi;;
 
2003
+        esac
 
2004
+       done
 
2005
+done
 
2006
+;;
 
2007
+  esac
 
2008
+
 
2009
+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
 
2010
+  # uniformly replaced by the line number.  The first 'sed' inserts a
 
2011
+  # line-number line before each line; the second 'sed' does the real
 
2012
+  # work.  The second script uses 'N' to pair each line-number line
 
2013
+  # with the numbered line, and appends trailing '-' during
 
2014
+  # substitution so that $LINENO is not a special case at line end.
 
2015
+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
 
2016
+  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
 
2017
+  sed '=' <$as_myself |
 
2018
+    sed '
 
2019
+      N
 
2020
+      s,$,-,
 
2021
+      : loop
 
2022
+      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
 
2023
+      t loop
 
2024
+      s,-$,,
 
2025
+      s,^['$as_cr_digits']*\n,,
 
2026
+    ' >$as_me.lineno &&
 
2027
+  chmod +x $as_me.lineno ||
 
2028
+    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
 
2029
+echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
 
2030
+   { (exit 1); exit 1; }; }
 
2031
+
 
2032
+  # Don't try to exec as it changes $[0], causing all sort of problems
 
2033
+  # (the dirname of $[0] is not the place where we might find the
 
2034
+  # original and so on.  Autoconf is especially sensible to this).
 
2035
+  . ./$as_me.lineno
 
2036
+  # Exit status is that of the last command.
 
2037
+  exit
 
2038
+}
 
2039
+
 
2040
+
 
2041
+case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
 
2042
+  *c*,-n*) ECHO_N= ECHO_C='
 
2043
+' ECHO_T='     ' ;;
 
2044
+  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
 
2045
+  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
 
2046
+esac
 
2047
+
 
2048
+if expr a : '\(a\)' >/dev/null 2>&1; then
 
2049
+  as_expr=expr
 
2050
+else
 
2051
+  as_expr=false
 
2052
+fi
 
2053
+
 
2054
+rm -f conf$$ conf$$.exe conf$$.file
 
2055
+echo >conf$$.file
 
2056
+if ln -s conf$$.file conf$$ 2>/dev/null; then
 
2057
+  # We could just check for DJGPP; but this test a) works b) is more generic
 
2058
+  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 
2059
+  if test -f conf$$.exe; then
 
2060
+    # Don't use ln at all; we don't have any links
 
2061
+    as_ln_s='cp -p'
 
2062
+  else
 
2063
+    as_ln_s='ln -s'
 
2064
+  fi
 
2065
+elif ln conf$$.file conf$$ 2>/dev/null; then
 
2066
+  as_ln_s=ln
 
2067
+else
 
2068
+  as_ln_s='cp -p'
 
2069
+fi
 
2070
+rm -f conf$$ conf$$.exe conf$$.file
 
2071
+
 
2072
+if mkdir -p . 2>/dev/null; then
 
2073
+  as_mkdir_p=:
 
2074
+else
 
2075
+  test -d ./-p && rmdir ./-p
 
2076
+  as_mkdir_p=false
 
2077
+fi
 
2078
+
 
2079
+as_executable_p="test -f"
 
2080
+
 
2081
+# Sed expression to map a string onto a valid CPP name.
 
2082
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
2083
+
 
2084
+# Sed expression to map a string onto a valid variable name.
 
2085
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
2086
+
 
2087
+
 
2088
+# IFS
 
2089
+# We need space, tab and new line, in precisely that order.
 
2090
+as_nl='
 
2091
+'
 
2092
+IFS="  $as_nl"
 
2093
+
 
2094
+# CDPATH.
 
2095
+$as_unset CDPATH
 
2096
+
 
2097
+exec 6>&1
 
2098
+
 
2099
+# Open the log real soon, to keep \$[0] and so on meaningful, and to
 
2100
+# report actual input values of CONFIG_FILES etc. instead of their
 
2101
+# values after options handling.  Logging --version etc. is OK.
 
2102
+exec 5>>config.log
 
2103
+{
 
2104
+  echo
 
2105
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 
2106
+## Running $as_me. ##
 
2107
+_ASBOX
 
2108
+} >&5
 
2109
+cat >&5 <<_CSEOF
 
2110
+
 
2111
+This file was extended by $as_me, which was
 
2112
+generated by GNU Autoconf 2.59.  Invocation command line was
 
2113
+
 
2114
+  CONFIG_FILES    = $CONFIG_FILES
 
2115
+  CONFIG_HEADERS  = $CONFIG_HEADERS
 
2116
+  CONFIG_LINKS    = $CONFIG_LINKS
 
2117
+  CONFIG_COMMANDS = $CONFIG_COMMANDS
 
2118
+  $ $0 $@
 
2119
+
 
2120
+_CSEOF
 
2121
+echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
 
2122
+echo >&5
 
2123
+config_files=" Makefile src/Makefile src/core/Makefile src/irc/Makefile src/irc/core/Makefile src/irc/dcc/Makefile src/irc/notifylist/Makefile src/irc/proxy/Makefile src/irc/flood/Makefile src/fe-common/Makefile src/fe-common/core/Makefile src/fe-common/irc/Makefile src/fe-common/irc/dcc/Makefile src/fe-common/irc/notifylist/Makefile src/fe-none/Makefile src/fe-text/Makefile src/lib-config/Makefile src/lib-popt/Makefile src/perl/Makefile src/perl/common/Makefile.PL src/perl/irc/Makefile.PL src/perl/ui/Makefile.PL src/perl/textui/Makefile.PL scripts/Makefile scripts/examples/Makefile docs/Makefile docs/help/Makefile docs/help/in/Makefile irssi-version.h stamp.h irssi.spec irssi-config"
 
2124
+config_headers=" config.h"
 
2125
+config_commands=" depfiles"
 
2126
+
 
2127
+ac_cs_usage="\
 
2128
+\`$as_me' instantiates files from templates according to the
 
2129
+current configuration.
 
2130
+
 
2131
+Usage: $0 [OPTIONS] [FILE]...
 
2132
+
 
2133
+  -h, --help       print this help, then exit
 
2134
+  -V, --version    print version number, then exit
 
2135
+  -q, --quiet      do not print progress messages
 
2136
+  -d, --debug      don't remove temporary files
 
2137
+      --recheck    update $as_me by reconfiguring in the same conditions
 
2138
+  --file=FILE[:TEMPLATE]
 
2139
+                  instantiate the configuration file FILE
 
2140
+  --header=FILE[:TEMPLATE]
 
2141
+                  instantiate the configuration header FILE
 
2142
+
 
2143
+Configuration files:
 
2144
+$config_files
 
2145
+
 
2146
+Configuration headers:
 
2147
+$config_headers
 
2148
+
 
2149
+Configuration commands:
 
2150
+$config_commands
 
2151
+
 
2152
+Report bugs to <bug-autoconf@gnu.org>."
 
2153
+ac_cs_version="\
 
2154
+config.status
 
2155
+configured by ./configure, generated by GNU Autoconf 2.59,
 
2156
+  with options \"'--enable-maintainer-mode' '--enable-compile-warnings'\"
 
2157
+
 
2158
+Copyright (C) 2003 Free Software Foundation, Inc.
 
2159
+This config.status script is free software; the Free Software Foundation
 
2160
+gives unlimited permission to copy, distribute and modify it."
 
2161
+srcdir=.
 
2162
+INSTALL="/usr/bin/install -c"
 
2163
+# If no file are specified by the user, then we need to provide default
 
2164
+# value.  By we need to know if files were specified by the user.
 
2165
+ac_need_defaults=:
 
2166
+while test $# != 0
 
2167
+do
 
2168
+  case $1 in
 
2169
+  --*=*)
 
2170
+    ac_option=`expr "x$1" : 'x\([^=]*\)='`
 
2171
+    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
 
2172
+    ac_shift=:
 
2173
+    ;;
 
2174
+  -*)
 
2175
+    ac_option=$1
 
2176
+    ac_optarg=$2
 
2177
+    ac_shift=shift
 
2178
+    ;;
 
2179
+  *) # This is not an option, so the user has probably given explicit
 
2180
+     # arguments.
 
2181
+     ac_option=$1
 
2182
+     ac_need_defaults=false;;
 
2183
+  esac
 
2184
+
 
2185
+  case $ac_option in
 
2186
+  # Handling of the options.
 
2187
+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 
2188
+    ac_cs_recheck=: ;;
 
2189
+  --version | --vers* | -V )
 
2190
+    echo "$ac_cs_version"; exit 0 ;;
 
2191
+  --he | --h)
 
2192
+    # Conflict between --help and --header
 
2193
+    { { echo "$as_me:$LINENO: error: ambiguous option: $1
 
2194
+Try \`$0 --help' for more information." >&5
 
2195
+echo "$as_me: error: ambiguous option: $1
 
2196
+Try \`$0 --help' for more information." >&2;}
 
2197
+   { (exit 1); exit 1; }; };;
 
2198
+  --help | --hel | -h )
 
2199
+    echo "$ac_cs_usage"; exit 0 ;;
 
2200
+  --debug | --d* | -d )
 
2201
+    debug=: ;;
 
2202
+  --file | --fil | --fi | --f )
 
2203
+    $ac_shift
 
2204
+    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
 
2205
+    ac_need_defaults=false;;
 
2206
+  --header | --heade | --head | --hea )
 
2207
+    $ac_shift
 
2208
+    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
 
2209
+    ac_need_defaults=false;;
 
2210
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
2211
+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
 
2212
+    ac_cs_silent=: ;;
 
2213
+
 
2214
+  # This is an error.
 
2215
+  -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
 
2216
+Try \`$0 --help' for more information." >&5
 
2217
+echo "$as_me: error: unrecognized option: $1
 
2218
+Try \`$0 --help' for more information." >&2;}
 
2219
+   { (exit 1); exit 1; }; } ;;
 
2220
+
 
2221
+  *) ac_config_targets="$ac_config_targets $1" ;;
 
2222
+
 
2223
+  esac
 
2224
+  shift
 
2225
+done
 
2226
+
 
2227
+ac_configure_extra_args=
 
2228
+
 
2229
+if $ac_cs_silent; then
 
2230
+  exec 6>/dev/null
 
2231
+  ac_configure_extra_args="$ac_configure_extra_args --silent"
 
2232
+fi
 
2233
+
 
2234
+if $ac_cs_recheck; then
 
2235
+  echo "running /bin/sh ./configure " '--enable-maintainer-mode' '--enable-compile-warnings' $ac_configure_extra_args " --no-create --no-recursion" >&6
 
2236
+  exec /bin/sh ./configure '--enable-maintainer-mode' '--enable-compile-warnings' $ac_configure_extra_args --no-create --no-recursion
 
2237
+fi
 
2238
+
 
2239
+#
 
2240
+# INIT-COMMANDS section.
 
2241
+#
 
2242
+
 
2243
+AMDEP_TRUE="" ac_aux_dir="."
 
2244
+
 
2245
+for ac_config_target in $ac_config_targets
 
2246
+do
 
2247
+  case "$ac_config_target" in
 
2248
+  # Handling of arguments.
 
2249
+  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
2250
+  "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
 
2251
+  "src/core/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/core/Makefile" ;;
 
2252
+  "src/irc/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/irc/Makefile" ;;
 
2253
+  "src/irc/core/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/irc/core/Makefile" ;;
 
2254
+  "src/irc/dcc/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/irc/dcc/Makefile" ;;
 
2255
+  "src/irc/notifylist/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/irc/notifylist/Makefile" ;;
 
2256
+  "src/irc/proxy/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/irc/proxy/Makefile" ;;
 
2257
+  "src/irc/flood/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/irc/flood/Makefile" ;;
 
2258
+  "src/fe-common/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fe-common/Makefile" ;;
 
2259
+  "src/fe-common/core/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fe-common/core/Makefile" ;;
 
2260
+  "src/fe-common/irc/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fe-common/irc/Makefile" ;;
 
2261
+  "src/fe-common/irc/dcc/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fe-common/irc/dcc/Makefile" ;;
 
2262
+  "src/fe-common/irc/notifylist/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fe-common/irc/notifylist/Makefile" ;;
 
2263
+  "src/fe-none/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fe-none/Makefile" ;;
 
2264
+  "src/fe-text/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fe-text/Makefile" ;;
 
2265
+  "src/lib-config/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib-config/Makefile" ;;
 
2266
+  "src/lib-popt/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib-popt/Makefile" ;;
 
2267
+  "src/perl/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/perl/Makefile" ;;
 
2268
+  "src/perl/common/Makefile.PL" ) CONFIG_FILES="$CONFIG_FILES src/perl/common/Makefile.PL" ;;
 
2269
+  "src/perl/irc/Makefile.PL" ) CONFIG_FILES="$CONFIG_FILES src/perl/irc/Makefile.PL" ;;
 
2270
+  "src/perl/ui/Makefile.PL" ) CONFIG_FILES="$CONFIG_FILES src/perl/ui/Makefile.PL" ;;
 
2271
+  "src/perl/textui/Makefile.PL" ) CONFIG_FILES="$CONFIG_FILES src/perl/textui/Makefile.PL" ;;
 
2272
+  "scripts/Makefile" ) CONFIG_FILES="$CONFIG_FILES scripts/Makefile" ;;
 
2273
+  "scripts/examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES scripts/examples/Makefile" ;;
 
2274
+  "docs/Makefile" ) CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;;
 
2275
+  "docs/help/Makefile" ) CONFIG_FILES="$CONFIG_FILES docs/help/Makefile" ;;
 
2276
+  "docs/help/in/Makefile" ) CONFIG_FILES="$CONFIG_FILES docs/help/in/Makefile" ;;
 
2277
+  "irssi-version.h" ) CONFIG_FILES="$CONFIG_FILES irssi-version.h" ;;
 
2278
+  "stamp.h" ) CONFIG_FILES="$CONFIG_FILES stamp.h" ;;
 
2279
+  "irssi.spec" ) CONFIG_FILES="$CONFIG_FILES irssi.spec" ;;
 
2280
+  "irssi-config" ) CONFIG_FILES="$CONFIG_FILES irssi-config" ;;
 
2281
+  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 
2282
+  "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
 
2283
+  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
 
2284
+echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
 
2285
+   { (exit 1); exit 1; }; };;
 
2286
+  esac
 
2287
+done
 
2288
+
 
2289
+# If the user did not use the arguments to specify the items to instantiate,
 
2290
+# then the envvar interface is used.  Set only those that are not.
 
2291
+# We use the long form for the default assignment because of an extremely
 
2292
+# bizarre bug on SunOS 4.1.3.
 
2293
+if $ac_need_defaults; then
 
2294
+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
 
2295
+  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
 
2296
+  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
 
2297
+fi
 
2298
+
 
2299
+# Have a temporary directory for convenience.  Make it in the build tree
 
2300
+# simply because there is no reason to put it here, and in addition,
 
2301
+# creating and moving files from /tmp can sometimes cause problems.
 
2302
+# Create a temporary directory, and hook for its removal unless debugging.
 
2303
+$debug ||
 
2304
+{
 
2305
+  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
 
2306
+  trap '{ (exit 1); exit 1; }' 1 2 13 15
 
2307
+}
 
2308
+
 
2309
+# Create a (secure) tmp directory for tmp files.
 
2310
+
 
2311
+{
 
2312
+  tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
 
2313
+  test -n "$tmp" && test -d "$tmp"
 
2314
+}  ||
 
2315
+{
 
2316
+  tmp=./confstat$$-$RANDOM
 
2317
+  (umask 077 && mkdir $tmp)
 
2318
+} ||
 
2319
+{
 
2320
+   echo "$me: cannot create a temporary directory in ." >&2
 
2321
+   { (exit 1); exit 1; }
 
2322
+}
 
2323
+
 
2324
+
 
2325
+#
 
2326
+# CONFIG_FILES section.
 
2327
+#
 
2328
+
 
2329
+# No need to generate the scripts if there are no CONFIG_FILES.
 
2330
+# This happens for instance when ./config.status config.h
 
2331
+if test -n "$CONFIG_FILES"; then
 
2332
+  # Protect against being on the right side of a sed subst in config.status.
 
2333
+  sed 's/,@/@@/; s/@,/@@/; s/,;t t$/@;t t/; /@;t t$/s/[\\&,]/\\&/g;
 
2334
+   s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF
 
2335
+s,@SHELL@,/bin/sh,;t t
 
2336
+s,@PATH_SEPARATOR@,:,;t t
 
2337
+s,@PACKAGE_NAME@,,;t t
 
2338
+s,@PACKAGE_TARNAME@,,;t t
 
2339
+s,@PACKAGE_VERSION@,,;t t
 
2340
+s,@PACKAGE_STRING@,,;t t
 
2341
+s,@PACKAGE_BUGREPORT@,,;t t
 
2342
+s,@exec_prefix@,${prefix},;t t
 
2343
+s,@prefix@,/usr/local,;t t
 
2344
+s,@program_transform_name@,s,x,x,,;t t
 
2345
+s,@bindir@,${exec_prefix}/bin,;t t
 
2346
+s,@sbindir@,${exec_prefix}/sbin,;t t
 
2347
+s,@libexecdir@,${exec_prefix}/libexec,;t t
 
2348
+s,@datadir@,${prefix}/share,;t t
 
2349
+s,@sysconfdir@,${prefix}/etc,;t t
 
2350
+s,@sharedstatedir@,${prefix}/com,;t t
 
2351
+s,@localstatedir@,${prefix}/var,;t t
 
2352
+s,@libdir@,${exec_prefix}/lib,;t t
 
2353
+s,@includedir@,${prefix}/include,;t t
 
2354
+s,@oldincludedir@,/usr/include,;t t
 
2355
+s,@infodir@,${prefix}/info,;t t
 
2356
+s,@mandir@,${prefix}/man,;t t
 
2357
+s,@build_alias@,,;t t
 
2358
+s,@host_alias@,,;t t
 
2359
+s,@target_alias@,,;t t
 
2360
+s,@DEFS@,-DHAVE_CONFIG_H,;t t
 
2361
+s,@ECHO_C@,,;t t
 
2362
+s,@ECHO_N@,-n,;t t
 
2363
+s,@ECHO_T@,,;t t
 
2364
+s,@LIBS@,,;t t
 
2365
+s,@INSTALL_PROGRAM@,${INSTALL},;t t
 
2366
+s,@INSTALL_SCRIPT@,${INSTALL},;t t
 
2367
+s,@INSTALL_DATA@,${INSTALL} -m 644,;t t
 
2368
+s,@CYGPATH_W@,echo,;t t
 
2369
+s,@PACKAGE@,irssi,;t t
 
2370
+s,@VERSION@,0.8.10-rc5,;t t
 
2371
+s,@ACLOCAL@,${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9,;t t
 
2372
+s,@AUTOCONF@,${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf,;t t
 
2373
+s,@AUTOMAKE@,${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9,;t t
 
2374
+s,@AUTOHEADER@,${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader,;t t
 
2375
+s,@MAKEINFO@,${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo,;t t
 
2376
+s,@install_sh@,/tmp/dpep-work.mDzhRz/irssi/install-sh,;t t
 
2377
+s,@STRIP@,strip,;t t
 
2378
+s,@ac_ct_STRIP@,strip,;t t
 
2379
+s,@INSTALL_STRIP_PROGRAM@,${SHELL} $(install_sh) -c -s,;t t
 
2380
+s,@mkdir_p@,mkdir -p --,;t t
 
2381
+s,@AWK@,gawk,;t t
 
2382
+s,@SET_MAKE@,,;t t
 
2383
+s,@am__leading_dot@,.,;t t
 
2384
+s,@AMTAR@,${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar,;t t
 
2385
+s,@am__tar@,${AMTAR} chof - "$$tardir",;t t
 
2386
+s,@am__untar@,${AMTAR} xf -,;t t
 
2387
+s,@MAINTAINER_MODE_TRUE@,,;t t
 
2388
+s,@MAINTAINER_MODE_FALSE@,#,;t t
 
2389
+s,@MAINT@,,;t t
 
2390
+s,@CC@,gcc,;t t
 
2391
+s,@CFLAGS@,-g -O2 -Wall  ,;t t
 
2392
+s,@LDFLAGS@,,;t t
 
2393
+s,@CPPFLAGS@,,;t t
 
2394
+s,@ac_ct_CC@,gcc,;t t
 
2395
+s,@EXEEXT@,,;t t
 
2396
+s,@OBJEXT@,o,;t t
 
2397
+s,@DEPDIR@,.deps,;t t
 
2398
+s,@am__include@,include,;t t
 
2399
+s,@am__quote@,,;t t
 
2400
+s,@AMDEP_TRUE@,,;t t
 
2401
+s,@AMDEP_FALSE@,#,;t t
 
2402
+s,@AMDEPBACKSLASH@,\,;t t
 
2403
+s,@CCDEPMODE@,depmode=gcc3,;t t
 
2404
+s,@am__fastdepCC_TRUE@,,;t t
 
2405
+s,@am__fastdepCC_FALSE@,#,;t t
 
2406
+s,@CPP@,gcc -E,;t t
 
2407
+s,@EGREP@,grep -E,;t t
 
2408
+s,@build@,i686-pc-linux-gnu,;t t
 
2409
+s,@build_cpu@,i686,;t t
 
2410
+s,@build_vendor@,pc,;t t
 
2411
+s,@build_os@,linux-gnu,;t t
 
2412
+s,@host@,i686-pc-linux-gnu,;t t
 
2413
+s,@host_cpu@,i686,;t t
 
2414
+s,@host_vendor@,pc,;t t
 
2415
+s,@host_os@,linux-gnu,;t t
 
2416
+s,@LN_S@,ln -s,;t t
 
2417
+s,@ECHO@,echo,;t t
 
2418
+s,@AR@,ar,;t t
 
2419
+s,@ac_ct_AR@,ar,;t t
 
2420
+s,@RANLIB@,ranlib,;t t
 
2421
+s,@ac_ct_RANLIB@,ranlib,;t t
 
2422
+s,@CXX@,g++,;t t
 
2423
+s,@CXXFLAGS@,-g -O2,;t t
 
2424
+s,@ac_ct_CXX@,g++,;t t
 
2425
+s,@CXXDEPMODE@,depmode=gcc3,;t t
 
2426
+s,@am__fastdepCXX_TRUE@,,;t t
 
2427
+s,@am__fastdepCXX_FALSE@,#,;t t
 
2428
+s,@CXXCPP@,g++ -E,;t t
 
2429
+s,@F77@,,;t t
 
2430
+s,@FFLAGS@,,;t t
 
2431
+s,@ac_ct_F77@,,;t t
 
2432
+s,@LIBTOOL@,$(SHELL) $(top_builddir)/libtool,;t t
 
2433
+s,@sedpath@,/bin/sed,;t t
 
2434
+s,@perlpath@,/usr/bin/perl,;t t
 
2435
+s,@LIBGNUTLS_CONFIG@,/usr/bin/libgnutls-config,;t t
 
2436
+s,@LIBGNUTLS_CFLAGS@,-I/usr/include,;t t
 
2437
+s,@LIBGNUTLS_LIBS@,-lgnutls,;t t
 
2438
+s,@HAVE_GNUTLS_TRUE@,,;t t
 
2439
+s,@HAVE_GNUTLS_FALSE@,#,;t t
 
2440
+s,@GLIB_CFLAGS@,-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  ,;t t
 
2441
+s,@GLIB_LIBS@,-Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  ,;t t
 
2442
+s,@GLIB_CONFIG@,,;t t
 
2443
+s,@PKG_CONFIG@,/usr/bin/pkg-config,;t t
 
2444
+s,@GLIB_GENMARSHAL@,glib-genmarshal,;t t
 
2445
+s,@GOBJECT_QUERY@,gobject-query,;t t
 
2446
+s,@GLIB_MKENUMS@,glib-mkenums,;t t
 
2447
+s,@ac_pt_PKG_CONFIG@,,;t t
 
2448
+s,@SSL_CFLAGS@, ,;t t
 
2449
+s,@SSL_LIBS@,-lssl -lcrypto -ldl  ,;t t
 
2450
+s,@CURSES_LIBS@,-lncurses,;t t
 
2451
+s,@CURSES_INCLUDEDIR@,,;t t
 
2452
+s,@TEXTUI_LIBS@,-lncurses,;t t
 
2453
+s,@PERL_EXTRA_OPTS@,,;t t
 
2454
+s,@LIBPERL_A@,,;t t
 
2455
+s,@DYNALOADER_A@,,;t t
 
2456
+s,@perl_module_lib@,,;t t
 
2457
+s,@perl_static_lib@,libperl_core_static.la,;t t
 
2458
+s,@perl_module_fe_lib@,,;t t
 
2459
+s,@perl_static_fe_lib@,libfe_perl_static.la,;t t
 
2460
+s,@PERL_LIBTOOL@,$(SHELL) $(top_builddir)/libtool,;t t
 
2461
+s,@PERL_LINK_FLAGS@,-Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt,;t t
 
2462
+s,@PERL_LINK_LIBS@,../perl/libperl_core_static.la,;t t
 
2463
+s,@PERL_FE_LINK_LIBS@,../perl/libfe_perl_static.la,;t t
 
2464
+s,@PERL_LDFLAGS@,,;t t
 
2465
+s,@PERL_CFLAGS@, -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE ,;t t
 
2466
+s,@PERL_USE_LIB@,,;t t
 
2467
+s,@PERL_MM_PARAMS@,,;t t
 
2468
+s,@PERL_STATIC_LIBS@,0,;t t
 
2469
+s,@BUILD_TEXTUI_TRUE@,,;t t
 
2470
+s,@BUILD_TEXTUI_FALSE@,#,;t t
 
2471
+s,@BUILD_IRSSIBOT_TRUE@,#,;t t
 
2472
+s,@BUILD_IRSSIBOT_FALSE@,,;t t
 
2473
+s,@BUILD_IRSSIPROXY_TRUE@,#,;t t
 
2474
+s,@BUILD_IRSSIPROXY_FALSE@,,;t t
 
2475
+s,@BUILD_PLUGINS_TRUE@,#,;t t
 
2476
+s,@BUILD_PLUGINS_FALSE@,,;t t
 
2477
+s,@HAVE_PERL_TRUE@,,;t t
 
2478
+s,@HAVE_PERL_FALSE@,#,;t t
 
2479
+s,@HAVE_STATIC_PERL_TRUE@,,;t t
 
2480
+s,@HAVE_STATIC_PERL_FALSE@,#,;t t
 
2481
+s,@NEED_TPARM_TRUE@,#,;t t
 
2482
+s,@NEED_TPARM_FALSE@,,;t t
 
2483
+s,@USE_CURSES_TRUE@,#,;t t
 
2484
+s,@USE_CURSES_FALSE@,,;t t
 
2485
+s,@PROG_LIBS@, -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  ,;t t
 
2486
+s,@CHAT_MODULES@,irc,;t t
 
2487
+s,@irc_MODULES@,dcc flood notifylist,;t t
 
2488
+s,@COMMON_NOUI_LIBS@, ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a,;t t
 
2489
+s,@COMMON_LIBS@,../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a,;t t
 
2490
+s,@VERSION_DATE@,20050717,;t t
 
2491
+s,@VERSION_TIME@,1223,;t t
 
2492
+s,@LIBOBJS@,,;t t
 
2493
+s,@LTLIBOBJS@,,;t t
 
2494
+CEOF
 
2495
+
 
2496
+  # Split the substitutions into bite-sized pieces for seds with
 
2497
+  # small command number limits, like on Digital OSF/1 and HP-UX.
 
2498
+  ac_max_sed_lines=48
 
2499
+  ac_sed_frag=1 # Number of current file.
 
2500
+  ac_beg=1 # First line for current file.
 
2501
+  ac_end=$ac_max_sed_lines # Line after last line for current file.
 
2502
+  ac_more_lines=:
 
2503
+  ac_sed_cmds=
 
2504
+  while $ac_more_lines; do
 
2505
+    if test $ac_beg -gt 1; then
 
2506
+      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
 
2507
+    else
 
2508
+      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
 
2509
+    fi
 
2510
+    if test ! -s $tmp/subs.frag; then
 
2511
+      ac_more_lines=false
 
2512
+    else
 
2513
+      # The purpose of the label and of the branching condition is to
 
2514
+      # speed up the sed processing (if there are no `@' at all, there
 
2515
+      # is no need to browse any of the substitutions).
 
2516
+      # These are the two extra sed commands mentioned above.
 
2517
+      (echo ':t
 
2518
+  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
 
2519
+      if test -z "$ac_sed_cmds"; then
 
2520
+       ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
 
2521
+      else
 
2522
+       ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
 
2523
+      fi
 
2524
+      ac_sed_frag=`expr $ac_sed_frag + 1`
 
2525
+      ac_beg=$ac_end
 
2526
+      ac_end=`expr $ac_end + $ac_max_sed_lines`
 
2527
+    fi
 
2528
+  done
 
2529
+  if test -z "$ac_sed_cmds"; then
 
2530
+    ac_sed_cmds=cat
 
2531
+  fi
 
2532
+fi # test -n "$CONFIG_FILES"
 
2533
+
 
2534
+for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
 
2535
+  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
 
2536
+  case $ac_file in
 
2537
+  - | *:- | *:-:* ) # input from stdin
 
2538
+       cat >$tmp/stdin
 
2539
+       ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
2540
+       ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 
2541
+  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
2542
+       ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 
2543
+  * )   ac_file_in=$ac_file.in ;;
 
2544
+  esac
 
2545
+
 
2546
+  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
 
2547
+  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
 
2548
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
2549
+        X"$ac_file" : 'X\(//\)[^/]' \| \
 
2550
+        X"$ac_file" : 'X\(//\)$' \| \
 
2551
+        X"$ac_file" : 'X\(/\)' \| \
 
2552
+        .     : '\(.\)' 2>/dev/null ||
 
2553
+echo X"$ac_file" |
 
2554
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
2555
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
2556
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
2557
+         /^X\(\/\).*/{ s//\1/; q; }
 
2558
+         s/.*/./; q'`
 
2559
+  { if $as_mkdir_p; then
 
2560
+    mkdir -p "$ac_dir"
 
2561
+  else
 
2562
+    as_dir="$ac_dir"
 
2563
+    as_dirs=
 
2564
+    while test ! -d "$as_dir"; do
 
2565
+      as_dirs="$as_dir $as_dirs"
 
2566
+      as_dir=`(dirname "$as_dir") 2>/dev/null ||
 
2567
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
2568
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
2569
+        X"$as_dir" : 'X\(//\)$' \| \
 
2570
+        X"$as_dir" : 'X\(/\)' \| \
 
2571
+        .     : '\(.\)' 2>/dev/null ||
 
2572
+echo X"$as_dir" |
 
2573
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
2574
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
2575
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
2576
+         /^X\(\/\).*/{ s//\1/; q; }
 
2577
+         s/.*/./; q'`
 
2578
+    done
 
2579
+    test ! -n "$as_dirs" || mkdir $as_dirs
 
2580
+  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
 
2581
+echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
 
2582
+   { (exit 1); exit 1; }; }; }
 
2583
+
 
2584
+  ac_builddir=.
 
2585
+
 
2586
+if test "$ac_dir" != .; then
 
2587
+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
 
2588
+  # A "../" for each directory in $ac_dir_suffix.
 
2589
+  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
 
2590
+else
 
2591
+  ac_dir_suffix= ac_top_builddir=
 
2592
+fi
 
2593
+
 
2594
+case $srcdir in
 
2595
+  .)  # No --srcdir option.  We are building in place.
 
2596
+    ac_srcdir=.
 
2597
+    if test -z "$ac_top_builddir"; then
 
2598
+       ac_top_srcdir=.
 
2599
+    else
 
2600
+       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
 
2601
+    fi ;;
 
2602
+  [\\/]* | ?:[\\/]* )  # Absolute path.
 
2603
+    ac_srcdir=$srcdir$ac_dir_suffix;
 
2604
+    ac_top_srcdir=$srcdir ;;
 
2605
+  *) # Relative path.
 
2606
+    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 
2607
+    ac_top_srcdir=$ac_top_builddir$srcdir ;;
 
2608
+esac
 
2609
+
 
2610
+# Do not use `cd foo && pwd` to compute absolute paths, because
 
2611
+# the directories may not exist.
 
2612
+case `pwd` in
 
2613
+.) ac_abs_builddir="$ac_dir";;
 
2614
+*)
 
2615
+  case "$ac_dir" in
 
2616
+  .) ac_abs_builddir=`pwd`;;
 
2617
+  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
 
2618
+  *) ac_abs_builddir=`pwd`/"$ac_dir";;
 
2619
+  esac;;
 
2620
+esac
 
2621
+case $ac_abs_builddir in
 
2622
+.) ac_abs_top_builddir=${ac_top_builddir}.;;
 
2623
+*)
 
2624
+  case ${ac_top_builddir}. in
 
2625
+  .) ac_abs_top_builddir=$ac_abs_builddir;;
 
2626
+  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
 
2627
+  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
 
2628
+  esac;;
 
2629
+esac
 
2630
+case $ac_abs_builddir in
 
2631
+.) ac_abs_srcdir=$ac_srcdir;;
 
2632
+*)
 
2633
+  case $ac_srcdir in
 
2634
+  .) ac_abs_srcdir=$ac_abs_builddir;;
 
2635
+  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
 
2636
+  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
 
2637
+  esac;;
 
2638
+esac
 
2639
+case $ac_abs_builddir in
 
2640
+.) ac_abs_top_srcdir=$ac_top_srcdir;;
 
2641
+*)
 
2642
+  case $ac_top_srcdir in
 
2643
+  .) ac_abs_top_srcdir=$ac_abs_builddir;;
 
2644
+  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 
2645
+  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 
2646
+  esac;;
 
2647
+esac
 
2648
+
 
2649
+
 
2650
+  case $INSTALL in
 
2651
+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
 
2652
+  *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
 
2653
+  esac
 
2654
+
 
2655
+  # Let's still pretend it is `configure' which instantiates (i.e., don't
 
2656
+  # use $as_me), people would be surprised to read:
 
2657
+  #    /* config.h.  Generated by config.status.  */
 
2658
+  if test x"$ac_file" = x-; then
 
2659
+    configure_input=
 
2660
+  else
 
2661
+    configure_input="$ac_file.  "
 
2662
+  fi
 
2663
+  configure_input=$configure_input"Generated from `echo $ac_file_in |
 
2664
+                                    sed 's,.*/,,'` by configure."
 
2665
+
 
2666
+  # First look for the input files in the build tree, otherwise in the
 
2667
+  # src tree.
 
2668
+  ac_file_inputs=`IFS=:
 
2669
+    for f in $ac_file_in; do
 
2670
+      case $f in
 
2671
+      -) echo $tmp/stdin ;;
 
2672
+      [\\/$]*)
 
2673
+        # Absolute (can't be DOS-style, as IFS=:)
 
2674
+        test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
 
2675
+echo "$as_me: error: cannot find input file: $f" >&2;}
 
2676
+   { (exit 1); exit 1; }; }
 
2677
+        echo "$f";;
 
2678
+      *) # Relative
 
2679
+        if test -f "$f"; then
 
2680
+          # Build tree
 
2681
+          echo "$f"
 
2682
+        elif test -f "$srcdir/$f"; then
 
2683
+          # Source tree
 
2684
+          echo "$srcdir/$f"
 
2685
+        else
 
2686
+          # /dev/null tree
 
2687
+          { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
 
2688
+echo "$as_me: error: cannot find input file: $f" >&2;}
 
2689
+   { (exit 1); exit 1; }; }
 
2690
+        fi;;
 
2691
+      esac
 
2692
+    done` || { (exit 1); exit 1; }
 
2693
+
 
2694
+  if test x"$ac_file" != x-; then
 
2695
+    { echo "$as_me:$LINENO: creating $ac_file" >&5
 
2696
+echo "$as_me: creating $ac_file" >&6;}
 
2697
+    rm -f "$ac_file"
 
2698
+  fi
 
2699
+  sed "/^[      ]*VPATH[        ]*=/{
 
2700
+s/:*\$(srcdir):*/:/;
 
2701
+s/:*\${srcdir}:*/:/;
 
2702
+s/:*@srcdir@:*/:/;
 
2703
+s/^\([^=]*=[    ]*\):*/\1/;
 
2704
+s/:*$//;
 
2705
+s/^[^=]*=[      ]*$//;
 
2706
+}
 
2707
+
 
2708
+:t
 
2709
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
2710
+s,@configure_input@,$configure_input,;t t
 
2711
+s,@srcdir@,$ac_srcdir,;t t
 
2712
+s,@abs_srcdir@,$ac_abs_srcdir,;t t
 
2713
+s,@top_srcdir@,$ac_top_srcdir,;t t
 
2714
+s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
 
2715
+s,@builddir@,$ac_builddir,;t t
 
2716
+s,@abs_builddir@,$ac_abs_builddir,;t t
 
2717
+s,@top_builddir@,$ac_top_builddir,;t t
 
2718
+s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
 
2719
+s,@INSTALL@,$ac_INSTALL,;t t
 
2720
+" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
 
2721
+  rm -f $tmp/stdin
 
2722
+  if test x"$ac_file" != x-; then
 
2723
+    mv $tmp/out $ac_file
 
2724
+  else
 
2725
+    cat $tmp/out
 
2726
+    rm -f $tmp/out
 
2727
+  fi
 
2728
+
 
2729
+done
 
2730
+
 
2731
+#
 
2732
+# CONFIG_HEADER section.
 
2733
+#
 
2734
+
 
2735
+# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
 
2736
+# NAME is the cpp macro being defined and VALUE is the value it is being given.
 
2737
+#
 
2738
+# ac_d sets the value in "#define NAME VALUE" lines.
 
2739
+ac_dA='s,^\([   ]*\)#\([        ]*define[       ][      ]*\)'
 
2740
+ac_dB='[        ].*$,\1#\2'
 
2741
+ac_dC=' '
 
2742
+ac_dD=',;t'
 
2743
+# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
 
2744
+ac_uA='s,^\([   ]*\)#\([        ]*\)undef\([    ][      ]*\)'
 
2745
+ac_uB='$,\1#\2define\3'
 
2746
+ac_uC=' '
 
2747
+ac_uD=',;t'
 
2748
+
 
2749
+for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
 
2750
+  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
 
2751
+  case $ac_file in
 
2752
+  - | *:- | *:-:* ) # input from stdin
 
2753
+       cat >$tmp/stdin
 
2754
+       ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
2755
+       ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 
2756
+  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
2757
+       ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 
2758
+  * )   ac_file_in=$ac_file.in ;;
 
2759
+  esac
 
2760
+
 
2761
+  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
 
2762
+echo "$as_me: creating $ac_file" >&6;}
 
2763
+
 
2764
+  # First look for the input files in the build tree, otherwise in the
 
2765
+  # src tree.
 
2766
+  ac_file_inputs=`IFS=:
 
2767
+    for f in $ac_file_in; do
 
2768
+      case $f in
 
2769
+      -) echo $tmp/stdin ;;
 
2770
+      [\\/$]*)
 
2771
+        # Absolute (can't be DOS-style, as IFS=:)
 
2772
+        test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
 
2773
+echo "$as_me: error: cannot find input file: $f" >&2;}
 
2774
+   { (exit 1); exit 1; }; }
 
2775
+        # Do quote $f, to prevent DOS paths from being IFS'd.
 
2776
+        echo "$f";;
 
2777
+      *) # Relative
 
2778
+        if test -f "$f"; then
 
2779
+          # Build tree
 
2780
+          echo "$f"
 
2781
+        elif test -f "$srcdir/$f"; then
 
2782
+          # Source tree
 
2783
+          echo "$srcdir/$f"
 
2784
+        else
 
2785
+          # /dev/null tree
 
2786
+          { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
 
2787
+echo "$as_me: error: cannot find input file: $f" >&2;}
 
2788
+   { (exit 1); exit 1; }; }
 
2789
+        fi;;
 
2790
+      esac
 
2791
+    done` || { (exit 1); exit 1; }
 
2792
+  # Remove the trailing spaces.
 
2793
+  sed 's/[      ]*$//' $ac_file_inputs >$tmp/in
 
2794
+
 
2795
+  # Handle all the #define templates only if necessary.
 
2796
+  if grep "^[   ]*#[    ]*define" $tmp/in >/dev/null; then
 
2797
+  # If there are no defines, we may have an empty if/fi
 
2798
+  :
 
2799
+  cat >$tmp/defines.sed <<CEOF
 
2800
+/^[     ]*#[    ]*define/!b
 
2801
+t clr
 
2802
+: clr
 
2803
+${ac_dA}PACKAGE_NAME${ac_dB}PACKAGE_NAME${ac_dC}""${ac_dD}
 
2804
+${ac_dA}PACKAGE_TARNAME${ac_dB}PACKAGE_TARNAME${ac_dC}""${ac_dD}
 
2805
+${ac_dA}PACKAGE_VERSION${ac_dB}PACKAGE_VERSION${ac_dC}""${ac_dD}
 
2806
+${ac_dA}PACKAGE_STRING${ac_dB}PACKAGE_STRING${ac_dC}""${ac_dD}
 
2807
+${ac_dA}PACKAGE_BUGREPORT${ac_dB}PACKAGE_BUGREPORT${ac_dC}""${ac_dD}
 
2808
+${ac_dA}PACKAGE${ac_dB}PACKAGE${ac_dC}"irssi"${ac_dD}
 
2809
+${ac_dA}VERSION${ac_dB}VERSION${ac_dC}"0.8.10-rc5"${ac_dD}
 
2810
+${ac_dA}STDC_HEADERS${ac_dB}STDC_HEADERS${ac_dC}1${ac_dD}
 
2811
+${ac_dA}HAVE_SYS_TYPES_H${ac_dB}HAVE_SYS_TYPES_H${ac_dC}1${ac_dD}
 
2812
+${ac_dA}HAVE_SYS_STAT_H${ac_dB}HAVE_SYS_STAT_H${ac_dC}1${ac_dD}
 
2813
+${ac_dA}HAVE_STDLIB_H${ac_dB}HAVE_STDLIB_H${ac_dC}1${ac_dD}
 
2814
+${ac_dA}HAVE_STRING_H${ac_dB}HAVE_STRING_H${ac_dC}1${ac_dD}
 
2815
+${ac_dA}HAVE_MEMORY_H${ac_dB}HAVE_MEMORY_H${ac_dC}1${ac_dD}
 
2816
+${ac_dA}HAVE_STRINGS_H${ac_dB}HAVE_STRINGS_H${ac_dC}1${ac_dD}
 
2817
+${ac_dA}HAVE_INTTYPES_H${ac_dB}HAVE_INTTYPES_H${ac_dC}1${ac_dD}
 
2818
+${ac_dA}HAVE_STDINT_H${ac_dB}HAVE_STDINT_H${ac_dC}1${ac_dD}
 
2819
+${ac_dA}HAVE_UNISTD_H${ac_dB}HAVE_UNISTD_H${ac_dC}1${ac_dD}
 
2820
+${ac_dA}HAVE_DLFCN_H${ac_dB}HAVE_DLFCN_H${ac_dC}1${ac_dD}
 
2821
+${ac_dA}HAVE_STRING_H${ac_dB}HAVE_STRING_H${ac_dC}1${ac_dD}
 
2822
+${ac_dA}HAVE_STDLIB_H${ac_dB}HAVE_STDLIB_H${ac_dC}1${ac_dD}
 
2823
+${ac_dA}HAVE_UNISTD_H${ac_dB}HAVE_UNISTD_H${ac_dC}1${ac_dD}
 
2824
+${ac_dA}HAVE_DIRENT_H${ac_dB}HAVE_DIRENT_H${ac_dC}1${ac_dD}
 
2825
+${ac_dA}HAVE_SYS_IOCTL_H${ac_dB}HAVE_SYS_IOCTL_H${ac_dC}1${ac_dD}
 
2826
+${ac_dA}HAVE_SYS_RESOURCE_H${ac_dB}HAVE_SYS_RESOURCE_H${ac_dC}1${ac_dD}
 
2827
+${ac_dA}HAVE_SYS_TIME_H${ac_dB}HAVE_SYS_TIME_H${ac_dC}1${ac_dD}
 
2828
+${ac_dA}HAVE_SYS_UTSNAME_H${ac_dB}HAVE_SYS_UTSNAME_H${ac_dC}1${ac_dD}
 
2829
+${ac_dA}HAVE_REGEX_H${ac_dB}HAVE_REGEX_H${ac_dC}1${ac_dD}
 
2830
+${ac_dA}HAVE_GNUTLS${ac_dB}HAVE_GNUTLS${ac_dC}${ac_dD}
 
2831
+${ac_dA}HAVE_MKFIFO${ac_dB}HAVE_MKFIFO${ac_dC}1${ac_dD}
 
2832
+${ac_dA}HAVE_FCNTL${ac_dB}HAVE_FCNTL${ac_dC}1${ac_dD}
 
2833
+${ac_dA}HAVE_NL_LANGINFO${ac_dB}HAVE_NL_LANGINFO${ac_dC}1${ac_dD}
 
2834
+${ac_dA}_FILE_OFFSET_BITS${ac_dB}_FILE_OFFSET_BITS${ac_dC}64${ac_dD}
 
2835
+${ac_dA}SIZEOF_INT${ac_dB}SIZEOF_INT${ac_dC}4${ac_dD}
 
2836
+${ac_dA}SIZEOF_LONG${ac_dB}SIZEOF_LONG${ac_dC}4${ac_dD}
 
2837
+${ac_dA}SIZEOF_LONG_LONG${ac_dB}SIZEOF_LONG_LONG${ac_dC}8${ac_dD}
 
2838
+${ac_dA}PRIuUOFF_T${ac_dB}PRIuUOFF_T${ac_dC}"llu"${ac_dD}
 
2839
+${ac_dA}UOFF_T_LONG_LONG${ac_dB}UOFF_T_LONG_LONG${ac_dC}1${ac_dD}
 
2840
+${ac_dA}HAVE_GMODULE${ac_dB}HAVE_GMODULE${ac_dC}1${ac_dD}
 
2841
+CEOF
 
2842
+  sed -f $tmp/defines.sed $tmp/in >$tmp/out
 
2843
+  rm -f $tmp/in
 
2844
+  mv $tmp/out $tmp/in
 
2845
+
 
2846
+  cat >$tmp/defines.sed <<CEOF
 
2847
+/^[     ]*#[    ]*define/!b
 
2848
+t clr
 
2849
+: clr
 
2850
+${ac_dA}HAVE_OPENSSL${ac_dB}HAVE_OPENSSL${ac_dC}${ac_dD}
 
2851
+${ac_dA}HAVE_GLIB2${ac_dB}HAVE_GLIB2${ac_dC}1${ac_dD}
 
2852
+${ac_dA}HAS_CURSES${ac_dB}HAS_CURSES${ac_dC}1${ac_dD}
 
2853
+${ac_dA}USE_NCURSES${ac_dB}USE_NCURSES${ac_dC}1${ac_dD}
 
2854
+${ac_dA}HAVE_NCURSES_USE_DEFAULT_COLORS${ac_dB}HAVE_NCURSES_USE_DEFAULT_COLORS${ac_dC}1${ac_dD}
 
2855
+${ac_dA}HAVE_CURSES_IDCOK${ac_dB}HAVE_CURSES_IDCOK${ac_dC}1${ac_dD}
 
2856
+${ac_dA}HAVE_CURSES_RESIZETERM${ac_dB}HAVE_CURSES_RESIZETERM${ac_dC}1${ac_dD}
 
2857
+${ac_dA}HAVE_CURSES_WRESIZE${ac_dB}HAVE_CURSES_WRESIZE${ac_dC}1${ac_dD}
 
2858
+${ac_dA}HAVE_TERMINFO${ac_dB}HAVE_TERMINFO${ac_dC}1${ac_dD}
 
2859
+${ac_dA}HAVE_PL_PERL${ac_dB}HAVE_PL_PERL${ac_dC}1${ac_dD}
 
2860
+${ac_dA}HAVE_STATIC_PERL${ac_dB}HAVE_STATIC_PERL${ac_dC}1${ac_dD}
 
2861
+CEOF
 
2862
+  sed -f $tmp/defines.sed $tmp/in >$tmp/out
 
2863
+  rm -f $tmp/in
 
2864
+  mv $tmp/out $tmp/in
 
2865
+
 
2866
+  fi # grep
 
2867
+
 
2868
+  # Handle all the #undef templates
 
2869
+  cat >$tmp/undefs.sed <<CEOF
 
2870
+/^[     ]*#[    ]*undef/!b
 
2871
+t clr
 
2872
+: clr
 
2873
+${ac_uA}PACKAGE_NAME${ac_uB}PACKAGE_NAME${ac_uC}""${ac_uD}
 
2874
+${ac_uA}PACKAGE_TARNAME${ac_uB}PACKAGE_TARNAME${ac_uC}""${ac_uD}
 
2875
+${ac_uA}PACKAGE_VERSION${ac_uB}PACKAGE_VERSION${ac_uC}""${ac_uD}
 
2876
+${ac_uA}PACKAGE_STRING${ac_uB}PACKAGE_STRING${ac_uC}""${ac_uD}
 
2877
+${ac_uA}PACKAGE_BUGREPORT${ac_uB}PACKAGE_BUGREPORT${ac_uC}""${ac_uD}
 
2878
+${ac_uA}PACKAGE${ac_uB}PACKAGE${ac_uC}"irssi"${ac_uD}
 
2879
+${ac_uA}VERSION${ac_uB}VERSION${ac_uC}"0.8.10-rc5"${ac_uD}
 
2880
+${ac_uA}STDC_HEADERS${ac_uB}STDC_HEADERS${ac_uC}1${ac_uD}
 
2881
+${ac_uA}HAVE_SYS_TYPES_H${ac_uB}HAVE_SYS_TYPES_H${ac_uC}1${ac_uD}
 
2882
+${ac_uA}HAVE_SYS_STAT_H${ac_uB}HAVE_SYS_STAT_H${ac_uC}1${ac_uD}
 
2883
+${ac_uA}HAVE_STDLIB_H${ac_uB}HAVE_STDLIB_H${ac_uC}1${ac_uD}
 
2884
+${ac_uA}HAVE_STRING_H${ac_uB}HAVE_STRING_H${ac_uC}1${ac_uD}
 
2885
+${ac_uA}HAVE_MEMORY_H${ac_uB}HAVE_MEMORY_H${ac_uC}1${ac_uD}
 
2886
+${ac_uA}HAVE_STRINGS_H${ac_uB}HAVE_STRINGS_H${ac_uC}1${ac_uD}
 
2887
+${ac_uA}HAVE_INTTYPES_H${ac_uB}HAVE_INTTYPES_H${ac_uC}1${ac_uD}
 
2888
+${ac_uA}HAVE_STDINT_H${ac_uB}HAVE_STDINT_H${ac_uC}1${ac_uD}
 
2889
+${ac_uA}HAVE_UNISTD_H${ac_uB}HAVE_UNISTD_H${ac_uC}1${ac_uD}
 
2890
+${ac_uA}HAVE_DLFCN_H${ac_uB}HAVE_DLFCN_H${ac_uC}1${ac_uD}
 
2891
+${ac_uA}HAVE_STRING_H${ac_uB}HAVE_STRING_H${ac_uC}1${ac_uD}
 
2892
+${ac_uA}HAVE_STDLIB_H${ac_uB}HAVE_STDLIB_H${ac_uC}1${ac_uD}
 
2893
+${ac_uA}HAVE_UNISTD_H${ac_uB}HAVE_UNISTD_H${ac_uC}1${ac_uD}
 
2894
+${ac_uA}HAVE_DIRENT_H${ac_uB}HAVE_DIRENT_H${ac_uC}1${ac_uD}
 
2895
+${ac_uA}HAVE_SYS_IOCTL_H${ac_uB}HAVE_SYS_IOCTL_H${ac_uC}1${ac_uD}
 
2896
+${ac_uA}HAVE_SYS_RESOURCE_H${ac_uB}HAVE_SYS_RESOURCE_H${ac_uC}1${ac_uD}
 
2897
+${ac_uA}HAVE_SYS_TIME_H${ac_uB}HAVE_SYS_TIME_H${ac_uC}1${ac_uD}
 
2898
+${ac_uA}HAVE_SYS_UTSNAME_H${ac_uB}HAVE_SYS_UTSNAME_H${ac_uC}1${ac_uD}
 
2899
+${ac_uA}HAVE_REGEX_H${ac_uB}HAVE_REGEX_H${ac_uC}1${ac_uD}
 
2900
+${ac_uA}HAVE_GNUTLS${ac_uB}HAVE_GNUTLS${ac_uC}${ac_uD}
 
2901
+${ac_uA}HAVE_MKFIFO${ac_uB}HAVE_MKFIFO${ac_uC}1${ac_uD}
 
2902
+${ac_uA}HAVE_FCNTL${ac_uB}HAVE_FCNTL${ac_uC}1${ac_uD}
 
2903
+${ac_uA}HAVE_NL_LANGINFO${ac_uB}HAVE_NL_LANGINFO${ac_uC}1${ac_uD}
 
2904
+${ac_uA}_FILE_OFFSET_BITS${ac_uB}_FILE_OFFSET_BITS${ac_uC}64${ac_uD}
 
2905
+${ac_uA}SIZEOF_INT${ac_uB}SIZEOF_INT${ac_uC}4${ac_uD}
 
2906
+${ac_uA}SIZEOF_LONG${ac_uB}SIZEOF_LONG${ac_uC}4${ac_uD}
 
2907
+${ac_uA}SIZEOF_LONG_LONG${ac_uB}SIZEOF_LONG_LONG${ac_uC}8${ac_uD}
 
2908
+${ac_uA}PRIuUOFF_T${ac_uB}PRIuUOFF_T${ac_uC}"llu"${ac_uD}
 
2909
+${ac_uA}UOFF_T_LONG_LONG${ac_uB}UOFF_T_LONG_LONG${ac_uC}1${ac_uD}
 
2910
+${ac_uA}HAVE_GMODULE${ac_uB}HAVE_GMODULE${ac_uC}1${ac_uD}
 
2911
+CEOF
 
2912
+  sed -f $tmp/undefs.sed $tmp/in >$tmp/out
 
2913
+  rm -f $tmp/in
 
2914
+  mv $tmp/out $tmp/in
 
2915
+
 
2916
+  cat >$tmp/undefs.sed <<CEOF
 
2917
+/^[     ]*#[    ]*undef/!b
 
2918
+t clr
 
2919
+: clr
 
2920
+${ac_uA}HAVE_OPENSSL${ac_uB}HAVE_OPENSSL${ac_uC}${ac_uD}
 
2921
+${ac_uA}HAVE_GLIB2${ac_uB}HAVE_GLIB2${ac_uC}1${ac_uD}
 
2922
+${ac_uA}HAS_CURSES${ac_uB}HAS_CURSES${ac_uC}1${ac_uD}
 
2923
+${ac_uA}USE_NCURSES${ac_uB}USE_NCURSES${ac_uC}1${ac_uD}
 
2924
+${ac_uA}HAVE_NCURSES_USE_DEFAULT_COLORS${ac_uB}HAVE_NCURSES_USE_DEFAULT_COLORS${ac_uC}1${ac_uD}
 
2925
+${ac_uA}HAVE_CURSES_IDCOK${ac_uB}HAVE_CURSES_IDCOK${ac_uC}1${ac_uD}
 
2926
+${ac_uA}HAVE_CURSES_RESIZETERM${ac_uB}HAVE_CURSES_RESIZETERM${ac_uC}1${ac_uD}
 
2927
+${ac_uA}HAVE_CURSES_WRESIZE${ac_uB}HAVE_CURSES_WRESIZE${ac_uC}1${ac_uD}
 
2928
+${ac_uA}HAVE_TERMINFO${ac_uB}HAVE_TERMINFO${ac_uC}1${ac_uD}
 
2929
+${ac_uA}HAVE_PL_PERL${ac_uB}HAVE_PL_PERL${ac_uC}1${ac_uD}
 
2930
+${ac_uA}HAVE_STATIC_PERL${ac_uB}HAVE_STATIC_PERL${ac_uC}1${ac_uD}
 
2931
+s,^[    ]*#[    ]*undef[        ][      ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
 
2932
+CEOF
 
2933
+  sed -f $tmp/undefs.sed $tmp/in >$tmp/out
 
2934
+  rm -f $tmp/in
 
2935
+  mv $tmp/out $tmp/in
 
2936
+
 
2937
+  # Let's still pretend it is `configure' which instantiates (i.e., don't
 
2938
+  # use $as_me), people would be surprised to read:
 
2939
+  #    /* config.h.  Generated by config.status.  */
 
2940
+  if test x"$ac_file" = x-; then
 
2941
+    echo "/* Generated by configure.  */" >$tmp/config.h
 
2942
+  else
 
2943
+    echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
 
2944
+  fi
 
2945
+  cat $tmp/in >>$tmp/config.h
 
2946
+  rm -f $tmp/in
 
2947
+  if test x"$ac_file" != x-; then
 
2948
+    if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
 
2949
+      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
 
2950
+echo "$as_me: $ac_file is unchanged" >&6;}
 
2951
+    else
 
2952
+      ac_dir=`(dirname "$ac_file") 2>/dev/null ||
 
2953
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
2954
+        X"$ac_file" : 'X\(//\)[^/]' \| \
 
2955
+        X"$ac_file" : 'X\(//\)$' \| \
 
2956
+        X"$ac_file" : 'X\(/\)' \| \
 
2957
+        .     : '\(.\)' 2>/dev/null ||
 
2958
+echo X"$ac_file" |
 
2959
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
2960
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
2961
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
2962
+         /^X\(\/\).*/{ s//\1/; q; }
 
2963
+         s/.*/./; q'`
 
2964
+      { if $as_mkdir_p; then
 
2965
+    mkdir -p "$ac_dir"
 
2966
+  else
 
2967
+    as_dir="$ac_dir"
 
2968
+    as_dirs=
 
2969
+    while test ! -d "$as_dir"; do
 
2970
+      as_dirs="$as_dir $as_dirs"
 
2971
+      as_dir=`(dirname "$as_dir") 2>/dev/null ||
 
2972
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
2973
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
2974
+        X"$as_dir" : 'X\(//\)$' \| \
 
2975
+        X"$as_dir" : 'X\(/\)' \| \
 
2976
+        .     : '\(.\)' 2>/dev/null ||
 
2977
+echo X"$as_dir" |
 
2978
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
2979
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
2980
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
2981
+         /^X\(\/\).*/{ s//\1/; q; }
 
2982
+         s/.*/./; q'`
 
2983
+    done
 
2984
+    test ! -n "$as_dirs" || mkdir $as_dirs
 
2985
+  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
 
2986
+echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
 
2987
+   { (exit 1); exit 1; }; }; }
 
2988
+
 
2989
+      rm -f $ac_file
 
2990
+      mv $tmp/config.h $ac_file
 
2991
+    fi
 
2992
+  else
 
2993
+    cat $tmp/config.h
 
2994
+    rm -f $tmp/config.h
 
2995
+  fi
 
2996
+# Compute $ac_file's index in $config_headers.
 
2997
+_am_stamp_count=1
 
2998
+for _am_header in $config_headers :; do
 
2999
+  case $_am_header in
 
3000
+    $ac_file | $ac_file:* )
 
3001
+      break ;;
 
3002
+    * )
 
3003
+      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
 
3004
+  esac
 
3005
+done
 
3006
+echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
 
3007
+$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
3008
+        X$ac_file : 'X\(//\)[^/]' \| \
 
3009
+        X$ac_file : 'X\(//\)$' \| \
 
3010
+        X$ac_file : 'X\(/\)' \| \
 
3011
+        .     : '\(.\)' 2>/dev/null ||
 
3012
+echo X$ac_file |
 
3013
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
3014
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
3015
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
3016
+         /^X\(\/\).*/{ s//\1/; q; }
 
3017
+         s/.*/./; q'`/stamp-h$_am_stamp_count
 
3018
+done
 
3019
+
 
3020
+#
 
3021
+# CONFIG_COMMANDS section.
 
3022
+#
 
3023
+for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
 
3024
+  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
 
3025
+  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
3026
+  ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
 
3027
+$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
3028
+        X"$ac_dest" : 'X\(//\)[^/]' \| \
 
3029
+        X"$ac_dest" : 'X\(//\)$' \| \
 
3030
+        X"$ac_dest" : 'X\(/\)' \| \
 
3031
+        .     : '\(.\)' 2>/dev/null ||
 
3032
+echo X"$ac_dest" |
 
3033
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
3034
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
3035
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
3036
+         /^X\(\/\).*/{ s//\1/; q; }
 
3037
+         s/.*/./; q'`
 
3038
+  { if $as_mkdir_p; then
 
3039
+    mkdir -p "$ac_dir"
 
3040
+  else
 
3041
+    as_dir="$ac_dir"
 
3042
+    as_dirs=
 
3043
+    while test ! -d "$as_dir"; do
 
3044
+      as_dirs="$as_dir $as_dirs"
 
3045
+      as_dir=`(dirname "$as_dir") 2>/dev/null ||
 
3046
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
3047
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
3048
+        X"$as_dir" : 'X\(//\)$' \| \
 
3049
+        X"$as_dir" : 'X\(/\)' \| \
 
3050
+        .     : '\(.\)' 2>/dev/null ||
 
3051
+echo X"$as_dir" |
 
3052
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
3053
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
3054
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
3055
+         /^X\(\/\).*/{ s//\1/; q; }
 
3056
+         s/.*/./; q'`
 
3057
+    done
 
3058
+    test ! -n "$as_dirs" || mkdir $as_dirs
 
3059
+  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
 
3060
+echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
 
3061
+   { (exit 1); exit 1; }; }; }
 
3062
+
 
3063
+  ac_builddir=.
 
3064
+
 
3065
+if test "$ac_dir" != .; then
 
3066
+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
 
3067
+  # A "../" for each directory in $ac_dir_suffix.
 
3068
+  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
 
3069
+else
 
3070
+  ac_dir_suffix= ac_top_builddir=
 
3071
+fi
 
3072
+
 
3073
+case $srcdir in
 
3074
+  .)  # No --srcdir option.  We are building in place.
 
3075
+    ac_srcdir=.
 
3076
+    if test -z "$ac_top_builddir"; then
 
3077
+       ac_top_srcdir=.
 
3078
+    else
 
3079
+       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
 
3080
+    fi ;;
 
3081
+  [\\/]* | ?:[\\/]* )  # Absolute path.
 
3082
+    ac_srcdir=$srcdir$ac_dir_suffix;
 
3083
+    ac_top_srcdir=$srcdir ;;
 
3084
+  *) # Relative path.
 
3085
+    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 
3086
+    ac_top_srcdir=$ac_top_builddir$srcdir ;;
 
3087
+esac
 
3088
+
 
3089
+# Do not use `cd foo && pwd` to compute absolute paths, because
 
3090
+# the directories may not exist.
 
3091
+case `pwd` in
 
3092
+.) ac_abs_builddir="$ac_dir";;
 
3093
+*)
 
3094
+  case "$ac_dir" in
 
3095
+  .) ac_abs_builddir=`pwd`;;
 
3096
+  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
 
3097
+  *) ac_abs_builddir=`pwd`/"$ac_dir";;
 
3098
+  esac;;
 
3099
+esac
 
3100
+case $ac_abs_builddir in
 
3101
+.) ac_abs_top_builddir=${ac_top_builddir}.;;
 
3102
+*)
 
3103
+  case ${ac_top_builddir}. in
 
3104
+  .) ac_abs_top_builddir=$ac_abs_builddir;;
 
3105
+  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
 
3106
+  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
 
3107
+  esac;;
 
3108
+esac
 
3109
+case $ac_abs_builddir in
 
3110
+.) ac_abs_srcdir=$ac_srcdir;;
 
3111
+*)
 
3112
+  case $ac_srcdir in
 
3113
+  .) ac_abs_srcdir=$ac_abs_builddir;;
 
3114
+  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
 
3115
+  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
 
3116
+  esac;;
 
3117
+esac
 
3118
+case $ac_abs_builddir in
 
3119
+.) ac_abs_top_srcdir=$ac_top_srcdir;;
 
3120
+*)
 
3121
+  case $ac_top_srcdir in
 
3122
+  .) ac_abs_top_srcdir=$ac_abs_builddir;;
 
3123
+  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 
3124
+  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 
3125
+  esac;;
 
3126
+esac
 
3127
+
 
3128
+
 
3129
+  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
 
3130
+echo "$as_me: executing $ac_dest commands" >&6;}
 
3131
+  case $ac_dest in
 
3132
+    depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
 
3133
+  # Strip MF so we end up with the name of the file.
 
3134
+  mf=`echo "$mf" | sed -e 's/:.*$//'`
 
3135
+  # Check whether this is an Automake generated Makefile or not.
 
3136
+  # We used to match only the files named `Makefile.in', but
 
3137
+  # some people rename them; so instead we look at the file content.
 
3138
+  # Grep'ing the first line is not enough: some people post-process
 
3139
+  # each Makefile.in and add a new line on top of each file to say so.
 
3140
+  # So let's grep whole file.
 
3141
+  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
3142
+    dirpart=`(dirname "$mf") 2>/dev/null ||
 
3143
+$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
3144
+        X"$mf" : 'X\(//\)[^/]' \| \
 
3145
+        X"$mf" : 'X\(//\)$' \| \
 
3146
+        X"$mf" : 'X\(/\)' \| \
 
3147
+        .     : '\(.\)' 2>/dev/null ||
 
3148
+echo X"$mf" |
 
3149
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
3150
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
3151
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
3152
+         /^X\(\/\).*/{ s//\1/; q; }
 
3153
+         s/.*/./; q'`
 
3154
+  else
 
3155
+    continue
 
3156
+  fi
 
3157
+  # Extract the definition of DEPDIR, am__include, and am__quote
 
3158
+  # from the Makefile without running `make'.
 
3159
+  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
3160
+  test -z "$DEPDIR" && continue
 
3161
+  am__include=`sed -n 's/^am__include = //p' < "$mf"`
 
3162
+  test -z "am__include" && continue
 
3163
+  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
 
3164
+  # When using ansi2knr, U may be empty or an underscore; expand it
 
3165
+  U=`sed -n 's/^U = //p' < "$mf"`
 
3166
+  # Find all dependency output files, they are included files with
 
3167
+  # $(DEPDIR) in their names.  We invoke sed twice because it is the
 
3168
+  # simplest approach to changing $(DEPDIR) to its actual value in the
 
3169
+  # expansion.
 
3170
+  for file in `sed -n "
 
3171
+    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
 
3172
+       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
3173
+    # Make sure the directory exists.
 
3174
+    test -f "$dirpart/$file" && continue
 
3175
+    fdir=`(dirname "$file") 2>/dev/null ||
 
3176
+$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
3177
+        X"$file" : 'X\(//\)[^/]' \| \
 
3178
+        X"$file" : 'X\(//\)$' \| \
 
3179
+        X"$file" : 'X\(/\)' \| \
 
3180
+        .     : '\(.\)' 2>/dev/null ||
 
3181
+echo X"$file" |
 
3182
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
3183
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
3184
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
3185
+         /^X\(\/\).*/{ s//\1/; q; }
 
3186
+         s/.*/./; q'`
 
3187
+    { if $as_mkdir_p; then
 
3188
+    mkdir -p $dirpart/$fdir
 
3189
+  else
 
3190
+    as_dir=$dirpart/$fdir
 
3191
+    as_dirs=
 
3192
+    while test ! -d "$as_dir"; do
 
3193
+      as_dirs="$as_dir $as_dirs"
 
3194
+      as_dir=`(dirname "$as_dir") 2>/dev/null ||
 
3195
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
3196
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
3197
+        X"$as_dir" : 'X\(//\)$' \| \
 
3198
+        X"$as_dir" : 'X\(/\)' \| \
 
3199
+        .     : '\(.\)' 2>/dev/null ||
 
3200
+echo X"$as_dir" |
 
3201
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
3202
+         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
3203
+         /^X\(\/\/\)$/{ s//\1/; q; }
 
3204
+         /^X\(\/\).*/{ s//\1/; q; }
 
3205
+         s/.*/./; q'`
 
3206
+    done
 
3207
+    test ! -n "$as_dirs" || mkdir $as_dirs
 
3208
+  fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
 
3209
+echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
 
3210
+   { (exit 1); exit 1; }; }; }
 
3211
+
 
3212
+    # echo "creating $dirpart/$file"
 
3213
+    echo '# dummy' > "$dirpart/$file"
 
3214
+  done
 
3215
+done
 
3216
+ ;;
 
3217
+  esac
 
3218
+done
 
3219
+
 
3220
+{ (exit 0); exit 0; }
 
3221
diff -urNad --exclude=CVS --exclude=.svn ./configure /tmp/dpep-work.mDzhRz/irssi/configure
 
3222
--- ./configure 2005-07-17 16:30:22.000000000 +0300
 
3223
+++ /tmp/dpep-work.mDzhRz/irssi/configure       2005-07-17 16:47:58.000000000 +0300
 
3224
@@ -463,7 +463,7 @@
 
3225
 # include <unistd.h>
 
3226
 #endif"
 
3227
 
 
3228
-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP build build_cpu build_vendor build_os host host_cpu host_vendor host_os LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL sedpath perlpath GLIB_CFLAGS GLIB_LIBS GLIB_CONFIG PKG_CONFIG GLIB_GENMARSHAL GOBJECT_QUERY GLIB_MKENUMS ac_pt_PKG_CONFIG SSL_CFLAGS SSL_LIBS CURSES_LIBS CURSES_INCLUDEDIR TEXTUI_LIBS PERL_EXTRA_OPTS LIBPERL_A DYNALOADER_A perl_module_lib perl_static_lib perl_module_fe_lib perl_static_fe_lib PERL_LIBTOOL PERL_LINK_FLAGS PERL_LINK_LIBS PERL_FE_LINK_LIBS PERL_LDFLAGS PERL_CFLAGS PERL_USE_LIB PERL_MM_PARAMS PERL_STATIC_LIBS BUILD_TEXTUI_TRUE BUILD_TEXTUI_FALSE BUILD_IRSSIBOT_TRUE BUILD_IRSSIBOT_FALSE BUILD_IRSSIPROXY_TRUE BUILD_IRSSIPROXY_FALSE BUILD_PLUGINS_TRUE BUILD_PLUGINS_FALSE HAVE_PERL_TRUE HAVE_PERL_FALSE HAVE_STATIC_PERL_TRUE HAVE_STATIC_PERL_FALSE NEED_TPARM_TRUE NEED_TPARM_FALSE USE_CURSES_TRUE USE_CURSES_FALSE PROG_LIBS CHAT_MODULES irc_MODULES COMMON_NOUI_LIBS COMMON_LIBS VERSION_DATE VERSION_TIME LIBOBJS LTLIBOBJS'
 
3229
+ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP build build_cpu build_vendor build_os host host_cpu host_vendor host_os LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL sedpath perlpath LIBGNUTLS_CONFIG LIBGNUTLS_CFLAGS LIBGNUTLS_LIBS HAVE_GNUTLS_TRUE HAVE_GNUTLS_FALSE GLIB_CFLAGS GLIB_LIBS GLIB_CONFIG PKG_CONFIG GLIB_GENMARSHAL GOBJECT_QUERY GLIB_MKENUMS ac_pt_PKG_CONFIG SSL_CFLAGS SSL_LIBS CURSES_LIBS CURSES_INCLUDEDIR TEXTUI_LIBS PERL_EXTRA_OPTS LIBPERL_A DYNALOADER_A perl_module_lib perl_static_lib perl_module_fe_lib perl_static_fe_lib PERL_LIBTOOL PERL_LINK_FLAGS PERL_LINK_LIBS PERL_FE_LINK_LIBS PERL_LDFLAGS PERL_CFLAGS PERL_USE_LIB PERL_MM_PARAMS PERL_STATIC_LIBS BUILD_TEXTUI_TRUE BUILD_TEXTUI_FALSE BUILD_IRSSIBOT_TRUE BUILD_IRSSIBOT_FALSE BUILD_IRSSIPROXY_TRUE BUILD_IRSSIPROXY_FALSE BUILD_PLUGINS_TRUE BUILD_PLUGINS_FALSE HAVE_PERL_TRUE HAVE_PERL_FALSE HAVE_STATIC_PERL_TRUE HAVE_STATIC_PERL_FALSE NEED_TPARM_TRUE NEED_TPARM_FALSE USE_CURSES_TRUE USE_CURSES_FALSE PROG_LIBS CHAT_MODULES irc_MODULES COMMON_NOUI_LIBS COMMON_LIBS VERSION_DATE VERSION_TIME LIBOBJS LTLIBOBJS'
 
3230
 ac_subst_files=''
 
3231
 
 
3232
 # Initialize some variables set by options.
 
3233
@@ -1076,6 +1076,7 @@
 
3234
                           (static, default) or as module
 
3235
   --with-file-offset-size=BITS  Set size of file offsets. Usually 32 or 64.
 
3236
                           (default: 64 if available)
 
3237
+  --with-libgnutls-prefix=PFX   Prefix where libgnutls is installed (optional)
 
3238
   --with-glib-prefix=PFX   Prefix where GLIB is installed (optional)
 
3239
   --with-glib-exec-prefix=PFX Exec prefix where GLIB is installed (optional)
 
3240
   --with-sco              Use this to turn on SCO-specific code
 
3241
@@ -5065,7 +5066,7 @@
 
3242
   ;;
 
3243
 *-*-irix6*)
 
3244
   # Find out which ABI we are using.
 
3245
-  echo '#line 5068 "configure"' > conftest.$ac_ext
 
3246
+  echo '#line 5069 "configure"' > conftest.$ac_ext
 
3247
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
3248
   (eval $ac_compile) 2>&5
 
3249
   ac_status=$?
 
3250
@@ -6229,7 +6230,7 @@
 
3251
 
 
3252
 
 
3253
 # Provide some information about the compiler.
 
3254
-echo "$as_me:6232:" \
 
3255
+echo "$as_me:6233:" \
 
3256
      "checking for Fortran 77 compiler version" >&5
 
3257
 ac_compiler=`set X $ac_compile; echo $2`
 
3258
 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
 
3259
@@ -7261,11 +7262,11 @@
 
3260
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3261
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3262
    -e 's:$: $lt_compiler_flag:'`
 
3263
-   (eval echo "\"\$as_me:7264: $lt_compile\"" >&5)
 
3264
+   (eval echo "\"\$as_me:7265: $lt_compile\"" >&5)
 
3265
    (eval "$lt_compile" 2>conftest.err)
 
3266
    ac_status=$?
 
3267
    cat conftest.err >&5
 
3268
-   echo "$as_me:7268: \$? = $ac_status" >&5
 
3269
+   echo "$as_me:7269: \$? = $ac_status" >&5
 
3270
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
3271
      # The compiler can only warn and ignore the option if not recognized
 
3272
      # So say no if there are warnings
 
3273
@@ -7494,11 +7495,11 @@
 
3274
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3275
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3276
    -e 's:$: $lt_compiler_flag:'`
 
3277
-   (eval echo "\"\$as_me:7497: $lt_compile\"" >&5)
 
3278
+   (eval echo "\"\$as_me:7498: $lt_compile\"" >&5)
 
3279
    (eval "$lt_compile" 2>conftest.err)
 
3280
    ac_status=$?
 
3281
    cat conftest.err >&5
 
3282
-   echo "$as_me:7501: \$? = $ac_status" >&5
 
3283
+   echo "$as_me:7502: \$? = $ac_status" >&5
 
3284
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
3285
      # The compiler can only warn and ignore the option if not recognized
 
3286
      # So say no if there are warnings
 
3287
@@ -7554,11 +7555,11 @@
 
3288
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3289
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3290
    -e 's:$: $lt_compiler_flag:'`
 
3291
-   (eval echo "\"\$as_me:7557: $lt_compile\"" >&5)
 
3292
+   (eval echo "\"\$as_me:7558: $lt_compile\"" >&5)
 
3293
    (eval "$lt_compile" 2>out/conftest.err)
 
3294
    ac_status=$?
 
3295
    cat out/conftest.err >&5
 
3296
-   echo "$as_me:7561: \$? = $ac_status" >&5
 
3297
+   echo "$as_me:7562: \$? = $ac_status" >&5
 
3298
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
3299
    then
 
3300
      # The compiler can only warn and ignore the option if not recognized
 
3301
@@ -9742,7 +9743,7 @@
 
3302
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
3303
   lt_status=$lt_dlunknown
 
3304
   cat > conftest.$ac_ext <<EOF
 
3305
-#line 9745 "configure"
 
3306
+#line 9746 "configure"
 
3307
 #include "confdefs.h"
 
3308
 
 
3309
 #if HAVE_DLFCN_H
 
3310
@@ -9840,7 +9841,7 @@
 
3311
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
3312
   lt_status=$lt_dlunknown
 
3313
   cat > conftest.$ac_ext <<EOF
 
3314
-#line 9843 "configure"
 
3315
+#line 9844 "configure"
 
3316
 #include "confdefs.h"
 
3317
 
 
3318
 #if HAVE_DLFCN_H
 
3319
@@ -12017,11 +12018,11 @@
 
3320
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3321
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3322
    -e 's:$: $lt_compiler_flag:'`
 
3323
-   (eval echo "\"\$as_me:12020: $lt_compile\"" >&5)
 
3324
+   (eval echo "\"\$as_me:12021: $lt_compile\"" >&5)
 
3325
    (eval "$lt_compile" 2>conftest.err)
 
3326
    ac_status=$?
 
3327
    cat conftest.err >&5
 
3328
-   echo "$as_me:12024: \$? = $ac_status" >&5
 
3329
+   echo "$as_me:12025: \$? = $ac_status" >&5
 
3330
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
3331
      # The compiler can only warn and ignore the option if not recognized
 
3332
      # So say no if there are warnings
 
3333
@@ -12077,11 +12078,11 @@
 
3334
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3335
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3336
    -e 's:$: $lt_compiler_flag:'`
 
3337
-   (eval echo "\"\$as_me:12080: $lt_compile\"" >&5)
 
3338
+   (eval echo "\"\$as_me:12081: $lt_compile\"" >&5)
 
3339
    (eval "$lt_compile" 2>out/conftest.err)
 
3340
    ac_status=$?
 
3341
    cat out/conftest.err >&5
 
3342
-   echo "$as_me:12084: \$? = $ac_status" >&5
 
3343
+   echo "$as_me:12085: \$? = $ac_status" >&5
 
3344
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
3345
    then
 
3346
      # The compiler can only warn and ignore the option if not recognized
 
3347
@@ -13446,7 +13447,7 @@
 
3348
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
3349
   lt_status=$lt_dlunknown
 
3350
   cat > conftest.$ac_ext <<EOF
 
3351
-#line 13449 "configure"
 
3352
+#line 13450 "configure"
 
3353
 #include "confdefs.h"
 
3354
 
 
3355
 #if HAVE_DLFCN_H
 
3356
@@ -13544,7 +13545,7 @@
 
3357
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
3358
   lt_status=$lt_dlunknown
 
3359
   cat > conftest.$ac_ext <<EOF
 
3360
-#line 13547 "configure"
 
3361
+#line 13548 "configure"
 
3362
 #include "confdefs.h"
 
3363
 
 
3364
 #if HAVE_DLFCN_H
 
3365
@@ -14371,11 +14372,11 @@
 
3366
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3367
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3368
    -e 's:$: $lt_compiler_flag:'`
 
3369
-   (eval echo "\"\$as_me:14374: $lt_compile\"" >&5)
 
3370
+   (eval echo "\"\$as_me:14375: $lt_compile\"" >&5)
 
3371
    (eval "$lt_compile" 2>conftest.err)
 
3372
    ac_status=$?
 
3373
    cat conftest.err >&5
 
3374
-   echo "$as_me:14378: \$? = $ac_status" >&5
 
3375
+   echo "$as_me:14379: \$? = $ac_status" >&5
 
3376
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
3377
      # The compiler can only warn and ignore the option if not recognized
 
3378
      # So say no if there are warnings
 
3379
@@ -14431,11 +14432,11 @@
 
3380
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3381
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3382
    -e 's:$: $lt_compiler_flag:'`
 
3383
-   (eval echo "\"\$as_me:14434: $lt_compile\"" >&5)
 
3384
+   (eval echo "\"\$as_me:14435: $lt_compile\"" >&5)
 
3385
    (eval "$lt_compile" 2>out/conftest.err)
 
3386
    ac_status=$?
 
3387
    cat out/conftest.err >&5
 
3388
-   echo "$as_me:14438: \$? = $ac_status" >&5
 
3389
+   echo "$as_me:14439: \$? = $ac_status" >&5
 
3390
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
3391
    then
 
3392
      # The compiler can only warn and ignore the option if not recognized
 
3393
@@ -16476,11 +16477,11 @@
 
3394
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3395
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3396
    -e 's:$: $lt_compiler_flag:'`
 
3397
-   (eval echo "\"\$as_me:16479: $lt_compile\"" >&5)
 
3398
+   (eval echo "\"\$as_me:16480: $lt_compile\"" >&5)
 
3399
    (eval "$lt_compile" 2>conftest.err)
 
3400
    ac_status=$?
 
3401
    cat conftest.err >&5
 
3402
-   echo "$as_me:16483: \$? = $ac_status" >&5
 
3403
+   echo "$as_me:16484: \$? = $ac_status" >&5
 
3404
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
3405
      # The compiler can only warn and ignore the option if not recognized
 
3406
      # So say no if there are warnings
 
3407
@@ -16709,11 +16710,11 @@
 
3408
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3409
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3410
    -e 's:$: $lt_compiler_flag:'`
 
3411
-   (eval echo "\"\$as_me:16712: $lt_compile\"" >&5)
 
3412
+   (eval echo "\"\$as_me:16713: $lt_compile\"" >&5)
 
3413
    (eval "$lt_compile" 2>conftest.err)
 
3414
    ac_status=$?
 
3415
    cat conftest.err >&5
 
3416
-   echo "$as_me:16716: \$? = $ac_status" >&5
 
3417
+   echo "$as_me:16717: \$? = $ac_status" >&5
 
3418
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
3419
      # The compiler can only warn and ignore the option if not recognized
 
3420
      # So say no if there are warnings
 
3421
@@ -16769,11 +16770,11 @@
 
3422
    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
 
3423
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
3424
    -e 's:$: $lt_compiler_flag:'`
 
3425
-   (eval echo "\"\$as_me:16772: $lt_compile\"" >&5)
 
3426
+   (eval echo "\"\$as_me:16773: $lt_compile\"" >&5)
 
3427
    (eval "$lt_compile" 2>out/conftest.err)
 
3428
    ac_status=$?
 
3429
    cat out/conftest.err >&5
 
3430
-   echo "$as_me:16776: \$? = $ac_status" >&5
 
3431
+   echo "$as_me:16777: \$? = $ac_status" >&5
 
3432
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
3433
    then
 
3434
      # The compiler can only warn and ignore the option if not recognized
 
3435
@@ -18957,7 +18958,7 @@
 
3436
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
3437
   lt_status=$lt_dlunknown
 
3438
   cat > conftest.$ac_ext <<EOF
 
3439
-#line 18960 "configure"
 
3440
+#line 18961 "configure"
 
3441
 #include "confdefs.h"
 
3442
 
 
3443
 #if HAVE_DLFCN_H
 
3444
@@ -19055,7 +19056,7 @@
 
3445
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
3446
   lt_status=$lt_dlunknown
 
3447
   cat > conftest.$ac_ext <<EOF
 
3448
-#line 19058 "configure"
 
3449
+#line 19059 "configure"
 
3450
 #include "confdefs.h"
 
3451
 
 
3452
 #if HAVE_DLFCN_H
 
3453
@@ -20700,6 +20701,282 @@
 
3454
 else
 
3455
   enable_ssl=yes
 
3456
 fi;
 
3457
+if test "$enable_ssl" = "yes"; then
 
3458
+
 
3459
+# Check whether --with-libgnutls-prefix or --without-libgnutls-prefix was given.
 
3460
+if test "${with_libgnutls_prefix+set}" = set; then
 
3461
+  withval="$with_libgnutls_prefix"
 
3462
+  libgnutls_config_prefix="$withval"
 
3463
+else
 
3464
+  libgnutls_config_prefix=""
 
3465
+fi;
 
3466
+
 
3467
+  if test x$libgnutls_config_prefix != x ; then
 
3468
+     if test x${LIBGNUTLS_CONFIG+set} != xset ; then
 
3469
+        LIBGNUTLS_CONFIG=$libgnutls_config_prefix/bin/libgnutls-config
 
3470
+     fi
 
3471
+  fi
 
3472
+
 
3473
+  # Extract the first word of "libgnutls-config", so it can be a program name with args.
 
3474
+set dummy libgnutls-config; ac_word=$2
 
3475
+echo "$as_me:$LINENO: checking for $ac_word" >&5
 
3476
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
3477
+if test "${ac_cv_path_LIBGNUTLS_CONFIG+set}" = set; then
 
3478
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
3479
+else
 
3480
+  case $LIBGNUTLS_CONFIG in
 
3481
+  [\\/]* | ?:[\\/]*)
 
3482
+  ac_cv_path_LIBGNUTLS_CONFIG="$LIBGNUTLS_CONFIG" # Let the user override the test with a path.
 
3483
+  ;;
 
3484
+  *)
 
3485
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
3486
+for as_dir in $PATH
 
3487
+do
 
3488
+  IFS=$as_save_IFS
 
3489
+  test -z "$as_dir" && as_dir=.
 
3490
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
3491
+  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
3492
+    ac_cv_path_LIBGNUTLS_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
3493
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3494
+    break 2
 
3495
+  fi
 
3496
+done
 
3497
+done
 
3498
+
 
3499
+  test -z "$ac_cv_path_LIBGNUTLS_CONFIG" && ac_cv_path_LIBGNUTLS_CONFIG="no"
 
3500
+  ;;
 
3501
+esac
 
3502
+fi
 
3503
+LIBGNUTLS_CONFIG=$ac_cv_path_LIBGNUTLS_CONFIG
 
3504
+
 
3505
+if test -n "$LIBGNUTLS_CONFIG"; then
 
3506
+  echo "$as_me:$LINENO: result: $LIBGNUTLS_CONFIG" >&5
 
3507
+echo "${ECHO_T}$LIBGNUTLS_CONFIG" >&6
 
3508
+else
 
3509
+  echo "$as_me:$LINENO: result: no" >&5
 
3510
+echo "${ECHO_T}no" >&6
 
3511
+fi
 
3512
+
 
3513
+  min_libgnutls_version=1.0.16
 
3514
+  echo "$as_me:$LINENO: checking for libgnutls - version >= $min_libgnutls_version" >&5
 
3515
+echo $ECHO_N "checking for libgnutls - version >= $min_libgnutls_version... $ECHO_C" >&6
 
3516
+  no_libgnutls=""
 
3517
+  if test "$LIBGNUTLS_CONFIG" = "no" ; then
 
3518
+    no_libgnutls=yes
 
3519
+  else
 
3520
+    LIBGNUTLS_CFLAGS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --cflags`
 
3521
+    LIBGNUTLS_LIBS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --libs`
 
3522
+    libgnutls_config_version=`$LIBGNUTLS_CONFIG $libgnutls_config_args --version`
 
3523
+
 
3524
+
 
3525
+      ac_save_CFLAGS="$CFLAGS"
 
3526
+      ac_save_LIBS="$LIBS"
 
3527
+      CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"
 
3528
+      LIBS="$LIBS $LIBGNUTLS_LIBS"
 
3529
+      rm -f conf.libgnutlstest
 
3530
+      if test "$cross_compiling" = yes; then
 
3531
+  echo $ac_n "cross compiling; assumed OK... $ac_c"
 
3532
+else
 
3533
+  cat >conftest.$ac_ext <<_ACEOF
 
3534
+/* confdefs.h.  */
 
3535
+_ACEOF
 
3536
+cat confdefs.h >>conftest.$ac_ext
 
3537
+cat >>conftest.$ac_ext <<_ACEOF
 
3538
+/* end confdefs.h.  */
 
3539
+
 
3540
+#include <stdio.h>
 
3541
+#include <stdlib.h>
 
3542
+#include <string.h>
 
3543
+#include <gnutls/gnutls.h>
 
3544
+
 
3545
+int
 
3546
+main ()
 
3547
+{
 
3548
+    system ("touch conf.libgnutlstest");
 
3549
+
 
3550
+    if( strcmp( gnutls_check_version(NULL), "$libgnutls_config_version" ) )
 
3551
+    {
 
3552
+      printf("\n*** 'libgnutls-config --version' returned %s, but LIBGNUTLS (%s)\n",
 
3553
+             "$libgnutls_config_version", gnutls_check_version(NULL) );
 
3554
+      printf("*** was found! If libgnutls-config was correct, then it is best\n");
 
3555
+      printf("*** to remove the old version of LIBGNUTLS. You may also be able to fix the error\n");
 
3556
+      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
 
3557
+      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
 
3558
+      printf("*** required on your system.\n");
 
3559
+      printf("*** If libgnutls-config was wrong, set the environment variable LIBGNUTLS_CONFIG\n");
 
3560
+      printf("*** to point to the correct copy of libgnutls-config, and remove the file config.cache\n");
 
3561
+      printf("*** before re-running configure\n");
 
3562
+    }
 
3563
+    else if ( strcmp(gnutls_check_version(NULL), LIBGNUTLS_VERSION ) )
 
3564
+    {
 
3565
+      printf("\n*** LIBGNUTLS header file (version %s) does not match\n", LIBGNUTLS_VERSION);
 
3566
+      printf("*** library (version %s)\n", gnutls_check_version(NULL) );
 
3567
+    }
 
3568
+    else
 
3569
+    {
 
3570
+      if ( gnutls_check_version( "$min_libgnutls_version" ) )
 
3571
+      {
 
3572
+        return 0;
 
3573
+      }
 
3574
+     else
 
3575
+      {
 
3576
+        printf("no\n*** An old version of LIBGNUTLS (%s) was found.\n",
 
3577
+                gnutls_check_version(NULL) );
 
3578
+        printf("*** You need a version of LIBGNUTLS newer than %s. The latest version of\n",
 
3579
+               "$min_libgnutls_version" );
 
3580
+        printf("*** LIBGNUTLS is always available from ftp://gnutls.hellug.gr/pub/gnutls.\n");
 
3581
+        printf("*** \n");
 
3582
+        printf("*** If you have already installed a sufficiently new version, this error\n");
 
3583
+        printf("*** probably means that the wrong copy of the libgnutls-config shell script is\n");
 
3584
+        printf("*** being found. The easiest way to fix this is to remove the old version\n");
 
3585
+        printf("*** of LIBGNUTLS, but you can also set the LIBGNUTLS_CONFIG environment to point to the\n");
 
3586
+        printf("*** correct copy of libgnutls-config. (In this case, you will have to\n");
 
3587
+        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
 
3588
+        printf("*** so that the correct libraries are found at run-time))\n");
 
3589
+      }
 
3590
+    }
 
3591
+  return 1;
 
3592
+}
 
3593
+
 
3594
+_ACEOF
 
3595
+rm -f conftest$ac_exeext
 
3596
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
3597
+  (eval $ac_link) 2>&5
 
3598
+  ac_status=$?
 
3599
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3600
+  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
 
3601
+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3602
+  (eval $ac_try) 2>&5
 
3603
+  ac_status=$?
 
3604
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3605
+  (exit $ac_status); }; }; then
 
3606
+  :
 
3607
+else
 
3608
+  echo "$as_me: program exited with status $ac_status" >&5
 
3609
+echo "$as_me: failed program was:" >&5
 
3610
+sed 's/^/| /' conftest.$ac_ext >&5
 
3611
+
 
3612
+( exit $ac_status )
 
3613
+no_libgnutls=yes
 
3614
+fi
 
3615
+rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
3616
+fi
 
3617
+       CFLAGS="$ac_save_CFLAGS"
 
3618
+       LIBS="$ac_save_LIBS"
 
3619
+  fi
 
3620
+
 
3621
+  if test "x$no_libgnutls" = x ; then
 
3622
+     echo "$as_me:$LINENO: result: yes" >&5
 
3623
+echo "${ECHO_T}yes" >&6
 
3624
+     have_gnutls="true"
 
3625
+  else
 
3626
+     if test -f conf.libgnutlstest ; then
 
3627
+        :
 
3628
+     else
 
3629
+        echo "$as_me:$LINENO: result: no" >&5
 
3630
+echo "${ECHO_T}no" >&6
 
3631
+     fi
 
3632
+     if test "$LIBGNUTLS_CONFIG" = "no" ; then
 
3633
+       echo "*** The libgnutls-config script installed by LIBGNUTLS could not be found"
 
3634
+       echo "*** If LIBGNUTLS was installed in PREFIX, make sure PREFIX/bin is in"
 
3635
+       echo "*** your path, or set the LIBGNUTLS_CONFIG environment variable to the"
 
3636
+       echo "*** full path to libgnutls-config."
 
3637
+     else
 
3638
+       if test -f conf.libgnutlstest ; then
 
3639
+        :
 
3640
+       else
 
3641
+          echo "*** Could not run libgnutls test program, checking why..."
 
3642
+          CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"
 
3643
+          LIBS="$LIBS $LIBGNUTLS_LIBS"
 
3644
+          cat >conftest.$ac_ext <<_ACEOF
 
3645
+/* confdefs.h.  */
 
3646
+_ACEOF
 
3647
+cat confdefs.h >>conftest.$ac_ext
 
3648
+cat >>conftest.$ac_ext <<_ACEOF
 
3649
+/* end confdefs.h.  */
 
3650
+
 
3651
+#include <stdio.h>
 
3652
+#include <stdlib.h>
 
3653
+#include <string.h>
 
3654
+#include <gnutls/gnutls.h>
 
3655
+
 
3656
+int
 
3657
+main ()
 
3658
+{
 
3659
+ return !!gnutls_check_version(NULL);
 
3660
+  ;
 
3661
+  return 0;
 
3662
+}
 
3663
+_ACEOF
 
3664
+rm -f conftest.$ac_objext conftest$ac_exeext
 
3665
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
3666
+  (eval $ac_link) 2>conftest.er1
 
3667
+  ac_status=$?
 
3668
+  grep -v '^ *+' conftest.er1 >conftest.err
 
3669
+  rm -f conftest.er1
 
3670
+  cat conftest.err >&5
 
3671
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3672
+  (exit $ac_status); } &&
 
3673
+        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
3674
+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3675
+  (eval $ac_try) 2>&5
 
3676
+  ac_status=$?
 
3677
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3678
+  (exit $ac_status); }; } &&
 
3679
+        { ac_try='test -s conftest$ac_exeext'
 
3680
+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3681
+  (eval $ac_try) 2>&5
 
3682
+  ac_status=$?
 
3683
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3684
+  (exit $ac_status); }; }; then
 
3685
+   echo "*** The test program compiled, but did not run. This usually means"
 
3686
+          echo "*** that the run-time linker is not finding LIBGNUTLS or finding the wrong"
 
3687
+          echo "*** version of LIBGNUTLS. If it is not finding LIBGNUTLS, you'll need to set your"
 
3688
+          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
 
3689
+          echo "*** to the installed location  Also, make sure you have run ldconfig if that"
 
3690
+          echo "*** is required on your system"
 
3691
+          echo "***"
 
3692
+          echo "*** If you have an old version installed, it is best to remove it, although"
 
3693
+          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
 
3694
+          echo "***"
 
3695
+else
 
3696
+  echo "$as_me: failed program was:" >&5
 
3697
+sed 's/^/| /' conftest.$ac_ext >&5
 
3698
+
 
3699
+ echo "*** The test program failed to compile or link. See the file config.log for the"
 
3700
+          echo "*** exact error that occured. This usually means LIBGNUTLS was incorrectly installed"
 
3701
+          echo "*** or that you have moved LIBGNUTLS since it was installed. In the latter case, you"
 
3702
+          echo "*** may want to edit the libgnutls-config script: $LIBGNUTLS_CONFIG"
 
3703
+fi
 
3704
+rm -f conftest.err conftest.$ac_objext \
 
3705
+      conftest$ac_exeext conftest.$ac_ext
 
3706
+          CFLAGS="$ac_save_CFLAGS"
 
3707
+          LIBS="$ac_save_LIBS"
 
3708
+       fi
 
3709
+     fi
 
3710
+     LIBGNUTLS_CFLAGS=""
 
3711
+     LIBGNUTLS_LIBS=""
 
3712
+     have_gnutls="false"
 
3713
+  fi
 
3714
+  rm -f conf.libgnutlstest
 
3715
+
 
3716
+
 
3717
+
 
3718
+
 
3719
+cat >>confdefs.h <<\_ACEOF
 
3720
+#define HAVE_GNUTLS
 
3721
+_ACEOF
 
3722
+
 
3723
+fi
 
3724
+
 
3725
+
 
3726
+if test "x$have_gnutls" = "xtrue"; then
 
3727
+  HAVE_GNUTLS_TRUE=
 
3728
+  HAVE_GNUTLS_FALSE='#'
 
3729
+else
 
3730
+  HAVE_GNUTLS_TRUE='#'
 
3731
+  HAVE_GNUTLS_FALSE=
 
3732
+fi
 
3733
 
 
3734
 
 
3735
 case "$host_os" in
 
3736
@@ -27557,6 +27834,13 @@
 
3737
 Usually this means the macro was only invoked conditionally." >&2;}
 
3738
    { (exit 1); exit 1; }; }
 
3739
 fi
 
3740
+if test -z "${HAVE_GNUTLS_TRUE}" && test -z "${HAVE_GNUTLS_FALSE}"; then
 
3741
+  { { echo "$as_me:$LINENO: error: conditional \"HAVE_GNUTLS\" was never defined.
 
3742
+Usually this means the macro was only invoked conditionally." >&5
 
3743
+echo "$as_me: error: conditional \"HAVE_GNUTLS\" was never defined.
 
3744
+Usually this means the macro was only invoked conditionally." >&2;}
 
3745
+   { (exit 1); exit 1; }; }
 
3746
+fi
 
3747
 if test -z "${BUILD_TEXTUI_TRUE}" && test -z "${BUILD_TEXTUI_FALSE}"; then
 
3748
   { { echo "$as_me:$LINENO: error: conditional \"BUILD_TEXTUI\" was never defined.
 
3749
 Usually this means the macro was only invoked conditionally." >&5
 
3750
@@ -28246,6 +28530,11 @@
 
3751
 s,@LIBTOOL@,$LIBTOOL,;t t
 
3752
 s,@sedpath@,$sedpath,;t t
 
3753
 s,@perlpath@,$perlpath,;t t
 
3754
+s,@LIBGNUTLS_CONFIG@,$LIBGNUTLS_CONFIG,;t t
 
3755
+s,@LIBGNUTLS_CFLAGS@,$LIBGNUTLS_CFLAGS,;t t
 
3756
+s,@LIBGNUTLS_LIBS@,$LIBGNUTLS_LIBS,;t t
 
3757
+s,@HAVE_GNUTLS_TRUE@,$HAVE_GNUTLS_TRUE,;t t
 
3758
+s,@HAVE_GNUTLS_FALSE@,$HAVE_GNUTLS_FALSE,;t t
 
3759
 s,@GLIB_CFLAGS@,$GLIB_CFLAGS,;t t
 
3760
 s,@GLIB_LIBS@,$GLIB_LIBS,;t t
 
3761
 s,@GLIB_CONFIG@,$GLIB_CONFIG,;t t
 
3762
diff -urNad --exclude=CVS --exclude=.svn ./docs/help/in/Makefile /tmp/dpep-work.mDzhRz/irssi/docs/help/in/Makefile
 
3763
--- ./docs/help/in/Makefile     1970-01-01 02:00:00.000000000 +0200
 
3764
+++ /tmp/dpep-work.mDzhRz/irssi/docs/help/in/Makefile   2005-07-17 16:48:40.000000000 +0300
 
3765
@@ -0,0 +1,500 @@
 
3766
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
3767
+# docs/help/in/Makefile.  Generated from Makefile.in by configure.
 
3768
+
 
3769
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
3770
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
3771
+# This Makefile.in is free software; the Free Software Foundation
 
3772
+# gives unlimited permission to copy and/or distribute it,
 
3773
+# with or without modifications, as long as this notice is preserved.
 
3774
+
 
3775
+# This program is distributed in the hope that it will be useful,
 
3776
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
3777
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
3778
+# PARTICULAR PURPOSE.
 
3779
+
 
3780
+
 
3781
+
 
3782
+# Makefile.am is autogenerated by autogen.sh from Makefile.am.gen
 
3783
+srcdir = .
 
3784
+top_srcdir = ../../..
 
3785
+
 
3786
+pkgdatadir = $(datadir)/irssi
 
3787
+pkglibdir = $(libdir)/irssi
 
3788
+pkgincludedir = $(includedir)/irssi
 
3789
+top_builddir = ../../..
 
3790
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
3791
+INSTALL = /usr/bin/install -c
 
3792
+install_sh_DATA = $(install_sh) -c -m 644
 
3793
+install_sh_PROGRAM = $(install_sh) -c
 
3794
+install_sh_SCRIPT = $(install_sh) -c
 
3795
+INSTALL_HEADER = $(INSTALL_DATA)
 
3796
+transform = $(program_transform_name)
 
3797
+NORMAL_INSTALL = :
 
3798
+PRE_INSTALL = :
 
3799
+POST_INSTALL = :
 
3800
+NORMAL_UNINSTALL = :
 
3801
+PRE_UNINSTALL = :
 
3802
+POST_UNINSTALL = :
 
3803
+build_triplet = i686-pc-linux-gnu
 
3804
+host_triplet = i686-pc-linux-gnu
 
3805
+subdir = docs/help/in
 
3806
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
3807
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
3808
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
3809
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
3810
+       $(top_srcdir)/configure.in
 
3811
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
3812
+       $(ACLOCAL_M4)
 
3813
+mkinstalldirs = $(install_sh) -d
 
3814
+CONFIG_HEADER = $(top_builddir)/config.h
 
3815
+CONFIG_CLEAN_FILES =
 
3816
+SOURCES =
 
3817
+DIST_SOURCES =
 
3818
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
3819
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
3820
+AMDEP_FALSE = #
 
3821
+AMDEP_TRUE = 
 
3822
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
3823
+AR = ar
 
3824
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
3825
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
3826
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
3827
+AWK = gawk
 
3828
+BUILD_IRSSIBOT_FALSE = 
 
3829
+BUILD_IRSSIBOT_TRUE = #
 
3830
+BUILD_IRSSIPROXY_FALSE = 
 
3831
+BUILD_IRSSIPROXY_TRUE = #
 
3832
+BUILD_PLUGINS_FALSE = 
 
3833
+BUILD_PLUGINS_TRUE = #
 
3834
+BUILD_TEXTUI_FALSE = #
 
3835
+BUILD_TEXTUI_TRUE = 
 
3836
+CC = gcc
 
3837
+CCDEPMODE = depmode=gcc3
 
3838
+CFLAGS = -g -O2 -Wall  
 
3839
+CHAT_MODULES = irc
 
3840
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
3841
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
3842
+CPP = gcc -E
 
3843
+CPPFLAGS = 
 
3844
+CURSES_INCLUDEDIR = 
 
3845
+CURSES_LIBS = -lncurses
 
3846
+CXX = g++
 
3847
+CXXCPP = g++ -E
 
3848
+CXXDEPMODE = depmode=gcc3
 
3849
+CXXFLAGS = -g -O2
 
3850
+CYGPATH_W = echo
 
3851
+DEFS = -DHAVE_CONFIG_H
 
3852
+DEPDIR = .deps
 
3853
+DYNALOADER_A = 
 
3854
+ECHO = echo
 
3855
+ECHO_C = 
 
3856
+ECHO_N = -n
 
3857
+ECHO_T = 
 
3858
+EGREP = grep -E
 
3859
+EXEEXT = 
 
3860
+F77 = 
 
3861
+FFLAGS = 
 
3862
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
3863
+GLIB_CONFIG = 
 
3864
+GLIB_GENMARSHAL = glib-genmarshal
 
3865
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
3866
+GLIB_MKENUMS = glib-mkenums
 
3867
+GOBJECT_QUERY = gobject-query
 
3868
+HAVE_GNUTLS_FALSE = #
 
3869
+HAVE_GNUTLS_TRUE = 
 
3870
+HAVE_PERL_FALSE = #
 
3871
+HAVE_PERL_TRUE = 
 
3872
+HAVE_STATIC_PERL_FALSE = #
 
3873
+HAVE_STATIC_PERL_TRUE = 
 
3874
+INSTALL_DATA = ${INSTALL} -m 644
 
3875
+INSTALL_PROGRAM = ${INSTALL}
 
3876
+INSTALL_SCRIPT = ${INSTALL}
 
3877
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
3878
+LDFLAGS = 
 
3879
+LIBGNUTLS_CFLAGS = -I/usr/include
 
3880
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
3881
+LIBGNUTLS_LIBS = -lgnutls
 
3882
+LIBOBJS = 
 
3883
+LIBPERL_A = 
 
3884
+LIBS = 
 
3885
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
3886
+LN_S = ln -s
 
3887
+LTLIBOBJS = 
 
3888
+MAINT = 
 
3889
+MAINTAINER_MODE_FALSE = #
 
3890
+MAINTAINER_MODE_TRUE = 
 
3891
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
3892
+NEED_TPARM_FALSE = 
 
3893
+NEED_TPARM_TRUE = #
 
3894
+OBJEXT = o
 
3895
+PACKAGE = irssi
 
3896
+PACKAGE_BUGREPORT = 
 
3897
+PACKAGE_NAME = 
 
3898
+PACKAGE_STRING = 
 
3899
+PACKAGE_TARNAME = 
 
3900
+PACKAGE_VERSION = 
 
3901
+PATH_SEPARATOR = :
 
3902
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
3903
+PERL_EXTRA_OPTS = 
 
3904
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
3905
+PERL_LDFLAGS = 
 
3906
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
3907
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
3908
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
3909
+PERL_MM_PARAMS = 
 
3910
+PERL_STATIC_LIBS = 0
 
3911
+PERL_USE_LIB = 
 
3912
+PKG_CONFIG = /usr/bin/pkg-config
 
3913
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
3914
+RANLIB = ranlib
 
3915
+SET_MAKE = 
 
3916
+SHELL = /bin/sh
 
3917
+SSL_CFLAGS =  
 
3918
+SSL_LIBS = -lssl -lcrypto -ldl  
 
3919
+STRIP = strip
 
3920
+TEXTUI_LIBS = -lncurses
 
3921
+USE_CURSES_FALSE = 
 
3922
+USE_CURSES_TRUE = #
 
3923
+VERSION = 0.8.10-rc5
 
3924
+VERSION_DATE = 20050717
 
3925
+VERSION_TIME = 1223
 
3926
+ac_ct_AR = ar
 
3927
+ac_ct_CC = gcc
 
3928
+ac_ct_CXX = g++
 
3929
+ac_ct_F77 = 
 
3930
+ac_ct_RANLIB = ranlib
 
3931
+ac_ct_STRIP = strip
 
3932
+ac_pt_PKG_CONFIG = 
 
3933
+am__fastdepCC_FALSE = #
 
3934
+am__fastdepCC_TRUE = 
 
3935
+am__fastdepCXX_FALSE = #
 
3936
+am__fastdepCXX_TRUE = 
 
3937
+am__include = include
 
3938
+am__leading_dot = .
 
3939
+am__quote = 
 
3940
+am__tar = ${AMTAR} chof - "$$tardir"
 
3941
+am__untar = ${AMTAR} xf -
 
3942
+bindir = ${exec_prefix}/bin
 
3943
+build = i686-pc-linux-gnu
 
3944
+build_alias = 
 
3945
+build_cpu = i686
 
3946
+build_os = linux-gnu
 
3947
+build_vendor = pc
 
3948
+datadir = ${prefix}/share
 
3949
+exec_prefix = ${prefix}
 
3950
+host = i686-pc-linux-gnu
 
3951
+host_alias = 
 
3952
+host_cpu = i686
 
3953
+host_os = linux-gnu
 
3954
+host_vendor = pc
 
3955
+includedir = ${prefix}/include
 
3956
+infodir = ${prefix}/info
 
3957
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
3958
+irc_MODULES = dcc flood notifylist
 
3959
+libdir = ${exec_prefix}/lib
 
3960
+libexecdir = ${exec_prefix}/libexec
 
3961
+localstatedir = ${prefix}/var
 
3962
+mandir = ${prefix}/man
 
3963
+mkdir_p = mkdir -p --
 
3964
+oldincludedir = /usr/include
 
3965
+perl_module_fe_lib = 
 
3966
+perl_module_lib = 
 
3967
+perl_static_fe_lib = libfe_perl_static.la
 
3968
+perl_static_lib = libperl_core_static.la
 
3969
+perlpath = /usr/bin/perl
 
3970
+prefix = /usr/local
 
3971
+program_transform_name = s,x,x,
 
3972
+sbindir = ${exec_prefix}/sbin
 
3973
+sedpath = /bin/sed
 
3974
+sharedstatedir = ${prefix}/com
 
3975
+sysconfdir = ${prefix}/etc
 
3976
+target_alias = 
 
3977
+EXTRA_DIST = \
 
3978
+       Makefile.am.gen \
 
3979
+       action.in \
 
3980
+       admin.in \
 
3981
+       alias.in \
 
3982
+       away.in \
 
3983
+       ban.in \
 
3984
+       beep.in \
 
3985
+       bind.in \
 
3986
+       cat.in \
 
3987
+       cd.in \
 
3988
+       channel.in \
 
3989
+       clear.in \
 
3990
+       completion.in \
 
3991
+       connect.in \
 
3992
+       ctcp.in \
 
3993
+       cycle.in \
 
3994
+       date.in \
 
3995
+       dcc.in \
 
3996
+       dehilight.in \
 
3997
+       deop.in \
 
3998
+       devoice.in \
 
3999
+       die.in \
 
4000
+       disconnect.in \
 
4001
+       echo.in \
 
4002
+       eval.in \
 
4003
+       exec.in \
 
4004
+       flushbuffer.in \
 
4005
+       flushbuffers.in \
 
4006
+       format.in \
 
4007
+       hash.in \
 
4008
+       help.in \
 
4009
+       hilight.in \
 
4010
+       ignore.in \
 
4011
+       info.in \
 
4012
+       invite.in \
 
4013
+       invitelist.in \
 
4014
+       ircnet.in \
 
4015
+       ison.in \
 
4016
+       join.in \
 
4017
+       kickban.in \
 
4018
+       kick.in \
 
4019
+       kill.in \
 
4020
+       knock.in \
 
4021
+       knockout.in \
 
4022
+       lastlog.in \
 
4023
+       layout.in \
 
4024
+       levels.in \
 
4025
+       links.in \
 
4026
+       list.in \
 
4027
+       load.in \
 
4028
+       log.in \
 
4029
+       lusers.in \
 
4030
+       map.in \
 
4031
+       me.in \
 
4032
+       mircdcc.in \
 
4033
+       mode.in \
 
4034
+       motd.in \
 
4035
+       msg.in \
 
4036
+       names.in \
 
4037
+       nctcp.in \
 
4038
+       netsplit.in \
 
4039
+       network.in \
 
4040
+       nick.in \
 
4041
+       note.in \
 
4042
+       notice.in \
 
4043
+       notify.in \
 
4044
+       oper.in \
 
4045
+       op.in \
 
4046
+       part.in \
 
4047
+       ping.in \
 
4048
+       query.in \
 
4049
+       quit.in \
 
4050
+       quote.in \
 
4051
+       rawlog.in \
 
4052
+       recode.in \
 
4053
+       reconnect.in \
 
4054
+       rehash.in \
 
4055
+       reload.in \
 
4056
+       restart.in \
 
4057
+       rmreconns.in \
 
4058
+       rmrejoins.in \
 
4059
+       rping.in \
 
4060
+       save.in \
 
4061
+       say.in \
 
4062
+       sconnect.in \
 
4063
+       script.in \
 
4064
+       scrollback.in \
 
4065
+       server.in \
 
4066
+       servlist.in \
 
4067
+       set.in \
 
4068
+       silence.in \
 
4069
+       squery.in \
 
4070
+       squit.in \
 
4071
+       stats.in \
 
4072
+       statusbar.in \
 
4073
+       time.in \
 
4074
+       toggle.in \
 
4075
+       topic.in \
 
4076
+       trace.in \
 
4077
+       ts.in \
 
4078
+       unalias.in \
 
4079
+       unban.in \
 
4080
+       unignore.in \
 
4081
+       unload.in \
 
4082
+       unnotify.in \
 
4083
+       unquery.in \
 
4084
+       unsilence.in \
 
4085
+       upgrade.in \
 
4086
+       uping.in \
 
4087
+       userhost.in \
 
4088
+       ver.in \
 
4089
+       version.in \
 
4090
+       voice.in \
 
4091
+       wait.in \
 
4092
+       wallchops.in \
 
4093
+       wall.in \
 
4094
+       wallops.in \
 
4095
+       watch.in \
 
4096
+       who.in \
 
4097
+       whois.in \
 
4098
+       whowas.in \
 
4099
+       window.in \
 
4100
+       wjoin.in \
 
4101
+       wquery.in
 
4102
+
 
4103
+all: all-am
 
4104
+
 
4105
+.SUFFIXES:
 
4106
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
4107
+       @for dep in $?; do \
 
4108
+         case '$(am__configure_deps)' in \
 
4109
+           *$$dep*) \
 
4110
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
4111
+               && exit 0; \
 
4112
+             exit 1;; \
 
4113
+         esac; \
 
4114
+       done; \
 
4115
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  docs/help/in/Makefile'; \
 
4116
+       cd $(top_srcdir) && \
 
4117
+         $(AUTOMAKE) --gnu  docs/help/in/Makefile
 
4118
+.PRECIOUS: Makefile
 
4119
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
4120
+       @case '$?' in \
 
4121
+         *config.status*) \
 
4122
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
4123
+         *) \
 
4124
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
4125
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
4126
+       esac;
 
4127
+
 
4128
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
4129
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
4130
+
 
4131
+$(top_srcdir)/configure:  $(am__configure_deps)
 
4132
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
4133
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
4134
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
4135
+
 
4136
+mostlyclean-libtool:
 
4137
+       -rm -f *.lo
 
4138
+
 
4139
+clean-libtool:
 
4140
+       -rm -rf .libs _libs
 
4141
+
 
4142
+distclean-libtool:
 
4143
+       -rm -f libtool
 
4144
+uninstall-info-am:
 
4145
+tags: TAGS
 
4146
+TAGS:
 
4147
+
 
4148
+ctags: CTAGS
 
4149
+CTAGS:
 
4150
+
 
4151
+
 
4152
+distdir: $(DISTFILES)
 
4153
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
4154
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
4155
+       list='$(DISTFILES)'; for file in $$list; do \
 
4156
+         case $$file in \
 
4157
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
4158
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
4159
+         esac; \
 
4160
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
4161
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
4162
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
4163
+           dir="/$$dir"; \
 
4164
+           $(mkdir_p) "$(distdir)$$dir"; \
 
4165
+         else \
 
4166
+           dir=''; \
 
4167
+         fi; \
 
4168
+         if test -d $$d/$$file; then \
 
4169
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
4170
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
4171
+           fi; \
 
4172
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
4173
+         else \
 
4174
+           test -f $(distdir)/$$file \
 
4175
+           || cp -p $$d/$$file $(distdir)/$$file \
 
4176
+           || exit 1; \
 
4177
+         fi; \
 
4178
+       done
 
4179
+check-am: all-am
 
4180
+check: check-am
 
4181
+all-am: Makefile
 
4182
+installdirs:
 
4183
+install: install-am
 
4184
+install-exec: install-exec-am
 
4185
+install-data: install-data-am
 
4186
+uninstall: uninstall-am
 
4187
+
 
4188
+install-am: all-am
 
4189
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
4190
+
 
4191
+installcheck: installcheck-am
 
4192
+install-strip:
 
4193
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
4194
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
4195
+         `test -z '$(STRIP)' || \
 
4196
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
4197
+mostlyclean-generic:
 
4198
+
 
4199
+clean-generic:
 
4200
+
 
4201
+distclean-generic:
 
4202
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
4203
+
 
4204
+maintainer-clean-generic:
 
4205
+       @echo "This command is intended for maintainers to use"
 
4206
+       @echo "it deletes files that may require special tools to rebuild."
 
4207
+clean: clean-am
 
4208
+
 
4209
+clean-am: clean-generic clean-libtool mostlyclean-am
 
4210
+
 
4211
+distclean: distclean-am
 
4212
+       -rm -f Makefile
 
4213
+distclean-am: clean-am distclean-generic distclean-libtool
 
4214
+
 
4215
+dvi: dvi-am
 
4216
+
 
4217
+dvi-am:
 
4218
+
 
4219
+html: html-am
 
4220
+
 
4221
+info: info-am
 
4222
+
 
4223
+info-am:
 
4224
+
 
4225
+install-data-am:
 
4226
+
 
4227
+install-exec-am:
 
4228
+
 
4229
+install-info: install-info-am
 
4230
+
 
4231
+install-man:
 
4232
+
 
4233
+installcheck-am:
 
4234
+
 
4235
+maintainer-clean: maintainer-clean-am
 
4236
+       -rm -f Makefile
 
4237
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
4238
+
 
4239
+mostlyclean: mostlyclean-am
 
4240
+
 
4241
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
4242
+
 
4243
+pdf: pdf-am
 
4244
+
 
4245
+pdf-am:
 
4246
+
 
4247
+ps: ps-am
 
4248
+
 
4249
+ps-am:
 
4250
+
 
4251
+uninstall-am: uninstall-info-am
 
4252
+
 
4253
+.PHONY: all all-am check check-am clean clean-generic clean-libtool \
 
4254
+       distclean distclean-generic distclean-libtool distdir dvi \
 
4255
+       dvi-am html html-am info info-am install install-am \
 
4256
+       install-data install-data-am install-exec install-exec-am \
 
4257
+       install-info install-info-am install-man install-strip \
 
4258
+       installcheck installcheck-am installdirs maintainer-clean \
 
4259
+       maintainer-clean-generic mostlyclean mostlyclean-generic \
 
4260
+       mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
 
4261
+       uninstall-info-am
 
4262
+
 
4263
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
4264
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
4265
+.NOEXPORT:
 
4266
diff -urNad --exclude=CVS --exclude=.svn ./docs/help/in/Makefile.in /tmp/dpep-work.mDzhRz/irssi/docs/help/in/Makefile.in
 
4267
--- ./docs/help/in/Makefile.in  2005-07-17 16:30:30.000000000 +0300
 
4268
+++ /tmp/dpep-work.mDzhRz/irssi/docs/help/in/Makefile.in        2005-07-17 16:48:05.000000000 +0300
 
4269
@@ -100,6 +100,8 @@
 
4270
 GLIB_LIBS = @GLIB_LIBS@
 
4271
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
4272
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
4273
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
4274
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
4275
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
4276
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
4277
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
4278
@@ -109,6 +111,9 @@
 
4279
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
4280
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
4281
 LDFLAGS = @LDFLAGS@
 
4282
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
4283
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
4284
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
4285
 LIBOBJS = @LIBOBJS@
 
4286
 LIBPERL_A = @LIBPERL_A@
 
4287
 LIBS = @LIBS@
 
4288
diff -urNad --exclude=CVS --exclude=.svn ./docs/help/Makefile /tmp/dpep-work.mDzhRz/irssi/docs/help/Makefile
 
4289
--- ./docs/help/Makefile        1970-01-01 02:00:00.000000000 +0200
 
4290
+++ /tmp/dpep-work.mDzhRz/irssi/docs/help/Makefile      2005-07-17 16:48:40.000000000 +0300
 
4291
@@ -0,0 +1,693 @@
 
4292
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
4293
+# docs/help/Makefile.  Generated from Makefile.in by configure.
 
4294
+
 
4295
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
4296
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
4297
+# This Makefile.in is free software; the Free Software Foundation
 
4298
+# gives unlimited permission to copy and/or distribute it,
 
4299
+# with or without modifications, as long as this notice is preserved.
 
4300
+
 
4301
+# This program is distributed in the hope that it will be useful,
 
4302
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
4303
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
4304
+# PARTICULAR PURPOSE.
 
4305
+
 
4306
+
 
4307
+
 
4308
+# Makefile.am is autogenerated by autogen.sh from Makefile.am.gen
 
4309
+
 
4310
+srcdir = .
 
4311
+top_srcdir = ../..
 
4312
+
 
4313
+pkgdatadir = $(datadir)/irssi
 
4314
+pkglibdir = $(libdir)/irssi
 
4315
+pkgincludedir = $(includedir)/irssi
 
4316
+top_builddir = ../..
 
4317
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
4318
+INSTALL = /usr/bin/install -c
 
4319
+install_sh_DATA = $(install_sh) -c -m 644
 
4320
+install_sh_PROGRAM = $(install_sh) -c
 
4321
+install_sh_SCRIPT = $(install_sh) -c
 
4322
+INSTALL_HEADER = $(INSTALL_DATA)
 
4323
+transform = $(program_transform_name)
 
4324
+NORMAL_INSTALL = :
 
4325
+PRE_INSTALL = :
 
4326
+POST_INSTALL = :
 
4327
+NORMAL_UNINSTALL = :
 
4328
+PRE_UNINSTALL = :
 
4329
+POST_UNINSTALL = :
 
4330
+build_triplet = i686-pc-linux-gnu
 
4331
+host_triplet = i686-pc-linux-gnu
 
4332
+subdir = docs/help
 
4333
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
4334
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
4335
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
4336
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
4337
+       $(top_srcdir)/configure.in
 
4338
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
4339
+       $(ACLOCAL_M4)
 
4340
+mkinstalldirs = $(install_sh) -d
 
4341
+CONFIG_HEADER = $(top_builddir)/config.h
 
4342
+CONFIG_CLEAN_FILES =
 
4343
+SOURCES =
 
4344
+DIST_SOURCES =
 
4345
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
4346
+       html-recursive info-recursive install-data-recursive \
 
4347
+       install-exec-recursive install-info-recursive \
 
4348
+       install-recursive installcheck-recursive installdirs-recursive \
 
4349
+       pdf-recursive ps-recursive uninstall-info-recursive \
 
4350
+       uninstall-recursive
 
4351
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
4352
+am__vpath_adj = case $$p in \
 
4353
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
4354
+    *) f=$$p;; \
 
4355
+  esac;
 
4356
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
4357
+am__installdirs = "$(DESTDIR)$(helpdir)"
 
4358
+helpDATA_INSTALL = $(INSTALL_DATA)
 
4359
+DATA = $(help_DATA)
 
4360
+ETAGS = etags
 
4361
+CTAGS = ctags
 
4362
+DIST_SUBDIRS = $(SUBDIRS)
 
4363
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
4364
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
4365
+AMDEP_FALSE = #
 
4366
+AMDEP_TRUE = 
 
4367
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
4368
+AR = ar
 
4369
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
4370
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
4371
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
4372
+AWK = gawk
 
4373
+BUILD_IRSSIBOT_FALSE = 
 
4374
+BUILD_IRSSIBOT_TRUE = #
 
4375
+BUILD_IRSSIPROXY_FALSE = 
 
4376
+BUILD_IRSSIPROXY_TRUE = #
 
4377
+BUILD_PLUGINS_FALSE = 
 
4378
+BUILD_PLUGINS_TRUE = #
 
4379
+BUILD_TEXTUI_FALSE = #
 
4380
+BUILD_TEXTUI_TRUE = 
 
4381
+CC = gcc
 
4382
+CCDEPMODE = depmode=gcc3
 
4383
+CFLAGS = -g -O2 -Wall  
 
4384
+CHAT_MODULES = irc
 
4385
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
4386
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
4387
+CPP = gcc -E
 
4388
+CPPFLAGS = 
 
4389
+CURSES_INCLUDEDIR = 
 
4390
+CURSES_LIBS = -lncurses
 
4391
+CXX = g++
 
4392
+CXXCPP = g++ -E
 
4393
+CXXDEPMODE = depmode=gcc3
 
4394
+CXXFLAGS = -g -O2
 
4395
+CYGPATH_W = echo
 
4396
+DEFS = -DHAVE_CONFIG_H
 
4397
+DEPDIR = .deps
 
4398
+DYNALOADER_A = 
 
4399
+ECHO = echo
 
4400
+ECHO_C = 
 
4401
+ECHO_N = -n
 
4402
+ECHO_T = 
 
4403
+EGREP = grep -E
 
4404
+EXEEXT = 
 
4405
+F77 = 
 
4406
+FFLAGS = 
 
4407
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
4408
+GLIB_CONFIG = 
 
4409
+GLIB_GENMARSHAL = glib-genmarshal
 
4410
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
4411
+GLIB_MKENUMS = glib-mkenums
 
4412
+GOBJECT_QUERY = gobject-query
 
4413
+HAVE_GNUTLS_FALSE = #
 
4414
+HAVE_GNUTLS_TRUE = 
 
4415
+HAVE_PERL_FALSE = #
 
4416
+HAVE_PERL_TRUE = 
 
4417
+HAVE_STATIC_PERL_FALSE = #
 
4418
+HAVE_STATIC_PERL_TRUE = 
 
4419
+INSTALL_DATA = ${INSTALL} -m 644
 
4420
+INSTALL_PROGRAM = ${INSTALL}
 
4421
+INSTALL_SCRIPT = ${INSTALL}
 
4422
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
4423
+LDFLAGS = 
 
4424
+LIBGNUTLS_CFLAGS = -I/usr/include
 
4425
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
4426
+LIBGNUTLS_LIBS = -lgnutls
 
4427
+LIBOBJS = 
 
4428
+LIBPERL_A = 
 
4429
+LIBS = 
 
4430
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
4431
+LN_S = ln -s
 
4432
+LTLIBOBJS = 
 
4433
+MAINT = 
 
4434
+MAINTAINER_MODE_FALSE = #
 
4435
+MAINTAINER_MODE_TRUE = 
 
4436
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
4437
+NEED_TPARM_FALSE = 
 
4438
+NEED_TPARM_TRUE = #
 
4439
+OBJEXT = o
 
4440
+PACKAGE = irssi
 
4441
+PACKAGE_BUGREPORT = 
 
4442
+PACKAGE_NAME = 
 
4443
+PACKAGE_STRING = 
 
4444
+PACKAGE_TARNAME = 
 
4445
+PACKAGE_VERSION = 
 
4446
+PATH_SEPARATOR = :
 
4447
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
4448
+PERL_EXTRA_OPTS = 
 
4449
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
4450
+PERL_LDFLAGS = 
 
4451
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
4452
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
4453
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
4454
+PERL_MM_PARAMS = 
 
4455
+PERL_STATIC_LIBS = 0
 
4456
+PERL_USE_LIB = 
 
4457
+PKG_CONFIG = /usr/bin/pkg-config
 
4458
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
4459
+RANLIB = ranlib
 
4460
+SET_MAKE = 
 
4461
+SHELL = /bin/sh
 
4462
+SSL_CFLAGS =  
 
4463
+SSL_LIBS = -lssl -lcrypto -ldl  
 
4464
+STRIP = strip
 
4465
+TEXTUI_LIBS = -lncurses
 
4466
+USE_CURSES_FALSE = 
 
4467
+USE_CURSES_TRUE = #
 
4468
+VERSION = 0.8.10-rc5
 
4469
+VERSION_DATE = 20050717
 
4470
+VERSION_TIME = 1223
 
4471
+ac_ct_AR = ar
 
4472
+ac_ct_CC = gcc
 
4473
+ac_ct_CXX = g++
 
4474
+ac_ct_F77 = 
 
4475
+ac_ct_RANLIB = ranlib
 
4476
+ac_ct_STRIP = strip
 
4477
+ac_pt_PKG_CONFIG = 
 
4478
+am__fastdepCC_FALSE = #
 
4479
+am__fastdepCC_TRUE = 
 
4480
+am__fastdepCXX_FALSE = #
 
4481
+am__fastdepCXX_TRUE = 
 
4482
+am__include = include
 
4483
+am__leading_dot = .
 
4484
+am__quote = 
 
4485
+am__tar = ${AMTAR} chof - "$$tardir"
 
4486
+am__untar = ${AMTAR} xf -
 
4487
+bindir = ${exec_prefix}/bin
 
4488
+build = i686-pc-linux-gnu
 
4489
+build_alias = 
 
4490
+build_cpu = i686
 
4491
+build_os = linux-gnu
 
4492
+build_vendor = pc
 
4493
+datadir = ${prefix}/share
 
4494
+exec_prefix = ${prefix}
 
4495
+host = i686-pc-linux-gnu
 
4496
+host_alias = 
 
4497
+host_cpu = i686
 
4498
+host_os = linux-gnu
 
4499
+host_vendor = pc
 
4500
+includedir = ${prefix}/include
 
4501
+infodir = ${prefix}/info
 
4502
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
4503
+irc_MODULES = dcc flood notifylist
 
4504
+libdir = ${exec_prefix}/lib
 
4505
+libexecdir = ${exec_prefix}/libexec
 
4506
+localstatedir = ${prefix}/var
 
4507
+mandir = ${prefix}/man
 
4508
+mkdir_p = mkdir -p --
 
4509
+oldincludedir = /usr/include
 
4510
+perl_module_fe_lib = 
 
4511
+perl_module_lib = 
 
4512
+perl_static_fe_lib = libfe_perl_static.la
 
4513
+perl_static_lib = libperl_core_static.la
 
4514
+perlpath = /usr/bin/perl
 
4515
+prefix = /usr/local
 
4516
+program_transform_name = s,x,x,
 
4517
+sbindir = ${exec_prefix}/sbin
 
4518
+sedpath = /bin/sed
 
4519
+sharedstatedir = ${prefix}/com
 
4520
+sysconfdir = ${prefix}/etc
 
4521
+target_alias = 
 
4522
+helpdir = $(datadir)/irssi/help
 
4523
+help_DATA = \
 
4524
+       action \
 
4525
+       admin \
 
4526
+       alias \
 
4527
+       away \
 
4528
+       ban \
 
4529
+       beep \
 
4530
+       bind \
 
4531
+       cat \
 
4532
+       cd \
 
4533
+       channel \
 
4534
+       clear \
 
4535
+       completion \
 
4536
+       connect \
 
4537
+       ctcp \
 
4538
+       cycle \
 
4539
+       date \
 
4540
+       dcc \
 
4541
+       dehilight \
 
4542
+       deop \
 
4543
+       devoice \
 
4544
+       die \
 
4545
+       disconnect \
 
4546
+       echo \
 
4547
+       eval \
 
4548
+       exec \
 
4549
+       flushbuffer \
 
4550
+       flushbuffers \
 
4551
+       format \
 
4552
+       hash \
 
4553
+       help \
 
4554
+       hilight \
 
4555
+       ignore \
 
4556
+       info \
 
4557
+       invite \
 
4558
+       invitelist \
 
4559
+       ircnet \
 
4560
+       ison \
 
4561
+       join \
 
4562
+       kickban \
 
4563
+       kick \
 
4564
+       kill \
 
4565
+       knock \
 
4566
+       knockout \
 
4567
+       lastlog \
 
4568
+       layout \
 
4569
+       levels \
 
4570
+       links \
 
4571
+       list \
 
4572
+       load \
 
4573
+       log \
 
4574
+       lusers \
 
4575
+       map \
 
4576
+       me \
 
4577
+       mircdcc \
 
4578
+       mode \
 
4579
+       motd \
 
4580
+       msg \
 
4581
+       names \
 
4582
+       nctcp \
 
4583
+       netsplit \
 
4584
+       network \
 
4585
+       nick \
 
4586
+       note \
 
4587
+       notice \
 
4588
+       notify \
 
4589
+       oper \
 
4590
+       op \
 
4591
+       part \
 
4592
+       ping \
 
4593
+       query \
 
4594
+       quit \
 
4595
+       quote \
 
4596
+       rawlog \
 
4597
+       recode \
 
4598
+       reconnect \
 
4599
+       rehash \
 
4600
+       reload \
 
4601
+       restart \
 
4602
+       rmreconns \
 
4603
+       rmrejoins \
 
4604
+       rping \
 
4605
+       save \
 
4606
+       say \
 
4607
+       sconnect \
 
4608
+       script \
 
4609
+       scrollback \
 
4610
+       server \
 
4611
+       servlist \
 
4612
+       set \
 
4613
+       silence \
 
4614
+       squery \
 
4615
+       squit \
 
4616
+       stats \
 
4617
+       statusbar \
 
4618
+       time \
 
4619
+       toggle \
 
4620
+       topic \
 
4621
+       trace \
 
4622
+       ts \
 
4623
+       unalias \
 
4624
+       unban \
 
4625
+       unignore \
 
4626
+       unload \
 
4627
+       unnotify \
 
4628
+       unquery \
 
4629
+       unsilence \
 
4630
+       upgrade \
 
4631
+       uping \
 
4632
+       userhost \
 
4633
+       ver \
 
4634
+       version \
 
4635
+       voice \
 
4636
+       wait \
 
4637
+       wallchops \
 
4638
+       wall \
 
4639
+       wallops \
 
4640
+       watch \
 
4641
+       who \
 
4642
+       whois \
 
4643
+       whowas \
 
4644
+       window \
 
4645
+       wjoin \
 
4646
+       wquery
 
4647
+
 
4648
+EXTRA_DIST = \
 
4649
+       Makefile.am.gen \
 
4650
+       $(help_DATA)
 
4651
+
 
4652
+SUBDIRS = in
 
4653
+all: all-recursive
 
4654
+
 
4655
+.SUFFIXES:
 
4656
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
4657
+       @for dep in $?; do \
 
4658
+         case '$(am__configure_deps)' in \
 
4659
+           *$$dep*) \
 
4660
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
4661
+               && exit 0; \
 
4662
+             exit 1;; \
 
4663
+         esac; \
 
4664
+       done; \
 
4665
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  docs/help/Makefile'; \
 
4666
+       cd $(top_srcdir) && \
 
4667
+         $(AUTOMAKE) --gnu  docs/help/Makefile
 
4668
+.PRECIOUS: Makefile
 
4669
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
4670
+       @case '$?' in \
 
4671
+         *config.status*) \
 
4672
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
4673
+         *) \
 
4674
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
4675
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
4676
+       esac;
 
4677
+
 
4678
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
4679
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
4680
+
 
4681
+$(top_srcdir)/configure:  $(am__configure_deps)
 
4682
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
4683
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
4684
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
4685
+
 
4686
+mostlyclean-libtool:
 
4687
+       -rm -f *.lo
 
4688
+
 
4689
+clean-libtool:
 
4690
+       -rm -rf .libs _libs
 
4691
+
 
4692
+distclean-libtool:
 
4693
+       -rm -f libtool
 
4694
+uninstall-info-am:
 
4695
+install-helpDATA: $(help_DATA)
 
4696
+       @$(NORMAL_INSTALL)
 
4697
+       test -z "$(helpdir)" || $(mkdir_p) "$(DESTDIR)$(helpdir)"
 
4698
+       @list='$(help_DATA)'; for p in $$list; do \
 
4699
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
4700
+         f=$(am__strip_dir) \
 
4701
+         echo " $(helpDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(helpdir)/$$f'"; \
 
4702
+         $(helpDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(helpdir)/$$f"; \
 
4703
+       done
 
4704
+
 
4705
+uninstall-helpDATA:
 
4706
+       @$(NORMAL_UNINSTALL)
 
4707
+       @list='$(help_DATA)'; for p in $$list; do \
 
4708
+         f=$(am__strip_dir) \
 
4709
+         echo " rm -f '$(DESTDIR)$(helpdir)/$$f'"; \
 
4710
+         rm -f "$(DESTDIR)$(helpdir)/$$f"; \
 
4711
+       done
 
4712
+
 
4713
+# This directory's subdirectories are mostly independent; you can cd
 
4714
+# into them and run `make' without going through this Makefile.
 
4715
+# To change the values of `make' variables: instead of editing Makefiles,
 
4716
+# (1) if the variable is set in `config.status', edit `config.status'
 
4717
+#     (which will cause the Makefiles to be regenerated when you run `make');
 
4718
+# (2) otherwise, pass the desired values on the `make' command line.
 
4719
+$(RECURSIVE_TARGETS):
 
4720
+       @failcom='exit 1'; \
 
4721
+       for f in x $$MAKEFLAGS; do \
 
4722
+         case $$f in \
 
4723
+           *=* | --[!k]*);; \
 
4724
+           *k*) failcom='fail=yes';; \
 
4725
+         esac; \
 
4726
+       done; \
 
4727
+       dot_seen=no; \
 
4728
+       target=`echo $@ | sed s/-recursive//`; \
 
4729
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
4730
+         echo "Making $$target in $$subdir"; \
 
4731
+         if test "$$subdir" = "."; then \
 
4732
+           dot_seen=yes; \
 
4733
+           local_target="$$target-am"; \
 
4734
+         else \
 
4735
+           local_target="$$target"; \
 
4736
+         fi; \
 
4737
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
4738
+         || eval $$failcom; \
 
4739
+       done; \
 
4740
+       if test "$$dot_seen" = "no"; then \
 
4741
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
4742
+       fi; test -z "$$fail"
 
4743
+
 
4744
+mostlyclean-recursive clean-recursive distclean-recursive \
 
4745
+maintainer-clean-recursive:
 
4746
+       @failcom='exit 1'; \
 
4747
+       for f in x $$MAKEFLAGS; do \
 
4748
+         case $$f in \
 
4749
+           *=* | --[!k]*);; \
 
4750
+           *k*) failcom='fail=yes';; \
 
4751
+         esac; \
 
4752
+       done; \
 
4753
+       dot_seen=no; \
 
4754
+       case "$@" in \
 
4755
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
4756
+         *) list='$(SUBDIRS)' ;; \
 
4757
+       esac; \
 
4758
+       rev=''; for subdir in $$list; do \
 
4759
+         if test "$$subdir" = "."; then :; else \
 
4760
+           rev="$$subdir $$rev"; \
 
4761
+         fi; \
 
4762
+       done; \
 
4763
+       rev="$$rev ."; \
 
4764
+       target=`echo $@ | sed s/-recursive//`; \
 
4765
+       for subdir in $$rev; do \
 
4766
+         echo "Making $$target in $$subdir"; \
 
4767
+         if test "$$subdir" = "."; then \
 
4768
+           local_target="$$target-am"; \
 
4769
+         else \
 
4770
+           local_target="$$target"; \
 
4771
+         fi; \
 
4772
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
4773
+         || eval $$failcom; \
 
4774
+       done && test -z "$$fail"
 
4775
+tags-recursive:
 
4776
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
4777
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
4778
+       done
 
4779
+ctags-recursive:
 
4780
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
4781
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
4782
+       done
 
4783
+
 
4784
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
4785
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
4786
+       unique=`for i in $$list; do \
 
4787
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
4788
+         done | \
 
4789
+         $(AWK) '    { files[$$0] = 1; } \
 
4790
+              END { for (i in files) print i; }'`; \
 
4791
+       mkid -fID $$unique
 
4792
+tags: TAGS
 
4793
+
 
4794
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
4795
+               $(TAGS_FILES) $(LISP)
 
4796
+       tags=; \
 
4797
+       here=`pwd`; \
 
4798
+       if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
4799
+         include_option=--etags-include; \
 
4800
+         empty_fix=.; \
 
4801
+       else \
 
4802
+         include_option=--include; \
 
4803
+         empty_fix=; \
 
4804
+       fi; \
 
4805
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
4806
+         if test "$$subdir" = .; then :; else \
 
4807
+           test ! -f $$subdir/TAGS || \
 
4808
+             tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
4809
+         fi; \
 
4810
+       done; \
 
4811
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
4812
+       unique=`for i in $$list; do \
 
4813
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
4814
+         done | \
 
4815
+         $(AWK) '    { files[$$0] = 1; } \
 
4816
+              END { for (i in files) print i; }'`; \
 
4817
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
4818
+         test -n "$$unique" || unique=$$empty_fix; \
 
4819
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
4820
+           $$tags $$unique; \
 
4821
+       fi
 
4822
+ctags: CTAGS
 
4823
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
4824
+               $(TAGS_FILES) $(LISP)
 
4825
+       tags=; \
 
4826
+       here=`pwd`; \
 
4827
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
4828
+       unique=`for i in $$list; do \
 
4829
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
4830
+         done | \
 
4831
+         $(AWK) '    { files[$$0] = 1; } \
 
4832
+              END { for (i in files) print i; }'`; \
 
4833
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
4834
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
4835
+            $$tags $$unique
 
4836
+
 
4837
+GTAGS:
 
4838
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
4839
+         && cd $(top_srcdir) \
 
4840
+         && gtags -i $(GTAGS_ARGS) $$here
 
4841
+
 
4842
+distclean-tags:
 
4843
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
4844
+
 
4845
+distdir: $(DISTFILES)
 
4846
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
4847
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
4848
+       list='$(DISTFILES)'; for file in $$list; do \
 
4849
+         case $$file in \
 
4850
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
4851
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
4852
+         esac; \
 
4853
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
4854
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
4855
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
4856
+           dir="/$$dir"; \
 
4857
+           $(mkdir_p) "$(distdir)$$dir"; \
 
4858
+         else \
 
4859
+           dir=''; \
 
4860
+         fi; \
 
4861
+         if test -d $$d/$$file; then \
 
4862
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
4863
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
4864
+           fi; \
 
4865
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
4866
+         else \
 
4867
+           test -f $(distdir)/$$file \
 
4868
+           || cp -p $$d/$$file $(distdir)/$$file \
 
4869
+           || exit 1; \
 
4870
+         fi; \
 
4871
+       done
 
4872
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
4873
+         if test "$$subdir" = .; then :; else \
 
4874
+           test -d "$(distdir)/$$subdir" \
 
4875
+           || $(mkdir_p) "$(distdir)/$$subdir" \
 
4876
+           || exit 1; \
 
4877
+           distdir=`$(am__cd) $(distdir) && pwd`; \
 
4878
+           top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
 
4879
+           (cd $$subdir && \
 
4880
+             $(MAKE) $(AM_MAKEFLAGS) \
 
4881
+               top_distdir="$$top_distdir" \
 
4882
+               distdir="$$distdir/$$subdir" \
 
4883
+               distdir) \
 
4884
+             || exit 1; \
 
4885
+         fi; \
 
4886
+       done
 
4887
+check-am: all-am
 
4888
+check: check-recursive
 
4889
+all-am: Makefile $(DATA)
 
4890
+installdirs: installdirs-recursive
 
4891
+installdirs-am:
 
4892
+       for dir in "$(DESTDIR)$(helpdir)"; do \
 
4893
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
4894
+       done
 
4895
+install: install-recursive
 
4896
+install-exec: install-exec-recursive
 
4897
+install-data: install-data-recursive
 
4898
+uninstall: uninstall-recursive
 
4899
+
 
4900
+install-am: all-am
 
4901
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
4902
+
 
4903
+installcheck: installcheck-recursive
 
4904
+install-strip:
 
4905
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
4906
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
4907
+         `test -z '$(STRIP)' || \
 
4908
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
4909
+mostlyclean-generic:
 
4910
+
 
4911
+clean-generic:
 
4912
+
 
4913
+distclean-generic:
 
4914
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
4915
+
 
4916
+maintainer-clean-generic:
 
4917
+       @echo "This command is intended for maintainers to use"
 
4918
+       @echo "it deletes files that may require special tools to rebuild."
 
4919
+clean: clean-recursive
 
4920
+
 
4921
+clean-am: clean-generic clean-libtool mostlyclean-am
 
4922
+
 
4923
+distclean: distclean-recursive
 
4924
+       -rm -f Makefile
 
4925
+distclean-am: clean-am distclean-generic distclean-libtool \
 
4926
+       distclean-tags
 
4927
+
 
4928
+dvi: dvi-recursive
 
4929
+
 
4930
+dvi-am:
 
4931
+
 
4932
+html: html-recursive
 
4933
+
 
4934
+info: info-recursive
 
4935
+
 
4936
+info-am:
 
4937
+
 
4938
+install-data-am: install-helpDATA
 
4939
+
 
4940
+install-exec-am:
 
4941
+
 
4942
+install-info: install-info-recursive
 
4943
+
 
4944
+install-man:
 
4945
+
 
4946
+installcheck-am:
 
4947
+
 
4948
+maintainer-clean: maintainer-clean-recursive
 
4949
+       -rm -f Makefile
 
4950
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
4951
+
 
4952
+mostlyclean: mostlyclean-recursive
 
4953
+
 
4954
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
4955
+
 
4956
+pdf: pdf-recursive
 
4957
+
 
4958
+pdf-am:
 
4959
+
 
4960
+ps: ps-recursive
 
4961
+
 
4962
+ps-am:
 
4963
+
 
4964
+uninstall-am: uninstall-helpDATA uninstall-info-am
 
4965
+
 
4966
+uninstall-info: uninstall-info-recursive
 
4967
+
 
4968
+.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
 
4969
+       clean clean-generic clean-libtool clean-recursive ctags \
 
4970
+       ctags-recursive distclean distclean-generic distclean-libtool \
 
4971
+       distclean-recursive distclean-tags distdir dvi dvi-am html \
 
4972
+       html-am info info-am install install-am install-data \
 
4973
+       install-data-am install-exec install-exec-am install-helpDATA \
 
4974
+       install-info install-info-am install-man install-strip \
 
4975
+       installcheck installcheck-am installdirs installdirs-am \
 
4976
+       maintainer-clean maintainer-clean-generic \
 
4977
+       maintainer-clean-recursive mostlyclean mostlyclean-generic \
 
4978
+       mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
 
4979
+       tags tags-recursive uninstall uninstall-am uninstall-helpDATA \
 
4980
+       uninstall-info-am
 
4981
+
 
4982
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
4983
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
4984
+.NOEXPORT:
 
4985
diff -urNad --exclude=CVS --exclude=.svn ./docs/help/Makefile.in /tmp/dpep-work.mDzhRz/irssi/docs/help/Makefile.in
 
4986
--- ./docs/help/Makefile.in     2005-07-17 16:30:29.000000000 +0300
 
4987
+++ /tmp/dpep-work.mDzhRz/irssi/docs/help/Makefile.in   2005-07-17 16:48:05.000000000 +0300
 
4988
@@ -119,6 +119,8 @@
 
4989
 GLIB_LIBS = @GLIB_LIBS@
 
4990
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
4991
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
4992
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
4993
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
4994
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
4995
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
4996
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
4997
@@ -128,6 +130,9 @@
 
4998
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
4999
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
5000
 LDFLAGS = @LDFLAGS@
 
5001
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
5002
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
5003
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
5004
 LIBOBJS = @LIBOBJS@
 
5005
 LIBPERL_A = @LIBPERL_A@
 
5006
 LIBS = @LIBS@
 
5007
diff -urNad --exclude=CVS --exclude=.svn ./docs/Makefile /tmp/dpep-work.mDzhRz/irssi/docs/Makefile
 
5008
--- ./docs/Makefile     1970-01-01 02:00:00.000000000 +0200
 
5009
+++ /tmp/dpep-work.mDzhRz/irssi/docs/Makefile   2005-07-17 16:48:40.000000000 +0300
 
5010
@@ -0,0 +1,628 @@
 
5011
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
5012
+# docs/Makefile.  Generated from Makefile.in by configure.
 
5013
+
 
5014
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
5015
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
5016
+# This Makefile.in is free software; the Free Software Foundation
 
5017
+# gives unlimited permission to copy and/or distribute it,
 
5018
+# with or without modifications, as long as this notice is preserved.
 
5019
+
 
5020
+# This program is distributed in the hope that it will be useful,
 
5021
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
5022
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
5023
+# PARTICULAR PURPOSE.
 
5024
+
 
5025
+
 
5026
+
 
5027
+srcdir = .
 
5028
+top_srcdir = ..
 
5029
+
 
5030
+pkgdatadir = $(datadir)/irssi
 
5031
+pkglibdir = $(libdir)/irssi
 
5032
+pkgincludedir = $(includedir)/irssi
 
5033
+top_builddir = ..
 
5034
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
5035
+INSTALL = /usr/bin/install -c
 
5036
+install_sh_DATA = $(install_sh) -c -m 644
 
5037
+install_sh_PROGRAM = $(install_sh) -c
 
5038
+install_sh_SCRIPT = $(install_sh) -c
 
5039
+INSTALL_HEADER = $(INSTALL_DATA)
 
5040
+transform = $(program_transform_name)
 
5041
+NORMAL_INSTALL = :
 
5042
+PRE_INSTALL = :
 
5043
+POST_INSTALL = :
 
5044
+NORMAL_UNINSTALL = :
 
5045
+PRE_UNINSTALL = :
 
5046
+POST_UNINSTALL = :
 
5047
+build_triplet = i686-pc-linux-gnu
 
5048
+host_triplet = i686-pc-linux-gnu
 
5049
+subdir = docs
 
5050
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
5051
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
5052
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
5053
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
5054
+       $(top_srcdir)/configure.in
 
5055
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
5056
+       $(ACLOCAL_M4)
 
5057
+mkinstalldirs = $(install_sh) -d
 
5058
+CONFIG_HEADER = $(top_builddir)/config.h
 
5059
+CONFIG_CLEAN_FILES =
 
5060
+SOURCES =
 
5061
+DIST_SOURCES =
 
5062
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
5063
+       html-recursive info-recursive install-data-recursive \
 
5064
+       install-exec-recursive install-info-recursive \
 
5065
+       install-recursive installcheck-recursive installdirs-recursive \
 
5066
+       pdf-recursive ps-recursive uninstall-info-recursive \
 
5067
+       uninstall-recursive
 
5068
+man1dir = $(mandir)/man1
 
5069
+am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)"
 
5070
+NROFF = nroff
 
5071
+MANS = $(man_MANS)
 
5072
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
5073
+am__vpath_adj = case $$p in \
 
5074
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
5075
+    *) f=$$p;; \
 
5076
+  esac;
 
5077
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
5078
+docDATA_INSTALL = $(INSTALL_DATA)
 
5079
+DATA = $(doc_DATA)
 
5080
+ETAGS = etags
 
5081
+CTAGS = ctags
 
5082
+DIST_SUBDIRS = $(SUBDIRS)
 
5083
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
5084
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
5085
+AMDEP_FALSE = #
 
5086
+AMDEP_TRUE = 
 
5087
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
5088
+AR = ar
 
5089
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
5090
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
5091
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
5092
+AWK = gawk
 
5093
+BUILD_IRSSIBOT_FALSE = 
 
5094
+BUILD_IRSSIBOT_TRUE = #
 
5095
+BUILD_IRSSIPROXY_FALSE = 
 
5096
+BUILD_IRSSIPROXY_TRUE = #
 
5097
+BUILD_PLUGINS_FALSE = 
 
5098
+BUILD_PLUGINS_TRUE = #
 
5099
+BUILD_TEXTUI_FALSE = #
 
5100
+BUILD_TEXTUI_TRUE = 
 
5101
+CC = gcc
 
5102
+CCDEPMODE = depmode=gcc3
 
5103
+CFLAGS = -g -O2 -Wall  
 
5104
+CHAT_MODULES = irc
 
5105
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
5106
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
5107
+CPP = gcc -E
 
5108
+CPPFLAGS = 
 
5109
+CURSES_INCLUDEDIR = 
 
5110
+CURSES_LIBS = -lncurses
 
5111
+CXX = g++
 
5112
+CXXCPP = g++ -E
 
5113
+CXXDEPMODE = depmode=gcc3
 
5114
+CXXFLAGS = -g -O2
 
5115
+CYGPATH_W = echo
 
5116
+DEFS = -DHAVE_CONFIG_H
 
5117
+DEPDIR = .deps
 
5118
+DYNALOADER_A = 
 
5119
+ECHO = echo
 
5120
+ECHO_C = 
 
5121
+ECHO_N = -n
 
5122
+ECHO_T = 
 
5123
+EGREP = grep -E
 
5124
+EXEEXT = 
 
5125
+F77 = 
 
5126
+FFLAGS = 
 
5127
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
5128
+GLIB_CONFIG = 
 
5129
+GLIB_GENMARSHAL = glib-genmarshal
 
5130
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
5131
+GLIB_MKENUMS = glib-mkenums
 
5132
+GOBJECT_QUERY = gobject-query
 
5133
+HAVE_GNUTLS_FALSE = #
 
5134
+HAVE_GNUTLS_TRUE = 
 
5135
+HAVE_PERL_FALSE = #
 
5136
+HAVE_PERL_TRUE = 
 
5137
+HAVE_STATIC_PERL_FALSE = #
 
5138
+HAVE_STATIC_PERL_TRUE = 
 
5139
+INSTALL_DATA = ${INSTALL} -m 644
 
5140
+INSTALL_PROGRAM = ${INSTALL}
 
5141
+INSTALL_SCRIPT = ${INSTALL}
 
5142
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
5143
+LDFLAGS = 
 
5144
+LIBGNUTLS_CFLAGS = -I/usr/include
 
5145
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
5146
+LIBGNUTLS_LIBS = -lgnutls
 
5147
+LIBOBJS = 
 
5148
+LIBPERL_A = 
 
5149
+LIBS = 
 
5150
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
5151
+LN_S = ln -s
 
5152
+LTLIBOBJS = 
 
5153
+MAINT = 
 
5154
+MAINTAINER_MODE_FALSE = #
 
5155
+MAINTAINER_MODE_TRUE = 
 
5156
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
5157
+NEED_TPARM_FALSE = 
 
5158
+NEED_TPARM_TRUE = #
 
5159
+OBJEXT = o
 
5160
+PACKAGE = irssi
 
5161
+PACKAGE_BUGREPORT = 
 
5162
+PACKAGE_NAME = 
 
5163
+PACKAGE_STRING = 
 
5164
+PACKAGE_TARNAME = 
 
5165
+PACKAGE_VERSION = 
 
5166
+PATH_SEPARATOR = :
 
5167
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
5168
+PERL_EXTRA_OPTS = 
 
5169
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
5170
+PERL_LDFLAGS = 
 
5171
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
5172
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
5173
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
5174
+PERL_MM_PARAMS = 
 
5175
+PERL_STATIC_LIBS = 0
 
5176
+PERL_USE_LIB = 
 
5177
+PKG_CONFIG = /usr/bin/pkg-config
 
5178
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
5179
+RANLIB = ranlib
 
5180
+SET_MAKE = 
 
5181
+SHELL = /bin/sh
 
5182
+SSL_CFLAGS =  
 
5183
+SSL_LIBS = -lssl -lcrypto -ldl  
 
5184
+STRIP = strip
 
5185
+TEXTUI_LIBS = -lncurses
 
5186
+USE_CURSES_FALSE = 
 
5187
+USE_CURSES_TRUE = #
 
5188
+VERSION = 0.8.10-rc5
 
5189
+VERSION_DATE = 20050717
 
5190
+VERSION_TIME = 1223
 
5191
+ac_ct_AR = ar
 
5192
+ac_ct_CC = gcc
 
5193
+ac_ct_CXX = g++
 
5194
+ac_ct_F77 = 
 
5195
+ac_ct_RANLIB = ranlib
 
5196
+ac_ct_STRIP = strip
 
5197
+ac_pt_PKG_CONFIG = 
 
5198
+am__fastdepCC_FALSE = #
 
5199
+am__fastdepCC_TRUE = 
 
5200
+am__fastdepCXX_FALSE = #
 
5201
+am__fastdepCXX_TRUE = 
 
5202
+am__include = include
 
5203
+am__leading_dot = .
 
5204
+am__quote = 
 
5205
+am__tar = ${AMTAR} chof - "$$tardir"
 
5206
+am__untar = ${AMTAR} xf -
 
5207
+bindir = ${exec_prefix}/bin
 
5208
+build = i686-pc-linux-gnu
 
5209
+build_alias = 
 
5210
+build_cpu = i686
 
5211
+build_os = linux-gnu
 
5212
+build_vendor = pc
 
5213
+datadir = ${prefix}/share
 
5214
+exec_prefix = ${prefix}
 
5215
+host = i686-pc-linux-gnu
 
5216
+host_alias = 
 
5217
+host_cpu = i686
 
5218
+host_os = linux-gnu
 
5219
+host_vendor = pc
 
5220
+includedir = ${prefix}/include
 
5221
+infodir = ${prefix}/info
 
5222
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
5223
+irc_MODULES = dcc flood notifylist
 
5224
+libdir = ${exec_prefix}/lib
 
5225
+libexecdir = ${exec_prefix}/libexec
 
5226
+localstatedir = ${prefix}/var
 
5227
+mandir = ${prefix}/man
 
5228
+mkdir_p = mkdir -p --
 
5229
+oldincludedir = /usr/include
 
5230
+perl_module_fe_lib = 
 
5231
+perl_module_lib = 
 
5232
+perl_static_fe_lib = libfe_perl_static.la
 
5233
+perl_static_lib = libperl_core_static.la
 
5234
+perlpath = /usr/bin/perl
 
5235
+prefix = /usr/local
 
5236
+program_transform_name = s,x,x,
 
5237
+sbindir = ${exec_prefix}/sbin
 
5238
+sedpath = /bin/sed
 
5239
+sharedstatedir = ${prefix}/com
 
5240
+sysconfdir = ${prefix}/etc
 
5241
+target_alias = 
 
5242
+docdir = $(datadir)/doc/irssi
 
5243
+man_MANS = \
 
5244
+       irssi.1
 
5245
+
 
5246
+doc_DATA = \
 
5247
+       botnet.txt \
 
5248
+       design.txt \
 
5249
+       formats.txt \
 
5250
+       manual.txt \
 
5251
+       faq.html \
 
5252
+       faq.txt \
 
5253
+       perl.txt \
 
5254
+       signals.txt \
 
5255
+       special_vars.txt \
 
5256
+       startup-HOWTO.html
 
5257
+
 
5258
+EXTRA_DIST = $(doc_DATA) $(man_MANS)
 
5259
+SUBDIRS = help
 
5260
+all: all-recursive
 
5261
+
 
5262
+.SUFFIXES:
 
5263
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
5264
+       @for dep in $?; do \
 
5265
+         case '$(am__configure_deps)' in \
 
5266
+           *$$dep*) \
 
5267
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
5268
+               && exit 0; \
 
5269
+             exit 1;; \
 
5270
+         esac; \
 
5271
+       done; \
 
5272
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  docs/Makefile'; \
 
5273
+       cd $(top_srcdir) && \
 
5274
+         $(AUTOMAKE) --gnu  docs/Makefile
 
5275
+.PRECIOUS: Makefile
 
5276
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
5277
+       @case '$?' in \
 
5278
+         *config.status*) \
 
5279
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
5280
+         *) \
 
5281
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
5282
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
5283
+       esac;
 
5284
+
 
5285
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
5286
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
5287
+
 
5288
+$(top_srcdir)/configure:  $(am__configure_deps)
 
5289
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
5290
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
5291
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
5292
+
 
5293
+mostlyclean-libtool:
 
5294
+       -rm -f *.lo
 
5295
+
 
5296
+clean-libtool:
 
5297
+       -rm -rf .libs _libs
 
5298
+
 
5299
+distclean-libtool:
 
5300
+       -rm -f libtool
 
5301
+uninstall-info-am:
 
5302
+install-man1: $(man1_MANS) $(man_MANS)
 
5303
+       @$(NORMAL_INSTALL)
 
5304
+       test -z "$(man1dir)" || $(mkdir_p) "$(DESTDIR)$(man1dir)"
 
5305
+       @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
 
5306
+       l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
 
5307
+       for i in $$l2; do \
 
5308
+         case "$$i" in \
 
5309
+           *.1*) list="$$list $$i" ;; \
 
5310
+         esac; \
 
5311
+       done; \
 
5312
+       for i in $$list; do \
 
5313
+         if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
 
5314
+         else file=$$i; fi; \
 
5315
+         ext=`echo $$i | sed -e 's/^.*\\.//'`; \
 
5316
+         case "$$ext" in \
 
5317
+           1*) ;; \
 
5318
+           *) ext='1' ;; \
 
5319
+         esac; \
 
5320
+         inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
 
5321
+         inst=`echo $$inst | sed -e 's/^.*\///'`; \
 
5322
+         inst=`echo $$inst | sed '$(transform)'`.$$ext; \
 
5323
+         echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
 
5324
+         $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \
 
5325
+       done
 
5326
+uninstall-man1:
 
5327
+       @$(NORMAL_UNINSTALL)
 
5328
+       @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
 
5329
+       l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
 
5330
+       for i in $$l2; do \
 
5331
+         case "$$i" in \
 
5332
+           *.1*) list="$$list $$i" ;; \
 
5333
+         esac; \
 
5334
+       done; \
 
5335
+       for i in $$list; do \
 
5336
+         ext=`echo $$i | sed -e 's/^.*\\.//'`; \
 
5337
+         case "$$ext" in \
 
5338
+           1*) ;; \
 
5339
+           *) ext='1' ;; \
 
5340
+         esac; \
 
5341
+         inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
 
5342
+         inst=`echo $$inst | sed -e 's/^.*\///'`; \
 
5343
+         inst=`echo $$inst | sed '$(transform)'`.$$ext; \
 
5344
+         echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \
 
5345
+         rm -f "$(DESTDIR)$(man1dir)/$$inst"; \
 
5346
+       done
 
5347
+install-docDATA: $(doc_DATA)
 
5348
+       @$(NORMAL_INSTALL)
 
5349
+       test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)"
 
5350
+       @list='$(doc_DATA)'; for p in $$list; do \
 
5351
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
5352
+         f=$(am__strip_dir) \
 
5353
+         echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \
 
5354
+         $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \
 
5355
+       done
 
5356
+
 
5357
+uninstall-docDATA:
 
5358
+       @$(NORMAL_UNINSTALL)
 
5359
+       @list='$(doc_DATA)'; for p in $$list; do \
 
5360
+         f=$(am__strip_dir) \
 
5361
+         echo " rm -f '$(DESTDIR)$(docdir)/$$f'"; \
 
5362
+         rm -f "$(DESTDIR)$(docdir)/$$f"; \
 
5363
+       done
 
5364
+
 
5365
+# This directory's subdirectories are mostly independent; you can cd
 
5366
+# into them and run `make' without going through this Makefile.
 
5367
+# To change the values of `make' variables: instead of editing Makefiles,
 
5368
+# (1) if the variable is set in `config.status', edit `config.status'
 
5369
+#     (which will cause the Makefiles to be regenerated when you run `make');
 
5370
+# (2) otherwise, pass the desired values on the `make' command line.
 
5371
+$(RECURSIVE_TARGETS):
 
5372
+       @failcom='exit 1'; \
 
5373
+       for f in x $$MAKEFLAGS; do \
 
5374
+         case $$f in \
 
5375
+           *=* | --[!k]*);; \
 
5376
+           *k*) failcom='fail=yes';; \
 
5377
+         esac; \
 
5378
+       done; \
 
5379
+       dot_seen=no; \
 
5380
+       target=`echo $@ | sed s/-recursive//`; \
 
5381
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
5382
+         echo "Making $$target in $$subdir"; \
 
5383
+         if test "$$subdir" = "."; then \
 
5384
+           dot_seen=yes; \
 
5385
+           local_target="$$target-am"; \
 
5386
+         else \
 
5387
+           local_target="$$target"; \
 
5388
+         fi; \
 
5389
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
5390
+         || eval $$failcom; \
 
5391
+       done; \
 
5392
+       if test "$$dot_seen" = "no"; then \
 
5393
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
5394
+       fi; test -z "$$fail"
 
5395
+
 
5396
+mostlyclean-recursive clean-recursive distclean-recursive \
 
5397
+maintainer-clean-recursive:
 
5398
+       @failcom='exit 1'; \
 
5399
+       for f in x $$MAKEFLAGS; do \
 
5400
+         case $$f in \
 
5401
+           *=* | --[!k]*);; \
 
5402
+           *k*) failcom='fail=yes';; \
 
5403
+         esac; \
 
5404
+       done; \
 
5405
+       dot_seen=no; \
 
5406
+       case "$@" in \
 
5407
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
5408
+         *) list='$(SUBDIRS)' ;; \
 
5409
+       esac; \
 
5410
+       rev=''; for subdir in $$list; do \
 
5411
+         if test "$$subdir" = "."; then :; else \
 
5412
+           rev="$$subdir $$rev"; \
 
5413
+         fi; \
 
5414
+       done; \
 
5415
+       rev="$$rev ."; \
 
5416
+       target=`echo $@ | sed s/-recursive//`; \
 
5417
+       for subdir in $$rev; do \
 
5418
+         echo "Making $$target in $$subdir"; \
 
5419
+         if test "$$subdir" = "."; then \
 
5420
+           local_target="$$target-am"; \
 
5421
+         else \
 
5422
+           local_target="$$target"; \
 
5423
+         fi; \
 
5424
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
5425
+         || eval $$failcom; \
 
5426
+       done && test -z "$$fail"
 
5427
+tags-recursive:
 
5428
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
5429
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
5430
+       done
 
5431
+ctags-recursive:
 
5432
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
5433
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
5434
+       done
 
5435
+
 
5436
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
5437
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
5438
+       unique=`for i in $$list; do \
 
5439
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
5440
+         done | \
 
5441
+         $(AWK) '    { files[$$0] = 1; } \
 
5442
+              END { for (i in files) print i; }'`; \
 
5443
+       mkid -fID $$unique
 
5444
+tags: TAGS
 
5445
+
 
5446
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
5447
+               $(TAGS_FILES) $(LISP)
 
5448
+       tags=; \
 
5449
+       here=`pwd`; \
 
5450
+       if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
5451
+         include_option=--etags-include; \
 
5452
+         empty_fix=.; \
 
5453
+       else \
 
5454
+         include_option=--include; \
 
5455
+         empty_fix=; \
 
5456
+       fi; \
 
5457
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
5458
+         if test "$$subdir" = .; then :; else \
 
5459
+           test ! -f $$subdir/TAGS || \
 
5460
+             tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
5461
+         fi; \
 
5462
+       done; \
 
5463
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
5464
+       unique=`for i in $$list; do \
 
5465
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
5466
+         done | \
 
5467
+         $(AWK) '    { files[$$0] = 1; } \
 
5468
+              END { for (i in files) print i; }'`; \
 
5469
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
5470
+         test -n "$$unique" || unique=$$empty_fix; \
 
5471
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
5472
+           $$tags $$unique; \
 
5473
+       fi
 
5474
+ctags: CTAGS
 
5475
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
5476
+               $(TAGS_FILES) $(LISP)
 
5477
+       tags=; \
 
5478
+       here=`pwd`; \
 
5479
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
5480
+       unique=`for i in $$list; do \
 
5481
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
5482
+         done | \
 
5483
+         $(AWK) '    { files[$$0] = 1; } \
 
5484
+              END { for (i in files) print i; }'`; \
 
5485
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
5486
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
5487
+            $$tags $$unique
 
5488
+
 
5489
+GTAGS:
 
5490
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
5491
+         && cd $(top_srcdir) \
 
5492
+         && gtags -i $(GTAGS_ARGS) $$here
 
5493
+
 
5494
+distclean-tags:
 
5495
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
5496
+
 
5497
+distdir: $(DISTFILES)
 
5498
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
5499
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
5500
+       list='$(DISTFILES)'; for file in $$list; do \
 
5501
+         case $$file in \
 
5502
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
5503
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
5504
+         esac; \
 
5505
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
5506
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
5507
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
5508
+           dir="/$$dir"; \
 
5509
+           $(mkdir_p) "$(distdir)$$dir"; \
 
5510
+         else \
 
5511
+           dir=''; \
 
5512
+         fi; \
 
5513
+         if test -d $$d/$$file; then \
 
5514
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
5515
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
5516
+           fi; \
 
5517
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
5518
+         else \
 
5519
+           test -f $(distdir)/$$file \
 
5520
+           || cp -p $$d/$$file $(distdir)/$$file \
 
5521
+           || exit 1; \
 
5522
+         fi; \
 
5523
+       done
 
5524
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
5525
+         if test "$$subdir" = .; then :; else \
 
5526
+           test -d "$(distdir)/$$subdir" \
 
5527
+           || $(mkdir_p) "$(distdir)/$$subdir" \
 
5528
+           || exit 1; \
 
5529
+           distdir=`$(am__cd) $(distdir) && pwd`; \
 
5530
+           top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
 
5531
+           (cd $$subdir && \
 
5532
+             $(MAKE) $(AM_MAKEFLAGS) \
 
5533
+               top_distdir="$$top_distdir" \
 
5534
+               distdir="$$distdir/$$subdir" \
 
5535
+               distdir) \
 
5536
+             || exit 1; \
 
5537
+         fi; \
 
5538
+       done
 
5539
+check-am: all-am
 
5540
+check: check-recursive
 
5541
+all-am: Makefile $(MANS) $(DATA)
 
5542
+installdirs: installdirs-recursive
 
5543
+installdirs-am:
 
5544
+       for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)"; do \
 
5545
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
5546
+       done
 
5547
+install: install-recursive
 
5548
+install-exec: install-exec-recursive
 
5549
+install-data: install-data-recursive
 
5550
+uninstall: uninstall-recursive
 
5551
+
 
5552
+install-am: all-am
 
5553
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
5554
+
 
5555
+installcheck: installcheck-recursive
 
5556
+install-strip:
 
5557
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
5558
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
5559
+         `test -z '$(STRIP)' || \
 
5560
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
5561
+mostlyclean-generic:
 
5562
+
 
5563
+clean-generic:
 
5564
+
 
5565
+distclean-generic:
 
5566
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
5567
+
 
5568
+maintainer-clean-generic:
 
5569
+       @echo "This command is intended for maintainers to use"
 
5570
+       @echo "it deletes files that may require special tools to rebuild."
 
5571
+clean: clean-recursive
 
5572
+
 
5573
+clean-am: clean-generic clean-libtool mostlyclean-am
 
5574
+
 
5575
+distclean: distclean-recursive
 
5576
+       -rm -f Makefile
 
5577
+distclean-am: clean-am distclean-generic distclean-libtool \
 
5578
+       distclean-tags
 
5579
+
 
5580
+dvi: dvi-recursive
 
5581
+
 
5582
+dvi-am:
 
5583
+
 
5584
+html: html-recursive
 
5585
+
 
5586
+info: info-recursive
 
5587
+
 
5588
+info-am:
 
5589
+
 
5590
+install-data-am: install-docDATA install-man
 
5591
+
 
5592
+install-exec-am:
 
5593
+
 
5594
+install-info: install-info-recursive
 
5595
+
 
5596
+install-man: install-man1
 
5597
+
 
5598
+installcheck-am:
 
5599
+
 
5600
+maintainer-clean: maintainer-clean-recursive
 
5601
+       -rm -f Makefile
 
5602
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
5603
+
 
5604
+mostlyclean: mostlyclean-recursive
 
5605
+
 
5606
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
5607
+
 
5608
+pdf: pdf-recursive
 
5609
+
 
5610
+pdf-am:
 
5611
+
 
5612
+ps: ps-recursive
 
5613
+
 
5614
+ps-am:
 
5615
+
 
5616
+uninstall-am: uninstall-docDATA uninstall-info-am uninstall-man
 
5617
+
 
5618
+uninstall-info: uninstall-info-recursive
 
5619
+
 
5620
+uninstall-man: uninstall-man1
 
5621
+
 
5622
+.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
 
5623
+       clean clean-generic clean-libtool clean-recursive ctags \
 
5624
+       ctags-recursive distclean distclean-generic distclean-libtool \
 
5625
+       distclean-recursive distclean-tags distdir dvi dvi-am html \
 
5626
+       html-am info info-am install install-am install-data \
 
5627
+       install-data-am install-docDATA install-exec install-exec-am \
 
5628
+       install-info install-info-am install-man install-man1 \
 
5629
+       install-strip installcheck installcheck-am installdirs \
 
5630
+       installdirs-am maintainer-clean maintainer-clean-generic \
 
5631
+       maintainer-clean-recursive mostlyclean mostlyclean-generic \
 
5632
+       mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
 
5633
+       tags tags-recursive uninstall uninstall-am uninstall-docDATA \
 
5634
+       uninstall-info-am uninstall-man uninstall-man1
 
5635
+
 
5636
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
5637
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
5638
+.NOEXPORT:
 
5639
diff -urNad --exclude=CVS --exclude=.svn ./docs/Makefile.in /tmp/dpep-work.mDzhRz/irssi/docs/Makefile.in
 
5640
--- ./docs/Makefile.in  2005-07-17 16:30:29.000000000 +0300
 
5641
+++ /tmp/dpep-work.mDzhRz/irssi/docs/Makefile.in        2005-07-17 16:48:04.000000000 +0300
 
5642
@@ -120,6 +120,8 @@
 
5643
 GLIB_LIBS = @GLIB_LIBS@
 
5644
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
5645
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
5646
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
5647
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
5648
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
5649
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
5650
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
5651
@@ -129,6 +131,9 @@
 
5652
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
5653
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
5654
 LDFLAGS = @LDFLAGS@
 
5655
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
5656
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
5657
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
5658
 LIBOBJS = @LIBOBJS@
 
5659
 LIBPERL_A = @LIBPERL_A@
 
5660
 LIBS = @LIBS@
 
5661
diff -urNad --exclude=CVS --exclude=.svn ./irssi-config /tmp/dpep-work.mDzhRz/irssi/irssi-config
 
5662
--- ./irssi-config      1970-01-01 02:00:00.000000000 +0200
 
5663
+++ /tmp/dpep-work.mDzhRz/irssi/irssi-config    2005-07-17 16:48:40.000000000 +0300
 
5664
@@ -0,0 +1,9 @@
 
5665
+PROG_LIBS=" -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  "
 
5666
+COMMON_LIBS="../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a"
 
5667
+
 
5668
+PERL_LINK_LIBS="../perl/libperl_core_static.la"
 
5669
+PERL_FE_LINK_LIBS="../perl/libfe_perl_static.la"
 
5670
+PERL_LINK_FLAGS="-Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt"
 
5671
+
 
5672
+CHAT_MODULES="irc"
 
5673
+irc_MODULES="dcc flood notifylist"
 
5674
diff -urNad --exclude=CVS --exclude=.svn ./irssi.spec /tmp/dpep-work.mDzhRz/irssi/irssi.spec
 
5675
--- ./irssi.spec        1970-01-01 02:00:00.000000000 +0200
 
5676
+++ /tmp/dpep-work.mDzhRz/irssi/irssi.spec      2005-07-17 16:48:40.000000000 +0300
 
5677
@@ -0,0 +1,74 @@
 
5678
+# $Revision: 1.14 $, $Date: 2003-11-17 22:43:05 +0200 (Mon, 17 Nov 2003) $
 
5679
+Name:          irssi
 
5680
+Version:       0.8.10-rc5
 
5681
+Release:       1
 
5682
+Vendor:        Timo Sirainen <cras@irssi.org>
 
5683
+Summary:       Irssi is a IRC client
 
5684
+License:       GPL
 
5685
+Group:                 Applications/Communications
 
5686
+URL:           http://www.irssi.org/
 
5687
+Source0:       http://www.irssi.org/files/%{name}-%{version}.tar.gz
 
5688
+BuildRequires:  glib-devel >= 1.2.0, ncurses-devel
 
5689
+BuildRoot:      /tmp/%{name}-%{version}-root
 
5690
+
 
5691
+%define                _sysconfdir     /etc
 
5692
+%define                configure { CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ;  CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ;  FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; ./configure %{_target_platform}     --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} --bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} --datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} --libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} --sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} --infodir=%{_infodir} }
 
5693
+
 
5694
+%description
 
5695
+Irssi is a modular IRC client that currently has only text mode user
 
5696
+interface, but 80-90% of the code isn't text mode specific so other UI
 
5697
+could be created pretty easily. Also, Irssi isn't really even IRC
 
5698
+specific anymore, there's already a working SILC module available.
 
5699
+Support for other protocols like ICQ could be created some day too.
 
5700
+
 
5701
+More information can be found at http://irssi.org/.
 
5702
+
 
5703
+%prep
 
5704
+%setup -q
 
5705
+
 
5706
+%build
 
5707
+%configure \
 
5708
+       --with-plugins \
 
5709
+       --enable-ipv6 \
 
5710
+       --with-textui \
 
5711
+       --with-imlib \
 
5712
+       --with-bot \
 
5713
+       --with-socks \
 
5714
+       --with-proxy \
 
5715
+       --with-perl="yes" \
 
5716
+       --with-ncurses
 
5717
+make
 
5718
+
 
5719
+%install
 
5720
+rm -rf ${RPM_BUILD_ROOT}
 
5721
+make DESTDIR=${RPM_BUILD_ROOT} PREFIX=${RPM_BUILD_ROOT}%{_prefix} PERL_INSTALL_ROOT=${RPM_BUILD_ROOT} install
 
5722
+strip ${RPM_BUILD_ROOT}%{_bindir}/*
 
5723
+strip ${RPM_BUILD_ROOT}%{_libdir}/irssi/modules/lib*.so*
 
5724
+
 
5725
+rm -f ${RPM_BUILD_ROOT}%{_libdir}/irssi/modules/*.{a,la} \
 
5726
+       ${RPM_BUILD_ROOT}%{perl_archlib}/auto/Irssi/.packlist \
 
5727
+       ${RPM_BUILD_ROOT}%{perl_archlib}/auto/Irssi/*/.packlist \
 
5728
+       ${RPM_BUILD_ROOT}%{perl_archlib}/perllocal.pod
 
5729
+rm -rf ${RPM_BUILD_ROOT}%{_docdir}/irssi/
 
5730
+
 
5731
+%clean
 
5732
+rm -rf ${RPM_BUILD_ROOT}
 
5733
+rm -rf ${RPM_BUILD_DIR}/%{name}-%{version}
 
5734
+
 
5735
+%files 
 
5736
+%defattr(-, root, root, 0755)
 
5737
+%doc AUTHORS ChangeLog COPYING NEWS README TODO
 
5738
+%doc docs/*.txt docs/*.html
 
5739
+%doc %{_mandir}/man1/*
 
5740
+%config(noreplace) %{_sysconfdir}/*
 
5741
+%{_bindir}/*
 
5742
+%{_libdir}/irssi/
 
5743
+%{perl_archlib}
 
5744
+%{_datadir}/irssi/
 
5745
+
 
5746
+%changelog
 
5747
+* Mon Nov 17 2003 Robert Scheck <irssi@robert-scheck.de>
 
5748
+  Fixed many things for better rebuilding and a good package
 
5749
+
 
5750
+* Fri Aug 17 2001 - Joose Vettenranta <joose@iki.fi>
 
5751
+  Created new spec file from spec file founded in irssi-0.7.98.3
 
5752
diff -urNad --exclude=CVS --exclude=.svn ./irssi-version.h /tmp/dpep-work.mDzhRz/irssi/irssi-version.h
 
5753
--- ./irssi-version.h   1970-01-01 02:00:00.000000000 +0200
 
5754
+++ /tmp/dpep-work.mDzhRz/irssi/irssi-version.h 2005-07-17 16:48:40.000000000 +0300
 
5755
@@ -0,0 +1,4 @@
 
5756
+/* automatically created by configure */
 
5757
+#define IRSSI_VERSION "0.8.10-rc5"
 
5758
+#define IRSSI_VERSION_DATE 20050717
 
5759
+#define IRSSI_VERSION_TIME 1223
 
5760
diff -urNad --exclude=CVS --exclude=.svn ./libtool /tmp/dpep-work.mDzhRz/irssi/libtool
 
5761
--- ./libtool   1970-01-01 02:00:00.000000000 +0200
 
5762
+++ /tmp/dpep-work.mDzhRz/irssi/libtool 2005-07-17 16:48:29.000000000 +0300
 
5763
@@ -0,0 +1,7065 @@
 
5764
+#! /bin/sh
 
5765
+
 
5766
+# libtoolT - Provide generalized library-building support services.
 
5767
+# Generated automatically by  (GNU irssi 0.8.10-rc5)
 
5768
+# NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
5769
+#
 
5770
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
 
5771
+# Free Software Foundation, Inc.
 
5772
+#
 
5773
+# This file is part of GNU Libtool:
 
5774
+# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 
5775
+#
 
5776
+# This program is free software; you can redistribute it and/or modify
 
5777
+# it under the terms of the GNU General Public License as published by
 
5778
+# the Free Software Foundation; either version 2 of the License, or
 
5779
+# (at your option) any later version.
 
5780
+#
 
5781
+# This program is distributed in the hope that it will be useful, but
 
5782
+# WITHOUT ANY WARRANTY; without even the implied warranty of
 
5783
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
5784
+# General Public License for more details.
 
5785
+#
 
5786
+# You should have received a copy of the GNU General Public License
 
5787
+# along with this program; if not, write to the Free Software
 
5788
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
5789
+#
 
5790
+# As a special exception to the GNU General Public License, if you
 
5791
+# distribute this file as part of a program that contains a
 
5792
+# configuration script generated by Autoconf, you may include it under
 
5793
+# the same distribution terms that you use for the rest of that program.
 
5794
+
 
5795
+# A sed program that does not truncate output.
 
5796
+SED="/bin/sed"
 
5797
+
 
5798
+# Sed that helps us avoid accidentally triggering echo(1) options like -n.
 
5799
+Xsed="/bin/sed -e s/^X//"
 
5800
+
 
5801
+# The HP-UX ksh and POSIX shell print the target directory to stdout
 
5802
+# if CDPATH is set.
 
5803
+if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
 
5804
+
 
5805
+# The names of the tagged configurations supported by this script.
 
5806
+available_tags=" CXX"
 
5807
+
 
5808
+# ### BEGIN LIBTOOL CONFIG
 
5809
+
 
5810
+# Libtool was configured on host beebo:
 
5811
+
 
5812
+# Shell to use when invoking shell scripts.
 
5813
+SHELL="/bin/sh"
 
5814
+
 
5815
+# Whether or not to build shared libraries.
 
5816
+build_libtool_libs=yes
 
5817
+
 
5818
+# Whether or not to build static libraries.
 
5819
+build_old_libs=yes
 
5820
+
 
5821
+# Whether or not to add -lc for building shared libraries.
 
5822
+build_libtool_need_lc=no
 
5823
+
 
5824
+# Whether or not to disallow shared libs when runtime libs are static
 
5825
+allow_libtool_libs_with_static_runtimes=no
 
5826
+
 
5827
+# Whether or not to optimize for fast installation.
 
5828
+fast_install=yes
 
5829
+
 
5830
+# The host system.
 
5831
+host_alias=
 
5832
+host=i686-pc-linux-gnu
 
5833
+
 
5834
+# An echo program that does not interpret backslashes.
 
5835
+echo="echo"
 
5836
+
 
5837
+# The archiver.
 
5838
+AR="ar"
 
5839
+AR_FLAGS="cru"
 
5840
+
 
5841
+# A C compiler.
 
5842
+LTCC="gcc"
 
5843
+
 
5844
+# A language-specific compiler.
 
5845
+CC="gcc"
 
5846
+
 
5847
+# Is the compiler the GNU C compiler?
 
5848
+with_gcc=yes
 
5849
+
 
5850
+# An ERE matcher.
 
5851
+EGREP="grep -E"
 
5852
+
 
5853
+# The linker used to build libraries.
 
5854
+LD="/usr/bin/ld"
 
5855
+
 
5856
+# Whether we need hard or soft links.
 
5857
+LN_S="ln -s"
 
5858
+
 
5859
+# A BSD-compatible nm program.
 
5860
+NM="/usr/bin/nm -B"
 
5861
+
 
5862
+# A symbol stripping program
 
5863
+STRIP="strip"
 
5864
+
 
5865
+# Used to examine libraries when file_magic_cmd begins "file"
 
5866
+MAGIC_CMD=file
 
5867
+
 
5868
+# Used on cygwin: DLL creation program.
 
5869
+DLLTOOL="dlltool"
 
5870
+
 
5871
+# Used on cygwin: object dumper.
 
5872
+OBJDUMP="objdump"
 
5873
+
 
5874
+# Used on cygwin: assembler.
 
5875
+AS="as"
 
5876
+
 
5877
+# The name of the directory that contains temporary libtool files.
 
5878
+objdir=.libs
 
5879
+
 
5880
+# How to create reloadable object files.
 
5881
+reload_flag=" -r"
 
5882
+reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs"
 
5883
+
 
5884
+# How to pass a linker flag through the compiler.
 
5885
+wl="-Wl,"
 
5886
+
 
5887
+# Object file suffix (normally "o").
 
5888
+objext="o"
 
5889
+
 
5890
+# Old archive suffix (normally "a").
 
5891
+libext="a"
 
5892
+
 
5893
+# Shared library suffix (normally ".so").
 
5894
+shrext_cmds='.so'
 
5895
+
 
5896
+# Executable file suffix (normally "").
 
5897
+exeext=""
 
5898
+
 
5899
+# Additional compiler flags for building library objects.
 
5900
+pic_flag=" -fPIC -DPIC"
 
5901
+pic_mode=default
 
5902
+
 
5903
+# What is the maximum length of a command?
 
5904
+max_cmd_len=32768
 
5905
+
 
5906
+# Does compiler simultaneously support -c and -o options?
 
5907
+compiler_c_o="yes"
 
5908
+
 
5909
+# Must we lock files when doing compilation ?
 
5910
+need_locks="no"
 
5911
+
 
5912
+# Do we need the lib prefix for modules?
 
5913
+need_lib_prefix=no
 
5914
+
 
5915
+# Do we need a version for libraries?
 
5916
+need_version=no
 
5917
+
 
5918
+# Whether dlopen is supported.
 
5919
+dlopen_support=unknown
 
5920
+
 
5921
+# Whether dlopen of programs is supported.
 
5922
+dlopen_self=unknown
 
5923
+
 
5924
+# Whether dlopen of statically linked programs is supported.
 
5925
+dlopen_self_static=unknown
 
5926
+
 
5927
+# Compiler flag to prevent dynamic linking.
 
5928
+link_static_flag="-static"
 
5929
+
 
5930
+# Compiler flag to turn off builtin functions.
 
5931
+no_builtin_flag=" -fno-builtin"
 
5932
+
 
5933
+# Compiler flag to allow reflexive dlopens.
 
5934
+export_dynamic_flag_spec="\${wl}--export-dynamic"
 
5935
+
 
5936
+# Compiler flag to generate shared objects directly from archives.
 
5937
+whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive"
 
5938
+
 
5939
+# Compiler flag to generate thread-safe objects.
 
5940
+thread_safe_flag_spec=""
 
5941
+
 
5942
+# Library versioning type.
 
5943
+version_type=linux
 
5944
+
 
5945
+# Format of library name prefix.
 
5946
+libname_spec="lib\$name"
 
5947
+
 
5948
+# List of archive names.  First name is the real one, the rest are links.
 
5949
+# The last name is the one that the linker finds with -lNAME.
 
5950
+library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext}\$major \$libname\${shared_ext}"
 
5951
+
 
5952
+# The coded name of the library, if different from the real name.
 
5953
+soname_spec="\${libname}\${release}\${shared_ext}\$major"
 
5954
+
 
5955
+# Commands used to build and install an old-style archive.
 
5956
+RANLIB="ranlib"
 
5957
+old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs\$old_deplibs~\$RANLIB \$oldlib"
 
5958
+old_postinstall_cmds="\$RANLIB \$oldlib~chmod 644 \$oldlib"
 
5959
+old_postuninstall_cmds=""
 
5960
+
 
5961
+# Create an old-style archive from a shared archive.
 
5962
+old_archive_from_new_cmds=""
 
5963
+
 
5964
+# Create a temporary old-style archive to link instead of a shared archive.
 
5965
+old_archive_from_expsyms_cmds=""
 
5966
+
 
5967
+# Commands used to build and install a shared archive.
 
5968
+archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib"
 
5969
+archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~
 
5970
+cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~
 
5971
+\$echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~
 
5972
+        \$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib"
 
5973
+postinstall_cmds=""
 
5974
+postuninstall_cmds=""
 
5975
+
 
5976
+# Commands used to build a loadable module (assumed same as above if empty)
 
5977
+module_cmds=""
 
5978
+module_expsym_cmds=""
 
5979
+
 
5980
+# Commands to strip libraries.
 
5981
+old_striplib="strip --strip-debug"
 
5982
+striplib="strip --strip-unneeded"
 
5983
+
 
5984
+# Dependencies to place before the objects being linked to create a
 
5985
+# shared library.
 
5986
+predep_objects=""
 
5987
+
 
5988
+# Dependencies to place after the objects being linked to create a
 
5989
+# shared library.
 
5990
+postdep_objects=""
 
5991
+
 
5992
+# Dependencies to place before the objects being linked to create a
 
5993
+# shared library.
 
5994
+predeps=""
 
5995
+
 
5996
+# Dependencies to place after the objects being linked to create a
 
5997
+# shared library.
 
5998
+postdeps=""
 
5999
+
 
6000
+# The library search path used internally by the compiler when linking
 
6001
+# a shared library.
 
6002
+compiler_lib_search_path=""
 
6003
+
 
6004
+# Method to check whether dependent libraries are shared objects.
 
6005
+deplibs_check_method="pass_all"
 
6006
+
 
6007
+# Command to use when deplibs_check_method == file_magic.
 
6008
+file_magic_cmd="\$MAGIC_CMD"
 
6009
+
 
6010
+# Flag that allows shared libraries with undefined symbols to be built.
 
6011
+allow_undefined_flag=""
 
6012
+
 
6013
+# Flag that forces no undefined symbols.
 
6014
+no_undefined_flag=""
 
6015
+
 
6016
+# Commands used to finish a libtool library installation in a directory.
 
6017
+finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir"
 
6018
+
 
6019
+# Same as above, but a single script fragment to be evaled but not shown.
 
6020
+finish_eval=""
 
6021
+
 
6022
+# Take the output of nm and produce a listing of raw symbols and C names.
 
6023
+global_symbol_pipe="sed -n -e 's/^.*[  ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[       ][      ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
 
6024
+
 
6025
+# Transform the output of nm in a proper C declaration
 
6026
+global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'"
 
6027
+
 
6028
+# Transform the output of nm in a C name address pair
 
6029
+global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'"
 
6030
+
 
6031
+# This is the shared library runtime path variable.
 
6032
+runpath_var=LD_RUN_PATH
 
6033
+
 
6034
+# This is the shared library path variable.
 
6035
+shlibpath_var=LD_LIBRARY_PATH
 
6036
+
 
6037
+# Is shlibpath searched before the hard-coded library search path?
 
6038
+shlibpath_overrides_runpath=no
 
6039
+
 
6040
+# How to hardcode a shared library path into an executable.
 
6041
+hardcode_action=immediate
 
6042
+
 
6043
+# Whether we should hardcode library paths into libraries.
 
6044
+hardcode_into_libs=yes
 
6045
+
 
6046
+# Flag to hardcode $libdir into a binary during linking.
 
6047
+# This must work even if $libdir does not exist.
 
6048
+hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir"
 
6049
+
 
6050
+# If ld is used when linking, flag to hardcode $libdir into
 
6051
+# a binary during linking. This must work even if $libdir does
 
6052
+# not exist.
 
6053
+hardcode_libdir_flag_spec_ld=""
 
6054
+
 
6055
+# Whether we need a single -rpath flag with a separated argument.
 
6056
+hardcode_libdir_separator=""
 
6057
+
 
6058
+# Set to yes if using DIR/libNAME during linking hardcodes DIR into the
 
6059
+# resulting binary.
 
6060
+hardcode_direct=no
 
6061
+
 
6062
+# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
 
6063
+# resulting binary.
 
6064
+hardcode_minus_L=no
 
6065
+
 
6066
+# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
 
6067
+# the resulting binary.
 
6068
+hardcode_shlibpath_var=unsupported
 
6069
+
 
6070
+# Set to yes if building a shared library automatically hardcodes DIR into the library
 
6071
+# and all subsequent libraries and executables linked against it.
 
6072
+hardcode_automatic=no
 
6073
+
 
6074
+# Variables whose values should be saved in libtool wrapper scripts and
 
6075
+# restored at relink time.
 
6076
+variables_saved_for_relink="PATH  LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 
6077
+
 
6078
+# Whether libtool must link a program against all its dependency libraries.
 
6079
+link_all_deplibs=no
 
6080
+
 
6081
+# Compile-time system search path for libraries
 
6082
+sys_lib_search_path_spec=" /usr/lib/gcc/i486-linux-gnu/4.0.1/ /usr/lib/gcc/i486-linux-gnu/4.0.1/ /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../../i486-linux-gnu/lib/i486-linux-gnu/4.0.1/ /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../../i486-linux-gnu/lib/ /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../i486-linux-gnu/4.0.1/ /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../ /lib/i486-linux-gnu/4.0.1/ /lib/ /usr/lib/i486-linux-gnu/4.0.1/ /usr/lib/"
 
6083
+
 
6084
+# Run-time system search path for libraries
 
6085
+sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib /lib64 /usr/lib64 /usr/X11R6/lib64 "
 
6086
+
 
6087
+# Fix the shell variable $srcfile for the compiler.
 
6088
+fix_srcfile_path=""
 
6089
+
 
6090
+# Set to yes if exported symbols are required.
 
6091
+always_export_symbols=no
 
6092
+
 
6093
+# The commands to list exported symbols.
 
6094
+export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols"
 
6095
+
 
6096
+# The commands to extract the exported symbol list from a shared archive.
 
6097
+extract_expsyms_cmds=""
 
6098
+
 
6099
+# Symbols that should not be listed in the preloaded symbols.
 
6100
+exclude_expsyms="_GLOBAL_OFFSET_TABLE_"
 
6101
+
 
6102
+# Symbols that must always be exported.
 
6103
+include_expsyms=""
 
6104
+
 
6105
+# ### END LIBTOOL CONFIG
 
6106
+
 
6107
+# ltmain.sh - Provide generalized library-building support services.
 
6108
+# NOTE: Changing this file will not affect anything until you rerun configure.
 
6109
+#
 
6110
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004
 
6111
+# Free Software Foundation, Inc.
 
6112
+# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 
6113
+#
 
6114
+# This program is free software; you can redistribute it and/or modify
 
6115
+# it under the terms of the GNU General Public License as published by
 
6116
+# the Free Software Foundation; either version 2 of the License, or
 
6117
+# (at your option) any later version.
 
6118
+#
 
6119
+# This program is distributed in the hope that it will be useful, but
 
6120
+# WITHOUT ANY WARRANTY; without even the implied warranty of
 
6121
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
6122
+# General Public License for more details.
 
6123
+#
 
6124
+# You should have received a copy of the GNU General Public License
 
6125
+# along with this program; if not, write to the Free Software
 
6126
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
6127
+#
 
6128
+# As a special exception to the GNU General Public License, if you
 
6129
+# distribute this file as part of a program that contains a
 
6130
+# configuration script generated by Autoconf, you may include it under
 
6131
+# the same distribution terms that you use for the rest of that program.
 
6132
+
 
6133
+basename="s,^.*/,,g"
 
6134
+
 
6135
+# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
 
6136
+# is ksh but when the shell is invoked as "sh" and the current value of
 
6137
+# the _XPG environment variable is not equal to 1 (one), the special
 
6138
+# positional parameter $0, within a function call, is the name of the
 
6139
+# function.
 
6140
+progpath="$0"
 
6141
+
 
6142
+# The name of this program:
 
6143
+progname=`echo "$progpath" | $SED $basename`
 
6144
+modename="$progname"
 
6145
+
 
6146
+# Global variables:
 
6147
+EXIT_SUCCESS=0
 
6148
+EXIT_FAILURE=1
 
6149
+
 
6150
+PROGRAM=ltmain.sh
 
6151
+PACKAGE=libtool
 
6152
+VERSION=1.5.6
 
6153
+TIMESTAMP=" (1.1220.2.95 2004/04/11 05:50:42) Debian$Rev: 224 $"
 
6154
+
 
6155
+
 
6156
+# Check that we have a working $echo.
 
6157
+if test "X$1" = X--no-reexec; then
 
6158
+  # Discard the --no-reexec flag, and continue.
 
6159
+  shift
 
6160
+elif test "X$1" = X--fallback-echo; then
 
6161
+  # Avoid inline document here, it may be left over
 
6162
+  :
 
6163
+elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
 
6164
+  # Yippee, $echo works!
 
6165
+  :
 
6166
+else
 
6167
+  # Restart under the correct shell, and then maybe $echo will work.
 
6168
+  exec $SHELL "$progpath" --no-reexec ${1+"$@"}
 
6169
+fi
 
6170
+
 
6171
+if test "X$1" = X--fallback-echo; then
 
6172
+  # used as fallback echo
 
6173
+  shift
 
6174
+  cat <<EOF
 
6175
+$*
 
6176
+EOF
 
6177
+  exit $EXIT_SUCCESS
 
6178
+fi
 
6179
+
 
6180
+default_mode=
 
6181
+help="Try \`$progname --help' for more information."
 
6182
+magic="%%%MAGIC variable%%%"
 
6183
+mkdir="mkdir"
 
6184
+mv="mv -f"
 
6185
+rm="rm -f"
 
6186
+
 
6187
+# Sed substitution that helps us do robust quoting.  It backslashifies
 
6188
+# metacharacters that are still active within double-quoted strings.
 
6189
+Xsed="${SED}"' -e 1s/^X//'
 
6190
+sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
 
6191
+# test EBCDIC or ASCII
 
6192
+case `echo A|tr A '\301'` in
 
6193
+ A) # EBCDIC based system
 
6194
+  SP2NL="tr '\100' '\n'"
 
6195
+  NL2SP="tr '\r\n' '\100\100'"
 
6196
+  ;;
 
6197
+ *) # Assume ASCII based system
 
6198
+  SP2NL="tr '\040' '\012'"
 
6199
+  NL2SP="tr '\015\012' '\040\040'"
 
6200
+  ;;
 
6201
+esac
 
6202
+
 
6203
+# NLS nuisances.
 
6204
+# Only set LANG and LC_ALL to C if already set.
 
6205
+# These must not be set unconditionally because not all systems understand
 
6206
+# e.g. LANG=C (notably SCO).
 
6207
+# We save the old values to restore during execute mode.
 
6208
+if test "${LC_ALL+set}" = set; then
 
6209
+  save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
 
6210
+fi
 
6211
+if test "${LANG+set}" = set; then
 
6212
+  save_LANG="$LANG"; LANG=C; export LANG
 
6213
+fi
 
6214
+
 
6215
+# Make sure IFS has a sensible default
 
6216
+: ${IFS="      
 
6217
+"}
 
6218
+
 
6219
+if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
 
6220
+  $echo "$modename: not configured to build any kind of library" 1>&2
 
6221
+  $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
6222
+  exit $EXIT_FAILURE
 
6223
+fi
 
6224
+
 
6225
+# Global variables.
 
6226
+mode=$default_mode
 
6227
+nonopt=
 
6228
+prev=
 
6229
+prevopt=
 
6230
+run=
 
6231
+show="$echo"
 
6232
+show_help=
 
6233
+execute_dlfiles=
 
6234
+lo2o="s/\\.lo\$/.${objext}/"
 
6235
+o2lo="s/\\.${objext}\$/.lo/"
 
6236
+
 
6237
+#####################################
 
6238
+# Shell function definitions:
 
6239
+# This seems to be the best place for them
 
6240
+
 
6241
+# func_win32_libid arg
 
6242
+# return the library type of file 'arg'
 
6243
+#
 
6244
+# Need a lot of goo to handle *both* DLLs and import libs
 
6245
+# Has to be a shell function in order to 'eat' the argument
 
6246
+# that is supplied when $file_magic_command is called.
 
6247
+func_win32_libid () {
 
6248
+  win32_libid_type="unknown"
 
6249
+  win32_fileres=`file -L $1 2>/dev/null`
 
6250
+  case $win32_fileres in
 
6251
+  *ar\ archive\ import\ library*) # definitely import
 
6252
+    win32_libid_type="x86 archive import"
 
6253
+    ;;
 
6254
+  *ar\ archive*) # could be an import, or static
 
6255
+    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \
 
6256
+      $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
 
6257
+      win32_nmres=`eval $NM -f posix -A $1 | \
 
6258
+       sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'`
 
6259
+      if test "X$win32_nmres" = "Ximport" ; then
 
6260
+        win32_libid_type="x86 archive import"
 
6261
+      else
 
6262
+        win32_libid_type="x86 archive static"
 
6263
+      fi
 
6264
+    fi
 
6265
+    ;;
 
6266
+  *DLL*)
 
6267
+    win32_libid_type="x86 DLL"
 
6268
+    ;;
 
6269
+  *executable*) # but shell scripts are "executable" too...
 
6270
+    case $win32_fileres in
 
6271
+    *MS\ Windows\ PE\ Intel*)
 
6272
+      win32_libid_type="x86 DLL"
 
6273
+      ;;
 
6274
+    esac
 
6275
+    ;;
 
6276
+  esac
 
6277
+  $echo $win32_libid_type
 
6278
+}
 
6279
+
 
6280
+
 
6281
+# func_infer_tag arg
 
6282
+# Infer tagged configuration to use if any are available and
 
6283
+# if one wasn't chosen via the "--tag" command line option.
 
6284
+# Only attempt this if the compiler in the base compile
 
6285
+# command doesn't match the default compiler.
 
6286
+# arg is usually of the form 'gcc ...'
 
6287
+func_infer_tag () {
 
6288
+    if test -n "$available_tags" && test -z "$tagname"; then
 
6289
+      CC_quoted=
 
6290
+      for arg in $CC; do
 
6291
+       case $arg in
 
6292
+         *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
 
6293
+         arg="\"$arg\""
 
6294
+         ;;
 
6295
+       esac
 
6296
+       CC_quoted="$CC_quoted $arg"
 
6297
+      done
 
6298
+      case $@ in
 
6299
+      # Blanks in the command may have been stripped by the calling shell,
 
6300
+      # but not from the CC environment variable when configure was run.
 
6301
+      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;
 
6302
+      # Blanks at the start of $base_compile will cause this to fail
 
6303
+      # if we don't check for them as well.
 
6304
+      *)
 
6305
+       for z in $available_tags; do
 
6306
+         if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
 
6307
+           # Evaluate the configuration.
 
6308
+           eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
 
6309
+           CC_quoted=
 
6310
+           for arg in $CC; do
 
6311
+           # Double-quote args containing other shell metacharacters.
 
6312
+           case $arg in
 
6313
+             *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
6314
+             arg="\"$arg\""
 
6315
+             ;;
 
6316
+           esac
 
6317
+           CC_quoted="$CC_quoted $arg"
 
6318
+         done
 
6319
+           case "$@ " in
 
6320
+             " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)
 
6321
+             # The compiler in the base compile command matches
 
6322
+             # the one in the tagged configuration.
 
6323
+             # Assume this is the tagged configuration we want.
 
6324
+             tagname=$z
 
6325
+             break
 
6326
+             ;;
 
6327
+           esac
 
6328
+         fi
 
6329
+       done
 
6330
+       # If $tagname still isn't set, then no tagged configuration
 
6331
+       # was found and let the user know that the "--tag" command
 
6332
+       # line option must be used.
 
6333
+       if test -z "$tagname"; then
 
6334
+         $echo "$modename: unable to infer tagged configuration"
 
6335
+         $echo "$modename: specify a tag with \`--tag'" 1>&2
 
6336
+         exit $EXIT_FAILURE
 
6337
+#        else
 
6338
+#          $echo "$modename: using $tagname tagged configuration"
 
6339
+       fi
 
6340
+       ;;
 
6341
+      esac
 
6342
+    fi
 
6343
+}
 
6344
+# End of Shell function definitions
 
6345
+#####################################
 
6346
+
 
6347
+# Darwin sucks
 
6348
+eval std_shrext=\"$shrext_cmds\"
 
6349
+
 
6350
+# Parse our command line options once, thoroughly.
 
6351
+while test "$#" -gt 0
 
6352
+do
 
6353
+  arg="$1"
 
6354
+  shift
 
6355
+
 
6356
+  case $arg in
 
6357
+  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
 
6358
+  *) optarg= ;;
 
6359
+  esac
 
6360
+
 
6361
+  # If the previous option needs an argument, assign it.
 
6362
+  if test -n "$prev"; then
 
6363
+    case $prev in
 
6364
+    execute_dlfiles)
 
6365
+      execute_dlfiles="$execute_dlfiles $arg"
 
6366
+      ;;
 
6367
+    tag)
 
6368
+      tagname="$arg"
 
6369
+      preserve_args="${preserve_args}=$arg"
 
6370
+
 
6371
+      # Check whether tagname contains only valid characters
 
6372
+      case $tagname in
 
6373
+      *[!-_A-Za-z0-9,/]*)
 
6374
+       $echo "$progname: invalid tag name: $tagname" 1>&2
 
6375
+       exit $EXIT_FAILURE
 
6376
+       ;;
 
6377
+      esac
 
6378
+
 
6379
+      case $tagname in
 
6380
+      CC)
 
6381
+       # Don't test for the "default" C tag, as we know, it's there, but
 
6382
+       # not specially marked.
 
6383
+       ;;
 
6384
+      *)
 
6385
+       if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then
 
6386
+         taglist="$taglist $tagname"
 
6387
+         # Evaluate the configuration.
 
6388
+         eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
 
6389
+       else
 
6390
+         $echo "$progname: ignoring unknown tag $tagname" 1>&2
 
6391
+       fi
 
6392
+       ;;
 
6393
+      esac
 
6394
+      ;;
 
6395
+    *)
 
6396
+      eval "$prev=\$arg"
 
6397
+      ;;
 
6398
+    esac
 
6399
+
 
6400
+    prev=
 
6401
+    prevopt=
 
6402
+    continue
 
6403
+  fi
 
6404
+
 
6405
+  # Have we seen a non-optional argument yet?
 
6406
+  case $arg in
 
6407
+  --help)
 
6408
+    show_help=yes
 
6409
+    ;;
 
6410
+
 
6411
+  --version)
 
6412
+    $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
 
6413
+    $echo
 
6414
+    $echo "Copyright (C) 2003  Free Software Foundation, Inc."
 
6415
+    $echo "This is free software; see the source for copying conditions.  There is NO"
 
6416
+    $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
 
6417
+    exit $EXIT_SUCCESS
 
6418
+    ;;
 
6419
+
 
6420
+  --config)
 
6421
+    ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath
 
6422
+    # Now print the configurations for the tags.
 
6423
+    for tagname in $taglist; do
 
6424
+      ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"
 
6425
+    done
 
6426
+    exit $EXIT_SUCCESS
 
6427
+    ;;
 
6428
+
 
6429
+  --debug)
 
6430
+    $echo "$progname: enabling shell trace mode"
 
6431
+    set -x
 
6432
+    preserve_args="$preserve_args $arg"
 
6433
+    ;;
 
6434
+
 
6435
+  --dry-run | -n)
 
6436
+    run=:
 
6437
+    ;;
 
6438
+
 
6439
+  --features)
 
6440
+    $echo "host: $host"
 
6441
+    if test "$build_libtool_libs" = yes; then
 
6442
+      $echo "enable shared libraries"
 
6443
+    else
 
6444
+      $echo "disable shared libraries"
 
6445
+    fi
 
6446
+    if test "$build_old_libs" = yes; then
 
6447
+      $echo "enable static libraries"
 
6448
+    else
 
6449
+      $echo "disable static libraries"
 
6450
+    fi
 
6451
+    exit $EXIT_SUCCESS
 
6452
+    ;;
 
6453
+
 
6454
+  --finish) mode="finish" ;;
 
6455
+
 
6456
+  --mode) prevopt="--mode" prev=mode ;;
 
6457
+  --mode=*) mode="$optarg" ;;
 
6458
+
 
6459
+  --preserve-dup-deps) duplicate_deps="yes" ;;
 
6460
+
 
6461
+  --quiet | --silent)
 
6462
+    show=:
 
6463
+    preserve_args="$preserve_args $arg"
 
6464
+    ;;
 
6465
+
 
6466
+  --tag) prevopt="--tag" prev=tag ;;
 
6467
+  --tag=*)
 
6468
+    set tag "$optarg" ${1+"$@"}
 
6469
+    shift
 
6470
+    prev=tag
 
6471
+    preserve_args="$preserve_args --tag"
 
6472
+    ;;
 
6473
+
 
6474
+  -dlopen)
 
6475
+    prevopt="-dlopen"
 
6476
+    prev=execute_dlfiles
 
6477
+    ;;
 
6478
+
 
6479
+  -*)
 
6480
+    $echo "$modename: unrecognized option \`$arg'" 1>&2
 
6481
+    $echo "$help" 1>&2
 
6482
+    exit $EXIT_FAILURE
 
6483
+    ;;
 
6484
+
 
6485
+  *)
 
6486
+    nonopt="$arg"
 
6487
+    break
 
6488
+    ;;
 
6489
+  esac
 
6490
+done
 
6491
+
 
6492
+if test -n "$prevopt"; then
 
6493
+  $echo "$modename: option \`$prevopt' requires an argument" 1>&2
 
6494
+  $echo "$help" 1>&2
 
6495
+  exit $EXIT_FAILURE
 
6496
+fi
 
6497
+
 
6498
+# If this variable is set in any of the actions, the command in it
 
6499
+# will be execed at the end.  This prevents here-documents from being
 
6500
+# left over by shells.
 
6501
+exec_cmd=
 
6502
+
 
6503
+if test -z "$show_help"; then
 
6504
+
 
6505
+  # Infer the operation mode.
 
6506
+  if test -z "$mode"; then
 
6507
+    $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
 
6508
+    $echo "*** Future versions of Libtool will require -mode=MODE be specified." 1>&2
 
6509
+    case $nonopt in
 
6510
+    *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)
 
6511
+      mode=link
 
6512
+      for arg
 
6513
+      do
 
6514
+       case $arg in
 
6515
+       -c)
 
6516
+          mode=compile
 
6517
+          break
 
6518
+          ;;
 
6519
+       esac
 
6520
+      done
 
6521
+      ;;
 
6522
+    *db | *dbx | *strace | *truss)
 
6523
+      mode=execute
 
6524
+      ;;
 
6525
+    *install*|cp|mv)
 
6526
+      mode=install
 
6527
+      ;;
 
6528
+    *rm)
 
6529
+      mode=uninstall
 
6530
+      ;;
 
6531
+    *)
 
6532
+      # If we have no mode, but dlfiles were specified, then do execute mode.
 
6533
+      test -n "$execute_dlfiles" && mode=execute
 
6534
+
 
6535
+      # Just use the default operation mode.
 
6536
+      if test -z "$mode"; then
 
6537
+       if test -n "$nonopt"; then
 
6538
+         $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
 
6539
+       else
 
6540
+         $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
 
6541
+       fi
 
6542
+      fi
 
6543
+      ;;
 
6544
+    esac
 
6545
+  fi
 
6546
+
 
6547
+  # Only execute mode is allowed to have -dlopen flags.
 
6548
+  if test -n "$execute_dlfiles" && test "$mode" != execute; then
 
6549
+    $echo "$modename: unrecognized option \`-dlopen'" 1>&2
 
6550
+    $echo "$help" 1>&2
 
6551
+    exit $EXIT_FAILURE
 
6552
+  fi
 
6553
+
 
6554
+  # Change the help message to a mode-specific one.
 
6555
+  generic_help="$help"
 
6556
+  help="Try \`$modename --help --mode=$mode' for more information."
 
6557
+
 
6558
+  # These modes are in order of execution frequency so that they run quickly.
 
6559
+  case $mode in
 
6560
+  # libtool compile mode
 
6561
+  compile)
 
6562
+    modename="$modename: compile"
 
6563
+    # Get the compilation command and the source file.
 
6564
+    base_compile=
 
6565
+    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"
 
6566
+    suppress_opt=yes
 
6567
+    suppress_output=
 
6568
+    arg_mode=normal
 
6569
+    libobj=
 
6570
+    later=
 
6571
+
 
6572
+    for arg
 
6573
+    do
 
6574
+      case "$arg_mode" in
 
6575
+      arg  )
 
6576
+       # do not "continue".  Instead, add this to base_compile
 
6577
+       lastarg="$arg"
 
6578
+       arg_mode=normal
 
6579
+       ;;
 
6580
+
 
6581
+      target )
 
6582
+       libobj="$arg"
 
6583
+       arg_mode=normal
 
6584
+       continue
 
6585
+       ;;
 
6586
+
 
6587
+      normal )
 
6588
+       # Accept any command-line options.
 
6589
+       case $arg in
 
6590
+       -o)
 
6591
+         if test -n "$libobj" ; then
 
6592
+           $echo "$modename: you cannot specify \`-o' more than once" 1>&2
 
6593
+           exit $EXIT_FAILURE
 
6594
+         fi
 
6595
+         arg_mode=target
 
6596
+         continue
 
6597
+         ;;
 
6598
+
 
6599
+       -static | -prefer-pic | -prefer-non-pic)
 
6600
+         later="$later $arg"
 
6601
+         continue
 
6602
+         ;;
 
6603
+
 
6604
+       -no-suppress)
 
6605
+         suppress_opt=no
 
6606
+         continue
 
6607
+         ;;
 
6608
+
 
6609
+       -Xcompiler)
 
6610
+         arg_mode=arg  #  the next one goes into the "base_compile" arg list
 
6611
+         continue      #  The current "srcfile" will either be retained or
 
6612
+         ;;            #  replaced later.  I would guess that would be a bug.
 
6613
+
 
6614
+       -Wc,*)
 
6615
+         args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
 
6616
+         lastarg=
 
6617
+         save_ifs="$IFS"; IFS=','
 
6618
+         for arg in $args; do
 
6619
+           IFS="$save_ifs"
 
6620
+
 
6621
+           # Double-quote args containing other shell metacharacters.
 
6622
+           # Many Bourne shells cannot handle close brackets correctly
 
6623
+           # in scan sets, so we specify it separately.
 
6624
+           case $arg in
 
6625
+             *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
6626
+             arg="\"$arg\""
 
6627
+             ;;
 
6628
+           esac
 
6629
+           lastarg="$lastarg $arg"
 
6630
+         done
 
6631
+         IFS="$save_ifs"
 
6632
+         lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
 
6633
+
 
6634
+         # Add the arguments to base_compile.
 
6635
+         base_compile="$base_compile $lastarg"
 
6636
+         continue
 
6637
+         ;;
 
6638
+
 
6639
+       * )
 
6640
+         # Accept the current argument as the source file.
 
6641
+         # The previous "srcfile" becomes the current argument.
 
6642
+         #
 
6643
+         lastarg="$srcfile"
 
6644
+         srcfile="$arg"
 
6645
+         ;;
 
6646
+       esac  #  case $arg
 
6647
+       ;;
 
6648
+      esac    #  case $arg_mode
 
6649
+
 
6650
+      # Aesthetically quote the previous argument.
 
6651
+      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
 
6652
+
 
6653
+      case $lastarg in
 
6654
+      # Double-quote args containing other shell metacharacters.
 
6655
+      # Many Bourne shells cannot handle close brackets correctly
 
6656
+      # in scan sets, so we specify it separately.
 
6657
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
 
6658
+       lastarg="\"$lastarg\""
 
6659
+       ;;
 
6660
+      esac
 
6661
+
 
6662
+      base_compile="$base_compile $lastarg"
 
6663
+    done # for arg
 
6664
+
 
6665
+    case $arg_mode in
 
6666
+    arg)
 
6667
+      $echo "$modename: you must specify an argument for -Xcompile"
 
6668
+      exit $EXIT_FAILURE
 
6669
+      ;;
 
6670
+    target)
 
6671
+      $echo "$modename: you must specify a target with \`-o'" 1>&2
 
6672
+      exit $EXIT_FAILURE
 
6673
+      ;;
 
6674
+    *)
 
6675
+      # Get the name of the library object.
 
6676
+      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
 
6677
+      ;;
 
6678
+    esac
 
6679
+
 
6680
+    # Recognize several different file suffixes.
 
6681
+    # If the user specifies -o file.o, it is replaced with file.lo
 
6682
+    xform='[cCFSifmso]'
 
6683
+    case $libobj in
 
6684
+    *.ada) xform=ada ;;
 
6685
+    *.adb) xform=adb ;;
 
6686
+    *.ads) xform=ads ;;
 
6687
+    *.asm) xform=asm ;;
 
6688
+    *.c++) xform=c++ ;;
 
6689
+    *.cc) xform=cc ;;
 
6690
+    *.ii) xform=ii ;;
 
6691
+    *.class) xform=class ;;
 
6692
+    *.cpp) xform=cpp ;;
 
6693
+    *.cxx) xform=cxx ;;
 
6694
+    *.f90) xform=f90 ;;
 
6695
+    *.for) xform=for ;;
 
6696
+    *.java) xform=java ;;
 
6697
+    esac
 
6698
+
 
6699
+    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
 
6700
+
 
6701
+    case $libobj in
 
6702
+    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
 
6703
+    *)
 
6704
+      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
 
6705
+      exit $EXIT_FAILURE
 
6706
+      ;;
 
6707
+    esac
 
6708
+
 
6709
+    func_infer_tag $base_compile
 
6710
+
 
6711
+    for arg in $later; do
 
6712
+      case $arg in
 
6713
+      -static)
 
6714
+       build_old_libs=yes
 
6715
+       continue
 
6716
+       ;;
 
6717
+
 
6718
+      -prefer-pic)
 
6719
+       pic_mode=yes
 
6720
+       continue
 
6721
+       ;;
 
6722
+
 
6723
+      -prefer-non-pic)
 
6724
+       pic_mode=no
 
6725
+       continue
 
6726
+       ;;
 
6727
+      esac
 
6728
+    done
 
6729
+
 
6730
+    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
 
6731
+    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
 
6732
+    if test "X$xdir" = "X$obj"; then
 
6733
+      xdir=
 
6734
+    else
 
6735
+      xdir=$xdir/
 
6736
+    fi
 
6737
+    lobj=${xdir}$objdir/$objname
 
6738
+
 
6739
+    if test -z "$base_compile"; then
 
6740
+      $echo "$modename: you must specify a compilation command" 1>&2
 
6741
+      $echo "$help" 1>&2
 
6742
+      exit $EXIT_FAILURE
 
6743
+    fi
 
6744
+
 
6745
+    # Delete any leftover library objects.
 
6746
+    if test "$build_old_libs" = yes; then
 
6747
+      removelist="$obj $lobj $libobj ${libobj}T"
 
6748
+    else
 
6749
+      removelist="$lobj $libobj ${libobj}T"
 
6750
+    fi
 
6751
+
 
6752
+    $run $rm $removelist
 
6753
+    trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
 
6754
+
 
6755
+    # On Cygwin there's no "real" PIC flag so we must build both object types
 
6756
+    case $host_os in
 
6757
+    cygwin* | mingw* | pw32* | os2*)
 
6758
+      pic_mode=default
 
6759
+      ;;
 
6760
+    esac
 
6761
+    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
 
6762
+      # non-PIC code in shared libraries is not supported
 
6763
+      pic_mode=default
 
6764
+    fi
 
6765
+
 
6766
+    # Calculate the filename of the output object if compiler does
 
6767
+    # not support -o with -c
 
6768
+    if test "$compiler_c_o" = no; then
 
6769
+      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
 
6770
+      lockfile="$output_obj.lock"
 
6771
+      removelist="$removelist $output_obj $lockfile"
 
6772
+      trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
 
6773
+    else
 
6774
+      output_obj=
 
6775
+      need_locks=no
 
6776
+      lockfile=
 
6777
+    fi
 
6778
+
 
6779
+    # Lock this critical section if it is needed
 
6780
+    # We use this script file to make the link, it avoids creating a new file
 
6781
+    if test "$need_locks" = yes; then
 
6782
+      until $run ln "$progpath" "$lockfile" 2>/dev/null; do
 
6783
+       $show "Waiting for $lockfile to be removed"
 
6784
+       sleep 2
 
6785
+      done
 
6786
+    elif test "$need_locks" = warn; then
 
6787
+      if test -f "$lockfile"; then
 
6788
+       $echo "\
 
6789
+*** ERROR, $lockfile exists and contains:
 
6790
+`cat $lockfile 2>/dev/null`
 
6791
+
 
6792
+This indicates that another process is trying to use the same
 
6793
+temporary object file, and libtool could not work around it because
 
6794
+your compiler does not support \`-c' and \`-o' together.  If you
 
6795
+repeat this compilation, it may succeed, by chance, but you had better
 
6796
+avoid parallel builds (make -j) in this platform, or get a better
 
6797
+compiler."
 
6798
+
 
6799
+       $run $rm $removelist
 
6800
+       exit $EXIT_FAILURE
 
6801
+      fi
 
6802
+      $echo $srcfile > "$lockfile"
 
6803
+    fi
 
6804
+
 
6805
+    if test -n "$fix_srcfile_path"; then
 
6806
+      eval srcfile=\"$fix_srcfile_path\"
 
6807
+    fi
 
6808
+
 
6809
+    $run $rm "$libobj" "${libobj}T"
 
6810
+
 
6811
+    # Create a libtool object file (analogous to a ".la" file),
 
6812
+    # but don't create it if we're doing a dry run.
 
6813
+    test -z "$run" && cat > ${libobj}T <<EOF
 
6814
+# $libobj - a libtool object file
 
6815
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
6816
+#
 
6817
+# Please DO NOT delete this file!
 
6818
+# It is necessary for linking the library.
 
6819
+
 
6820
+# Name of the PIC object.
 
6821
+EOF
 
6822
+
 
6823
+    # Only build a PIC object if we are building libtool libraries.
 
6824
+    if test "$build_libtool_libs" = yes; then
 
6825
+      # Without this assignment, base_compile gets emptied.
 
6826
+      fbsd_hideous_sh_bug=$base_compile
 
6827
+
 
6828
+      if test "$pic_mode" != no; then
 
6829
+       command="$base_compile $srcfile $pic_flag"
 
6830
+      else
 
6831
+       # Don't build PIC code
 
6832
+       command="$base_compile $srcfile"
 
6833
+      fi
 
6834
+
 
6835
+      if test ! -d "${xdir}$objdir"; then
 
6836
+       $show "$mkdir ${xdir}$objdir"
 
6837
+       $run $mkdir ${xdir}$objdir
 
6838
+       status=$?
 
6839
+       if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then
 
6840
+         exit $status
 
6841
+       fi
 
6842
+      fi
 
6843
+
 
6844
+      if test -z "$output_obj"; then
 
6845
+       # Place PIC objects in $objdir
 
6846
+       command="$command -o $lobj"
 
6847
+      fi
 
6848
+
 
6849
+      $run $rm "$lobj" "$output_obj"
 
6850
+
 
6851
+      $show "$command"
 
6852
+      if $run eval "$command"; then :
 
6853
+      else
 
6854
+       test -n "$output_obj" && $run $rm $removelist
 
6855
+       exit $EXIT_FAILURE
 
6856
+      fi
 
6857
+
 
6858
+      if test "$need_locks" = warn &&
 
6859
+        test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
 
6860
+       $echo "\
 
6861
+*** ERROR, $lockfile contains:
 
6862
+`cat $lockfile 2>/dev/null`
 
6863
+
 
6864
+but it should contain:
 
6865
+$srcfile
 
6866
+
 
6867
+This indicates that another process is trying to use the same
 
6868
+temporary object file, and libtool could not work around it because
 
6869
+your compiler does not support \`-c' and \`-o' together.  If you
 
6870
+repeat this compilation, it may succeed, by chance, but you had better
 
6871
+avoid parallel builds (make -j) in this platform, or get a better
 
6872
+compiler."
 
6873
+
 
6874
+       $run $rm $removelist
 
6875
+       exit $EXIT_FAILURE
 
6876
+      fi
 
6877
+
 
6878
+      # Just move the object if needed, then go on to compile the next one
 
6879
+      if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
 
6880
+       $show "$mv $output_obj $lobj"
 
6881
+       if $run $mv $output_obj $lobj; then :
 
6882
+       else
 
6883
+         error=$?
 
6884
+         $run $rm $removelist
 
6885
+         exit $error
 
6886
+       fi
 
6887
+      fi
 
6888
+
 
6889
+      # Append the name of the PIC object to the libtool object file.
 
6890
+      test -z "$run" && cat >> ${libobj}T <<EOF
 
6891
+pic_object='$objdir/$objname'
 
6892
+
 
6893
+EOF
 
6894
+
 
6895
+      # Allow error messages only from the first compilation.
 
6896
+      if test "$suppress_opt" = yes; then
 
6897
+        suppress_output=' >/dev/null 2>&1'
 
6898
+      fi
 
6899
+    else
 
6900
+      # No PIC object so indicate it doesn't exist in the libtool
 
6901
+      # object file.
 
6902
+      test -z "$run" && cat >> ${libobj}T <<EOF
 
6903
+pic_object=none
 
6904
+
 
6905
+EOF
 
6906
+    fi
 
6907
+
 
6908
+    # Only build a position-dependent object if we build old libraries.
 
6909
+    if test "$build_old_libs" = yes; then
 
6910
+      if test "$pic_mode" != yes; then
 
6911
+       # Don't build PIC code
 
6912
+       command="$base_compile $srcfile"
 
6913
+      else
 
6914
+       command="$base_compile $srcfile $pic_flag"
 
6915
+      fi
 
6916
+      if test "$compiler_c_o" = yes; then
 
6917
+       command="$command -o $obj"
 
6918
+      fi
 
6919
+
 
6920
+      # Suppress compiler output if we already did a PIC compilation.
 
6921
+      command="$command$suppress_output"
 
6922
+      $run $rm "$obj" "$output_obj"
 
6923
+      $show "$command"
 
6924
+      if $run eval "$command"; then :
 
6925
+      else
 
6926
+       $run $rm $removelist
 
6927
+       exit $EXIT_FAILURE
 
6928
+      fi
 
6929
+
 
6930
+      if test "$need_locks" = warn &&
 
6931
+        test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
 
6932
+       $echo "\
 
6933
+*** ERROR, $lockfile contains:
 
6934
+`cat $lockfile 2>/dev/null`
 
6935
+
 
6936
+but it should contain:
 
6937
+$srcfile
 
6938
+
 
6939
+This indicates that another process is trying to use the same
 
6940
+temporary object file, and libtool could not work around it because
 
6941
+your compiler does not support \`-c' and \`-o' together.  If you
 
6942
+repeat this compilation, it may succeed, by chance, but you had better
 
6943
+avoid parallel builds (make -j) in this platform, or get a better
 
6944
+compiler."
 
6945
+
 
6946
+       $run $rm $removelist
 
6947
+       exit $EXIT_FAILURE
 
6948
+      fi
 
6949
+
 
6950
+      # Just move the object if needed
 
6951
+      if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
 
6952
+       $show "$mv $output_obj $obj"
 
6953
+       if $run $mv $output_obj $obj; then :
 
6954
+       else
 
6955
+         error=$?
 
6956
+         $run $rm $removelist
 
6957
+         exit $error
 
6958
+       fi
 
6959
+      fi
 
6960
+
 
6961
+      # Append the name of the non-PIC object the libtool object file.
 
6962
+      # Only append if the libtool object file exists.
 
6963
+      test -z "$run" && cat >> ${libobj}T <<EOF
 
6964
+# Name of the non-PIC object.
 
6965
+non_pic_object='$objname'
 
6966
+
 
6967
+EOF
 
6968
+    else
 
6969
+      # Append the name of the non-PIC object the libtool object file.
 
6970
+      # Only append if the libtool object file exists.
 
6971
+      test -z "$run" && cat >> ${libobj}T <<EOF
 
6972
+# Name of the non-PIC object.
 
6973
+non_pic_object=none
 
6974
+
 
6975
+EOF
 
6976
+    fi
 
6977
+
 
6978
+    $run $mv "${libobj}T" "${libobj}"
 
6979
+
 
6980
+    # Unlock the critical section if it was locked
 
6981
+    if test "$need_locks" != no; then
 
6982
+      $run $rm "$lockfile"
 
6983
+    fi
 
6984
+
 
6985
+    exit $EXIT_SUCCESS
 
6986
+    ;;
 
6987
+
 
6988
+  # libtool link mode
 
6989
+  link | relink)
 
6990
+    modename="$modename: link"
 
6991
+    case $host in
 
6992
+    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
 
6993
+      # It is impossible to link a dll without this setting, and
 
6994
+      # we shouldn't force the makefile maintainer to figure out
 
6995
+      # which system we are compiling for in order to pass an extra
 
6996
+      # flag for every libtool invocation.
 
6997
+      # allow_undefined=no
 
6998
+
 
6999
+      # FIXME: Unfortunately, there are problems with the above when trying
 
7000
+      # to make a dll which has undefined symbols, in which case not
 
7001
+      # even a static library is built.  For now, we need to specify
 
7002
+      # -no-undefined on the libtool link line when we can be certain
 
7003
+      # that all symbols are satisfied, otherwise we get a static library.
 
7004
+      allow_undefined=yes
 
7005
+      ;;
 
7006
+    *)
 
7007
+      allow_undefined=yes
 
7008
+      ;;
 
7009
+    esac
 
7010
+    libtool_args="$nonopt"
 
7011
+    base_compile="$nonopt $@"
 
7012
+    compile_command="$nonopt"
 
7013
+    finalize_command="$nonopt"
 
7014
+
 
7015
+    compile_rpath=
 
7016
+    finalize_rpath=
 
7017
+    compile_shlibpath=
 
7018
+    finalize_shlibpath=
 
7019
+    convenience=
 
7020
+    old_convenience=
 
7021
+    deplibs=
 
7022
+    old_deplibs=
 
7023
+    compiler_flags=
 
7024
+    linker_flags=
 
7025
+    dllsearchpath=
 
7026
+    lib_search_path=`pwd`
 
7027
+    inst_prefix_dir=
 
7028
+
 
7029
+    avoid_version=no
 
7030
+    dlfiles=
 
7031
+    dlprefiles=
 
7032
+    dlself=no
 
7033
+    export_dynamic=no
 
7034
+    export_symbols=
 
7035
+    export_symbols_regex=
 
7036
+    generated=
 
7037
+    libobjs=
 
7038
+    ltlibs=
 
7039
+    module=no
 
7040
+    no_install=no
 
7041
+    objs=
 
7042
+    non_pic_objects=
 
7043
+    precious_files_regex=
 
7044
+    prefer_static_libs=no
 
7045
+    preload=no
 
7046
+    prev=
 
7047
+    prevarg=
 
7048
+    release=
 
7049
+    rpath=
 
7050
+    xrpath=
 
7051
+    perm_rpath=
 
7052
+    temp_rpath=
 
7053
+    thread_safe=no
 
7054
+    vinfo=
 
7055
+    vinfo_number=no
 
7056
+
 
7057
+    func_infer_tag $base_compile
 
7058
+
 
7059
+    # We need to know -static, to get the right output filenames.
 
7060
+    for arg
 
7061
+    do
 
7062
+      case $arg in
 
7063
+      -all-static | -static)
 
7064
+       if test "X$arg" = "X-all-static"; then
 
7065
+         if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
 
7066
+           $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
 
7067
+         fi
 
7068
+         if test -n "$link_static_flag"; then
 
7069
+           dlopen_self=$dlopen_self_static
 
7070
+         fi
 
7071
+       else
 
7072
+         if test -z "$pic_flag" && test -n "$link_static_flag"; then
 
7073
+           dlopen_self=$dlopen_self_static
 
7074
+         fi
 
7075
+       fi
 
7076
+       build_libtool_libs=no
 
7077
+       build_old_libs=yes
 
7078
+       prefer_static_libs=yes
 
7079
+       break
 
7080
+       ;;
 
7081
+      esac
 
7082
+    done
 
7083
+
 
7084
+    # See if our shared archives depend on static archives.
 
7085
+    test -n "$old_archive_from_new_cmds" && build_old_libs=yes
 
7086
+
 
7087
+    # Go through the arguments, transforming them on the way.
 
7088
+    while test "$#" -gt 0; do
 
7089
+      arg="$1"
 
7090
+      shift
 
7091
+      case $arg in
 
7092
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
 
7093
+       qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
 
7094
+       ;;
 
7095
+      *) qarg=$arg ;;
 
7096
+      esac
 
7097
+      libtool_args="$libtool_args $qarg"
 
7098
+
 
7099
+      # If the previous option needs an argument, assign it.
 
7100
+      if test -n "$prev"; then
 
7101
+       case $prev in
 
7102
+       output)
 
7103
+         compile_command="$compile_command @OUTPUT@"
 
7104
+         finalize_command="$finalize_command @OUTPUT@"
 
7105
+         ;;
 
7106
+       esac
 
7107
+
 
7108
+       case $prev in
 
7109
+       dlfiles|dlprefiles)
 
7110
+         if test "$preload" = no; then
 
7111
+           # Add the symbol object into the linking commands.
 
7112
+           compile_command="$compile_command @SYMFILE@"
 
7113
+           finalize_command="$finalize_command @SYMFILE@"
 
7114
+           preload=yes
 
7115
+         fi
 
7116
+         case $arg in
 
7117
+         *.la | *.lo) ;;  # We handle these cases below.
 
7118
+         force)
 
7119
+           if test "$dlself" = no; then
 
7120
+             dlself=needless
 
7121
+             export_dynamic=yes
 
7122
+           fi
 
7123
+           prev=
 
7124
+           continue
 
7125
+           ;;
 
7126
+         self)
 
7127
+           if test "$prev" = dlprefiles; then
 
7128
+             dlself=yes
 
7129
+           elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
 
7130
+             dlself=yes
 
7131
+           else
 
7132
+             dlself=needless
 
7133
+             export_dynamic=yes
 
7134
+           fi
 
7135
+           prev=
 
7136
+           continue
 
7137
+           ;;
 
7138
+         *)
 
7139
+           if test "$prev" = dlfiles; then
 
7140
+             dlfiles="$dlfiles $arg"
 
7141
+           else
 
7142
+             dlprefiles="$dlprefiles $arg"
 
7143
+           fi
 
7144
+           prev=
 
7145
+           continue
 
7146
+           ;;
 
7147
+         esac
 
7148
+         ;;
 
7149
+       expsyms)
 
7150
+         export_symbols="$arg"
 
7151
+         if test ! -f "$arg"; then
 
7152
+           $echo "$modename: symbol file \`$arg' does not exist"
 
7153
+           exit $EXIT_FAILURE
 
7154
+         fi
 
7155
+         prev=
 
7156
+         continue
 
7157
+         ;;
 
7158
+       expsyms_regex)
 
7159
+         export_symbols_regex="$arg"
 
7160
+         prev=
 
7161
+         continue
 
7162
+         ;;
 
7163
+       inst_prefix)
 
7164
+         inst_prefix_dir="$arg"
 
7165
+         prev=
 
7166
+         continue
 
7167
+         ;;
 
7168
+       precious_regex)
 
7169
+         precious_files_regex="$arg"
 
7170
+         prev=
 
7171
+         continue
 
7172
+         ;;
 
7173
+       release)
 
7174
+         release="-$arg"
 
7175
+         prev=
 
7176
+         continue
 
7177
+         ;;
 
7178
+       objectlist)
 
7179
+         if test -f "$arg"; then
 
7180
+           save_arg=$arg
 
7181
+           moreargs=
 
7182
+           for fil in `cat $save_arg`
 
7183
+           do
 
7184
+#            moreargs="$moreargs $fil"
 
7185
+             arg=$fil
 
7186
+             # A libtool-controlled object.
 
7187
+
 
7188
+             # Check to see that this really is a libtool object.
 
7189
+             if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
7190
+               pic_object=
 
7191
+               non_pic_object=
 
7192
+
 
7193
+               # Read the .lo file
 
7194
+               # If there is no directory component, then add one.
 
7195
+               case $arg in
 
7196
+               */* | *\\*) . $arg ;;
 
7197
+               *) . ./$arg ;;
 
7198
+               esac
 
7199
+
 
7200
+               if test -z "$pic_object" || \
 
7201
+                  test -z "$non_pic_object" ||
 
7202
+                  test "$pic_object" = none && \
 
7203
+                  test "$non_pic_object" = none; then
 
7204
+                 $echo "$modename: cannot find name of object for \`$arg'" 1>&2
 
7205
+                 exit $EXIT_FAILURE
 
7206
+               fi
 
7207
+
 
7208
+               # Extract subdirectory from the argument.
 
7209
+               xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
7210
+               if test "X$xdir" = "X$arg"; then
 
7211
+                 xdir=
 
7212
+               else
 
7213
+                 xdir="$xdir/"
 
7214
+               fi
 
7215
+
 
7216
+               if test "$pic_object" != none; then
 
7217
+                 # Prepend the subdirectory the object is found in.
 
7218
+                 pic_object="$xdir$pic_object"
 
7219
+
 
7220
+                 if test "$prev" = dlfiles; then
 
7221
+                   if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
 
7222
+                     dlfiles="$dlfiles $pic_object"
 
7223
+                     prev=
 
7224
+                     continue
 
7225
+                   else
 
7226
+                     # If libtool objects are unsupported, then we need to preload.
 
7227
+                     prev=dlprefiles
 
7228
+                   fi
 
7229
+                 fi
 
7230
+
 
7231
+                 # CHECK ME:  I think I busted this.  -Ossama
 
7232
+                 if test "$prev" = dlprefiles; then
 
7233
+                   # Preload the old-style object.
 
7234
+                   dlprefiles="$dlprefiles $pic_object"
 
7235
+                   prev=
 
7236
+                 fi
 
7237
+
 
7238
+                 # A PIC object.
 
7239
+                 libobjs="$libobjs $pic_object"
 
7240
+                 arg="$pic_object"
 
7241
+               fi
 
7242
+
 
7243
+               # Non-PIC object.
 
7244
+               if test "$non_pic_object" != none; then
 
7245
+                 # Prepend the subdirectory the object is found in.
 
7246
+                 non_pic_object="$xdir$non_pic_object"
 
7247
+
 
7248
+                 # A standard non-PIC object
 
7249
+                 non_pic_objects="$non_pic_objects $non_pic_object"
 
7250
+                 if test -z "$pic_object" || test "$pic_object" = none ; then
 
7251
+                   arg="$non_pic_object"
 
7252
+                 fi
 
7253
+               fi
 
7254
+             else
 
7255
+               # Only an error if not doing a dry-run.
 
7256
+               if test -z "$run"; then
 
7257
+                 $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
 
7258
+                 exit $EXIT_FAILURE
 
7259
+               else
 
7260
+                 # Dry-run case.
 
7261
+
 
7262
+                 # Extract subdirectory from the argument.
 
7263
+                 xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
7264
+                 if test "X$xdir" = "X$arg"; then
 
7265
+                   xdir=
 
7266
+                 else
 
7267
+                   xdir="$xdir/"
 
7268
+                 fi
 
7269
+
 
7270
+                 pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
 
7271
+                 non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
 
7272
+                 libobjs="$libobjs $pic_object"
 
7273
+                 non_pic_objects="$non_pic_objects $non_pic_object"
 
7274
+               fi
 
7275
+             fi
 
7276
+           done
 
7277
+         else
 
7278
+           $echo "$modename: link input file \`$save_arg' does not exist"
 
7279
+           exit $EXIT_FAILURE
 
7280
+         fi
 
7281
+         arg=$save_arg
 
7282
+         prev=
 
7283
+         continue
 
7284
+         ;;
 
7285
+       rpath | xrpath)
 
7286
+         # We need an absolute path.
 
7287
+         case $arg in
 
7288
+         [\\/]* | [A-Za-z]:[\\/]*) ;;
 
7289
+         *)
 
7290
+           $echo "$modename: only absolute run-paths are allowed" 1>&2
 
7291
+           exit $EXIT_FAILURE
 
7292
+           ;;
 
7293
+         esac
 
7294
+         if test "$prev" = rpath; then
 
7295
+           case "$rpath " in
 
7296
+           *" $arg "*) ;;
 
7297
+           *) rpath="$rpath $arg" ;;
 
7298
+           esac
 
7299
+         else
 
7300
+           case "$xrpath " in
 
7301
+           *" $arg "*) ;;
 
7302
+           *) xrpath="$xrpath $arg" ;;
 
7303
+           esac
 
7304
+         fi
 
7305
+         prev=
 
7306
+         continue
 
7307
+         ;;
 
7308
+       xcompiler)
 
7309
+         compiler_flags="$compiler_flags $qarg"
 
7310
+         prev=
 
7311
+         compile_command="$compile_command $qarg"
 
7312
+         finalize_command="$finalize_command $qarg"
 
7313
+         continue
 
7314
+         ;;
 
7315
+       xlinker)
 
7316
+         linker_flags="$linker_flags $qarg"
 
7317
+         compiler_flags="$compiler_flags $wl$qarg"
 
7318
+         prev=
 
7319
+         compile_command="$compile_command $wl$qarg"
 
7320
+         finalize_command="$finalize_command $wl$qarg"
 
7321
+         continue
 
7322
+         ;;
 
7323
+       xcclinker)
 
7324
+         linker_flags="$linker_flags $qarg"
 
7325
+         compiler_flags="$compiler_flags $qarg"
 
7326
+         prev=
 
7327
+         compile_command="$compile_command $qarg"
 
7328
+         finalize_command="$finalize_command $qarg"
 
7329
+         continue
 
7330
+         ;;
 
7331
+       shrext)
 
7332
+         shrext_cmds="$arg"
 
7333
+         prev=
 
7334
+         continue
 
7335
+         ;;
 
7336
+       *)
 
7337
+         eval "$prev=\"\$arg\""
 
7338
+         prev=
 
7339
+         continue
 
7340
+         ;;
 
7341
+       esac
 
7342
+      fi # test -n "$prev"
 
7343
+
 
7344
+      prevarg="$arg"
 
7345
+
 
7346
+      case $arg in
 
7347
+      -all-static)
 
7348
+       if test -n "$link_static_flag"; then
 
7349
+         compile_command="$compile_command $link_static_flag"
 
7350
+         finalize_command="$finalize_command $link_static_flag"
 
7351
+       fi
 
7352
+       continue
 
7353
+       ;;
 
7354
+
 
7355
+      -allow-undefined)
 
7356
+       # FIXME: remove this flag sometime in the future.
 
7357
+       $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
 
7358
+       continue
 
7359
+       ;;
 
7360
+
 
7361
+      -avoid-version)
 
7362
+       avoid_version=yes
 
7363
+       continue
 
7364
+       ;;
 
7365
+
 
7366
+      -dlopen)
 
7367
+       prev=dlfiles
 
7368
+       continue
 
7369
+       ;;
 
7370
+
 
7371
+      -dlpreopen)
 
7372
+       prev=dlprefiles
 
7373
+       continue
 
7374
+       ;;
 
7375
+
 
7376
+      -export-dynamic)
 
7377
+       export_dynamic=yes
 
7378
+       continue
 
7379
+       ;;
 
7380
+
 
7381
+      -export-symbols | -export-symbols-regex)
 
7382
+       if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
 
7383
+         $echo "$modename: more than one -exported-symbols argument is not allowed"
 
7384
+         exit $EXIT_FAILURE
 
7385
+       fi
 
7386
+       if test "X$arg" = "X-export-symbols"; then
 
7387
+         prev=expsyms
 
7388
+       else
 
7389
+         prev=expsyms_regex
 
7390
+       fi
 
7391
+       continue
 
7392
+       ;;
 
7393
+
 
7394
+      -inst-prefix-dir)
 
7395
+       prev=inst_prefix
 
7396
+       continue
 
7397
+       ;;
 
7398
+
 
7399
+      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
 
7400
+      # so, if we see these flags be careful not to treat them like -L
 
7401
+      -L[A-Z][A-Z]*:*)
 
7402
+       case $with_gcc/$host in
 
7403
+       no/*-*-irix* | /*-*-irix*)
 
7404
+         compile_command="$compile_command $arg"
 
7405
+         finalize_command="$finalize_command $arg"
 
7406
+         ;;
 
7407
+       esac
 
7408
+       continue
 
7409
+       ;;
 
7410
+
 
7411
+      -L*)
 
7412
+       dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
 
7413
+       # We need an absolute path.
 
7414
+       case $dir in
 
7415
+       [\\/]* | [A-Za-z]:[\\/]*) ;;
 
7416
+       *)
 
7417
+         absdir=`cd "$dir" && pwd`
 
7418
+         if test -z "$absdir"; then
 
7419
+           $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
 
7420
+           exit $EXIT_FAILURE
 
7421
+         fi
 
7422
+         dir="$absdir"
 
7423
+         ;;
 
7424
+       esac
 
7425
+       case "$deplibs " in
 
7426
+       *" -L$dir "*) ;;
 
7427
+       *)
 
7428
+         deplibs="$deplibs -L$dir"
 
7429
+         lib_search_path="$lib_search_path $dir"
 
7430
+         ;;
 
7431
+       esac
 
7432
+       case $host in
 
7433
+       *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
 
7434
+         case :$dllsearchpath: in
 
7435
+         *":$dir:"*) ;;
 
7436
+         *) dllsearchpath="$dllsearchpath:$dir";;
 
7437
+         esac
 
7438
+         ;;
 
7439
+       esac
 
7440
+       continue
 
7441
+       ;;
 
7442
+
 
7443
+      -l*)
 
7444
+       if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
 
7445
+         case $host in
 
7446
+         *-*-cygwin* | *-*-pw32* | *-*-beos*)
 
7447
+           # These systems don't actually have a C or math library (as such)
 
7448
+           continue
 
7449
+           ;;
 
7450
+         *-*-mingw* | *-*-os2*)
 
7451
+           # These systems don't actually have a C library (as such)
 
7452
+           test "X$arg" = "X-lc" && continue
 
7453
+           ;;
 
7454
+         *-*-openbsd* | *-*-freebsd*)
 
7455
+           # Do not include libc due to us having libc/libc_r.
 
7456
+           test "X$arg" = "X-lc" && continue
 
7457
+           ;;
 
7458
+         *-*-rhapsody* | *-*-darwin1.[012])
 
7459
+           # Rhapsody C and math libraries are in the System framework
 
7460
+           deplibs="$deplibs -framework System"
 
7461
+           continue
 
7462
+         esac
 
7463
+       elif test "X$arg" = "X-lc_r"; then
 
7464
+        case $host in
 
7465
+        *-*-openbsd* | *-*-freebsd*)
 
7466
+          # Do not include libc_r directly, use -pthread flag.
 
7467
+          continue
 
7468
+          ;;
 
7469
+        esac
 
7470
+       fi
 
7471
+       deplibs="$deplibs $arg"
 
7472
+       continue
 
7473
+       ;;
 
7474
+
 
7475
+     -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
 
7476
+       deplibs="$deplibs $arg"
 
7477
+       continue
 
7478
+       ;;
 
7479
+
 
7480
+      -module)
 
7481
+       module=yes
 
7482
+       continue
 
7483
+       ;;
 
7484
+
 
7485
+      # gcc -m* arguments should be passed to the linker via $compiler_flags
 
7486
+      # in order to pass architecture information to the linker
 
7487
+      # (e.g. 32 vs 64-bit).  This may also be accomplished via -Wl,-mfoo
 
7488
+      # but this is not reliable with gcc because gcc may use -mfoo to
 
7489
+      # select a different linker, different libraries, etc, while
 
7490
+      # -Wl,-mfoo simply passes -mfoo to the linker.
 
7491
+      -m*)
 
7492
+       # Unknown arguments in both finalize_command and compile_command need
 
7493
+       # to be aesthetically quoted because they are evaled later.
 
7494
+       arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
7495
+       case $arg in
 
7496
+       *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
7497
+         arg="\"$arg\""
 
7498
+         ;;
 
7499
+       esac
 
7500
+        compile_command="$compile_command $arg"
 
7501
+        finalize_command="$finalize_command $arg"
 
7502
+        if test "$with_gcc" = "yes" ; then
 
7503
+          compiler_flags="$compiler_flags $arg"
 
7504
+        fi
 
7505
+        continue
 
7506
+        ;;
 
7507
+
 
7508
+      -shrext)
 
7509
+       prev=shrext
 
7510
+       continue
 
7511
+       ;;
 
7512
+
 
7513
+      -no-fast-install)
 
7514
+       fast_install=no
 
7515
+       continue
 
7516
+       ;;
 
7517
+
 
7518
+      -no-install)
 
7519
+       case $host in
 
7520
+       *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
 
7521
+         # The PATH hackery in wrapper scripts is required on Windows
 
7522
+         # in order for the loader to find any dlls it needs.
 
7523
+         $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
 
7524
+         $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
 
7525
+         fast_install=no
 
7526
+         ;;
 
7527
+       *) no_install=yes ;;
 
7528
+       esac
 
7529
+       continue
 
7530
+       ;;
 
7531
+
 
7532
+      -no-undefined)
 
7533
+       allow_undefined=no
 
7534
+       continue
 
7535
+       ;;
 
7536
+
 
7537
+      -objectlist)
 
7538
+       prev=objectlist
 
7539
+       continue
 
7540
+       ;;
 
7541
+
 
7542
+      -o) prev=output ;;
 
7543
+
 
7544
+      -precious-files-regex)
 
7545
+       prev=precious_regex
 
7546
+       continue
 
7547
+       ;;
 
7548
+
 
7549
+      -release)
 
7550
+       prev=release
 
7551
+       continue
 
7552
+       ;;
 
7553
+
 
7554
+      -rpath)
 
7555
+       prev=rpath
 
7556
+       continue
 
7557
+       ;;
 
7558
+
 
7559
+      -R)
 
7560
+       prev=xrpath
 
7561
+       continue
 
7562
+       ;;
 
7563
+
 
7564
+      -R*)
 
7565
+       dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
 
7566
+       # We need an absolute path.
 
7567
+       case $dir in
 
7568
+       [\\/]* | [A-Za-z]:[\\/]*) ;;
 
7569
+       *)
 
7570
+         $echo "$modename: only absolute run-paths are allowed" 1>&2
 
7571
+         exit $EXIT_FAILURE
 
7572
+         ;;
 
7573
+       esac
 
7574
+       case "$xrpath " in
 
7575
+       *" $dir "*) ;;
 
7576
+       *) xrpath="$xrpath $dir" ;;
 
7577
+       esac
 
7578
+       continue
 
7579
+       ;;
 
7580
+
 
7581
+      -static)
 
7582
+       # The effects of -static are defined in a previous loop.
 
7583
+       # We used to do the same as -all-static on platforms that
 
7584
+       # didn't have a PIC flag, but the assumption that the effects
 
7585
+       # would be equivalent was wrong.  It would break on at least
 
7586
+       # Digital Unix and AIX.
 
7587
+       continue
 
7588
+       ;;
 
7589
+
 
7590
+      -thread-safe)
 
7591
+       thread_safe=yes
 
7592
+       continue
 
7593
+       ;;
 
7594
+
 
7595
+      -version-info)
 
7596
+       prev=vinfo
 
7597
+       continue
 
7598
+       ;;
 
7599
+      -version-number)
 
7600
+       prev=vinfo
 
7601
+       vinfo_number=yes
 
7602
+       continue
 
7603
+       ;;
 
7604
+
 
7605
+      -Wc,*)
 
7606
+       args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
 
7607
+       arg=
 
7608
+       save_ifs="$IFS"; IFS=','
 
7609
+       for flag in $args; do
 
7610
+         IFS="$save_ifs"
 
7611
+         case $flag in
 
7612
+           *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \       ]*|*]*|"")
 
7613
+           flag="\"$flag\""
 
7614
+           ;;
 
7615
+         esac
 
7616
+         arg="$arg $wl$flag"
 
7617
+         compiler_flags="$compiler_flags $flag"
 
7618
+       done
 
7619
+       IFS="$save_ifs"
 
7620
+       arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
 
7621
+       ;;
 
7622
+
 
7623
+      -Wl,*)
 
7624
+       args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
 
7625
+       arg=
 
7626
+       save_ifs="$IFS"; IFS=','
 
7627
+       for flag in $args; do
 
7628
+         IFS="$save_ifs"
 
7629
+         case $flag in
 
7630
+           *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \       ]*|*]*|"")
 
7631
+           flag="\"$flag\""
 
7632
+           ;;
 
7633
+         esac
 
7634
+         arg="$arg $wl$flag"
 
7635
+         compiler_flags="$compiler_flags $wl$flag"
 
7636
+         linker_flags="$linker_flags $flag"
 
7637
+       done
 
7638
+       IFS="$save_ifs"
 
7639
+       arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
 
7640
+       ;;
 
7641
+
 
7642
+      -Xcompiler)
 
7643
+       prev=xcompiler
 
7644
+       continue
 
7645
+       ;;
 
7646
+
 
7647
+      -Xlinker)
 
7648
+       prev=xlinker
 
7649
+       continue
 
7650
+       ;;
 
7651
+
 
7652
+      -XCClinker)
 
7653
+       prev=xcclinker
 
7654
+       continue
 
7655
+       ;;
 
7656
+
 
7657
+      # Some other compiler flag.
 
7658
+      -* | +*)
 
7659
+       # Unknown arguments in both finalize_command and compile_command need
 
7660
+       # to be aesthetically quoted because they are evaled later.
 
7661
+       arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
7662
+       case $arg in
 
7663
+       *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
7664
+         arg="\"$arg\""
 
7665
+         ;;
 
7666
+       esac
 
7667
+       ;;
 
7668
+
 
7669
+      *.$objext)
 
7670
+       # A standard object.
 
7671
+       objs="$objs $arg"
 
7672
+       ;;
 
7673
+
 
7674
+      *.lo)
 
7675
+       # A libtool-controlled object.
 
7676
+
 
7677
+       # Check to see that this really is a libtool object.
 
7678
+       if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
7679
+         pic_object=
 
7680
+         non_pic_object=
 
7681
+
 
7682
+         # Read the .lo file
 
7683
+         # If there is no directory component, then add one.
 
7684
+         case $arg in
 
7685
+         */* | *\\*) . $arg ;;
 
7686
+         *) . ./$arg ;;
 
7687
+         esac
 
7688
+
 
7689
+         if test -z "$pic_object" || \
 
7690
+            test -z "$non_pic_object" ||
 
7691
+            test "$pic_object" = none && \
 
7692
+            test "$non_pic_object" = none; then
 
7693
+           $echo "$modename: cannot find name of object for \`$arg'" 1>&2
 
7694
+           exit $EXIT_FAILURE
 
7695
+         fi
 
7696
+
 
7697
+         # Extract subdirectory from the argument.
 
7698
+         xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
7699
+         if test "X$xdir" = "X$arg"; then
 
7700
+           xdir=
 
7701
+         else
 
7702
+           xdir="$xdir/"
 
7703
+         fi
 
7704
+
 
7705
+         if test "$pic_object" != none; then
 
7706
+           # Prepend the subdirectory the object is found in.
 
7707
+           pic_object="$xdir$pic_object"
 
7708
+
 
7709
+           if test "$prev" = dlfiles; then
 
7710
+             if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
 
7711
+               dlfiles="$dlfiles $pic_object"
 
7712
+               prev=
 
7713
+               continue
 
7714
+             else
 
7715
+               # If libtool objects are unsupported, then we need to preload.
 
7716
+               prev=dlprefiles
 
7717
+             fi
 
7718
+           fi
 
7719
+
 
7720
+           # CHECK ME:  I think I busted this.  -Ossama
 
7721
+           if test "$prev" = dlprefiles; then
 
7722
+             # Preload the old-style object.
 
7723
+             dlprefiles="$dlprefiles $pic_object"
 
7724
+             prev=
 
7725
+           fi
 
7726
+
 
7727
+           # A PIC object.
 
7728
+           libobjs="$libobjs $pic_object"
 
7729
+           arg="$pic_object"
 
7730
+         fi
 
7731
+
 
7732
+         # Non-PIC object.
 
7733
+         if test "$non_pic_object" != none; then
 
7734
+           # Prepend the subdirectory the object is found in.
 
7735
+           non_pic_object="$xdir$non_pic_object"
 
7736
+
 
7737
+           # A standard non-PIC object
 
7738
+           non_pic_objects="$non_pic_objects $non_pic_object"
 
7739
+           if test -z "$pic_object" || test "$pic_object" = none ; then
 
7740
+             arg="$non_pic_object"
 
7741
+           fi
 
7742
+         fi
 
7743
+       else
 
7744
+         # Only an error if not doing a dry-run.
 
7745
+         if test -z "$run"; then
 
7746
+           $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
 
7747
+           exit $EXIT_FAILURE
 
7748
+         else
 
7749
+           # Dry-run case.
 
7750
+
 
7751
+           # Extract subdirectory from the argument.
 
7752
+           xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
7753
+           if test "X$xdir" = "X$arg"; then
 
7754
+             xdir=
 
7755
+           else
 
7756
+             xdir="$xdir/"
 
7757
+           fi
 
7758
+
 
7759
+           pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
 
7760
+           non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
 
7761
+           libobjs="$libobjs $pic_object"
 
7762
+           non_pic_objects="$non_pic_objects $non_pic_object"
 
7763
+         fi
 
7764
+       fi
 
7765
+       ;;
 
7766
+
 
7767
+      *.$libext)
 
7768
+       # An archive.
 
7769
+       deplibs="$deplibs $arg"
 
7770
+       old_deplibs="$old_deplibs $arg"
 
7771
+       continue
 
7772
+       ;;
 
7773
+
 
7774
+      *.la)
 
7775
+       # A libtool-controlled library.
 
7776
+
 
7777
+       if test "$prev" = dlfiles; then
 
7778
+         # This library was specified with -dlopen.
 
7779
+         dlfiles="$dlfiles $arg"
 
7780
+         prev=
 
7781
+       elif test "$prev" = dlprefiles; then
 
7782
+         # The library was specified with -dlpreopen.
 
7783
+         dlprefiles="$dlprefiles $arg"
 
7784
+         prev=
 
7785
+       else
 
7786
+         deplibs="$deplibs $arg"
 
7787
+       fi
 
7788
+       continue
 
7789
+       ;;
 
7790
+
 
7791
+      # Some other compiler argument.
 
7792
+      *)
 
7793
+       # Unknown arguments in both finalize_command and compile_command need
 
7794
+       # to be aesthetically quoted because they are evaled later.
 
7795
+       arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
7796
+       case $arg in
 
7797
+       *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
7798
+         arg="\"$arg\""
 
7799
+         ;;
 
7800
+       esac
 
7801
+       ;;
 
7802
+      esac # arg
 
7803
+
 
7804
+      # Now actually substitute the argument into the commands.
 
7805
+      if test -n "$arg"; then
 
7806
+       compile_command="$compile_command $arg"
 
7807
+       finalize_command="$finalize_command $arg"
 
7808
+      fi
 
7809
+    done # argument parsing loop
 
7810
+
 
7811
+    if test -n "$prev"; then
 
7812
+      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
 
7813
+      $echo "$help" 1>&2
 
7814
+      exit $EXIT_FAILURE
 
7815
+    fi
 
7816
+
 
7817
+    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
 
7818
+      eval arg=\"$export_dynamic_flag_spec\"
 
7819
+      compile_command="$compile_command $arg"
 
7820
+      finalize_command="$finalize_command $arg"
 
7821
+    fi
 
7822
+
 
7823
+    oldlibs=
 
7824
+    # calculate the name of the file, without its directory
 
7825
+    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
 
7826
+    libobjs_save="$libobjs"
 
7827
+
 
7828
+    if test -n "$shlibpath_var"; then
 
7829
+      # get the directories listed in $shlibpath_var
 
7830
+      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
 
7831
+    else
 
7832
+      shlib_search_path=
 
7833
+    fi
 
7834
+    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
 
7835
+    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
 
7836
+
 
7837
+    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
 
7838
+    if test "X$output_objdir" = "X$output"; then
 
7839
+      output_objdir="$objdir"
 
7840
+    else
 
7841
+      output_objdir="$output_objdir/$objdir"
 
7842
+    fi
 
7843
+    # Create the object directory.
 
7844
+    if test ! -d "$output_objdir"; then
 
7845
+      $show "$mkdir $output_objdir"
 
7846
+      $run $mkdir $output_objdir
 
7847
+      status=$?
 
7848
+      if test "$status" -ne 0 && test ! -d "$output_objdir"; then
 
7849
+       exit $status
 
7850
+      fi
 
7851
+    fi
 
7852
+
 
7853
+    # Determine the type of output
 
7854
+    case $output in
 
7855
+    "")
 
7856
+      $echo "$modename: you must specify an output file" 1>&2
 
7857
+      $echo "$help" 1>&2
 
7858
+      exit $EXIT_FAILURE
 
7859
+      ;;
 
7860
+    *.$libext) linkmode=oldlib ;;
 
7861
+    *.lo | *.$objext) linkmode=obj ;;
 
7862
+    *.la) linkmode=lib ;;
 
7863
+    *) linkmode=prog ;; # Anything else should be a program.
 
7864
+    esac
 
7865
+
 
7866
+    case $host in
 
7867
+    *cygwin* | *mingw* | *pw32*)
 
7868
+      # don't eliminate duplications in $postdeps and $predeps
 
7869
+      duplicate_compiler_generated_deps=yes
 
7870
+      ;;
 
7871
+    *)
 
7872
+      duplicate_compiler_generated_deps=$duplicate_deps
 
7873
+      ;;
 
7874
+    esac
 
7875
+    specialdeplibs=
 
7876
+
 
7877
+    libs=
 
7878
+    # Find all interdependent deplibs by searching for libraries
 
7879
+    # that are linked more than once (e.g. -la -lb -la)
 
7880
+    for deplib in $deplibs; do
 
7881
+      if test "X$duplicate_deps" = "Xyes" ; then
 
7882
+       case "$libs " in
 
7883
+       *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
7884
+       esac
 
7885
+      fi
 
7886
+      libs="$libs $deplib"
 
7887
+    done
 
7888
+
 
7889
+    if test "$linkmode" = lib; then
 
7890
+      libs="$predeps $libs $compiler_lib_search_path $postdeps"
 
7891
+
 
7892
+      # Compute libraries that are listed more than once in $predeps
 
7893
+      # $postdeps and mark them as special (i.e., whose duplicates are
 
7894
+      # not to be eliminated).
 
7895
+      pre_post_deps=
 
7896
+      if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then
 
7897
+       for pre_post_dep in $predeps $postdeps; do
 
7898
+         case "$pre_post_deps " in
 
7899
+         *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
 
7900
+         esac
 
7901
+         pre_post_deps="$pre_post_deps $pre_post_dep"
 
7902
+       done
 
7903
+      fi
 
7904
+      pre_post_deps=
 
7905
+    fi
 
7906
+
 
7907
+    deplibs=
 
7908
+    newdependency_libs=
 
7909
+    newlib_search_path=
 
7910
+    need_relink=no # whether we're linking any uninstalled libtool libraries
 
7911
+    notinst_deplibs= # not-installed libtool libraries
 
7912
+    notinst_path= # paths that contain not-installed libtool libraries
 
7913
+    case $linkmode in
 
7914
+    lib)
 
7915
+       passes="conv link"
 
7916
+       for file in $dlfiles $dlprefiles; do
 
7917
+         case $file in
 
7918
+         *.la) ;;
 
7919
+         *)
 
7920
+           $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
 
7921
+           exit $EXIT_FAILURE
 
7922
+           ;;
 
7923
+         esac
 
7924
+       done
 
7925
+       ;;
 
7926
+    prog)
 
7927
+       compile_deplibs=
 
7928
+       finalize_deplibs=
 
7929
+       alldeplibs=no
 
7930
+       newdlfiles=
 
7931
+       newdlprefiles=
 
7932
+       passes="conv scan dlopen dlpreopen link"
 
7933
+       ;;
 
7934
+    *)  passes="conv"
 
7935
+       ;;
 
7936
+    esac
 
7937
+    for pass in $passes; do
 
7938
+      if test "$linkmode,$pass" = "lib,link" ||
 
7939
+        test "$linkmode,$pass" = "prog,scan"; then
 
7940
+       libs="$deplibs"
 
7941
+       deplibs=
 
7942
+      fi
 
7943
+      if test "$linkmode" = prog; then
 
7944
+       case $pass in
 
7945
+       dlopen) libs="$dlfiles" ;;
 
7946
+       dlpreopen) libs="$dlprefiles" ;;
 
7947
+       link)
 
7948
+         libs="$deplibs %DEPLIBS%"
 
7949
+         test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
 
7950
+         ;;
 
7951
+       esac
 
7952
+      fi
 
7953
+      if test "$pass" = dlopen; then
 
7954
+       # Collect dlpreopened libraries
 
7955
+       save_deplibs="$deplibs"
 
7956
+       deplibs=
 
7957
+      fi
 
7958
+      for deplib in $libs; do
 
7959
+       lib=
 
7960
+       found=no
 
7961
+       case $deplib in
 
7962
+       -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
 
7963
+         if test "$linkmode,$pass" = "prog,link"; then
 
7964
+           compile_deplibs="$deplib $compile_deplibs"
 
7965
+           finalize_deplibs="$deplib $finalize_deplibs"
 
7966
+         else
 
7967
+           deplibs="$deplib $deplibs"
 
7968
+         fi
 
7969
+         continue
 
7970
+         ;;
 
7971
+       -l*)
 
7972
+         if test "$linkmode" != lib && test "$linkmode" != prog; then
 
7973
+           $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2
 
7974
+           continue
 
7975
+         fi
 
7976
+         name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
 
7977
+         for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
 
7978
+           for search_ext in .la $std_shrext .so .a; do
 
7979
+             # Search the libtool library
 
7980
+             lib="$searchdir/lib${name}${search_ext}"
 
7981
+             if test -f "$lib"; then
 
7982
+               if test "$search_ext" = ".la"; then
 
7983
+                 found=yes
 
7984
+               else
 
7985
+                 found=no
 
7986
+               fi
 
7987
+               break 2
 
7988
+             fi
 
7989
+           done
 
7990
+         done
 
7991
+         if test "$found" != yes; then
 
7992
+           # deplib doesn't seem to be a libtool library
 
7993
+           if test "$linkmode,$pass" = "prog,link"; then
 
7994
+             compile_deplibs="$deplib $compile_deplibs"
 
7995
+             finalize_deplibs="$deplib $finalize_deplibs"
 
7996
+           else
 
7997
+             deplibs="$deplib $deplibs"
 
7998
+             test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
 
7999
+           fi
 
8000
+           continue
 
8001
+         else # deplib is a libtool library
 
8002
+           # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
 
8003
+           # We need to do some special things here, and not later.
 
8004
+           if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
 
8005
+             case " $predeps $postdeps " in
 
8006
+             *" $deplib "*)
 
8007
+               if (${SED} -e '2q' $lib |
 
8008
+                    grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
8009
+                 library_names=
 
8010
+                 old_library=
 
8011
+                 case $lib in
 
8012
+                 */* | *\\*) . $lib ;;
 
8013
+                 *) . ./$lib ;;
 
8014
+                 esac
 
8015
+                 for l in $old_library $library_names; do
 
8016
+                   ll="$l"
 
8017
+                 done
 
8018
+                 if test "X$ll" = "X$old_library" ; then # only static version available
 
8019
+                   found=no
 
8020
+                   ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
 
8021
+                   test "X$ladir" = "X$lib" && ladir="."
 
8022
+                   lib=$ladir/$old_library
 
8023
+                   if test "$linkmode,$pass" = "prog,link"; then
 
8024
+                     compile_deplibs="$deplib $compile_deplibs"
 
8025
+                     finalize_deplibs="$deplib $finalize_deplibs"
 
8026
+                   else
 
8027
+                     deplibs="$deplib $deplibs"
 
8028
+                     test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
 
8029
+                   fi
 
8030
+                   continue
 
8031
+                 fi
 
8032
+               fi
 
8033
+               ;;
 
8034
+             *) ;;
 
8035
+             esac
 
8036
+           fi
 
8037
+         fi
 
8038
+         ;; # -l
 
8039
+       -L*)
 
8040
+         case $linkmode in
 
8041
+         lib)
 
8042
+           deplibs="$deplib $deplibs"
 
8043
+           test "$pass" = conv && continue
 
8044
+           newdependency_libs="$deplib $newdependency_libs"
 
8045
+           newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
 
8046
+           ;;
 
8047
+         prog)
 
8048
+           if test "$pass" = conv; then
 
8049
+             deplibs="$deplib $deplibs"
 
8050
+             continue
 
8051
+           fi
 
8052
+           if test "$pass" = scan; then
 
8053
+             deplibs="$deplib $deplibs"
 
8054
+           else
 
8055
+             compile_deplibs="$deplib $compile_deplibs"
 
8056
+             finalize_deplibs="$deplib $finalize_deplibs"
 
8057
+           fi
 
8058
+           newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
 
8059
+           ;;
 
8060
+         *)
 
8061
+           $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2
 
8062
+           ;;
 
8063
+         esac # linkmode
 
8064
+         continue
 
8065
+         ;; # -L
 
8066
+       -R*)
 
8067
+         if test "$pass" = link; then
 
8068
+           dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
 
8069
+           # Make sure the xrpath contains only unique directories.
 
8070
+           case "$xrpath " in
 
8071
+           *" $dir "*) ;;
 
8072
+           *) xrpath="$xrpath $dir" ;;
 
8073
+           esac
 
8074
+         fi
 
8075
+         deplibs="$deplib $deplibs"
 
8076
+         continue
 
8077
+         ;;
 
8078
+       *.la) lib="$deplib" ;;
 
8079
+       *.$libext)
 
8080
+         if test "$pass" = conv; then
 
8081
+           deplibs="$deplib $deplibs"
 
8082
+           continue
 
8083
+         fi
 
8084
+         case $linkmode in
 
8085
+         lib)
 
8086
+           if test "$deplibs_check_method" != pass_all; then
 
8087
+             $echo
 
8088
+             $echo "*** Warning: Trying to link with static lib archive $deplib."
 
8089
+             $echo "*** I have the capability to make that library automatically link in when"
 
8090
+             $echo "*** you link to this library.  But I can only do this if you have a"
 
8091
+             $echo "*** shared version of the library, which you do not appear to have"
 
8092
+             $echo "*** because the file extensions .$libext of this argument makes me believe"
 
8093
+             $echo "*** that it is just a static archive that I should not used here."
 
8094
+           else
 
8095
+             $echo
 
8096
+             $echo "*** Warning: Linking the shared library $output against the"
 
8097
+             $echo "*** static library $deplib is not portable!"
 
8098
+             deplibs="$deplib $deplibs"
 
8099
+           fi
 
8100
+           continue
 
8101
+           ;;
 
8102
+         prog)
 
8103
+           if test "$pass" != link; then
 
8104
+             deplibs="$deplib $deplibs"
 
8105
+           else
 
8106
+             compile_deplibs="$deplib $compile_deplibs"
 
8107
+             finalize_deplibs="$deplib $finalize_deplibs"
 
8108
+           fi
 
8109
+           continue
 
8110
+           ;;
 
8111
+         esac # linkmode
 
8112
+         ;; # *.$libext
 
8113
+       *.lo | *.$objext)
 
8114
+         if test "$pass" = conv; then
 
8115
+           deplibs="$deplib $deplibs"
 
8116
+         elif test "$linkmode" = prog; then
 
8117
+           if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
 
8118
+             # If there is no dlopen support or we're linking statically,
 
8119
+             # we need to preload.
 
8120
+             newdlprefiles="$newdlprefiles $deplib"
 
8121
+             compile_deplibs="$deplib $compile_deplibs"
 
8122
+             finalize_deplibs="$deplib $finalize_deplibs"
 
8123
+           else
 
8124
+             newdlfiles="$newdlfiles $deplib"
 
8125
+           fi
 
8126
+         fi
 
8127
+         continue
 
8128
+         ;;
 
8129
+       %DEPLIBS%)
 
8130
+         alldeplibs=yes
 
8131
+         continue
 
8132
+         ;;
 
8133
+       esac # case $deplib
 
8134
+       if test "$found" = yes || test -f "$lib"; then :
 
8135
+       else
 
8136
+         $echo "$modename: cannot find the library \`$lib'" 1>&2
 
8137
+         exit $EXIT_FAILURE
 
8138
+       fi
 
8139
+
 
8140
+       # Check to see that this really is a libtool archive.
 
8141
+       if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
8142
+       else
 
8143
+         $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
8144
+         exit $EXIT_FAILURE
 
8145
+       fi
 
8146
+
 
8147
+       ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
 
8148
+       test "X$ladir" = "X$lib" && ladir="."
 
8149
+
 
8150
+       dlname=
 
8151
+       dlopen=
 
8152
+       dlpreopen=
 
8153
+       libdir=
 
8154
+       library_names=
 
8155
+       old_library=
 
8156
+       # If the library was installed with an old release of libtool,
 
8157
+       # it will not redefine variables installed, or shouldnotlink
 
8158
+       installed=yes
 
8159
+       shouldnotlink=no
 
8160
+
 
8161
+       # Read the .la file
 
8162
+       case $lib in
 
8163
+       */* | *\\*) . $lib ;;
 
8164
+       *) . ./$lib ;;
 
8165
+       esac
 
8166
+
 
8167
+       if test "$linkmode,$pass" = "lib,link" ||
 
8168
+          test "$linkmode,$pass" = "prog,scan" ||
 
8169
+          { test "$linkmode" != prog && test "$linkmode" != lib; }; then
 
8170
+         test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
 
8171
+         test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
 
8172
+       fi
 
8173
+
 
8174
+       if test "$pass" = conv; then
 
8175
+         # Only check for convenience libraries
 
8176
+         deplibs="$lib $deplibs"
 
8177
+         if test -z "$libdir"; then
 
8178
+           if test -z "$old_library"; then
 
8179
+             $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
 
8180
+             exit $EXIT_FAILURE
 
8181
+           fi
 
8182
+           # It is a libtool convenience library, so add in its objects.
 
8183
+           convenience="$convenience $ladir/$objdir/$old_library"
 
8184
+           old_convenience="$old_convenience $ladir/$objdir/$old_library"
 
8185
+           tmp_libs=
 
8186
+           for deplib in $dependency_libs; do
 
8187
+             deplibs="$deplib $deplibs"
 
8188
+              if test "X$duplicate_deps" = "Xyes" ; then
 
8189
+               case "$tmp_libs " in
 
8190
+               *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
8191
+               esac
 
8192
+              fi
 
8193
+             tmp_libs="$tmp_libs $deplib"
 
8194
+           done
 
8195
+         elif test "$linkmode" != prog && test "$linkmode" != lib; then
 
8196
+           $echo "$modename: \`$lib' is not a convenience library" 1>&2
 
8197
+           exit $EXIT_FAILURE
 
8198
+         fi
 
8199
+         continue
 
8200
+       fi # $pass = conv
 
8201
+
 
8202
+
 
8203
+       # Get the name of the library we link against.
 
8204
+       linklib=
 
8205
+       for l in $old_library $library_names; do
 
8206
+         linklib="$l"
 
8207
+       done
 
8208
+       if test -z "$linklib"; then
 
8209
+         $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
 
8210
+         exit $EXIT_FAILURE
 
8211
+       fi
 
8212
+
 
8213
+       # This library was specified with -dlopen.
 
8214
+       if test "$pass" = dlopen; then
 
8215
+         if test -z "$libdir"; then
 
8216
+           $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
 
8217
+           exit $EXIT_FAILURE
 
8218
+         fi
 
8219
+         if test -z "$dlname" ||
 
8220
+            test "$dlopen_support" != yes ||
 
8221
+            test "$build_libtool_libs" = no; then
 
8222
+           # If there is no dlname, no dlopen support or we're linking
 
8223
+           # statically, we need to preload.  We also need to preload any
 
8224
+           # dependent libraries so libltdl's deplib preloader doesn't
 
8225
+           # bomb out in the load deplibs phase.
 
8226
+           dlprefiles="$dlprefiles $lib $dependency_libs"
 
8227
+         else
 
8228
+           newdlfiles="$newdlfiles $lib"
 
8229
+         fi
 
8230
+         continue
 
8231
+       fi # $pass = dlopen
 
8232
+
 
8233
+       # We need an absolute path.
 
8234
+       case $ladir in
 
8235
+       [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
 
8236
+       *)
 
8237
+         abs_ladir=`cd "$ladir" && pwd`
 
8238
+         if test -z "$abs_ladir"; then
 
8239
+           $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
 
8240
+           $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
 
8241
+           abs_ladir="$ladir"
 
8242
+         fi
 
8243
+         ;;
 
8244
+       esac
 
8245
+       laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
 
8246
+
 
8247
+       # Find the relevant object directory and library name.
 
8248
+       if test "X$installed" = Xyes; then
 
8249
+         if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
 
8250
+           $echo "$modename: warning: library \`$lib' was moved." 1>&2
 
8251
+           dir="$ladir"
 
8252
+           absdir="$abs_ladir"
 
8253
+           libdir="$abs_ladir"
 
8254
+         else
 
8255
+           dir="$libdir"
 
8256
+           absdir="$libdir"
 
8257
+         fi
 
8258
+       else
 
8259
+         dir="$ladir/$objdir"
 
8260
+         absdir="$abs_ladir/$objdir"
 
8261
+         # Remove this search path later
 
8262
+         notinst_path="$notinst_path $abs_ladir"
 
8263
+       fi # $installed = yes
 
8264
+       name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
 
8265
+
 
8266
+       # This library was specified with -dlpreopen.
 
8267
+       if test "$pass" = dlpreopen; then
 
8268
+         if test -z "$libdir"; then
 
8269
+           $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
 
8270
+           exit $EXIT_FAILURE
 
8271
+         fi
 
8272
+         # Prefer using a static library (so that no silly _DYNAMIC symbols
 
8273
+         # are required to link).
 
8274
+         if test -n "$old_library"; then
 
8275
+           newdlprefiles="$newdlprefiles $dir/$old_library"
 
8276
+         # Otherwise, use the dlname, so that lt_dlopen finds it.
 
8277
+         elif test -n "$dlname"; then
 
8278
+           newdlprefiles="$newdlprefiles $dir/$dlname"
 
8279
+         else
 
8280
+           newdlprefiles="$newdlprefiles $dir/$linklib"
 
8281
+         fi
 
8282
+       fi # $pass = dlpreopen
 
8283
+
 
8284
+       if test -z "$libdir"; then
 
8285
+         # Link the convenience library
 
8286
+         if test "$linkmode" = lib; then
 
8287
+           deplibs="$dir/$old_library $deplibs"
 
8288
+         elif test "$linkmode,$pass" = "prog,link"; then
 
8289
+           compile_deplibs="$dir/$old_library $compile_deplibs"
 
8290
+           finalize_deplibs="$dir/$old_library $finalize_deplibs"
 
8291
+         else
 
8292
+           deplibs="$lib $deplibs" # used for prog,scan pass
 
8293
+         fi
 
8294
+         continue
 
8295
+       fi
 
8296
+
 
8297
+
 
8298
+       if test "$linkmode" = prog && test "$pass" != link; then
 
8299
+         newlib_search_path="$newlib_search_path $ladir"
 
8300
+         deplibs="$lib $deplibs"
 
8301
+
 
8302
+         linkalldeplibs=no
 
8303
+         if test "$link_all_deplibs" != no || test -z "$library_names" ||
 
8304
+            test "$build_libtool_libs" = no; then
 
8305
+           linkalldeplibs=yes
 
8306
+         fi
 
8307
+
 
8308
+         tmp_libs=
 
8309
+         for deplib in $dependency_libs; do
 
8310
+           case $deplib in
 
8311
+           -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
 
8312
+           esac
 
8313
+           # Need to link against all dependency_libs?
 
8314
+           if test "$linkalldeplibs" = yes; then
 
8315
+             deplibs="$deplib $deplibs"
 
8316
+           else
 
8317
+             # Need to hardcode shared library paths
 
8318
+             # or/and link against static libraries
 
8319
+             newdependency_libs="$deplib $newdependency_libs"
 
8320
+           fi
 
8321
+           if test "X$duplicate_deps" = "Xyes" ; then
 
8322
+             case "$tmp_libs " in
 
8323
+             *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
8324
+             esac
 
8325
+           fi
 
8326
+           tmp_libs="$tmp_libs $deplib"
 
8327
+         done # for deplib
 
8328
+         continue
 
8329
+       fi # $linkmode = prog...
 
8330
+
 
8331
+       if test "$linkmode,$pass" = "prog,link"; then
 
8332
+         if test -n "$library_names" &&
 
8333
+            { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
 
8334
+           # We need to hardcode the library path
 
8335
+           if test -n "$shlibpath_var"; then
 
8336
+             # Make sure the rpath contains only unique directories.
 
8337
+             case "$temp_rpath " in
 
8338
+             *" $dir "*) ;;
 
8339
+             *" $absdir "*) ;;
 
8340
+             *) temp_rpath="$temp_rpath $dir" ;;
 
8341
+             esac
 
8342
+           fi
 
8343
+
 
8344
+           # Hardcode the library path.
 
8345
+           # Skip directories that are in the system default run-time
 
8346
+           # search path.
 
8347
+           case " $sys_lib_dlsearch_path " in
 
8348
+           *" $absdir "*) ;;
 
8349
+           *)
 
8350
+             case "$compile_rpath " in
 
8351
+             *" $absdir "*) ;;
 
8352
+             *) compile_rpath="$compile_rpath $absdir"
 
8353
+             esac
 
8354
+             ;;
 
8355
+           esac
 
8356
+           case " $sys_lib_dlsearch_path " in
 
8357
+           *" $libdir "*) ;;
 
8358
+           *)
 
8359
+             case "$finalize_rpath " in
 
8360
+             *" $libdir "*) ;;
 
8361
+             *) finalize_rpath="$finalize_rpath $libdir"
 
8362
+             esac
 
8363
+             ;;
 
8364
+           esac
 
8365
+         fi # $linkmode,$pass = prog,link...
 
8366
+
 
8367
+         if test "$alldeplibs" = yes &&
 
8368
+            { test "$deplibs_check_method" = pass_all ||
 
8369
+              { test "$build_libtool_libs" = yes &&
 
8370
+                test -n "$library_names"; }; }; then
 
8371
+           # We only need to search for static libraries
 
8372
+           continue
 
8373
+         fi
 
8374
+       fi
 
8375
+
 
8376
+       link_static=no # Whether the deplib will be linked statically
 
8377
+       if test -n "$library_names" &&
 
8378
+          { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
 
8379
+         if test "$installed" = no; then
 
8380
+           notinst_deplibs="$notinst_deplibs $lib"
 
8381
+           need_relink=yes
 
8382
+         fi
 
8383
+         # This is a shared library
 
8384
+
 
8385
+         # Warn about portability, can't link against -module's on
 
8386
+         # some systems (darwin)
 
8387
+         if test "$shouldnotlink" = yes && test "$pass" = link ; then
 
8388
+           $echo
 
8389
+           if test "$linkmode" = prog; then
 
8390
+             $echo "*** Warning: Linking the executable $output against the loadable module"
 
8391
+           else
 
8392
+             $echo "*** Warning: Linking the shared library $output against the loadable module"
 
8393
+           fi
 
8394
+           $echo "*** $linklib is not portable!"
 
8395
+         fi
 
8396
+         if test "$linkmode" = lib &&
 
8397
+            test "$hardcode_into_libs" = yes; then
 
8398
+           # Hardcode the library path.
 
8399
+           # Skip directories that are in the system default run-time
 
8400
+           # search path.
 
8401
+           case " $sys_lib_dlsearch_path " in
 
8402
+           *" $absdir "*) ;;
 
8403
+           *)
 
8404
+             case "$compile_rpath " in
 
8405
+             *" $absdir "*) ;;
 
8406
+             *) compile_rpath="$compile_rpath $absdir"
 
8407
+             esac
 
8408
+             ;;
 
8409
+           esac
 
8410
+           case " $sys_lib_dlsearch_path " in
 
8411
+           *" $libdir "*) ;;
 
8412
+           *)
 
8413
+             case "$finalize_rpath " in
 
8414
+             *" $libdir "*) ;;
 
8415
+             *) finalize_rpath="$finalize_rpath $libdir"
 
8416
+             esac
 
8417
+             ;;
 
8418
+           esac
 
8419
+         fi
 
8420
+
 
8421
+         if test -n "$old_archive_from_expsyms_cmds"; then
 
8422
+           # figure out the soname
 
8423
+           set dummy $library_names
 
8424
+           realname="$2"
 
8425
+           shift; shift
 
8426
+           libname=`eval \\$echo \"$libname_spec\"`
 
8427
+           # use dlname if we got it. it's perfectly good, no?
 
8428
+           if test -n "$dlname"; then
 
8429
+             soname="$dlname"
 
8430
+           elif test -n "$soname_spec"; then
 
8431
+             # bleh windows
 
8432
+             case $host in
 
8433
+             *cygwin* | mingw*)
 
8434
+               major=`expr $current - $age`
 
8435
+               versuffix="-$major"
 
8436
+               ;;
 
8437
+             esac
 
8438
+             eval soname=\"$soname_spec\"
 
8439
+           else
 
8440
+             soname="$realname"
 
8441
+           fi
 
8442
+
 
8443
+           # Make a new name for the extract_expsyms_cmds to use
 
8444
+           soroot="$soname"
 
8445
+           soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
 
8446
+           newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
 
8447
+
 
8448
+           # If the library has no export list, then create one now
 
8449
+           if test -f "$output_objdir/$soname-def"; then :
 
8450
+           else
 
8451
+             $show "extracting exported symbol list from \`$soname'"
 
8452
+             save_ifs="$IFS"; IFS='~'
 
8453
+             cmds=$extract_expsyms_cmds
 
8454
+             for cmd in $cmds; do
 
8455
+               IFS="$save_ifs"
 
8456
+               eval cmd=\"$cmd\"
 
8457
+               $show "$cmd"
 
8458
+               $run eval "$cmd" || exit $?
 
8459
+             done
 
8460
+             IFS="$save_ifs"
 
8461
+           fi
 
8462
+
 
8463
+           # Create $newlib
 
8464
+           if test -f "$output_objdir/$newlib"; then :; else
 
8465
+             $show "generating import library for \`$soname'"
 
8466
+             save_ifs="$IFS"; IFS='~'
 
8467
+             cmds=$old_archive_from_expsyms_cmds
 
8468
+             for cmd in $cmds; do
 
8469
+               IFS="$save_ifs"
 
8470
+               eval cmd=\"$cmd\"
 
8471
+               $show "$cmd"
 
8472
+               $run eval "$cmd" || exit $?
 
8473
+             done
 
8474
+             IFS="$save_ifs"
 
8475
+           fi
 
8476
+           # make sure the library variables are pointing to the new library
 
8477
+           dir=$output_objdir
 
8478
+           linklib=$newlib
 
8479
+         fi # test -n "$old_archive_from_expsyms_cmds"
 
8480
+
 
8481
+         if test "$linkmode" = prog || test "$mode" != relink; then
 
8482
+           add_shlibpath=
 
8483
+           add_dir=
 
8484
+           add=
 
8485
+           lib_linked=yes
 
8486
+           case $hardcode_action in
 
8487
+           immediate | unsupported)
 
8488
+             if test "$hardcode_direct" = no; then
 
8489
+               add="$dir/$linklib"
 
8490
+               case $host in
 
8491
+                 *-*-sco3.2v5* ) add_dir="-L$dir" ;;
 
8492
+                 *-*-darwin* )
 
8493
+                   # if the lib is a module then we can not link against
 
8494
+                   # it, someone is ignoring the new warnings I added
 
8495
+                   if /usr/bin/file -L $add 2> /dev/null | $EGREP "bundle" >/dev/null ; then
 
8496
+                     $echo "** Warning, lib $linklib is a module, not a shared library"
 
8497
+                     if test -z "$old_library" ; then
 
8498
+                       $echo
 
8499
+                       $echo "** And there doesn't seem to be a static archive available"
 
8500
+                       $echo "** The link will probably fail, sorry"
 
8501
+                     else
 
8502
+                       add="$dir/$old_library"
 
8503
+                     fi
 
8504
+                   fi
 
8505
+               esac
 
8506
+             elif test "$hardcode_minus_L" = no; then
 
8507
+               case $host in
 
8508
+               *-*-sunos*) add_shlibpath="$dir" ;;
 
8509
+               esac
 
8510
+               add_dir="-L$dir"
 
8511
+               add="-l$name"
 
8512
+             elif test "$hardcode_shlibpath_var" = no; then
 
8513
+               add_shlibpath="$dir"
 
8514
+               add="-l$name"
 
8515
+             else
 
8516
+               lib_linked=no
 
8517
+             fi
 
8518
+             ;;
 
8519
+           relink)
 
8520
+             if test "$hardcode_direct" = yes; then
 
8521
+               add="$dir/$linklib"
 
8522
+             elif test "$hardcode_minus_L" = yes; then
 
8523
+               add_dir="-L$dir"
 
8524
+               # Try looking first in the location we're being installed to.
 
8525
+               if test -n "$inst_prefix_dir"; then
 
8526
+                 case "$libdir" in
 
8527
+                   [\\/]*)
 
8528
+                     add_dir="$add_dir -L$inst_prefix_dir$libdir"
 
8529
+                     ;;
 
8530
+                 esac
 
8531
+               fi
 
8532
+               add="-l$name"
 
8533
+             elif test "$hardcode_shlibpath_var" = yes; then
 
8534
+               add_shlibpath="$dir"
 
8535
+               add="-l$name"
 
8536
+             else
 
8537
+               lib_linked=no
 
8538
+             fi
 
8539
+             ;;
 
8540
+           *) lib_linked=no ;;
 
8541
+           esac
 
8542
+
 
8543
+           if test "$lib_linked" != yes; then
 
8544
+             $echo "$modename: configuration error: unsupported hardcode properties"
 
8545
+             exit $EXIT_FAILURE
 
8546
+           fi
 
8547
+
 
8548
+           if test -n "$add_shlibpath"; then
 
8549
+             case :$compile_shlibpath: in
 
8550
+             *":$add_shlibpath:"*) ;;
 
8551
+             *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
 
8552
+             esac
 
8553
+           fi
 
8554
+           if test "$linkmode" = prog; then
 
8555
+             test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
 
8556
+             test -n "$add" && compile_deplibs="$add $compile_deplibs"
 
8557
+           else
 
8558
+             test -n "$add_dir" && deplibs="$add_dir $deplibs"
 
8559
+             test -n "$add" && deplibs="$add $deplibs"
 
8560
+             if test "$hardcode_direct" != yes && \
 
8561
+                test "$hardcode_minus_L" != yes && \
 
8562
+                test "$hardcode_shlibpath_var" = yes; then
 
8563
+               case :$finalize_shlibpath: in
 
8564
+               *":$libdir:"*) ;;
 
8565
+               *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
 
8566
+               esac
 
8567
+             fi
 
8568
+           fi
 
8569
+         fi
 
8570
+
 
8571
+         if test "$linkmode" = prog || test "$mode" = relink; then
 
8572
+           add_shlibpath=
 
8573
+           add_dir=
 
8574
+           add=
 
8575
+           # Finalize command for both is simple: just hardcode it.
 
8576
+           if test "$hardcode_direct" = yes; then
 
8577
+             add="$libdir/$linklib"
 
8578
+           elif test "$hardcode_minus_L" = yes; then
 
8579
+             add_dir="-L$libdir"
 
8580
+             add="-l$name"
 
8581
+           elif test "$hardcode_shlibpath_var" = yes; then
 
8582
+             case :$finalize_shlibpath: in
 
8583
+             *":$libdir:"*) ;;
 
8584
+             *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
 
8585
+             esac
 
8586
+             add="-l$name"
 
8587
+           elif test "$hardcode_automatic" = yes; then
 
8588
+             if test -n "$inst_prefix_dir" &&
 
8589
+                test -f "$inst_prefix_dir$libdir/$linklib" ; then
 
8590
+               add="$inst_prefix_dir$libdir/$linklib"
 
8591
+             else
 
8592
+               add="$libdir/$linklib"
 
8593
+             fi
 
8594
+           else
 
8595
+             # We cannot seem to hardcode it, guess we'll fake it.
 
8596
+             add_dir="-L$libdir"
 
8597
+             # Try looking first in the location we're being installed to.
 
8598
+             if test -n "$inst_prefix_dir"; then
 
8599
+               case "$libdir" in
 
8600
+                 [\\/]*)
 
8601
+                   add_dir="$add_dir -L$inst_prefix_dir$libdir"
 
8602
+                   ;;
 
8603
+               esac
 
8604
+             fi
 
8605
+             add="-l$name"
 
8606
+           fi
 
8607
+
 
8608
+           if test "$linkmode" = prog; then
 
8609
+             test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
 
8610
+             test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
 
8611
+           else
 
8612
+             test -n "$add_dir" && deplibs="$add_dir $deplibs"
 
8613
+             test -n "$add" && deplibs="$add $deplibs"
 
8614
+           fi
 
8615
+         fi
 
8616
+       elif test "$linkmode" = prog; then
 
8617
+         # Here we assume that one of hardcode_direct or hardcode_minus_L
 
8618
+         # is not unsupported.  This is valid on all known static and
 
8619
+         # shared platforms.
 
8620
+         if test "$hardcode_direct" != unsupported; then
 
8621
+           test -n "$old_library" && linklib="$old_library"
 
8622
+           compile_deplibs="$dir/$linklib $compile_deplibs"
 
8623
+           finalize_deplibs="$dir/$linklib $finalize_deplibs"
 
8624
+         else
 
8625
+           compile_deplibs="-l$name -L$dir $compile_deplibs"
 
8626
+           finalize_deplibs="-l$name -L$dir $finalize_deplibs"
 
8627
+         fi
 
8628
+       elif test "$build_libtool_libs" = yes; then
 
8629
+         # Not a shared library
 
8630
+         if test "$deplibs_check_method" != pass_all; then
 
8631
+           # We're trying link a shared library against a static one
 
8632
+           # but the system doesn't support it.
 
8633
+
 
8634
+           # Just print a warning and add the library to dependency_libs so
 
8635
+           # that the program can be linked against the static library.
 
8636
+           $echo
 
8637
+           $echo "*** Warning: This system can not link to static lib archive $lib."
 
8638
+           $echo "*** I have the capability to make that library automatically link in when"
 
8639
+           $echo "*** you link to this library.  But I can only do this if you have a"
 
8640
+           $echo "*** shared version of the library, which you do not appear to have."
 
8641
+           if test "$module" = yes; then
 
8642
+             $echo "*** But as you try to build a module library, libtool will still create "
 
8643
+             $echo "*** a static module, that should work as long as the dlopening application"
 
8644
+             $echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
 
8645
+             if test -z "$global_symbol_pipe"; then
 
8646
+               $echo
 
8647
+               $echo "*** However, this would only work if libtool was able to extract symbol"
 
8648
+               $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
 
8649
+               $echo "*** not find such a program.  So, this module is probably useless."
 
8650
+               $echo "*** \`nm' from GNU binutils and a full rebuild may help."
 
8651
+             fi
 
8652
+             if test "$build_old_libs" = no; then
 
8653
+               build_libtool_libs=module
 
8654
+               build_old_libs=yes
 
8655
+             else
 
8656
+               build_libtool_libs=no
 
8657
+             fi
 
8658
+           fi
 
8659
+         else
 
8660
+           convenience="$convenience $dir/$old_library"
 
8661
+           old_convenience="$old_convenience $dir/$old_library"
 
8662
+           deplibs="$dir/$old_library $deplibs"
 
8663
+           link_static=yes
 
8664
+         fi
 
8665
+       fi # link shared/static library?
 
8666
+
 
8667
+       if test "$linkmode" = lib; then
 
8668
+         if test -n "$dependency_libs" &&
 
8669
+            { test "$hardcode_into_libs" != yes ||
 
8670
+              test "$build_old_libs" = yes ||
 
8671
+              test "$link_static" = yes; }; then
 
8672
+           # Extract -R from dependency_libs
 
8673
+           temp_deplibs=
 
8674
+           for libdir in $dependency_libs; do
 
8675
+             case $libdir in
 
8676
+             -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
 
8677
+                  case " $xrpath " in
 
8678
+                  *" $temp_xrpath "*) ;;
 
8679
+                  *) xrpath="$xrpath $temp_xrpath";;
 
8680
+                  esac;;
 
8681
+             *) temp_deplibs="$temp_deplibs $libdir";;
 
8682
+             esac
 
8683
+           done
 
8684
+           dependency_libs="$temp_deplibs"
 
8685
+         fi
 
8686
+
 
8687
+         newlib_search_path="$newlib_search_path $absdir"
 
8688
+         # Link against this library
 
8689
+         test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
 
8690
+         # ... and its dependency_libs
 
8691
+         tmp_libs=
 
8692
+         for deplib in $dependency_libs; do
 
8693
+           newdependency_libs="$deplib $newdependency_libs"
 
8694
+           if test "X$duplicate_deps" = "Xyes" ; then
 
8695
+             case "$tmp_libs " in
 
8696
+             *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
8697
+             esac
 
8698
+           fi
 
8699
+           tmp_libs="$tmp_libs $deplib"
 
8700
+         done
 
8701
+
 
8702
+         if test "$link_all_deplibs" != no; then
 
8703
+           # Add the search paths of all dependency libraries
 
8704
+           for deplib in $dependency_libs; do
 
8705
+             case $deplib in
 
8706
+             -L*) path="$deplib" ;;
 
8707
+             *.la)
 
8708
+               dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
 
8709
+               test "X$dir" = "X$deplib" && dir="."
 
8710
+               # We need an absolute path.
 
8711
+               case $dir in
 
8712
+               [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
 
8713
+               *)
 
8714
+                 absdir=`cd "$dir" && pwd`
 
8715
+                 if test -z "$absdir"; then
 
8716
+                   $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
 
8717
+                   absdir="$dir"
 
8718
+                 fi
 
8719
+                 ;;
 
8720
+               esac
 
8721
+               if grep "^installed=no" $deplib > /dev/null; then
 
8722
+                 path="$absdir/$objdir"
 
8723
+               else
 
8724
+                 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
 
8725
+                 if test -z "$libdir"; then
 
8726
+                   $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
 
8727
+                   exit $EXIT_FAILURE
 
8728
+                 fi
 
8729
+                 if test "$absdir" != "$libdir"; then
 
8730
+                   $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
 
8731
+                 fi
 
8732
+                 path="$absdir"
 
8733
+               fi
 
8734
+               depdepl=
 
8735
+               case $host in
 
8736
+               *-*-darwin*)
 
8737
+                 # we do not want to link against static libs,
 
8738
+                 # but need to link against shared
 
8739
+                 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
 
8740
+                 if test -n "$deplibrary_names" ; then
 
8741
+                   for tmp in $deplibrary_names ; do
 
8742
+                     depdepl=$tmp
 
8743
+                   done
 
8744
+                   if test -f "$path/$depdepl" ; then
 
8745
+                     depdepl="$path/$depdepl"
 
8746
+                   fi
 
8747
+                   # do not add paths which are already there
 
8748
+                   case " $newlib_search_path " in
 
8749
+                   *" $path "*) ;;
 
8750
+                   *) newlib_search_path="$newlib_search_path $path";;
 
8751
+                   esac
 
8752
+                 fi
 
8753
+                 path=""
 
8754
+                 ;;
 
8755
+               *)
 
8756
+                 path="-L$path"
 
8757
+                 ;;
 
8758
+               esac
 
8759
+               ;;
 
8760
+             -l*)
 
8761
+               case $host in
 
8762
+               *-*-darwin*)
 
8763
+                 # Again, we only want to link against shared libraries
 
8764
+                 eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"`
 
8765
+                 for tmp in $newlib_search_path ; do
 
8766
+                   if test -f "$tmp/lib$tmp_libs.dylib" ; then
 
8767
+                     eval depdepl="$tmp/lib$tmp_libs.dylib"
 
8768
+                     break
 
8769
+                   fi
 
8770
+                 done
 
8771
+                 path=""
 
8772
+                 ;;
 
8773
+               *) continue ;;
 
8774
+               esac
 
8775
+               ;;
 
8776
+             *) continue ;;
 
8777
+             esac
 
8778
+             case " $deplibs " in
 
8779
+             *" $depdepl "*) ;;
 
8780
+             *) deplibs="$depdepl $deplibs" ;;
 
8781
+             esac
 
8782
+             case " $deplibs " in
 
8783
+             *" $path "*) ;;
 
8784
+             *) deplibs="$deplibs $path" ;;
 
8785
+             esac
 
8786
+           done
 
8787
+         fi # link_all_deplibs != no
 
8788
+       fi # linkmode = lib
 
8789
+      done # for deplib in $libs
 
8790
+      dependency_libs="$newdependency_libs"
 
8791
+      if test "$pass" = dlpreopen; then
 
8792
+       # Link the dlpreopened libraries before other libraries
 
8793
+       for deplib in $save_deplibs; do
 
8794
+         deplibs="$deplib $deplibs"
 
8795
+       done
 
8796
+      fi
 
8797
+      if test "$pass" != dlopen; then
 
8798
+       if test "$pass" != conv; then
 
8799
+         # Make sure lib_search_path contains only unique directories.
 
8800
+         lib_search_path=
 
8801
+         for dir in $newlib_search_path; do
 
8802
+           case "$lib_search_path " in
 
8803
+           *" $dir "*) ;;
 
8804
+           *) lib_search_path="$lib_search_path $dir" ;;
 
8805
+           esac
 
8806
+         done
 
8807
+         newlib_search_path=
 
8808
+       fi
 
8809
+
 
8810
+       if test "$linkmode,$pass" != "prog,link"; then
 
8811
+         vars="deplibs"
 
8812
+       else
 
8813
+         vars="compile_deplibs finalize_deplibs"
 
8814
+       fi
 
8815
+       for var in $vars dependency_libs; do
 
8816
+         # Add libraries to $var in reverse order
 
8817
+         eval tmp_libs=\"\$$var\"
 
8818
+         new_libs=
 
8819
+         for deplib in $tmp_libs; do
 
8820
+           # FIXME: Pedantically, this is the right thing to do, so
 
8821
+           #        that some nasty dependency loop isn't accidentally
 
8822
+           #        broken:
 
8823
+           #new_libs="$deplib $new_libs"
 
8824
+           # Pragmatically, this seems to cause very few problems in
 
8825
+           # practice:
 
8826
+           case $deplib in
 
8827
+           -L*) new_libs="$deplib $new_libs" ;;
 
8828
+           -R*) ;;
 
8829
+           *)
 
8830
+             # And here is the reason: when a library appears more
 
8831
+             # than once as an explicit dependence of a library, or
 
8832
+             # is implicitly linked in more than once by the
 
8833
+             # compiler, it is considered special, and multiple
 
8834
+             # occurrences thereof are not removed.  Compare this
 
8835
+             # with having the same library being listed as a
 
8836
+             # dependency of multiple other libraries: in this case,
 
8837
+             # we know (pedantically, we assume) the library does not
 
8838
+             # need to be listed more than once, so we keep only the
 
8839
+             # last copy.  This is not always right, but it is rare
 
8840
+             # enough that we require users that really mean to play
 
8841
+             # such unportable linking tricks to link the library
 
8842
+             # using -Wl,-lname, so that libtool does not consider it
 
8843
+             # for duplicate removal.
 
8844
+             case " $specialdeplibs " in
 
8845
+             *" $deplib "*) new_libs="$deplib $new_libs" ;;
 
8846
+             *)
 
8847
+               case " $new_libs " in
 
8848
+               *" $deplib "*) ;;
 
8849
+               *) new_libs="$deplib $new_libs" ;;
 
8850
+               esac
 
8851
+               ;;
 
8852
+             esac
 
8853
+             ;;
 
8854
+           esac
 
8855
+         done
 
8856
+         tmp_libs=
 
8857
+         for deplib in $new_libs; do
 
8858
+           case $deplib in
 
8859
+           -L*)
 
8860
+             case " $tmp_libs " in
 
8861
+             *" $deplib "*) ;;
 
8862
+             *) tmp_libs="$tmp_libs $deplib" ;;
 
8863
+             esac
 
8864
+             ;;
 
8865
+           *) tmp_libs="$tmp_libs $deplib" ;;
 
8866
+           esac
 
8867
+         done
 
8868
+         eval $var=\"$tmp_libs\"
 
8869
+       done # for var
 
8870
+      fi
 
8871
+      # Last step: remove runtime libs from dependency_libs
 
8872
+      # (they stay in deplibs)
 
8873
+      tmp_libs=
 
8874
+      for i in $dependency_libs ; do
 
8875
+       case " $predeps $postdeps $compiler_lib_search_path " in
 
8876
+       *" $i "*)
 
8877
+         i=""
 
8878
+         ;;
 
8879
+       esac
 
8880
+       if test -n "$i" ; then
 
8881
+         tmp_libs="$tmp_libs $i"
 
8882
+       fi
 
8883
+      done
 
8884
+      dependency_libs=$tmp_libs
 
8885
+    done # for pass
 
8886
+    if test "$linkmode" = prog; then
 
8887
+      dlfiles="$newdlfiles"
 
8888
+      dlprefiles="$newdlprefiles"
 
8889
+    fi
 
8890
+
 
8891
+    case $linkmode in
 
8892
+    oldlib)
 
8893
+      if test -n "$deplibs"; then
 
8894
+       $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
 
8895
+      fi
 
8896
+
 
8897
+      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
 
8898
+       $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
 
8899
+      fi
 
8900
+
 
8901
+      if test -n "$rpath"; then
 
8902
+       $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
 
8903
+      fi
 
8904
+
 
8905
+      if test -n "$xrpath"; then
 
8906
+       $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
 
8907
+      fi
 
8908
+
 
8909
+      if test -n "$vinfo"; then
 
8910
+       $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2
 
8911
+      fi
 
8912
+
 
8913
+      if test -n "$release"; then
 
8914
+       $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
 
8915
+      fi
 
8916
+
 
8917
+      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
 
8918
+       $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
 
8919
+      fi
 
8920
+
 
8921
+      # Now set the variables for building old libraries.
 
8922
+      build_libtool_libs=no
 
8923
+      oldlibs="$output"
 
8924
+      objs="$objs$old_deplibs"
 
8925
+      ;;
 
8926
+
 
8927
+    lib)
 
8928
+      # Make sure we only generate libraries of the form `libNAME.la'.
 
8929
+      case $outputname in
 
8930
+      lib*)
 
8931
+       name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
 
8932
+       eval shared_ext=\"$shrext_cmds\"
 
8933
+       eval libname=\"$libname_spec\"
 
8934
+       ;;
 
8935
+      *)
 
8936
+       if test "$module" = no; then
 
8937
+         $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
 
8938
+         $echo "$help" 1>&2
 
8939
+         exit $EXIT_FAILURE
 
8940
+       fi
 
8941
+       if test "$need_lib_prefix" != no; then
 
8942
+         # Add the "lib" prefix for modules if required
 
8943
+         name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
 
8944
+         eval shared_ext=\"$shrext_cmds\"
 
8945
+         eval libname=\"$libname_spec\"
 
8946
+       else
 
8947
+         libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
 
8948
+       fi
 
8949
+       ;;
 
8950
+      esac
 
8951
+
 
8952
+      if test -n "$objs"; then
 
8953
+       if test "$deplibs_check_method" != pass_all; then
 
8954
+         $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
 
8955
+         exit $EXIT_FAILURE
 
8956
+       else
 
8957
+         $echo
 
8958
+         $echo "*** Warning: Linking the shared library $output against the non-libtool"
 
8959
+         $echo "*** objects $objs is not portable!"
 
8960
+         libobjs="$libobjs $objs"
 
8961
+       fi
 
8962
+      fi
 
8963
+
 
8964
+      if test "$dlself" != no; then
 
8965
+       $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
 
8966
+      fi
 
8967
+
 
8968
+      set dummy $rpath
 
8969
+      if test "$#" -gt 2; then
 
8970
+       $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
 
8971
+      fi
 
8972
+      install_libdir="$2"
 
8973
+
 
8974
+      oldlibs=
 
8975
+      if test -z "$rpath"; then
 
8976
+       if test "$build_libtool_libs" = yes; then
 
8977
+         # Building a libtool convenience library.
 
8978
+         # Some compilers have problems with a `.al' extension so
 
8979
+         # convenience libraries should have the same extension an
 
8980
+         # archive normally would.
 
8981
+         oldlibs="$output_objdir/$libname.$libext $oldlibs"
 
8982
+         build_libtool_libs=convenience
 
8983
+         build_old_libs=yes
 
8984
+       fi
 
8985
+
 
8986
+       if test -n "$vinfo"; then
 
8987
+         $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2
 
8988
+       fi
 
8989
+
 
8990
+       if test -n "$release"; then
 
8991
+         $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
 
8992
+       fi
 
8993
+      else
 
8994
+
 
8995
+       # Parse the version information argument.
 
8996
+       save_ifs="$IFS"; IFS=':'
 
8997
+       set dummy $vinfo 0 0 0
 
8998
+       IFS="$save_ifs"
 
8999
+
 
9000
+       if test -n "$8"; then
 
9001
+         $echo "$modename: too many parameters to \`-version-info'" 1>&2
 
9002
+         $echo "$help" 1>&2
 
9003
+         exit $EXIT_FAILURE
 
9004
+       fi
 
9005
+
 
9006
+       # convert absolute version numbers to libtool ages
 
9007
+       # this retains compatibility with .la files and attempts
 
9008
+       # to make the code below a bit more comprehensible
 
9009
+
 
9010
+       case $vinfo_number in
 
9011
+       yes)
 
9012
+         number_major="$2"
 
9013
+         number_minor="$3"
 
9014
+         number_revision="$4"
 
9015
+         #
 
9016
+         # There are really only two kinds -- those that
 
9017
+         # use the current revision as the major version
 
9018
+         # and those that subtract age and use age as
 
9019
+         # a minor version.  But, then there is irix
 
9020
+         # which has an extra 1 added just for fun
 
9021
+         #
 
9022
+         case $version_type in
 
9023
+         darwin|linux|osf|windows)
 
9024
+           current=`expr $number_major + $number_minor`
 
9025
+           age="$number_minor"
 
9026
+           revision="$number_revision"
 
9027
+           ;;
 
9028
+         freebsd-aout|freebsd-elf|sunos)
 
9029
+           current="$number_major"
 
9030
+           revision="$number_minor"
 
9031
+           age="0"
 
9032
+           ;;
 
9033
+         irix|nonstopux)
 
9034
+           current=`expr $number_major + $number_minor - 1`
 
9035
+           age="$number_minor"
 
9036
+           revision="$number_minor"
 
9037
+           ;;
 
9038
+         *)
 
9039
+           $echo "$modename: unknown library version type \`$version_type'" 1>&2
 
9040
+           $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
9041
+           exit $EXIT_FAILURE
 
9042
+           ;;
 
9043
+         esac
 
9044
+         ;;
 
9045
+       no)
 
9046
+         current="$2"
 
9047
+         revision="$3"
 
9048
+         age="$4"
 
9049
+         ;;
 
9050
+       esac
 
9051
+
 
9052
+       # Check that each of the things are valid numbers.
 
9053
+       case $current in
 
9054
+       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
 
9055
+       *)
 
9056
+         $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
 
9057
+         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
9058
+         exit $EXIT_FAILURE
 
9059
+         ;;
 
9060
+       esac
 
9061
+
 
9062
+       case $revision in
 
9063
+       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
 
9064
+       *)
 
9065
+         $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
 
9066
+         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
9067
+         exit $EXIT_FAILURE
 
9068
+         ;;
 
9069
+       esac
 
9070
+
 
9071
+       case $age in
 
9072
+       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
 
9073
+       *)
 
9074
+         $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
 
9075
+         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
9076
+         exit $EXIT_FAILURE
 
9077
+         ;;
 
9078
+       esac
 
9079
+
 
9080
+       if test "$age" -gt "$current"; then
 
9081
+         $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
 
9082
+         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
9083
+         exit $EXIT_FAILURE
 
9084
+       fi
 
9085
+
 
9086
+       # Calculate the version variables.
 
9087
+       major=
 
9088
+       versuffix=
 
9089
+       verstring=
 
9090
+       case $version_type in
 
9091
+       none) ;;
 
9092
+
 
9093
+       darwin)
 
9094
+         # Like Linux, but with the current version available in
 
9095
+         # verstring for coding it into the library header
 
9096
+         major=.`expr $current - $age`
 
9097
+         versuffix="$major.$age.$revision"
 
9098
+         # Darwin ld doesn't like 0 for these options...
 
9099
+         minor_current=`expr $current + 1`
 
9100
+         verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
 
9101
+         ;;
 
9102
+
 
9103
+       freebsd-aout)
 
9104
+         major=".$current"
 
9105
+         versuffix=".$current.$revision";
 
9106
+         ;;
 
9107
+
 
9108
+       freebsd-elf)
 
9109
+         major=".$current"
 
9110
+         versuffix=".$current";
 
9111
+         ;;
 
9112
+
 
9113
+       irix | nonstopux)
 
9114
+         major=`expr $current - $age + 1`
 
9115
+
 
9116
+         case $version_type in
 
9117
+           nonstopux) verstring_prefix=nonstopux ;;
 
9118
+           *)         verstring_prefix=sgi ;;
 
9119
+         esac
 
9120
+         verstring="$verstring_prefix$major.$revision"
 
9121
+
 
9122
+         # Add in all the interfaces that we are compatible with.
 
9123
+         loop=$revision
 
9124
+         while test "$loop" -ne 0; do
 
9125
+           iface=`expr $revision - $loop`
 
9126
+           loop=`expr $loop - 1`
 
9127
+           verstring="$verstring_prefix$major.$iface:$verstring"
 
9128
+         done
 
9129
+
 
9130
+         # Before this point, $major must not contain `.'.
 
9131
+         major=.$major
 
9132
+         versuffix="$major.$revision"
 
9133
+         ;;
 
9134
+
 
9135
+       linux)
 
9136
+         major=.`expr $current - $age`
 
9137
+         versuffix="$major.$age.$revision"
 
9138
+         ;;
 
9139
+
 
9140
+       osf)
 
9141
+         major=.`expr $current - $age`
 
9142
+         versuffix=".$current.$age.$revision"
 
9143
+         verstring="$current.$age.$revision"
 
9144
+
 
9145
+         # Add in all the interfaces that we are compatible with.
 
9146
+         loop=$age
 
9147
+         while test "$loop" -ne 0; do
 
9148
+           iface=`expr $current - $loop`
 
9149
+           loop=`expr $loop - 1`
 
9150
+           verstring="$verstring:${iface}.0"
 
9151
+         done
 
9152
+
 
9153
+         # Make executables depend on our current version.
 
9154
+         verstring="$verstring:${current}.0"
 
9155
+         ;;
 
9156
+
 
9157
+       sunos)
 
9158
+         major=".$current"
 
9159
+         versuffix=".$current.$revision"
 
9160
+         ;;
 
9161
+
 
9162
+       windows)
 
9163
+         # Use '-' rather than '.', since we only want one
 
9164
+         # extension on DOS 8.3 filesystems.
 
9165
+         major=`expr $current - $age`
 
9166
+         versuffix="-$major"
 
9167
+         ;;
 
9168
+
 
9169
+       *)
 
9170
+         $echo "$modename: unknown library version type \`$version_type'" 1>&2
 
9171
+         $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
9172
+         exit $EXIT_FAILURE
 
9173
+         ;;
 
9174
+       esac
 
9175
+
 
9176
+       # Clear the version info if we defaulted, and they specified a release.
 
9177
+       if test -z "$vinfo" && test -n "$release"; then
 
9178
+         major=
 
9179
+         case $version_type in
 
9180
+         darwin)
 
9181
+           # we can't check for "0.0" in archive_cmds due to quoting
 
9182
+           # problems, so we reset it completely
 
9183
+           verstring=
 
9184
+           ;;
 
9185
+         *)
 
9186
+           verstring="0.0"
 
9187
+           ;;
 
9188
+         esac
 
9189
+         if test "$need_version" = no; then
 
9190
+           versuffix=
 
9191
+         else
 
9192
+           versuffix=".0.0"
 
9193
+         fi
 
9194
+       fi
 
9195
+
 
9196
+       # Remove version info from name if versioning should be avoided
 
9197
+       if test "$avoid_version" = yes && test "$need_version" = no; then
 
9198
+         major=
 
9199
+         versuffix=
 
9200
+         verstring=""
 
9201
+       fi
 
9202
+
 
9203
+       # Check to see if the archive will have undefined symbols.
 
9204
+       if test "$allow_undefined" = yes; then
 
9205
+         if test "$allow_undefined_flag" = unsupported; then
 
9206
+           $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
 
9207
+           build_libtool_libs=no
 
9208
+           build_old_libs=yes
 
9209
+         fi
 
9210
+       else
 
9211
+         # Don't allow undefined symbols.
 
9212
+         allow_undefined_flag="$no_undefined_flag"
 
9213
+       fi
 
9214
+      fi
 
9215
+
 
9216
+      if test "$mode" != relink; then
 
9217
+       # Remove our outputs, but don't remove object files since they
 
9218
+       # may have been created when compiling PIC objects.
 
9219
+       removelist=
 
9220
+       tempremovelist=`$echo "$output_objdir/*"`
 
9221
+       for p in $tempremovelist; do
 
9222
+         case $p in
 
9223
+           *.$objext)
 
9224
+              ;;
 
9225
+           $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
 
9226
+              if test "X$precious_files_regex" != "X"; then
 
9227
+                if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
 
9228
+                then
 
9229
+                  continue
 
9230
+                fi
 
9231
+              fi
 
9232
+              removelist="$removelist $p"
 
9233
+              ;;
 
9234
+           *) ;;
 
9235
+         esac
 
9236
+       done
 
9237
+       if test -n "$removelist"; then
 
9238
+         $show "${rm}r $removelist"
 
9239
+         $run ${rm}r $removelist
 
9240
+       fi
 
9241
+      fi
 
9242
+
 
9243
+      # Now set the variables for building old libraries.
 
9244
+      if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
 
9245
+       oldlibs="$oldlibs $output_objdir/$libname.$libext"
 
9246
+
 
9247
+       # Transform .lo files to .o files.
 
9248
+       oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
 
9249
+      fi
 
9250
+
 
9251
+      # Eliminate all temporary directories.
 
9252
+      for path in $notinst_path; do
 
9253
+       lib_search_path=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'`
 
9254
+       deplibs=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'`
 
9255
+       dependency_libs=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'`
 
9256
+      done
 
9257
+
 
9258
+      if test -n "$xrpath"; then
 
9259
+       # If the user specified any rpath flags, then add them.
 
9260
+       temp_xrpath=
 
9261
+       for libdir in $xrpath; do
 
9262
+         temp_xrpath="$temp_xrpath -R$libdir"
 
9263
+         case "$finalize_rpath " in
 
9264
+         *" $libdir "*) ;;
 
9265
+         *) finalize_rpath="$finalize_rpath $libdir" ;;
 
9266
+         esac
 
9267
+       done
 
9268
+       if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
 
9269
+         dependency_libs="$temp_xrpath $dependency_libs"
 
9270
+       fi
 
9271
+      fi
 
9272
+
 
9273
+      # Make sure dlfiles contains only unique files that won't be dlpreopened
 
9274
+      old_dlfiles="$dlfiles"
 
9275
+      dlfiles=
 
9276
+      for lib in $old_dlfiles; do
 
9277
+       case " $dlprefiles $dlfiles " in
 
9278
+       *" $lib "*) ;;
 
9279
+       *) dlfiles="$dlfiles $lib" ;;
 
9280
+       esac
 
9281
+      done
 
9282
+
 
9283
+      # Make sure dlprefiles contains only unique files
 
9284
+      old_dlprefiles="$dlprefiles"
 
9285
+      dlprefiles=
 
9286
+      for lib in $old_dlprefiles; do
 
9287
+       case "$dlprefiles " in
 
9288
+       *" $lib "*) ;;
 
9289
+       *) dlprefiles="$dlprefiles $lib" ;;
 
9290
+       esac
 
9291
+      done
 
9292
+
 
9293
+      if test "$build_libtool_libs" = yes; then
 
9294
+       if test -n "$rpath"; then
 
9295
+         case $host in
 
9296
+         *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
 
9297
+           # these systems don't actually have a c library (as such)!
 
9298
+           ;;
 
9299
+         *-*-rhapsody* | *-*-darwin1.[012])
 
9300
+           # Rhapsody C library is in the System framework
 
9301
+           deplibs="$deplibs -framework System"
 
9302
+           ;;
 
9303
+         *-*-netbsd*)
 
9304
+           # Don't link with libc until the a.out ld.so is fixed.
 
9305
+           ;;
 
9306
+         *-*-openbsd* | *-*-freebsd*)
 
9307
+           # Do not include libc due to us having libc/libc_r.
 
9308
+           test "X$arg" = "X-lc" && continue
 
9309
+           ;;
 
9310
+         *)
 
9311
+           # Add libc to deplibs on all other systems if necessary.
 
9312
+           if test "$build_libtool_need_lc" = "yes"; then
 
9313
+             deplibs="$deplibs -lc"
 
9314
+           fi
 
9315
+           ;;
 
9316
+         esac
 
9317
+       fi
 
9318
+
 
9319
+       # Transform deplibs into only deplibs that can be linked in shared.
 
9320
+       name_save=$name
 
9321
+       libname_save=$libname
 
9322
+       release_save=$release
 
9323
+       versuffix_save=$versuffix
 
9324
+       major_save=$major
 
9325
+       # I'm not sure if I'm treating the release correctly.  I think
 
9326
+       # release should show up in the -l (ie -lgmp5) so we don't want to
 
9327
+       # add it in twice.  Is that correct?
 
9328
+       release=""
 
9329
+       versuffix=""
 
9330
+       major=""
 
9331
+       newdeplibs=
 
9332
+       droppeddeps=no
 
9333
+       case $deplibs_check_method in
 
9334
+       pass_all)
 
9335
+         # Don't check for shared/static.  Everything works.
 
9336
+         # This might be a little naive.  We might want to check
 
9337
+         # whether the library exists or not.  But this is on
 
9338
+         # osf3 & osf4 and I'm not really sure... Just
 
9339
+         # implementing what was already the behavior.
 
9340
+         newdeplibs=$deplibs
 
9341
+         ;;
 
9342
+       test_compile)
 
9343
+         # This code stresses the "libraries are programs" paradigm to its
 
9344
+         # limits. Maybe even breaks it.  We compile a program, linking it
 
9345
+         # against the deplibs as a proxy for the library.  Then we can check
 
9346
+         # whether they linked in statically or dynamically with ldd.
 
9347
+         $rm conftest.c
 
9348
+         cat > conftest.c <<EOF
 
9349
+         int main() { return 0; }
 
9350
+EOF
 
9351
+         $rm conftest
 
9352
+         $LTCC -o conftest conftest.c $deplibs
 
9353
+         if test "$?" -eq 0 ; then
 
9354
+           ldd_output=`ldd conftest`
 
9355
+           for i in $deplibs; do
 
9356
+             name="`expr $i : '-l\(.*\)'`"
 
9357
+             # If $name is empty we are operating on a -L argument.
 
9358
+              if test "$name" != "" && test "$name" -ne "0"; then
 
9359
+               if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
 
9360
+                 case " $predeps $postdeps " in
 
9361
+                 *" $i "*)
 
9362
+                   newdeplibs="$newdeplibs $i"
 
9363
+                   i=""
 
9364
+                   ;;
 
9365
+                 esac
 
9366
+               fi
 
9367
+               if test -n "$i" ; then
 
9368
+                 libname=`eval \\$echo \"$libname_spec\"`
 
9369
+                 deplib_matches=`eval \\$echo \"$library_names_spec\"`
 
9370
+                 set dummy $deplib_matches
 
9371
+                 deplib_match=$2
 
9372
+                 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
 
9373
+                   newdeplibs="$newdeplibs $i"
 
9374
+                 else
 
9375
+                   droppeddeps=yes
 
9376
+                   $echo
 
9377
+                   $echo "*** Warning: dynamic linker does not accept needed library $i."
 
9378
+                   $echo "*** I have the capability to make that library automatically link in when"
 
9379
+                   $echo "*** you link to this library.  But I can only do this if you have a"
 
9380
+                   $echo "*** shared version of the library, which I believe you do not have"
 
9381
+                   $echo "*** because a test_compile did reveal that the linker did not use it for"
 
9382
+                   $echo "*** its dynamic dependency list that programs get resolved with at runtime."
 
9383
+                 fi
 
9384
+               fi
 
9385
+             else
 
9386
+               newdeplibs="$newdeplibs $i"
 
9387
+             fi
 
9388
+           done
 
9389
+         else
 
9390
+           # Error occurred in the first compile.  Let's try to salvage
 
9391
+           # the situation: Compile a separate program for each library.
 
9392
+           for i in $deplibs; do
 
9393
+             name="`expr $i : '-l\(.*\)'`"
 
9394
+             # If $name is empty we are operating on a -L argument.
 
9395
+              if test "$name" != "" && test "$name" != "0"; then
 
9396
+               $rm conftest
 
9397
+               $LTCC -o conftest conftest.c $i
 
9398
+               # Did it work?
 
9399
+               if test "$?" -eq 0 ; then
 
9400
+                 ldd_output=`ldd conftest`
 
9401
+                 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
 
9402
+                   case " $predeps $postdeps " in
 
9403
+                   *" $i "*)
 
9404
+                     newdeplibs="$newdeplibs $i"
 
9405
+                     i=""
 
9406
+                     ;;
 
9407
+                   esac
 
9408
+                 fi
 
9409
+                 if test -n "$i" ; then
 
9410
+                   libname=`eval \\$echo \"$libname_spec\"`
 
9411
+                   deplib_matches=`eval \\$echo \"$library_names_spec\"`
 
9412
+                   set dummy $deplib_matches
 
9413
+                   deplib_match=$2
 
9414
+                   if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
 
9415
+                     newdeplibs="$newdeplibs $i"
 
9416
+                   else
 
9417
+                     droppeddeps=yes
 
9418
+                     $echo
 
9419
+                     $echo "*** Warning: dynamic linker does not accept needed library $i."
 
9420
+                     $echo "*** I have the capability to make that library automatically link in when"
 
9421
+                     $echo "*** you link to this library.  But I can only do this if you have a"
 
9422
+                     $echo "*** shared version of the library, which you do not appear to have"
 
9423
+                     $echo "*** because a test_compile did reveal that the linker did not use this one"
 
9424
+                     $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
 
9425
+                   fi
 
9426
+                 fi
 
9427
+               else
 
9428
+                 droppeddeps=yes
 
9429
+                 $echo
 
9430
+                 $echo "*** Warning!  Library $i is needed by this library but I was not able to"
 
9431
+                 $echo "***  make it link in!  You will probably need to install it or some"
 
9432
+                 $echo "*** library that it depends on before this library will be fully"
 
9433
+                 $echo "*** functional.  Installing it before continuing would be even better."
 
9434
+               fi
 
9435
+             else
 
9436
+               newdeplibs="$newdeplibs $i"
 
9437
+             fi
 
9438
+           done
 
9439
+         fi
 
9440
+         ;;
 
9441
+       file_magic*)
 
9442
+         set dummy $deplibs_check_method
 
9443
+         file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
 
9444
+         for a_deplib in $deplibs; do
 
9445
+           name="`expr $a_deplib : '-l\(.*\)'`"
 
9446
+           # If $name is empty we are operating on a -L argument.
 
9447
+            if test "$name" != "" && test  "$name" != "0"; then
 
9448
+             if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
 
9449
+               case " $predeps $postdeps " in
 
9450
+               *" $a_deplib "*)
 
9451
+                 newdeplibs="$newdeplibs $a_deplib"
 
9452
+                 a_deplib=""
 
9453
+                 ;;
 
9454
+               esac
 
9455
+             fi
 
9456
+             if test -n "$a_deplib" ; then
 
9457
+               libname=`eval \\$echo \"$libname_spec\"`
 
9458
+               for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
 
9459
+                 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
 
9460
+                 for potent_lib in $potential_libs; do
 
9461
+                     # Follow soft links.
 
9462
+                     if ls -lLd "$potent_lib" 2>/dev/null \
 
9463
+                        | grep " -> " >/dev/null; then
 
9464
+                       continue
 
9465
+                     fi
 
9466
+                     # The statement above tries to avoid entering an
 
9467
+                     # endless loop below, in case of cyclic links.
 
9468
+                     # We might still enter an endless loop, since a link
 
9469
+                     # loop can be closed while we follow links,
 
9470
+                     # but so what?
 
9471
+                     potlib="$potent_lib"
 
9472
+                     while test -h "$potlib" 2>/dev/null; do
 
9473
+                       potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
 
9474
+                       case $potliblink in
 
9475
+                       [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
 
9476
+                       *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
 
9477
+                       esac
 
9478
+                     done
 
9479
+                     if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
 
9480
+                        | ${SED} 10q \
 
9481
+                        | $EGREP "$file_magic_regex" > /dev/null; then
 
9482
+                       newdeplibs="$newdeplibs $a_deplib"
 
9483
+                       a_deplib=""
 
9484
+                       break 2
 
9485
+                     fi
 
9486
+                 done
 
9487
+               done
 
9488
+             fi
 
9489
+             if test -n "$a_deplib" ; then
 
9490
+               droppeddeps=yes
 
9491
+               $echo
 
9492
+               $echo "*** Warning: linker path does not have real file for library $a_deplib."
 
9493
+               $echo "*** I have the capability to make that library automatically link in when"
 
9494
+               $echo "*** you link to this library.  But I can only do this if you have a"
 
9495
+               $echo "*** shared version of the library, which you do not appear to have"
 
9496
+               $echo "*** because I did check the linker path looking for a file starting"
 
9497
+               if test -z "$potlib" ; then
 
9498
+                 $echo "*** with $libname but no candidates were found. (...for file magic test)"
 
9499
+               else
 
9500
+                 $echo "*** with $libname and none of the candidates passed a file format test"
 
9501
+                 $echo "*** using a file magic. Last file checked: $potlib"
 
9502
+               fi
 
9503
+             fi
 
9504
+           else
 
9505
+             # Add a -L argument.
 
9506
+             newdeplibs="$newdeplibs $a_deplib"
 
9507
+           fi
 
9508
+         done # Gone through all deplibs.
 
9509
+         ;;
 
9510
+       match_pattern*)
 
9511
+         set dummy $deplibs_check_method
 
9512
+         match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
 
9513
+         for a_deplib in $deplibs; do
 
9514
+           name="`expr $a_deplib : '-l\(.*\)'`"
 
9515
+           # If $name is empty we are operating on a -L argument.
 
9516
+           if test -n "$name" && test "$name" != "0"; then
 
9517
+             if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
 
9518
+               case " $predeps $postdeps " in
 
9519
+               *" $a_deplib "*)
 
9520
+                 newdeplibs="$newdeplibs $a_deplib"
 
9521
+                 a_deplib=""
 
9522
+                 ;;
 
9523
+               esac
 
9524
+             fi
 
9525
+             if test -n "$a_deplib" ; then
 
9526
+               libname=`eval \\$echo \"$libname_spec\"`
 
9527
+               for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
 
9528
+                 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
 
9529
+                 for potent_lib in $potential_libs; do
 
9530
+                   potlib="$potent_lib" # see symlink-check above in file_magic test
 
9531
+                   if eval $echo \"$potent_lib\" 2>/dev/null \
 
9532
+                       | ${SED} 10q \
 
9533
+                       | $EGREP "$match_pattern_regex" > /dev/null; then
 
9534
+                     newdeplibs="$newdeplibs $a_deplib"
 
9535
+                     a_deplib=""
 
9536
+                     break 2
 
9537
+                   fi
 
9538
+                 done
 
9539
+               done
 
9540
+             fi
 
9541
+             if test -n "$a_deplib" ; then
 
9542
+               droppeddeps=yes
 
9543
+               $echo
 
9544
+               $echo "*** Warning: linker path does not have real file for library $a_deplib."
 
9545
+               $echo "*** I have the capability to make that library automatically link in when"
 
9546
+               $echo "*** you link to this library.  But I can only do this if you have a"
 
9547
+               $echo "*** shared version of the library, which you do not appear to have"
 
9548
+               $echo "*** because I did check the linker path looking for a file starting"
 
9549
+               if test -z "$potlib" ; then
 
9550
+                 $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
 
9551
+               else
 
9552
+                 $echo "*** with $libname and none of the candidates passed a file format test"
 
9553
+                 $echo "*** using a regex pattern. Last file checked: $potlib"
 
9554
+               fi
 
9555
+             fi
 
9556
+           else
 
9557
+             # Add a -L argument.
 
9558
+             newdeplibs="$newdeplibs $a_deplib"
 
9559
+           fi
 
9560
+         done # Gone through all deplibs.
 
9561
+         ;;
 
9562
+       none | unknown | *)
 
9563
+         newdeplibs=""
 
9564
+         tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
 
9565
+           -e 's/ -[LR][^ ]*//g'`
 
9566
+         if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
 
9567
+           for i in $predeps $postdeps ; do
 
9568
+             # can't use Xsed below, because $i might contain '/'
 
9569
+             tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
 
9570
+           done
 
9571
+         fi
 
9572
+         if $echo "X $tmp_deplibs" | $Xsed -e 's/[     ]//g' \
 
9573
+           | grep . >/dev/null; then
 
9574
+           $echo
 
9575
+           if test "X$deplibs_check_method" = "Xnone"; then
 
9576
+             $echo "*** Warning: inter-library dependencies are not supported in this platform."
 
9577
+           else
 
9578
+             $echo "*** Warning: inter-library dependencies are not known to be supported."
 
9579
+           fi
 
9580
+           $echo "*** All declared inter-library dependencies are being dropped."
 
9581
+           droppeddeps=yes
 
9582
+         fi
 
9583
+         ;;
 
9584
+       esac
 
9585
+       versuffix=$versuffix_save
 
9586
+       major=$major_save
 
9587
+       release=$release_save
 
9588
+       libname=$libname_save
 
9589
+       name=$name_save
 
9590
+
 
9591
+       case $host in
 
9592
+       *-*-rhapsody* | *-*-darwin1.[012])
 
9593
+         # On Rhapsody replace the C library is the System framework
 
9594
+         newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
 
9595
+         ;;
 
9596
+       esac
 
9597
+
 
9598
+       if test "$droppeddeps" = yes; then
 
9599
+         if test "$module" = yes; then
 
9600
+           $echo
 
9601
+           $echo "*** Warning: libtool could not satisfy all declared inter-library"
 
9602
+           $echo "*** dependencies of module $libname.  Therefore, libtool will create"
 
9603
+           $echo "*** a static module, that should work as long as the dlopening"
 
9604
+           $echo "*** application is linked with the -dlopen flag."
 
9605
+           if test -z "$global_symbol_pipe"; then
 
9606
+             $echo
 
9607
+             $echo "*** However, this would only work if libtool was able to extract symbol"
 
9608
+             $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
 
9609
+             $echo "*** not find such a program.  So, this module is probably useless."
 
9610
+             $echo "*** \`nm' from GNU binutils and a full rebuild may help."
 
9611
+           fi
 
9612
+           if test "$build_old_libs" = no; then
 
9613
+             oldlibs="$output_objdir/$libname.$libext"
 
9614
+             build_libtool_libs=module
 
9615
+             build_old_libs=yes
 
9616
+           else
 
9617
+             build_libtool_libs=no
 
9618
+           fi
 
9619
+         else
 
9620
+           $echo "*** The inter-library dependencies that have been dropped here will be"
 
9621
+           $echo "*** automatically added whenever a program is linked with this library"
 
9622
+           $echo "*** or is declared to -dlopen it."
 
9623
+
 
9624
+           if test "$allow_undefined" = no; then
 
9625
+             $echo
 
9626
+             $echo "*** Since this library must not contain undefined symbols,"
 
9627
+             $echo "*** because either the platform does not support them or"
 
9628
+             $echo "*** it was explicitly requested with -no-undefined,"
 
9629
+             $echo "*** libtool will only create a static version of it."
 
9630
+             if test "$build_old_libs" = no; then
 
9631
+               oldlibs="$output_objdir/$libname.$libext"
 
9632
+               build_libtool_libs=module
 
9633
+               build_old_libs=yes
 
9634
+             else
 
9635
+               build_libtool_libs=no
 
9636
+             fi
 
9637
+           fi
 
9638
+         fi
 
9639
+       fi
 
9640
+       # Done checking deplibs!
 
9641
+       deplibs=$newdeplibs
 
9642
+      fi
 
9643
+
 
9644
+      # All the library-specific variables (install_libdir is set above).
 
9645
+      library_names=
 
9646
+      old_library=
 
9647
+      dlname=
 
9648
+
 
9649
+      # Test again, we may have decided not to build it any more
 
9650
+      if test "$build_libtool_libs" = yes; then
 
9651
+       if test "$hardcode_into_libs" = yes; then
 
9652
+         # Hardcode the library paths
 
9653
+         hardcode_libdirs=
 
9654
+         dep_rpath=
 
9655
+         rpath="$finalize_rpath"
 
9656
+         test "$mode" != relink && rpath="$compile_rpath$rpath"
 
9657
+         for libdir in $rpath; do
 
9658
+           if test -n "$hardcode_libdir_flag_spec"; then
 
9659
+             if test -n "$hardcode_libdir_separator"; then
 
9660
+               if test -z "$hardcode_libdirs"; then
 
9661
+                 hardcode_libdirs="$libdir"
 
9662
+               else
 
9663
+                 # Just accumulate the unique libdirs.
 
9664
+                 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
 
9665
+                 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
 
9666
+                   ;;
 
9667
+                 *)
 
9668
+                   hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
 
9669
+                   ;;
 
9670
+                 esac
 
9671
+               fi
 
9672
+             else
 
9673
+               eval flag=\"$hardcode_libdir_flag_spec\"
 
9674
+               dep_rpath="$dep_rpath $flag"
 
9675
+             fi
 
9676
+           elif test -n "$runpath_var"; then
 
9677
+             case "$perm_rpath " in
 
9678
+             *" $libdir "*) ;;
 
9679
+             *) perm_rpath="$perm_rpath $libdir" ;;
 
9680
+             esac
 
9681
+           fi
 
9682
+         done
 
9683
+         # Substitute the hardcoded libdirs into the rpath.
 
9684
+         if test -n "$hardcode_libdir_separator" &&
 
9685
+            test -n "$hardcode_libdirs"; then
 
9686
+           libdir="$hardcode_libdirs"
 
9687
+           if test -n "$hardcode_libdir_flag_spec_ld"; then
 
9688
+             eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\"
 
9689
+           else
 
9690
+             eval dep_rpath=\"$hardcode_libdir_flag_spec\"
 
9691
+           fi
 
9692
+         fi
 
9693
+         if test -n "$runpath_var" && test -n "$perm_rpath"; then
 
9694
+           # We should set the runpath_var.
 
9695
+           rpath=
 
9696
+           for dir in $perm_rpath; do
 
9697
+             rpath="$rpath$dir:"
 
9698
+           done
 
9699
+           eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
 
9700
+         fi
 
9701
+         test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
 
9702
+       fi
 
9703
+
 
9704
+       shlibpath="$finalize_shlibpath"
 
9705
+       test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
 
9706
+       if test -n "$shlibpath"; then
 
9707
+         eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
 
9708
+       fi
 
9709
+
 
9710
+       # Get the real and link names of the library.
 
9711
+       eval shared_ext=\"$shrext_cmds\"
 
9712
+       eval library_names=\"$library_names_spec\"
 
9713
+       set dummy $library_names
 
9714
+       realname="$2"
 
9715
+       shift; shift
 
9716
+
 
9717
+       if test -n "$soname_spec"; then
 
9718
+         eval soname=\"$soname_spec\"
 
9719
+       else
 
9720
+         soname="$realname"
 
9721
+       fi
 
9722
+       if test -z "$dlname"; then
 
9723
+         dlname=$soname
 
9724
+       fi
 
9725
+
 
9726
+       lib="$output_objdir/$realname"
 
9727
+       for link
 
9728
+       do
 
9729
+         linknames="$linknames $link"
 
9730
+       done
 
9731
+
 
9732
+       # Use standard objects if they are pic
 
9733
+       test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
9734
+
 
9735
+       # Prepare the list of exported symbols
 
9736
+       if test -z "$export_symbols"; then
 
9737
+         if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
 
9738
+           $show "generating symbol list for \`$libname.la'"
 
9739
+           export_symbols="$output_objdir/$libname.exp"
 
9740
+           $run $rm $export_symbols
 
9741
+           cmds=$export_symbols_cmds
 
9742
+           save_ifs="$IFS"; IFS='~'
 
9743
+           for cmd in $cmds; do
 
9744
+             IFS="$save_ifs"
 
9745
+             eval cmd=\"$cmd\"
 
9746
+             if len=`expr "X$cmd" : ".*"` &&
 
9747
+              test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
9748
+               $show "$cmd"
 
9749
+               $run eval "$cmd" || exit $?
 
9750
+               skipped_export=false
 
9751
+             else
 
9752
+               # The command line is too long to execute in one step.
 
9753
+               $show "using reloadable object file for export list..."
 
9754
+               skipped_export=:
 
9755
+             fi
 
9756
+           done
 
9757
+           IFS="$save_ifs"
 
9758
+           if test -n "$export_symbols_regex"; then
 
9759
+             $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
 
9760
+             $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
 
9761
+             $show "$mv \"${export_symbols}T\" \"$export_symbols\""
 
9762
+             $run eval '$mv "${export_symbols}T" "$export_symbols"'
 
9763
+           fi
 
9764
+         fi
 
9765
+       fi
 
9766
+
 
9767
+       if test -n "$export_symbols" && test -n "$include_expsyms"; then
 
9768
+         $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
 
9769
+       fi
 
9770
+
 
9771
+       tmp_deplibs=
 
9772
+       for test_deplib in $deplibs; do
 
9773
+               case " $convenience " in
 
9774
+               *" $test_deplib "*) ;;
 
9775
+               *)
 
9776
+                       tmp_deplibs="$tmp_deplibs $test_deplib"
 
9777
+                       ;;
 
9778
+               esac
 
9779
+       done
 
9780
+       deplibs="$tmp_deplibs"
 
9781
+
 
9782
+       if test -n "$convenience"; then
 
9783
+         if test -n "$whole_archive_flag_spec"; then
 
9784
+           save_libobjs=$libobjs
 
9785
+           eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
 
9786
+         else
 
9787
+           gentop="$output_objdir/${outputname}x"
 
9788
+           $show "${rm}r $gentop"
 
9789
+           $run ${rm}r "$gentop"
 
9790
+           $show "$mkdir $gentop"
 
9791
+           $run $mkdir "$gentop"
 
9792
+           status=$?
 
9793
+           if test "$status" -ne 0 && test ! -d "$gentop"; then
 
9794
+             exit $status
 
9795
+           fi
 
9796
+           generated="$generated $gentop"
 
9797
+
 
9798
+           for xlib in $convenience; do
 
9799
+             # Extract the objects.
 
9800
+             case $xlib in
 
9801
+             [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
 
9802
+             *) xabs=`pwd`"/$xlib" ;;
 
9803
+             esac
 
9804
+             xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
 
9805
+             xdir="$gentop/$xlib"
 
9806
+
 
9807
+             $show "${rm}r $xdir"
 
9808
+             $run ${rm}r "$xdir"
 
9809
+             $show "$mkdir $xdir"
 
9810
+             $run $mkdir "$xdir"
 
9811
+             status=$?
 
9812
+             if test "$status" -ne 0 && test ! -d "$xdir"; then
 
9813
+               exit $status
 
9814
+             fi
 
9815
+             # We will extract separately just the conflicting names and we will no
 
9816
+             # longer touch any unique names. It is faster to leave these extract
 
9817
+             # automatically by $AR in one run.
 
9818
+             $show "(cd $xdir && $AR x $xabs)"
 
9819
+             $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
 
9820
+             if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
 
9821
+               :
 
9822
+             else
 
9823
+               $echo "$modename: warning: object name conflicts; renaming object files" 1>&2
 
9824
+               $echo "$modename: warning: to ensure that they will not overwrite" 1>&2
 
9825
+               $AR t "$xabs" | sort | uniq -cd | while read -r count name
 
9826
+               do
 
9827
+                 i=1
 
9828
+                 while test "$i" -le "$count"
 
9829
+                 do
 
9830
+                  # Put our $i before any first dot (extension)
 
9831
+                  # Never overwrite any file
 
9832
+                  name_to="$name"
 
9833
+                  while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
 
9834
+                  do
 
9835
+                    name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
 
9836
+                  done
 
9837
+                  $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
 
9838
+                  $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
 
9839
+                  i=`expr $i + 1`
 
9840
+                 done
 
9841
+               done
 
9842
+             fi
 
9843
+
 
9844
+             libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
 
9845
+           done
 
9846
+         fi
 
9847
+       fi
 
9848
+
 
9849
+       if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
 
9850
+         eval flag=\"$thread_safe_flag_spec\"
 
9851
+         linker_flags="$linker_flags $flag"
 
9852
+       fi
 
9853
+
 
9854
+       # Make a backup of the uninstalled library when relinking
 
9855
+       if test "$mode" = relink; then
 
9856
+         $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
 
9857
+       fi
 
9858
+
 
9859
+       # Do each of the archive commands.
 
9860
+       if test "$module" = yes && test -n "$module_cmds" ; then
 
9861
+         if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
 
9862
+           eval test_cmds=\"$module_expsym_cmds\"
 
9863
+           cmds=$module_expsym_cmds
 
9864
+         else
 
9865
+           eval test_cmds=\"$module_cmds\"
 
9866
+           cmds=$module_cmds
 
9867
+         fi
 
9868
+       else
 
9869
+       if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
 
9870
+         eval test_cmds=\"$archive_expsym_cmds\"
 
9871
+         cmds=$archive_expsym_cmds
 
9872
+       else
 
9873
+         eval test_cmds=\"$archive_cmds\"
 
9874
+         cmds=$archive_cmds
 
9875
+         fi
 
9876
+       fi
 
9877
+
 
9878
+       if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*"` &&
 
9879
+          test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
9880
+         :
 
9881
+       else
 
9882
+         # The command line is too long to link in one step, link piecewise.
 
9883
+         $echo "creating reloadable object files..."
 
9884
+
 
9885
+         # Save the value of $output and $libobjs because we want to
 
9886
+         # use them later.  If we have whole_archive_flag_spec, we
 
9887
+         # want to use save_libobjs as it was before
 
9888
+         # whole_archive_flag_spec was expanded, because we can't
 
9889
+         # assume the linker understands whole_archive_flag_spec.
 
9890
+         # This may have to be revisited, in case too many
 
9891
+         # convenience libraries get linked in and end up exceeding
 
9892
+         # the spec.
 
9893
+         if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
 
9894
+           save_libobjs=$libobjs
 
9895
+         fi
 
9896
+         save_output=$output
 
9897
+
 
9898
+         # Clear the reloadable object creation command queue and
 
9899
+         # initialize k to one.
 
9900
+         test_cmds=
 
9901
+         concat_cmds=
 
9902
+         objlist=
 
9903
+         delfiles=
 
9904
+         last_robj=
 
9905
+         k=1
 
9906
+         output=$output_objdir/$save_output-${k}.$objext
 
9907
+         # Loop over the list of objects to be linked.
 
9908
+         for obj in $save_libobjs
 
9909
+         do
 
9910
+           eval test_cmds=\"$reload_cmds $objlist $last_robj\"
 
9911
+           if test "X$objlist" = X ||
 
9912
+              { len=`expr "X$test_cmds" : ".*"` &&
 
9913
+                test "$len" -le "$max_cmd_len"; }; then
 
9914
+             objlist="$objlist $obj"
 
9915
+           else
 
9916
+             # The command $test_cmds is almost too long, add a
 
9917
+             # command to the queue.
 
9918
+             if test "$k" -eq 1 ; then
 
9919
+               # The first file doesn't have a previous command to add.
 
9920
+               eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
 
9921
+             else
 
9922
+               # All subsequent reloadable object files will link in
 
9923
+               # the last one created.
 
9924
+               eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\"
 
9925
+             fi
 
9926
+             last_robj=$output_objdir/$save_output-${k}.$objext
 
9927
+             k=`expr $k + 1`
 
9928
+             output=$output_objdir/$save_output-${k}.$objext
 
9929
+             objlist=$obj
 
9930
+             len=1
 
9931
+           fi
 
9932
+         done
 
9933
+         # Handle the remaining objects by creating one last
 
9934
+         # reloadable object file.  All subsequent reloadable object
 
9935
+         # files will link in the last one created.
 
9936
+         test -z "$concat_cmds" || concat_cmds=$concat_cmds~
 
9937
+         eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"
 
9938
+
 
9939
+         if ${skipped_export-false}; then
 
9940
+           $show "generating symbol list for \`$libname.la'"
 
9941
+           export_symbols="$output_objdir/$libname.exp"
 
9942
+           $run $rm $export_symbols
 
9943
+           libobjs=$output
 
9944
+           # Append the command to create the export file.
 
9945
+           eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\"
 
9946
+          fi
 
9947
+
 
9948
+         # Set up a command to remove the reloadale object files
 
9949
+         # after they are used.
 
9950
+         i=0
 
9951
+         while test "$i" -lt "$k"
 
9952
+         do
 
9953
+           i=`expr $i + 1`
 
9954
+           delfiles="$delfiles $output_objdir/$save_output-${i}.$objext"
 
9955
+         done
 
9956
+
 
9957
+         $echo "creating a temporary reloadable object file: $output"
 
9958
+
 
9959
+         # Loop through the commands generated above and execute them.
 
9960
+         save_ifs="$IFS"; IFS='~'
 
9961
+         for cmd in $concat_cmds; do
 
9962
+           IFS="$save_ifs"
 
9963
+           $show "$cmd"
 
9964
+           $run eval "$cmd" || exit $?
 
9965
+         done
 
9966
+         IFS="$save_ifs"
 
9967
+
 
9968
+         libobjs=$output
 
9969
+         # Restore the value of output.
 
9970
+         output=$save_output
 
9971
+
 
9972
+         if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
 
9973
+           eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
 
9974
+         fi
 
9975
+         # Expand the library linking commands again to reset the
 
9976
+         # value of $libobjs for piecewise linking.
 
9977
+
 
9978
+         # Do each of the archive commands.
 
9979
+         if test "$module" = yes && test -n "$module_cmds" ; then
 
9980
+           if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
 
9981
+             cmds=$module_expsym_cmds
 
9982
+           else
 
9983
+             cmds=$module_cmds
 
9984
+           fi
 
9985
+         else
 
9986
+         if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
 
9987
+           cmds=$archive_expsym_cmds
 
9988
+         else
 
9989
+           cmds=$archive_cmds
 
9990
+           fi
 
9991
+         fi
 
9992
+
 
9993
+         # Append the command to remove the reloadable object files
 
9994
+         # to the just-reset $cmds.
 
9995
+         eval cmds=\"\$cmds~\$rm $delfiles\"
 
9996
+       fi
 
9997
+       save_ifs="$IFS"; IFS='~'
 
9998
+       for cmd in $cmds; do
 
9999
+         IFS="$save_ifs"
 
10000
+         eval cmd=\"$cmd\"
 
10001
+         $show "$cmd"
 
10002
+         $run eval "$cmd" || exit $?
 
10003
+       done
 
10004
+       IFS="$save_ifs"
 
10005
+
 
10006
+       # Restore the uninstalled library and exit
 
10007
+       if test "$mode" = relink; then
 
10008
+         $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
 
10009
+         exit $EXIT_SUCCESS
 
10010
+       fi
 
10011
+
 
10012
+       # Create links to the real library.
 
10013
+       for linkname in $linknames; do
 
10014
+         if test "$realname" != "$linkname"; then
 
10015
+           $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
 
10016
+           $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
 
10017
+         fi
 
10018
+       done
 
10019
+
 
10020
+       # If -module or -export-dynamic was specified, set the dlname.
 
10021
+       if test "$module" = yes || test "$export_dynamic" = yes; then
 
10022
+         # On all known operating systems, these are identical.
 
10023
+         dlname="$soname"
 
10024
+       fi
 
10025
+      fi
 
10026
+      ;;
 
10027
+
 
10028
+    obj)
 
10029
+      if test -n "$deplibs"; then
 
10030
+       $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
 
10031
+      fi
 
10032
+
 
10033
+      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
 
10034
+       $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
 
10035
+      fi
 
10036
+
 
10037
+      if test -n "$rpath"; then
 
10038
+       $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
 
10039
+      fi
 
10040
+
 
10041
+      if test -n "$xrpath"; then
 
10042
+       $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
 
10043
+      fi
 
10044
+
 
10045
+      if test -n "$vinfo"; then
 
10046
+       $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
 
10047
+      fi
 
10048
+
 
10049
+      if test -n "$release"; then
 
10050
+       $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
 
10051
+      fi
 
10052
+
 
10053
+      case $output in
 
10054
+      *.lo)
 
10055
+       if test -n "$objs$old_deplibs"; then
 
10056
+         $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
 
10057
+         exit $EXIT_FAILURE
 
10058
+       fi
 
10059
+       libobj="$output"
 
10060
+       obj=`$echo "X$output" | $Xsed -e "$lo2o"`
 
10061
+       ;;
 
10062
+      *)
 
10063
+       libobj=
 
10064
+       obj="$output"
 
10065
+       ;;
 
10066
+      esac
 
10067
+
 
10068
+      # Delete the old objects.
 
10069
+      $run $rm $obj $libobj
 
10070
+
 
10071
+      # Objects from convenience libraries.  This assumes
 
10072
+      # single-version convenience libraries.  Whenever we create
 
10073
+      # different ones for PIC/non-PIC, this we'll have to duplicate
 
10074
+      # the extraction.
 
10075
+      reload_conv_objs=
 
10076
+      gentop=
 
10077
+      # reload_cmds runs $LD directly, so let us get rid of
 
10078
+      # -Wl from whole_archive_flag_spec
 
10079
+      wl=
 
10080
+
 
10081
+      if test -n "$convenience"; then
 
10082
+       if test -n "$whole_archive_flag_spec"; then
 
10083
+         eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
 
10084
+       else
 
10085
+         gentop="$output_objdir/${obj}x"
 
10086
+         $show "${rm}r $gentop"
 
10087
+         $run ${rm}r "$gentop"
 
10088
+         $show "$mkdir $gentop"
 
10089
+         $run $mkdir "$gentop"
 
10090
+         status=$?
 
10091
+         if test "$status" -ne 0 && test ! -d "$gentop"; then
 
10092
+           exit $status
 
10093
+         fi
 
10094
+         generated="$generated $gentop"
 
10095
+
 
10096
+         for xlib in $convenience; do
 
10097
+           # Extract the objects.
 
10098
+           case $xlib in
 
10099
+           [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
 
10100
+           *) xabs=`pwd`"/$xlib" ;;
 
10101
+           esac
 
10102
+           xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
 
10103
+           xdir="$gentop/$xlib"
 
10104
+
 
10105
+           $show "${rm}r $xdir"
 
10106
+           $run ${rm}r "$xdir"
 
10107
+           $show "$mkdir $xdir"
 
10108
+           $run $mkdir "$xdir"
 
10109
+           status=$?
 
10110
+           if test "$status" -ne 0 && test ! -d "$xdir"; then
 
10111
+             exit $status
 
10112
+           fi
 
10113
+           # We will extract separately just the conflicting names and we will no
 
10114
+           # longer touch any unique names. It is faster to leave these extract
 
10115
+           # automatically by $AR in one run.
 
10116
+           $show "(cd $xdir && $AR x $xabs)"
 
10117
+           $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
 
10118
+           if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
 
10119
+             :
 
10120
+           else
 
10121
+             $echo "$modename: warning: object name conflicts; renaming object files" 1>&2
 
10122
+             $echo "$modename: warning: to ensure that they will not overwrite" 1>&2
 
10123
+             $AR t "$xabs" | sort | uniq -cd | while read -r count name
 
10124
+             do
 
10125
+               i=1
 
10126
+               while test "$i" -le "$count"
 
10127
+               do
 
10128
+                # Put our $i before any first dot (extension)
 
10129
+                # Never overwrite any file
 
10130
+                name_to="$name"
 
10131
+                while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
 
10132
+                do
 
10133
+                  name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
 
10134
+                done
 
10135
+                $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
 
10136
+                $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
 
10137
+                i=`expr $i + 1`
 
10138
+               done
 
10139
+             done
 
10140
+           fi
 
10141
+
 
10142
+           reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
 
10143
+         done
 
10144
+       fi
 
10145
+      fi
 
10146
+
 
10147
+      # Create the old-style object.
 
10148
+      reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
 
10149
+
 
10150
+      output="$obj"
 
10151
+      cmds=$reload_cmds
 
10152
+      save_ifs="$IFS"; IFS='~'
 
10153
+      for cmd in $cmds; do
 
10154
+       IFS="$save_ifs"
 
10155
+       eval cmd=\"$cmd\"
 
10156
+       $show "$cmd"
 
10157
+       $run eval "$cmd" || exit $?
 
10158
+      done
 
10159
+      IFS="$save_ifs"
 
10160
+
 
10161
+      # Exit if we aren't doing a library object file.
 
10162
+      if test -z "$libobj"; then
 
10163
+       if test -n "$gentop"; then
 
10164
+         $show "${rm}r $gentop"
 
10165
+         $run ${rm}r $gentop
 
10166
+       fi
 
10167
+
 
10168
+       exit $EXIT_SUCCESS
 
10169
+      fi
 
10170
+
 
10171
+      if test "$build_libtool_libs" != yes; then
 
10172
+       if test -n "$gentop"; then
 
10173
+         $show "${rm}r $gentop"
 
10174
+         $run ${rm}r $gentop
 
10175
+       fi
 
10176
+
 
10177
+       # Create an invalid libtool object if no PIC, so that we don't
 
10178
+       # accidentally link it into a program.
 
10179
+       # $show "echo timestamp > $libobj"
 
10180
+       # $run eval "echo timestamp > $libobj" || exit $?
 
10181
+       exit $EXIT_SUCCESS
 
10182
+      fi
 
10183
+
 
10184
+      if test -n "$pic_flag" || test "$pic_mode" != default; then
 
10185
+       # Only do commands if we really have different PIC objects.
 
10186
+       reload_objs="$libobjs $reload_conv_objs"
 
10187
+       output="$libobj"
 
10188
+       cmds=$reload_cmds
 
10189
+       save_ifs="$IFS"; IFS='~'
 
10190
+       for cmd in $cmds; do
 
10191
+         IFS="$save_ifs"
 
10192
+         eval cmd=\"$cmd\"
 
10193
+         $show "$cmd"
 
10194
+         $run eval "$cmd" || exit $?
 
10195
+       done
 
10196
+       IFS="$save_ifs"
 
10197
+      fi
 
10198
+
 
10199
+      if test -n "$gentop"; then
 
10200
+       $show "${rm}r $gentop"
 
10201
+       $run ${rm}r $gentop
 
10202
+      fi
 
10203
+
 
10204
+      exit $EXIT_SUCCESS
 
10205
+      ;;
 
10206
+
 
10207
+    prog)
 
10208
+      case $host in
 
10209
+       *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;;
 
10210
+      esac
 
10211
+      if test -n "$vinfo"; then
 
10212
+       $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
 
10213
+      fi
 
10214
+
 
10215
+      if test -n "$release"; then
 
10216
+       $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
 
10217
+      fi
 
10218
+
 
10219
+      if test "$preload" = yes; then
 
10220
+       if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
 
10221
+          test "$dlopen_self_static" = unknown; then
 
10222
+         $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
 
10223
+       fi
 
10224
+      fi
 
10225
+
 
10226
+      case $host in
 
10227
+      *-*-rhapsody* | *-*-darwin1.[012])
 
10228
+       # On Rhapsody replace the C library is the System framework
 
10229
+       compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
 
10230
+       finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
 
10231
+       ;;
 
10232
+      esac
 
10233
+
 
10234
+      case $host in
 
10235
+      *darwin*)
 
10236
+        # Don't allow lazy linking, it breaks C++ global constructors
 
10237
+        if test "$tagname" = CXX ; then
 
10238
+        compile_command="$compile_command ${wl}-bind_at_load"
 
10239
+        finalize_command="$finalize_command ${wl}-bind_at_load"
 
10240
+        fi
 
10241
+        ;;
 
10242
+      esac
 
10243
+
 
10244
+      compile_command="$compile_command $compile_deplibs"
 
10245
+      finalize_command="$finalize_command $finalize_deplibs"
 
10246
+
 
10247
+      if test -n "$rpath$xrpath"; then
 
10248
+       # If the user specified any rpath flags, then add them.
 
10249
+       for libdir in $rpath $xrpath; do
 
10250
+         # This is the magic to use -rpath.
 
10251
+         case "$finalize_rpath " in
 
10252
+         *" $libdir "*) ;;
 
10253
+         *) finalize_rpath="$finalize_rpath $libdir" ;;
 
10254
+         esac
 
10255
+       done
 
10256
+      fi
 
10257
+
 
10258
+      # Now hardcode the library paths
 
10259
+      rpath=
 
10260
+      hardcode_libdirs=
 
10261
+      for libdir in $compile_rpath $finalize_rpath; do
 
10262
+       if test -n "$hardcode_libdir_flag_spec"; then
 
10263
+         if test -n "$hardcode_libdir_separator"; then
 
10264
+           if test -z "$hardcode_libdirs"; then
 
10265
+             hardcode_libdirs="$libdir"
 
10266
+           else
 
10267
+             # Just accumulate the unique libdirs.
 
10268
+             case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
 
10269
+             *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
 
10270
+               ;;
 
10271
+             *)
 
10272
+               hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
 
10273
+               ;;
 
10274
+             esac
 
10275
+           fi
 
10276
+         else
 
10277
+           eval flag=\"$hardcode_libdir_flag_spec\"
 
10278
+           rpath="$rpath $flag"
 
10279
+         fi
 
10280
+       elif test -n "$runpath_var"; then
 
10281
+         case "$perm_rpath " in
 
10282
+         *" $libdir "*) ;;
 
10283
+         *) perm_rpath="$perm_rpath $libdir" ;;
 
10284
+         esac
 
10285
+       fi
 
10286
+       case $host in
 
10287
+       *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
 
10288
+         case :$dllsearchpath: in
 
10289
+         *":$libdir:"*) ;;
 
10290
+         *) dllsearchpath="$dllsearchpath:$libdir";;
 
10291
+         esac
 
10292
+         ;;
 
10293
+       esac
 
10294
+      done
 
10295
+      # Substitute the hardcoded libdirs into the rpath.
 
10296
+      if test -n "$hardcode_libdir_separator" &&
 
10297
+        test -n "$hardcode_libdirs"; then
 
10298
+       libdir="$hardcode_libdirs"
 
10299
+       eval rpath=\" $hardcode_libdir_flag_spec\"
 
10300
+      fi
 
10301
+      compile_rpath="$rpath"
 
10302
+
 
10303
+      rpath=
 
10304
+      hardcode_libdirs=
 
10305
+      for libdir in $finalize_rpath; do
 
10306
+       if test -n "$hardcode_libdir_flag_spec"; then
 
10307
+         if test -n "$hardcode_libdir_separator"; then
 
10308
+           if test -z "$hardcode_libdirs"; then
 
10309
+             hardcode_libdirs="$libdir"
 
10310
+           else
 
10311
+             # Just accumulate the unique libdirs.
 
10312
+             case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
 
10313
+             *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
 
10314
+               ;;
 
10315
+             *)
 
10316
+               hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
 
10317
+               ;;
 
10318
+             esac
 
10319
+           fi
 
10320
+         else
 
10321
+           eval flag=\"$hardcode_libdir_flag_spec\"
 
10322
+           rpath="$rpath $flag"
 
10323
+         fi
 
10324
+       elif test -n "$runpath_var"; then
 
10325
+         case "$finalize_perm_rpath " in
 
10326
+         *" $libdir "*) ;;
 
10327
+         *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
 
10328
+         esac
 
10329
+       fi
 
10330
+      done
 
10331
+      # Substitute the hardcoded libdirs into the rpath.
 
10332
+      if test -n "$hardcode_libdir_separator" &&
 
10333
+        test -n "$hardcode_libdirs"; then
 
10334
+       libdir="$hardcode_libdirs"
 
10335
+       eval rpath=\" $hardcode_libdir_flag_spec\"
 
10336
+      fi
 
10337
+      finalize_rpath="$rpath"
 
10338
+
 
10339
+      if test -n "$libobjs" && test "$build_old_libs" = yes; then
 
10340
+       # Transform all the library objects into standard objects.
 
10341
+       compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
10342
+       finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
10343
+      fi
 
10344
+
 
10345
+      dlsyms=
 
10346
+      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
 
10347
+       if test -n "$NM" && test -n "$global_symbol_pipe"; then
 
10348
+         dlsyms="${outputname}S.c"
 
10349
+       else
 
10350
+         $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
 
10351
+       fi
 
10352
+      fi
 
10353
+
 
10354
+      if test -n "$dlsyms"; then
 
10355
+       case $dlsyms in
 
10356
+       "") ;;
 
10357
+       *.c)
 
10358
+         # Discover the nlist of each of the dlfiles.
 
10359
+         nlist="$output_objdir/${outputname}.nm"
 
10360
+
 
10361
+         $show "$rm $nlist ${nlist}S ${nlist}T"
 
10362
+         $run $rm "$nlist" "${nlist}S" "${nlist}T"
 
10363
+
 
10364
+         # Parse the name list into a source file.
 
10365
+         $show "creating $output_objdir/$dlsyms"
 
10366
+
 
10367
+         test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
 
10368
+/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
 
10369
+/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
 
10370
+
 
10371
+#ifdef __cplusplus
 
10372
+extern \"C\" {
 
10373
+#endif
 
10374
+
 
10375
+/* Prevent the only kind of declaration conflicts we can make. */
 
10376
+#define lt_preloaded_symbols some_other_symbol
 
10377
+
 
10378
+/* External symbol declarations for the compiler. */\
 
10379
+"
 
10380
+
 
10381
+         if test "$dlself" = yes; then
 
10382
+           $show "generating symbol list for \`$output'"
 
10383
+
 
10384
+           test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
 
10385
+
 
10386
+           # Add our own program objects to the symbol list.
 
10387
+           progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
10388
+           for arg in $progfiles; do
 
10389
+             $show "extracting global C symbols from \`$arg'"
 
10390
+             $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
 
10391
+           done
 
10392
+
 
10393
+           if test -n "$exclude_expsyms"; then
 
10394
+             $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
 
10395
+             $run eval '$mv "$nlist"T "$nlist"'
 
10396
+           fi
 
10397
+
 
10398
+           if test -n "$export_symbols_regex"; then
 
10399
+             $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
 
10400
+             $run eval '$mv "$nlist"T "$nlist"'
 
10401
+           fi
 
10402
+
 
10403
+           # Prepare the list of exported symbols
 
10404
+           if test -z "$export_symbols"; then
 
10405
+             export_symbols="$output_objdir/$output.exp"
 
10406
+             $run $rm $export_symbols
 
10407
+             $run eval "${SED} -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
 
10408
+           else
 
10409
+             $run eval "${SED} -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
 
10410
+             $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T'
 
10411
+             $run eval 'mv "$nlist"T "$nlist"'
 
10412
+           fi
 
10413
+         fi
 
10414
+
 
10415
+         for arg in $dlprefiles; do
 
10416
+           $show "extracting global C symbols from \`$arg'"
 
10417
+           name=`$echo "$arg" | ${SED} -e 's%^.*/%%'`
 
10418
+           $run eval '$echo ": $name " >> "$nlist"'
 
10419
+           $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
 
10420
+         done
 
10421
+
 
10422
+         if test -z "$run"; then
 
10423
+           # Make sure we have at least an empty file.
 
10424
+           test -f "$nlist" || : > "$nlist"
 
10425
+
 
10426
+           if test -n "$exclude_expsyms"; then
 
10427
+             $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
 
10428
+             $mv "$nlist"T "$nlist"
 
10429
+           fi
 
10430
+
 
10431
+           # Try sorting and uniquifying the output.
 
10432
+           if grep -v "^: " < "$nlist" |
 
10433
+               if sort -k 3 </dev/null >/dev/null 2>&1; then
 
10434
+                 sort -k 3
 
10435
+               else
 
10436
+                 sort +2
 
10437
+               fi |
 
10438
+               uniq > "$nlist"S; then
 
10439
+             :
 
10440
+           else
 
10441
+             grep -v "^: " < "$nlist" > "$nlist"S
 
10442
+           fi
 
10443
+
 
10444
+           if test -f "$nlist"S; then
 
10445
+             eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
 
10446
+           else
 
10447
+             $echo '/* NONE */' >> "$output_objdir/$dlsyms"
 
10448
+           fi
 
10449
+
 
10450
+           $echo >> "$output_objdir/$dlsyms" "\
 
10451
+
 
10452
+#undef lt_preloaded_symbols
 
10453
+
 
10454
+#if defined (__STDC__) && __STDC__
 
10455
+# define lt_ptr void *
 
10456
+#else
 
10457
+# define lt_ptr char *
 
10458
+# define const
 
10459
+#endif
 
10460
+
 
10461
+/* The mapping between symbol names and symbols. */
 
10462
+const struct {
 
10463
+  const char *name;
 
10464
+  lt_ptr address;
 
10465
+}
 
10466
+lt_preloaded_symbols[] =
 
10467
+{\
 
10468
+"
 
10469
+
 
10470
+           eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms"
 
10471
+
 
10472
+           $echo >> "$output_objdir/$dlsyms" "\
 
10473
+  {0, (lt_ptr) 0}
 
10474
+};
 
10475
+
 
10476
+/* This works around a problem in FreeBSD linker */
 
10477
+#ifdef FREEBSD_WORKAROUND
 
10478
+static const void *lt_preloaded_setup() {
 
10479
+  return lt_preloaded_symbols;
 
10480
+}
 
10481
+#endif
 
10482
+
 
10483
+#ifdef __cplusplus
 
10484
+}
 
10485
+#endif\
 
10486
+"
 
10487
+         fi
 
10488
+
 
10489
+         pic_flag_for_symtable=
 
10490
+         case $host in
 
10491
+         # compiling the symbol table file with pic_flag works around
 
10492
+         # a FreeBSD bug that causes programs to crash when -lm is
 
10493
+         # linked before any other PIC object.  But we must not use
 
10494
+         # pic_flag when linking with -static.  The problem exists in
 
10495
+         # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
 
10496
+         *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
 
10497
+           case "$compile_command " in
 
10498
+           *" -static "*) ;;
 
10499
+           *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";;
 
10500
+           esac;;
 
10501
+         *-*-hpux*)
 
10502
+           case "$compile_command " in
 
10503
+           *" -static "*) ;;
 
10504
+           *) pic_flag_for_symtable=" $pic_flag";;
 
10505
+           esac
 
10506
+         esac
 
10507
+
 
10508
+         # Now compile the dynamic symbol file.
 
10509
+         $show "(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
 
10510
+         $run eval '(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
 
10511
+
 
10512
+         # Clean up the generated files.
 
10513
+         $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
 
10514
+         $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
 
10515
+
 
10516
+         # Transform the symbol file into the correct name.
 
10517
+         compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
 
10518
+         finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
 
10519
+         ;;
 
10520
+       *)
 
10521
+         $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
 
10522
+         exit $EXIT_FAILURE
 
10523
+         ;;
 
10524
+       esac
 
10525
+      else
 
10526
+       # We keep going just in case the user didn't refer to
 
10527
+       # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
 
10528
+       # really was required.
 
10529
+
 
10530
+       # Nullify the symbol file.
 
10531
+       compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
 
10532
+       finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
 
10533
+      fi
 
10534
+
 
10535
+      if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
 
10536
+       # Replace the output file specification.
 
10537
+       compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
 
10538
+       link_command="$compile_command$compile_rpath"
 
10539
+
 
10540
+       # We have no uninstalled library dependencies, so finalize right now.
 
10541
+       $show "$link_command"
 
10542
+       $run eval "$link_command"
 
10543
+       status=$?
 
10544
+
 
10545
+       # Delete the generated files.
 
10546
+       if test -n "$dlsyms"; then
 
10547
+         $show "$rm $output_objdir/${outputname}S.${objext}"
 
10548
+         $run $rm "$output_objdir/${outputname}S.${objext}"
 
10549
+       fi
 
10550
+
 
10551
+       exit $status
 
10552
+      fi
 
10553
+
 
10554
+      if test -n "$shlibpath_var"; then
 
10555
+       # We should set the shlibpath_var
 
10556
+       rpath=
 
10557
+       for dir in $temp_rpath; do
 
10558
+         case $dir in
 
10559
+         [\\/]* | [A-Za-z]:[\\/]*)
 
10560
+           # Absolute path.
 
10561
+           rpath="$rpath$dir:"
 
10562
+           ;;
 
10563
+         *)
 
10564
+           # Relative path: add a thisdir entry.
 
10565
+           rpath="$rpath\$thisdir/$dir:"
 
10566
+           ;;
 
10567
+         esac
 
10568
+       done
 
10569
+       temp_rpath="$rpath"
 
10570
+      fi
 
10571
+
 
10572
+      if test -n "$compile_shlibpath$finalize_shlibpath"; then
 
10573
+       compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
 
10574
+      fi
 
10575
+      if test -n "$finalize_shlibpath"; then
 
10576
+       finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
 
10577
+      fi
 
10578
+
 
10579
+      compile_var=
 
10580
+      finalize_var=
 
10581
+      if test -n "$runpath_var"; then
 
10582
+       if test -n "$perm_rpath"; then
 
10583
+         # We should set the runpath_var.
 
10584
+         rpath=
 
10585
+         for dir in $perm_rpath; do
 
10586
+           rpath="$rpath$dir:"
 
10587
+         done
 
10588
+         compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
 
10589
+       fi
 
10590
+       if test -n "$finalize_perm_rpath"; then
 
10591
+         # We should set the runpath_var.
 
10592
+         rpath=
 
10593
+         for dir in $finalize_perm_rpath; do
 
10594
+           rpath="$rpath$dir:"
 
10595
+         done
 
10596
+         finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
 
10597
+       fi
 
10598
+      fi
 
10599
+
 
10600
+      if test "$no_install" = yes; then
 
10601
+       # We don't need to create a wrapper script.
 
10602
+       link_command="$compile_var$compile_command$compile_rpath"
 
10603
+       # Replace the output file specification.
 
10604
+       link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
 
10605
+       # Delete the old output file.
 
10606
+       $run $rm $output
 
10607
+       # Link the executable and exit
 
10608
+       $show "$link_command"
 
10609
+       $run eval "$link_command" || exit $?
 
10610
+       exit $EXIT_SUCCESS
 
10611
+      fi
 
10612
+
 
10613
+      if test "$hardcode_action" = relink; then
 
10614
+       # Fast installation is not supported
 
10615
+       link_command="$compile_var$compile_command$compile_rpath"
 
10616
+       relink_command="$finalize_var$finalize_command$finalize_rpath"
 
10617
+
 
10618
+       $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
 
10619
+       $echo "$modename: \`$output' will be relinked during installation" 1>&2
 
10620
+      else
 
10621
+       if test "$fast_install" != no; then
 
10622
+         link_command="$finalize_var$compile_command$finalize_rpath"
 
10623
+         if test "$fast_install" = yes; then
 
10624
+           relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
 
10625
+         else
 
10626
+           # fast_install is set to needless
 
10627
+           relink_command=
 
10628
+         fi
 
10629
+       else
 
10630
+         link_command="$compile_var$compile_command$compile_rpath"
 
10631
+         relink_command="$finalize_var$finalize_command$finalize_rpath"
 
10632
+       fi
 
10633
+      fi
 
10634
+
 
10635
+      # Replace the output file specification.
 
10636
+      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
 
10637
+
 
10638
+      # Delete the old output files.
 
10639
+      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
 
10640
+
 
10641
+      $show "$link_command"
 
10642
+      $run eval "$link_command" || exit $?
 
10643
+
 
10644
+      # Now create the wrapper script.
 
10645
+      $show "creating $output"
 
10646
+
 
10647
+      # Quote the relink command for shipping.
 
10648
+      if test -n "$relink_command"; then
 
10649
+       # Preserve any variables that may affect compiler behavior
 
10650
+       for var in $variables_saved_for_relink; do
 
10651
+         if eval test -z \"\${$var+set}\"; then
 
10652
+           relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
 
10653
+         elif eval var_value=\$$var; test -z "$var_value"; then
 
10654
+           relink_command="$var=; export $var; $relink_command"
 
10655
+         else
 
10656
+           var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
 
10657
+           relink_command="$var=\"$var_value\"; export $var; $relink_command"
 
10658
+         fi
 
10659
+       done
 
10660
+       relink_command="(cd `pwd`; $relink_command)"
 
10661
+       relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
 
10662
+      fi
 
10663
+
 
10664
+      # Quote $echo for shipping.
 
10665
+      if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then
 
10666
+       case $progpath in
 
10667
+       [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";;
 
10668
+       *) qecho="$SHELL `pwd`/$progpath --fallback-echo";;
 
10669
+       esac
 
10670
+       qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
 
10671
+      else
 
10672
+       qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
 
10673
+      fi
 
10674
+
 
10675
+      # Only actually do things if our run command is non-null.
 
10676
+      if test -z "$run"; then
 
10677
+       # win32 will think the script is a binary if it has
 
10678
+       # a .exe suffix, so we strip it off here.
 
10679
+       case $output in
 
10680
+         *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
 
10681
+       esac
 
10682
+       # test for cygwin because mv fails w/o .exe extensions
 
10683
+       case $host in
 
10684
+         *cygwin*)
 
10685
+           exeext=.exe
 
10686
+           outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;;
 
10687
+         *) exeext= ;;
 
10688
+       esac
 
10689
+       case $host in
 
10690
+         *cygwin* | *mingw* )
 
10691
+           cwrappersource=`$echo ${objdir}/lt-${output}.c`
 
10692
+           cwrapper=`$echo ${output}.exe`
 
10693
+           $rm $cwrappersource $cwrapper
 
10694
+           trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
 
10695
+
 
10696
+           cat > $cwrappersource <<EOF
 
10697
+
 
10698
+/* $cwrappersource - temporary wrapper executable for $objdir/$outputname
 
10699
+   Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
10700
+
 
10701
+   The $output program cannot be directly executed until all the libtool
 
10702
+   libraries that it depends on are installed.
 
10703
+
 
10704
+   This wrapper executable should never be moved out of the build directory.
 
10705
+   If it is, it will not operate correctly.
 
10706
+
 
10707
+   Currently, it simply execs the wrapper *script* "/bin/sh $output",
 
10708
+   but could eventually absorb all of the scripts functionality and
 
10709
+   exec $objdir/$outputname directly.
 
10710
+*/
 
10711
+EOF
 
10712
+           cat >> $cwrappersource<<"EOF"
 
10713
+#include <stdio.h>
 
10714
+#include <stdlib.h>
 
10715
+#include <unistd.h>
 
10716
+#include <malloc.h>
 
10717
+#include <stdarg.h>
 
10718
+#include <assert.h>
 
10719
+
 
10720
+#if defined(PATH_MAX)
 
10721
+# define LT_PATHMAX PATH_MAX
 
10722
+#elif defined(MAXPATHLEN)
 
10723
+# define LT_PATHMAX MAXPATHLEN
 
10724
+#else
 
10725
+# define LT_PATHMAX 1024
 
10726
+#endif
 
10727
+
 
10728
+#ifndef DIR_SEPARATOR
 
10729
+#define DIR_SEPARATOR '/'
 
10730
+#endif
 
10731
+
 
10732
+#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
 
10733
+  defined (__OS2__)
 
10734
+#define HAVE_DOS_BASED_FILE_SYSTEM
 
10735
+#ifndef DIR_SEPARATOR_2
 
10736
+#define DIR_SEPARATOR_2 '\\'
 
10737
+#endif
 
10738
+#endif
 
10739
+
 
10740
+#ifndef DIR_SEPARATOR_2
 
10741
+# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
 
10742
+#else /* DIR_SEPARATOR_2 */
 
10743
+# define IS_DIR_SEPARATOR(ch) \
 
10744
+        (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
 
10745
+#endif /* DIR_SEPARATOR_2 */
 
10746
+
 
10747
+#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))
 
10748
+#define XFREE(stale) do { \
 
10749
+  if (stale) { free ((void *) stale); stale = 0; } \
 
10750
+} while (0)
 
10751
+
 
10752
+const char *program_name = NULL;
 
10753
+
 
10754
+void * xmalloc (size_t num);
 
10755
+char * xstrdup (const char *string);
 
10756
+char * basename (const char *name);
 
10757
+char * fnqualify(const char *path);
 
10758
+char * strendzap(char *str, const char *pat);
 
10759
+void lt_fatal (const char *message, ...);
 
10760
+
 
10761
+int
 
10762
+main (int argc, char *argv[])
 
10763
+{
 
10764
+  char **newargz;
 
10765
+  int i;
 
10766
+
 
10767
+  program_name = (char *) xstrdup ((char *) basename (argv[0]));
 
10768
+  newargz = XMALLOC(char *, argc+2);
 
10769
+EOF
 
10770
+
 
10771
+           cat >> $cwrappersource <<EOF
 
10772
+  newargz[0] = "$SHELL";
 
10773
+EOF
 
10774
+
 
10775
+           cat >> $cwrappersource <<"EOF"
 
10776
+  newargz[1] = fnqualify(argv[0]);
 
10777
+  /* we know the script has the same name, without the .exe */
 
10778
+  /* so make sure newargz[1] doesn't end in .exe */
 
10779
+  strendzap(newargz[1],".exe");
 
10780
+  for (i = 1; i < argc; i++)
 
10781
+    newargz[i+1] = xstrdup(argv[i]);
 
10782
+  newargz[argc+1] = NULL;
 
10783
+EOF
 
10784
+
 
10785
+           cat >> $cwrappersource <<EOF
 
10786
+  execv("$SHELL",newargz);
 
10787
+EOF
 
10788
+
 
10789
+           cat >> $cwrappersource <<"EOF"
 
10790
+}
 
10791
+
 
10792
+void *
 
10793
+xmalloc (size_t num)
 
10794
+{
 
10795
+  void * p = (void *) malloc (num);
 
10796
+  if (!p)
 
10797
+    lt_fatal ("Memory exhausted");
 
10798
+
 
10799
+  return p;
 
10800
+}
 
10801
+
 
10802
+char *
 
10803
+xstrdup (const char *string)
 
10804
+{
 
10805
+  return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL
 
10806
+;
 
10807
+}
 
10808
+
 
10809
+char *
 
10810
+basename (const char *name)
 
10811
+{
 
10812
+  const char *base;
 
10813
+
 
10814
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
10815
+  /* Skip over the disk name in MSDOS pathnames. */
 
10816
+  if (isalpha (name[0]) && name[1] == ':')
 
10817
+    name += 2;
 
10818
+#endif
 
10819
+
 
10820
+  for (base = name; *name; name++)
 
10821
+    if (IS_DIR_SEPARATOR (*name))
 
10822
+      base = name + 1;
 
10823
+  return (char *) base;
 
10824
+}
 
10825
+
 
10826
+char *
 
10827
+fnqualify(const char *path)
 
10828
+{
 
10829
+  size_t size;
 
10830
+  char *p;
 
10831
+  char tmp[LT_PATHMAX + 1];
 
10832
+
 
10833
+  assert(path != NULL);
 
10834
+
 
10835
+  /* Is it qualified already? */
 
10836
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
10837
+  if (isalpha (path[0]) && path[1] == ':')
 
10838
+    return xstrdup (path);
 
10839
+#endif
 
10840
+  if (IS_DIR_SEPARATOR (path[0]))
 
10841
+    return xstrdup (path);
 
10842
+
 
10843
+  /* prepend the current directory */
 
10844
+  /* doesn't handle '~' */
 
10845
+  if (getcwd (tmp, LT_PATHMAX) == NULL)
 
10846
+    lt_fatal ("getcwd failed");
 
10847
+  size = strlen(tmp) + 1 + strlen(path) + 1; /* +2 for '/' and '\0' */
 
10848
+  p = XMALLOC(char, size);
 
10849
+  sprintf(p, "%s%c%s", tmp, DIR_SEPARATOR, path);
 
10850
+  return p;
 
10851
+}
 
10852
+
 
10853
+char *
 
10854
+strendzap(char *str, const char *pat)
 
10855
+{
 
10856
+  size_t len, patlen;
 
10857
+
 
10858
+  assert(str != NULL);
 
10859
+  assert(pat != NULL);
 
10860
+
 
10861
+  len = strlen(str);
 
10862
+  patlen = strlen(pat);
 
10863
+
 
10864
+  if (patlen <= len)
 
10865
+  {
 
10866
+    str += len - patlen;
 
10867
+    if (strcmp(str, pat) == 0)
 
10868
+      *str = '\0';
 
10869
+  }
 
10870
+  return str;
 
10871
+}
 
10872
+
 
10873
+static void
 
10874
+lt_error_core (int exit_status, const char * mode,
 
10875
+          const char * message, va_list ap)
 
10876
+{
 
10877
+  fprintf (stderr, "%s: %s: ", program_name, mode);
 
10878
+  vfprintf (stderr, message, ap);
 
10879
+  fprintf (stderr, ".\n");
 
10880
+
 
10881
+  if (exit_status >= 0)
 
10882
+    exit (exit_status);
 
10883
+}
 
10884
+
 
10885
+void
 
10886
+lt_fatal (const char *message, ...)
 
10887
+{
 
10888
+  va_list ap;
 
10889
+  va_start (ap, message);
 
10890
+  lt_error_core (EXIT_FAILURE, "FATAL", message, ap);
 
10891
+  va_end (ap);
 
10892
+}
 
10893
+EOF
 
10894
+         # we should really use a build-platform specific compiler
 
10895
+         # here, but OTOH, the wrappers (shell script and this C one)
 
10896
+         # are only useful if you want to execute the "real" binary.
 
10897
+         # Since the "real" binary is built for $host, then this
 
10898
+         # wrapper might as well be built for $host, too.
 
10899
+         $run $LTCC -s -o $cwrapper $cwrappersource
 
10900
+         ;;
 
10901
+       esac
 
10902
+       $rm $output
 
10903
+       trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
 
10904
+
 
10905
+       $echo > $output "\
 
10906
+#! $SHELL
 
10907
+
 
10908
+# $output - temporary wrapper script for $objdir/$outputname
 
10909
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
10910
+#
 
10911
+# The $output program cannot be directly executed until all the libtool
 
10912
+# libraries that it depends on are installed.
 
10913
+#
 
10914
+# This wrapper script should never be moved out of the build directory.
 
10915
+# If it is, it will not operate correctly.
 
10916
+
 
10917
+# Sed substitution that helps us do robust quoting.  It backslashifies
 
10918
+# metacharacters that are still active within double-quoted strings.
 
10919
+Xsed='${SED} -e 1s/^X//'
 
10920
+sed_quote_subst='$sed_quote_subst'
 
10921
+
 
10922
+# The HP-UX ksh and POSIX shell print the target directory to stdout
 
10923
+# if CDPATH is set.
 
10924
+if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
 
10925
+
 
10926
+relink_command=\"$relink_command\"
 
10927
+
 
10928
+# This environment variable determines our operation mode.
 
10929
+if test \"\$libtool_install_magic\" = \"$magic\"; then
 
10930
+  # install mode needs the following variable:
 
10931
+  notinst_deplibs='$notinst_deplibs'
 
10932
+else
 
10933
+  # When we are sourced in execute mode, \$file and \$echo are already set.
 
10934
+  if test \"\$libtool_execute_magic\" != \"$magic\"; then
 
10935
+    echo=\"$qecho\"
 
10936
+    file=\"\$0\"
 
10937
+    # Make sure echo works.
 
10938
+    if test \"X\$1\" = X--no-reexec; then
 
10939
+      # Discard the --no-reexec flag, and continue.
 
10940
+      shift
 
10941
+    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
 
10942
+      # Yippee, \$echo works!
 
10943
+      :
 
10944
+    else
 
10945
+      # Restart under the correct shell, and then maybe \$echo will work.
 
10946
+      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
 
10947
+    fi
 
10948
+  fi\
 
10949
+"
 
10950
+       $echo >> $output "\
 
10951
+
 
10952
+  # Find the directory that this script lives in.
 
10953
+  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
 
10954
+  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
 
10955
+
 
10956
+  # Follow symbolic links until we get to the real thisdir.
 
10957
+  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
 
10958
+  while test -n \"\$file\"; do
 
10959
+    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
 
10960
+
 
10961
+    # If there was a directory component, then change thisdir.
 
10962
+    if test \"x\$destdir\" != \"x\$file\"; then
 
10963
+      case \"\$destdir\" in
 
10964
+      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
 
10965
+      *) thisdir=\"\$thisdir/\$destdir\" ;;
 
10966
+      esac
 
10967
+    fi
 
10968
+
 
10969
+    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
 
10970
+    file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
 
10971
+  done
 
10972
+
 
10973
+  # Try to get the absolute directory name.
 
10974
+  absdir=\`cd \"\$thisdir\" && pwd\`
 
10975
+  test -n \"\$absdir\" && thisdir=\"\$absdir\"
 
10976
+"
 
10977
+
 
10978
+       if test "$fast_install" = yes; then
 
10979
+         $echo >> $output "\
 
10980
+  program=lt-'$outputname'$exeext
 
10981
+  progdir=\"\$thisdir/$objdir\"
 
10982
+
 
10983
+  if test ! -f \"\$progdir/\$program\" || \\
 
10984
+     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
 
10985
+       test \"X\$file\" != \"X\$progdir/\$program\"; }; then
 
10986
+
 
10987
+    file=\"\$\$-\$program\"
 
10988
+
 
10989
+    if test ! -d \"\$progdir\"; then
 
10990
+      $mkdir \"\$progdir\"
 
10991
+    else
 
10992
+      $rm \"\$progdir/\$file\"
 
10993
+    fi"
 
10994
+
 
10995
+         $echo >> $output "\
 
10996
+
 
10997
+    # relink executable if necessary
 
10998
+    if test -n \"\$relink_command\"; then
 
10999
+      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
 
11000
+      else
 
11001
+       $echo \"\$relink_command_output\" >&2
 
11002
+       $rm \"\$progdir/\$file\"
 
11003
+       exit $EXIT_FAILURE
 
11004
+      fi
 
11005
+    fi
 
11006
+
 
11007
+    $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
 
11008
+    { $rm \"\$progdir/\$program\";
 
11009
+      $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
 
11010
+    $rm \"\$progdir/\$file\"
 
11011
+  fi"
 
11012
+       else
 
11013
+         $echo >> $output "\
 
11014
+  program='$outputname'
 
11015
+  progdir=\"\$thisdir/$objdir\"
 
11016
+"
 
11017
+       fi
 
11018
+
 
11019
+       $echo >> $output "\
 
11020
+
 
11021
+  if test -f \"\$progdir/\$program\"; then"
 
11022
+
 
11023
+       # Export our shlibpath_var if we have one.
 
11024
+       if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
 
11025
+         $echo >> $output "\
 
11026
+    # Add our own library path to $shlibpath_var
 
11027
+    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
 
11028
+
 
11029
+    # Some systems cannot cope with colon-terminated $shlibpath_var
 
11030
+    # The second colon is a workaround for a bug in BeOS R4 sed
 
11031
+    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
 
11032
+
 
11033
+    export $shlibpath_var
 
11034
+"
 
11035
+       fi
 
11036
+
 
11037
+       # fixup the dll searchpath if we need to.
 
11038
+       if test -n "$dllsearchpath"; then
 
11039
+         $echo >> $output "\
 
11040
+    # Add the dll search path components to the executable PATH
 
11041
+    PATH=$dllsearchpath:\$PATH
 
11042
+"
 
11043
+       fi
 
11044
+
 
11045
+       $echo >> $output "\
 
11046
+    if test \"\$libtool_execute_magic\" != \"$magic\"; then
 
11047
+      # Run the actual program with our arguments.
 
11048
+"
 
11049
+       case $host in
 
11050
+       # Backslashes separate directories on plain windows
 
11051
+       *-*-mingw | *-*-os2*)
 
11052
+         $echo >> $output "\
 
11053
+      exec \$progdir\\\\\$program \${1+\"\$@\"}
 
11054
+"
 
11055
+         ;;
 
11056
+
 
11057
+       *)
 
11058
+         $echo >> $output "\
 
11059
+      exec \$progdir/\$program \${1+\"\$@\"}
 
11060
+"
 
11061
+         ;;
 
11062
+       esac
 
11063
+       $echo >> $output "\
 
11064
+      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
 
11065
+      exit $EXIT_FAILURE
 
11066
+    fi
 
11067
+  else
 
11068
+    # The program doesn't exist.
 
11069
+    \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
 
11070
+    \$echo \"This script is just a wrapper for \$program.\" 1>&2
 
11071
+    $echo \"See the $PACKAGE documentation for more information.\" 1>&2
 
11072
+    exit $EXIT_FAILURE
 
11073
+  fi
 
11074
+fi\
 
11075
+"
 
11076
+       chmod +x $output
 
11077
+      fi
 
11078
+      exit $EXIT_SUCCESS
 
11079
+      ;;
 
11080
+    esac
 
11081
+
 
11082
+    # See if we need to build an old-fashioned archive.
 
11083
+    for oldlib in $oldlibs; do
 
11084
+
 
11085
+      if test "$build_libtool_libs" = convenience; then
 
11086
+       oldobjs="$libobjs_save"
 
11087
+       addlibs="$convenience"
 
11088
+       build_libtool_libs=no
 
11089
+      else
 
11090
+       if test "$build_libtool_libs" = module; then
 
11091
+         oldobjs="$libobjs_save"
 
11092
+         build_libtool_libs=no
 
11093
+       else
 
11094
+         oldobjs="$old_deplibs $non_pic_objects"
 
11095
+       fi
 
11096
+       addlibs="$old_convenience"
 
11097
+      fi
 
11098
+
 
11099
+      if test -n "$addlibs"; then
 
11100
+       gentop="$output_objdir/${outputname}x"
 
11101
+       $show "${rm}r $gentop"
 
11102
+       $run ${rm}r "$gentop"
 
11103
+       $show "$mkdir $gentop"
 
11104
+       $run $mkdir "$gentop"
 
11105
+       status=$?
 
11106
+       if test "$status" -ne 0 && test ! -d "$gentop"; then
 
11107
+         exit $status
 
11108
+       fi
 
11109
+       generated="$generated $gentop"
 
11110
+
 
11111
+       # Add in members from convenience archives.
 
11112
+       for xlib in $addlibs; do
 
11113
+         # Extract the objects.
 
11114
+         case $xlib in
 
11115
+         [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
 
11116
+         *) xabs=`pwd`"/$xlib" ;;
 
11117
+         esac
 
11118
+         xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
 
11119
+         xdir="$gentop/$xlib"
 
11120
+
 
11121
+         $show "${rm}r $xdir"
 
11122
+         $run ${rm}r "$xdir"
 
11123
+         $show "$mkdir $xdir"
 
11124
+         $run $mkdir "$xdir"
 
11125
+         status=$?
 
11126
+         if test "$status" -ne 0 && test ! -d "$xdir"; then
 
11127
+           exit $status
 
11128
+         fi
 
11129
+         # We will extract separately just the conflicting names and we will no
 
11130
+         # longer touch any unique names. It is faster to leave these extract
 
11131
+         # automatically by $AR in one run.
 
11132
+         $show "(cd $xdir && $AR x $xabs)"
 
11133
+         $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
 
11134
+         if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
 
11135
+           :
 
11136
+         else
 
11137
+           $echo "$modename: warning: object name conflicts; renaming object files" 1>&2
 
11138
+           $echo "$modename: warning: to ensure that they will not overwrite" 1>&2
 
11139
+           $AR t "$xabs" | sort | uniq -cd | while read -r count name
 
11140
+           do
 
11141
+             i=1
 
11142
+             while test "$i" -le "$count"
 
11143
+             do
 
11144
+              # Put our $i before any first dot (extension)
 
11145
+              # Never overwrite any file
 
11146
+              name_to="$name"
 
11147
+              while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
 
11148
+              do
 
11149
+                name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
 
11150
+              done
 
11151
+              $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
 
11152
+              $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
 
11153
+              i=`expr $i + 1`
 
11154
+             done
 
11155
+           done
 
11156
+         fi
 
11157
+
 
11158
+         oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name \*.lo -print | $NL2SP`
 
11159
+       done
 
11160
+      fi
 
11161
+
 
11162
+      # Do each command in the archive commands.
 
11163
+      if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
 
11164
+       cmds=$old_archive_from_new_cmds
 
11165
+      else
 
11166
+       eval cmds=\"$old_archive_cmds\"
 
11167
+
 
11168
+       if len=`expr "X$cmds" : ".*"` &&
 
11169
+            test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
11170
+         cmds=$old_archive_cmds
 
11171
+       else
 
11172
+         # the command line is too long to link in one step, link in parts
 
11173
+         $echo "using piecewise archive linking..."
 
11174
+         save_RANLIB=$RANLIB
 
11175
+         RANLIB=:
 
11176
+         objlist=
 
11177
+         concat_cmds=
 
11178
+         save_oldobjs=$oldobjs
 
11179
+         # GNU ar 2.10+ was changed to match POSIX; thus no paths are
 
11180
+         # encoded into archives.  This makes 'ar r' malfunction in
 
11181
+         # this piecewise linking case whenever conflicting object
 
11182
+         # names appear in distinct ar calls; check, warn and compensate.
 
11183
+           if (for obj in $save_oldobjs
 
11184
+           do
 
11185
+             $echo "X$obj" | $Xsed -e 's%^.*/%%'
 
11186
+           done | sort | sort -uc >/dev/null 2>&1); then
 
11187
+           :
 
11188
+         else
 
11189
+           $echo "$modename: warning: object name conflicts; overriding AR_FLAGS to 'cq'" 1>&2
 
11190
+           $echo "$modename: warning: to ensure that POSIX-compatible ar will work" 1>&2
 
11191
+           AR_FLAGS=cq
 
11192
+         fi
 
11193
+         # Is there a better way of finding the last object in the list?
 
11194
+         for obj in $save_oldobjs
 
11195
+         do
 
11196
+           last_oldobj=$obj
 
11197
+         done
 
11198
+         for obj in $save_oldobjs
 
11199
+         do
 
11200
+           oldobjs="$objlist $obj"
 
11201
+           objlist="$objlist $obj"
 
11202
+           eval test_cmds=\"$old_archive_cmds\"
 
11203
+           if len=`expr "X$test_cmds" : ".*"` &&
 
11204
+              test "$len" -le "$max_cmd_len"; then
 
11205
+             :
 
11206
+           else
 
11207
+             # the above command should be used before it gets too long
 
11208
+             oldobjs=$objlist
 
11209
+             if test "$obj" = "$last_oldobj" ; then
 
11210
+               RANLIB=$save_RANLIB
 
11211
+             fi
 
11212
+             test -z "$concat_cmds" || concat_cmds=$concat_cmds~
 
11213
+             eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
 
11214
+             objlist=
 
11215
+           fi
 
11216
+         done
 
11217
+         RANLIB=$save_RANLIB
 
11218
+         oldobjs=$objlist
 
11219
+         if test "X$oldobjs" = "X" ; then
 
11220
+           eval cmds=\"\$concat_cmds\"
 
11221
+         else
 
11222
+           eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
 
11223
+         fi
 
11224
+       fi
 
11225
+      fi
 
11226
+      save_ifs="$IFS"; IFS='~'
 
11227
+      for cmd in $cmds; do
 
11228
+        eval cmd=\"$cmd\"
 
11229
+       IFS="$save_ifs"
 
11230
+       $show "$cmd"
 
11231
+       $run eval "$cmd" || exit $?
 
11232
+      done
 
11233
+      IFS="$save_ifs"
 
11234
+    done
 
11235
+
 
11236
+    if test -n "$generated"; then
 
11237
+      $show "${rm}r$generated"
 
11238
+      $run ${rm}r$generated
 
11239
+    fi
 
11240
+
 
11241
+    # Now create the libtool archive.
 
11242
+    case $output in
 
11243
+    *.la)
 
11244
+      old_library=
 
11245
+      test "$build_old_libs" = yes && old_library="$libname.$libext"
 
11246
+      $show "creating $output"
 
11247
+
 
11248
+      # Preserve any variables that may affect compiler behavior
 
11249
+      for var in $variables_saved_for_relink; do
 
11250
+       if eval test -z \"\${$var+set}\"; then
 
11251
+         relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
 
11252
+       elif eval var_value=\$$var; test -z "$var_value"; then
 
11253
+         relink_command="$var=; export $var; $relink_command"
 
11254
+       else
 
11255
+         var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
 
11256
+         relink_command="$var=\"$var_value\"; export $var; $relink_command"
 
11257
+       fi
 
11258
+      done
 
11259
+      # Quote the link command for shipping.
 
11260
+      relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
 
11261
+      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
 
11262
+      if test "$hardcode_automatic" = yes ; then
 
11263
+       relink_command=
 
11264
+      fi
 
11265
+
 
11266
+
 
11267
+      # Only create the output if not a dry run.
 
11268
+      if test -z "$run"; then
 
11269
+       for installed in no yes; do
 
11270
+         if test "$installed" = yes; then
 
11271
+           if test -z "$install_libdir"; then
 
11272
+             break
 
11273
+           fi
 
11274
+           output="$output_objdir/$outputname"i
 
11275
+           # Replace all uninstalled libtool libraries with the installed ones
 
11276
+           newdependency_libs=
 
11277
+           for deplib in $dependency_libs; do
 
11278
+             case $deplib in
 
11279
+             *.la)
 
11280
+               name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
 
11281
+               eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
 
11282
+               if test -z "$libdir"; then
 
11283
+                 $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
 
11284
+                 exit $EXIT_FAILURE
 
11285
+               fi
 
11286
+               newdependency_libs="$newdependency_libs $libdir/$name"
 
11287
+               ;;
 
11288
+             *) newdependency_libs="$newdependency_libs $deplib" ;;
 
11289
+             esac
 
11290
+           done
 
11291
+           dependency_libs="$newdependency_libs"
 
11292
+           newdlfiles=
 
11293
+           for lib in $dlfiles; do
 
11294
+             name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
 
11295
+             eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
 
11296
+             if test -z "$libdir"; then
 
11297
+               $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
11298
+               exit $EXIT_FAILURE
 
11299
+             fi
 
11300
+             newdlfiles="$newdlfiles $libdir/$name"
 
11301
+           done
 
11302
+           dlfiles="$newdlfiles"
 
11303
+           newdlprefiles=
 
11304
+           for lib in $dlprefiles; do
 
11305
+             name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
 
11306
+             eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
 
11307
+             if test -z "$libdir"; then
 
11308
+               $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
11309
+               exit $EXIT_FAILURE
 
11310
+             fi
 
11311
+             newdlprefiles="$newdlprefiles $libdir/$name"
 
11312
+           done
 
11313
+           dlprefiles="$newdlprefiles"
 
11314
+         else
 
11315
+           newdlfiles=
 
11316
+           for lib in $dlfiles; do
 
11317
+             case $lib in
 
11318
+               [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
 
11319
+               *) abs=`pwd`"/$lib" ;;
 
11320
+             esac
 
11321
+             newdlfiles="$newdlfiles $abs"
 
11322
+           done
 
11323
+           dlfiles="$newdlfiles"
 
11324
+           newdlprefiles=
 
11325
+           for lib in $dlprefiles; do
 
11326
+             case $lib in
 
11327
+               [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
 
11328
+               *) abs=`pwd`"/$lib" ;;
 
11329
+             esac
 
11330
+             newdlprefiles="$newdlprefiles $abs"
 
11331
+           done
 
11332
+           dlprefiles="$newdlprefiles"
 
11333
+         fi
 
11334
+         $rm $output
 
11335
+         # place dlname in correct position for cygwin
 
11336
+         tdlname=$dlname
 
11337
+         case $host,$output,$installed,$module,$dlname in
 
11338
+           *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
 
11339
+         esac
 
11340
+         $echo > $output "\
 
11341
+# $outputname - a libtool library file
 
11342
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
11343
+#
 
11344
+# Please DO NOT delete this file!
 
11345
+# It is necessary for linking the library.
 
11346
+
 
11347
+# The name that we can dlopen(3).
 
11348
+dlname='$tdlname'
 
11349
+
 
11350
+# Names of this library.
 
11351
+library_names='$library_names'
 
11352
+
 
11353
+# The name of the static archive.
 
11354
+old_library='$old_library'
 
11355
+
 
11356
+# Libraries that this one depends upon.
 
11357
+dependency_libs='$dependency_libs'
 
11358
+
 
11359
+# Version information for $libname.
 
11360
+current=$current
 
11361
+age=$age
 
11362
+revision=$revision
 
11363
+
 
11364
+# Is this an already installed library?
 
11365
+installed=$installed
 
11366
+
 
11367
+# Should we warn about portability when linking against -modules?
 
11368
+shouldnotlink=$module
 
11369
+
 
11370
+# Files to dlopen/dlpreopen
 
11371
+dlopen='$dlfiles'
 
11372
+dlpreopen='$dlprefiles'
 
11373
+
 
11374
+# Directory that this library needs to be installed in:
 
11375
+libdir='$install_libdir'"
 
11376
+         if test "$installed" = no && test "$need_relink" = yes; then
 
11377
+           $echo >> $output "\
 
11378
+relink_command=\"$relink_command\""
 
11379
+         fi
 
11380
+       done
 
11381
+      fi
 
11382
+
 
11383
+      # Do a symbolic link so that the libtool archive can be found in
 
11384
+      # LD_LIBRARY_PATH before the program is installed.
 
11385
+      $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
 
11386
+      $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
 
11387
+      ;;
 
11388
+    esac
 
11389
+    exit $EXIT_SUCCESS
 
11390
+    ;;
 
11391
+
 
11392
+  # libtool install mode
 
11393
+  install)
 
11394
+    modename="$modename: install"
 
11395
+
 
11396
+    # There may be an optional sh(1) argument at the beginning of
 
11397
+    # install_prog (especially on Windows NT).
 
11398
+    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
 
11399
+       # Allow the use of GNU shtool's install command.
 
11400
+       $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
 
11401
+      # Aesthetically quote it.
 
11402
+      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
 
11403
+      case $arg in
 
11404
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*)
 
11405
+       arg="\"$arg\""
 
11406
+       ;;
 
11407
+      esac
 
11408
+      install_prog="$arg "
 
11409
+      arg="$1"
 
11410
+      shift
 
11411
+    else
 
11412
+      install_prog=
 
11413
+      arg="$nonopt"
 
11414
+    fi
 
11415
+
 
11416
+    # The real first argument should be the name of the installation program.
 
11417
+    # Aesthetically quote it.
 
11418
+    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
11419
+    case $arg in
 
11420
+    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \      ]*|*]*)
 
11421
+      arg="\"$arg\""
 
11422
+      ;;
 
11423
+    esac
 
11424
+    install_prog="$install_prog$arg"
 
11425
+
 
11426
+    # We need to accept at least all the BSD install flags.
 
11427
+    dest=
 
11428
+    files=
 
11429
+    opts=
 
11430
+    prev=
 
11431
+    install_type=
 
11432
+    isdir=no
 
11433
+    stripme=
 
11434
+    for arg
 
11435
+    do
 
11436
+      if test -n "$dest"; then
 
11437
+       files="$files $dest"
 
11438
+       dest="$arg"
 
11439
+       continue
 
11440
+      fi
 
11441
+
 
11442
+      case $arg in
 
11443
+      -d) isdir=yes ;;
 
11444
+      -f) prev="-f" ;;
 
11445
+      -g) prev="-g" ;;
 
11446
+      -m) prev="-m" ;;
 
11447
+      -o) prev="-o" ;;
 
11448
+      -s)
 
11449
+       stripme=" -s"
 
11450
+       continue
 
11451
+       ;;
 
11452
+      -*) ;;
 
11453
+
 
11454
+      *)
 
11455
+       # If the previous option needed an argument, then skip it.
 
11456
+       if test -n "$prev"; then
 
11457
+         prev=
 
11458
+       else
 
11459
+         dest="$arg"
 
11460
+         continue
 
11461
+       fi
 
11462
+       ;;
 
11463
+      esac
 
11464
+
 
11465
+      # Aesthetically quote the argument.
 
11466
+      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
11467
+      case $arg in
 
11468
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*)
 
11469
+       arg="\"$arg\""
 
11470
+       ;;
 
11471
+      esac
 
11472
+      install_prog="$install_prog $arg"
 
11473
+    done
 
11474
+
 
11475
+    if test -z "$install_prog"; then
 
11476
+      $echo "$modename: you must specify an install program" 1>&2
 
11477
+      $echo "$help" 1>&2
 
11478
+      exit $EXIT_FAILURE
 
11479
+    fi
 
11480
+
 
11481
+    if test -n "$prev"; then
 
11482
+      $echo "$modename: the \`$prev' option requires an argument" 1>&2
 
11483
+      $echo "$help" 1>&2
 
11484
+      exit $EXIT_FAILURE
 
11485
+    fi
 
11486
+
 
11487
+    if test -z "$files"; then
 
11488
+      if test -z "$dest"; then
 
11489
+       $echo "$modename: no file or destination specified" 1>&2
 
11490
+      else
 
11491
+       $echo "$modename: you must specify a destination" 1>&2
 
11492
+      fi
 
11493
+      $echo "$help" 1>&2
 
11494
+      exit $EXIT_FAILURE
 
11495
+    fi
 
11496
+
 
11497
+    # Strip any trailing slash from the destination.
 
11498
+    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
 
11499
+
 
11500
+    # Check to see that the destination is a directory.
 
11501
+    test -d "$dest" && isdir=yes
 
11502
+    if test "$isdir" = yes; then
 
11503
+      destdir="$dest"
 
11504
+      destname=
 
11505
+    else
 
11506
+      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
 
11507
+      test "X$destdir" = "X$dest" && destdir=.
 
11508
+      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
 
11509
+
 
11510
+      # Not a directory, so check to see that there is only one file specified.
 
11511
+      set dummy $files
 
11512
+      if test "$#" -gt 2; then
 
11513
+       $echo "$modename: \`$dest' is not a directory" 1>&2
 
11514
+       $echo "$help" 1>&2
 
11515
+       exit $EXIT_FAILURE
 
11516
+      fi
 
11517
+    fi
 
11518
+    case $destdir in
 
11519
+    [\\/]* | [A-Za-z]:[\\/]*) ;;
 
11520
+    *)
 
11521
+      for file in $files; do
 
11522
+       case $file in
 
11523
+       *.lo) ;;
 
11524
+       *)
 
11525
+         $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
 
11526
+         $echo "$help" 1>&2
 
11527
+         exit $EXIT_FAILURE
 
11528
+         ;;
 
11529
+       esac
 
11530
+      done
 
11531
+      ;;
 
11532
+    esac
 
11533
+
 
11534
+    # This variable tells wrapper scripts just to set variables rather
 
11535
+    # than running their programs.
 
11536
+    libtool_install_magic="$magic"
 
11537
+
 
11538
+    staticlibs=
 
11539
+    future_libdirs=
 
11540
+    current_libdirs=
 
11541
+    for file in $files; do
 
11542
+
 
11543
+      # Do each installation.
 
11544
+      case $file in
 
11545
+      *.$libext)
 
11546
+       # Do the static libraries later.
 
11547
+       staticlibs="$staticlibs $file"
 
11548
+       ;;
 
11549
+
 
11550
+      *.la)
 
11551
+       # Check to see that this really is a libtool archive.
 
11552
+       if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
11553
+       else
 
11554
+         $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
 
11555
+         $echo "$help" 1>&2
 
11556
+         exit $EXIT_FAILURE
 
11557
+       fi
 
11558
+
 
11559
+       library_names=
 
11560
+       old_library=
 
11561
+       relink_command=
 
11562
+       # If there is no directory component, then add one.
 
11563
+       case $file in
 
11564
+       */* | *\\*) . $file ;;
 
11565
+       *) . ./$file ;;
 
11566
+       esac
 
11567
+
 
11568
+       # Add the libdir to current_libdirs if it is the destination.
 
11569
+       if test "X$destdir" = "X$libdir"; then
 
11570
+         case "$current_libdirs " in
 
11571
+         *" $libdir "*) ;;
 
11572
+         *) current_libdirs="$current_libdirs $libdir" ;;
 
11573
+         esac
 
11574
+       else
 
11575
+         # Note the libdir as a future libdir.
 
11576
+         case "$future_libdirs " in
 
11577
+         *" $libdir "*) ;;
 
11578
+         *) future_libdirs="$future_libdirs $libdir" ;;
 
11579
+         esac
 
11580
+       fi
 
11581
+
 
11582
+       dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
 
11583
+       test "X$dir" = "X$file/" && dir=
 
11584
+       dir="$dir$objdir"
 
11585
+
 
11586
+       if test -n "$relink_command"; then
 
11587
+         # Determine the prefix the user has applied to our future dir.
 
11588
+         inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"`
 
11589
+
 
11590
+         # Don't allow the user to place us outside of our expected
 
11591
+         # location b/c this prevents finding dependent libraries that
 
11592
+         # are installed to the same prefix.
 
11593
+         # At present, this check doesn't affect windows .dll's that
 
11594
+         # are installed into $libdir/../bin (currently, that works fine)
 
11595
+         # but it's something to keep an eye on.
 
11596
+         if test "$inst_prefix_dir" = "$destdir"; then
 
11597
+           $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
 
11598
+           exit $EXIT_FAILURE
 
11599
+         fi
 
11600
+
 
11601
+         if test -n "$inst_prefix_dir"; then
 
11602
+           # Stick the inst_prefix_dir data into the link command.
 
11603
+           relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
 
11604
+         else
 
11605
+           relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
 
11606
+         fi
 
11607
+
 
11608
+         $echo "$modename: warning: relinking \`$file'" 1>&2
 
11609
+         $show "$relink_command"
 
11610
+         if $run eval "$relink_command"; then :
 
11611
+         else
 
11612
+           $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
 
11613
+           exit $EXIT_FAILURE
 
11614
+         fi
 
11615
+       fi
 
11616
+
 
11617
+       # See the names of the shared library.
 
11618
+       set dummy $library_names
 
11619
+       if test -n "$2"; then
 
11620
+         realname="$2"
 
11621
+         shift
 
11622
+         shift
 
11623
+
 
11624
+         srcname="$realname"
 
11625
+         test -n "$relink_command" && srcname="$realname"T
 
11626
+
 
11627
+         # Install the shared library and build the symlinks.
 
11628
+         $show "$install_prog $dir/$srcname $destdir/$realname"
 
11629
+         $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
 
11630
+         if test -n "$stripme" && test -n "$striplib"; then
 
11631
+           $show "$striplib $destdir/$realname"
 
11632
+           $run eval "$striplib $destdir/$realname" || exit $?
 
11633
+         fi
 
11634
+
 
11635
+         if test "$#" -gt 0; then
 
11636
+           # Delete the old symlinks, and create new ones.
 
11637
+           for linkname
 
11638
+           do
 
11639
+             if test "$linkname" != "$realname"; then
 
11640
+               $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
 
11641
+               $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
 
11642
+             fi
 
11643
+           done
 
11644
+         fi
 
11645
+
 
11646
+         # Do each command in the postinstall commands.
 
11647
+         lib="$destdir/$realname"
 
11648
+         cmds=$postinstall_cmds
 
11649
+         save_ifs="$IFS"; IFS='~'
 
11650
+         for cmd in $cmds; do
 
11651
+           IFS="$save_ifs"
 
11652
+           eval cmd=\"$cmd\"
 
11653
+           $show "$cmd"
 
11654
+           $run eval "$cmd" || exit $?
 
11655
+         done
 
11656
+         IFS="$save_ifs"
 
11657
+       fi
 
11658
+
 
11659
+       # Install the pseudo-library for information purposes.
 
11660
+       name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
11661
+       instname="$dir/$name"i
 
11662
+       $show "$install_prog $instname $destdir/$name"
 
11663
+       $run eval "$install_prog $instname $destdir/$name" || exit $?
 
11664
+
 
11665
+       # Maybe install the static library, too.
 
11666
+       test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
 
11667
+       ;;
 
11668
+
 
11669
+      *.lo)
 
11670
+       # Install (i.e. copy) a libtool object.
 
11671
+
 
11672
+       # Figure out destination file name, if it wasn't already specified.
 
11673
+       if test -n "$destname"; then
 
11674
+         destfile="$destdir/$destname"
 
11675
+       else
 
11676
+         destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
11677
+         destfile="$destdir/$destfile"
 
11678
+       fi
 
11679
+
 
11680
+       # Deduce the name of the destination old-style object file.
 
11681
+       case $destfile in
 
11682
+       *.lo)
 
11683
+         staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
 
11684
+         ;;
 
11685
+       *.$objext)
 
11686
+         staticdest="$destfile"
 
11687
+         destfile=
 
11688
+         ;;
 
11689
+       *)
 
11690
+         $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
 
11691
+         $echo "$help" 1>&2
 
11692
+         exit $EXIT_FAILURE
 
11693
+         ;;
 
11694
+       esac
 
11695
+
 
11696
+       # Install the libtool object if requested.
 
11697
+       if test -n "$destfile"; then
 
11698
+         $show "$install_prog $file $destfile"
 
11699
+         $run eval "$install_prog $file $destfile" || exit $?
 
11700
+       fi
 
11701
+
 
11702
+       # Install the old object if enabled.
 
11703
+       if test "$build_old_libs" = yes; then
 
11704
+         # Deduce the name of the old-style object file.
 
11705
+         staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
 
11706
+
 
11707
+         $show "$install_prog $staticobj $staticdest"
 
11708
+         $run eval "$install_prog \$staticobj \$staticdest" || exit $?
 
11709
+       fi
 
11710
+       exit $EXIT_SUCCESS
 
11711
+       ;;
 
11712
+
 
11713
+      *)
 
11714
+       # Figure out destination file name, if it wasn't already specified.
 
11715
+       if test -n "$destname"; then
 
11716
+         destfile="$destdir/$destname"
 
11717
+       else
 
11718
+         destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
11719
+         destfile="$destdir/$destfile"
 
11720
+       fi
 
11721
+
 
11722
+       # If the file is missing, and there is a .exe on the end, strip it
 
11723
+       # because it is most likely a libtool script we actually want to
 
11724
+       # install
 
11725
+       stripped_ext=""
 
11726
+       case $file in
 
11727
+         *.exe)
 
11728
+           if test ! -f "$file"; then
 
11729
+             file=`$echo $file|${SED} 's,.exe$,,'`
 
11730
+             stripped_ext=".exe"
 
11731
+           fi
 
11732
+           ;;
 
11733
+       esac
 
11734
+
 
11735
+       # Do a test to see if this is really a libtool program.
 
11736
+       case $host in
 
11737
+       *cygwin*|*mingw*)
 
11738
+           wrapper=`$echo $file | ${SED} -e 's,.exe$,,'`
 
11739
+           ;;
 
11740
+       *)
 
11741
+           wrapper=$file
 
11742
+           ;;
 
11743
+       esac
 
11744
+       if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then
 
11745
+         notinst_deplibs=
 
11746
+         relink_command=
 
11747
+
 
11748
+         # To insure that "foo" is sourced, and not "foo.exe",
 
11749
+         # finese the cygwin/MSYS system by explicitly sourcing "foo."
 
11750
+         # which disallows the automatic-append-.exe behavior.
 
11751
+         case $build in
 
11752
+         *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
 
11753
+         *) wrapperdot=${wrapper} ;;
 
11754
+         esac
 
11755
+         # If there is no directory component, then add one.
 
11756
+         case $file in
 
11757
+         */* | *\\*) . ${wrapperdot} ;;
 
11758
+         *) . ./${wrapperdot} ;;
 
11759
+         esac
 
11760
+
 
11761
+         # Check the variables that should have been set.
 
11762
+         if test -z "$notinst_deplibs"; then
 
11763
+           $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2
 
11764
+           exit $EXIT_FAILURE
 
11765
+         fi
 
11766
+
 
11767
+         finalize=yes
 
11768
+         for lib in $notinst_deplibs; do
 
11769
+           # Check to see that each library is installed.
 
11770
+           libdir=
 
11771
+           if test -f "$lib"; then
 
11772
+             # If there is no directory component, then add one.
 
11773
+             case $lib in
 
11774
+             */* | *\\*) . $lib ;;
 
11775
+             *) . ./$lib ;;
 
11776
+             esac
 
11777
+           fi
 
11778
+           libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
 
11779
+           if test -n "$libdir" && test ! -f "$libfile"; then
 
11780
+             $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
 
11781
+             finalize=no
 
11782
+           fi
 
11783
+         done
 
11784
+
 
11785
+         relink_command=
 
11786
+         # To insure that "foo" is sourced, and not "foo.exe",
 
11787
+         # finese the cygwin/MSYS system by explicitly sourcing "foo."
 
11788
+         # which disallows the automatic-append-.exe behavior.
 
11789
+         case $build in
 
11790
+         *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
 
11791
+         *) wrapperdot=${wrapper} ;;
 
11792
+         esac
 
11793
+         # If there is no directory component, then add one.
 
11794
+         case $file in
 
11795
+         */* | *\\*) . ${wrapperdot} ;;
 
11796
+         *) . ./${wrapperdot} ;;
 
11797
+         esac
 
11798
+
 
11799
+         outputname=
 
11800
+         if test "$fast_install" = no && test -n "$relink_command"; then
 
11801
+           if test "$finalize" = yes && test -z "$run"; then
 
11802
+             tmpdir="/tmp"
 
11803
+             test -n "$TMPDIR" && tmpdir="$TMPDIR"
 
11804
+             tmpdir="$tmpdir/libtool-$$"
 
11805
+             save_umask=`umask`
 
11806
+             umask 0077
 
11807
+             if $mkdir "$tmpdir"; then
 
11808
+               umask $save_umask
 
11809
+             else
 
11810
+               umask $save_umask
 
11811
+               $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
 
11812
+               continue
 
11813
+             fi
 
11814
+             file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
 
11815
+             outputname="$tmpdir/$file"
 
11816
+             # Replace the output file specification.
 
11817
+             relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
 
11818
+
 
11819
+             $show "$relink_command"
 
11820
+             if $run eval "$relink_command"; then :
 
11821
+             else
 
11822
+               $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
 
11823
+               ${rm}r "$tmpdir"
 
11824
+               continue
 
11825
+             fi
 
11826
+             file="$outputname"
 
11827
+           else
 
11828
+             $echo "$modename: warning: cannot relink \`$file'" 1>&2
 
11829
+           fi
 
11830
+         else
 
11831
+           # Install the binary that we compiled earlier.
 
11832
+           file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
 
11833
+         fi
 
11834
+       fi
 
11835
+
 
11836
+       # remove .exe since cygwin /usr/bin/install will append another
 
11837
+       # one anyways
 
11838
+       case $install_prog,$host in
 
11839
+       */usr/bin/install*,*cygwin*)
 
11840
+         case $file:$destfile in
 
11841
+         *.exe:*.exe)
 
11842
+           # this is ok
 
11843
+           ;;
 
11844
+         *.exe:*)
 
11845
+           destfile=$destfile.exe
 
11846
+           ;;
 
11847
+         *:*.exe)
 
11848
+           destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'`
 
11849
+           ;;
 
11850
+         esac
 
11851
+         ;;
 
11852
+       esac
 
11853
+       $show "$install_prog$stripme $file $destfile"
 
11854
+       $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
 
11855
+       test -n "$outputname" && ${rm}r "$tmpdir"
 
11856
+       ;;
 
11857
+      esac
 
11858
+    done
 
11859
+
 
11860
+    for file in $staticlibs; do
 
11861
+      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
11862
+
 
11863
+      # Set up the ranlib parameters.
 
11864
+      oldlib="$destdir/$name"
 
11865
+
 
11866
+      $show "$install_prog $file $oldlib"
 
11867
+      $run eval "$install_prog \$file \$oldlib" || exit $?
 
11868
+
 
11869
+      if test -n "$stripme" && test -n "$old_striplib"; then
 
11870
+       $show "$old_striplib $oldlib"
 
11871
+       $run eval "$old_striplib $oldlib" || exit $?
 
11872
+      fi
 
11873
+
 
11874
+      # Do each command in the postinstall commands.
 
11875
+      cmds=$old_postinstall_cmds
 
11876
+      save_ifs="$IFS"; IFS='~'
 
11877
+      for cmd in $cmds; do
 
11878
+       IFS="$save_ifs"
 
11879
+       eval cmd=\"$cmd\"
 
11880
+       $show "$cmd"
 
11881
+       $run eval "$cmd" || exit $?
 
11882
+      done
 
11883
+      IFS="$save_ifs"
 
11884
+    done
 
11885
+
 
11886
+    if test -n "$future_libdirs"; then
 
11887
+      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
 
11888
+    fi
 
11889
+
 
11890
+    if test -n "$current_libdirs"; then
 
11891
+      # Maybe just do a dry run.
 
11892
+      test -n "$run" && current_libdirs=" -n$current_libdirs"
 
11893
+      exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
 
11894
+    else
 
11895
+      exit $EXIT_SUCCESS
 
11896
+    fi
 
11897
+    ;;
 
11898
+
 
11899
+  # libtool finish mode
 
11900
+  finish)
 
11901
+    modename="$modename: finish"
 
11902
+    libdirs="$nonopt"
 
11903
+    admincmds=
 
11904
+
 
11905
+    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
 
11906
+      for dir
 
11907
+      do
 
11908
+       libdirs="$libdirs $dir"
 
11909
+      done
 
11910
+
 
11911
+      for libdir in $libdirs; do
 
11912
+       if test -n "$finish_cmds"; then
 
11913
+         # Do each command in the finish commands.
 
11914
+         cmds=$finish_cmds
 
11915
+         save_ifs="$IFS"; IFS='~'
 
11916
+         for cmd in $cmds; do
 
11917
+           IFS="$save_ifs"
 
11918
+           eval cmd=\"$cmd\"
 
11919
+           $show "$cmd"
 
11920
+           $run eval "$cmd" || admincmds="$admincmds
 
11921
+       $cmd"
 
11922
+         done
 
11923
+         IFS="$save_ifs"
 
11924
+       fi
 
11925
+       if test -n "$finish_eval"; then
 
11926
+         # Do the single finish_eval.
 
11927
+         eval cmds=\"$finish_eval\"
 
11928
+         $run eval "$cmds" || admincmds="$admincmds
 
11929
+       $cmds"
 
11930
+       fi
 
11931
+      done
 
11932
+    fi
 
11933
+
 
11934
+    # Exit here if they wanted silent mode.
 
11935
+    test "$show" = : && exit $EXIT_SUCCESS
 
11936
+
 
11937
+    $echo "----------------------------------------------------------------------"
 
11938
+    $echo "Libraries have been installed in:"
 
11939
+    for libdir in $libdirs; do
 
11940
+      $echo "   $libdir"
 
11941
+    done
 
11942
+    $echo
 
11943
+    $echo "If you ever happen to want to link against installed libraries"
 
11944
+    $echo "in a given directory, LIBDIR, you must either use libtool, and"
 
11945
+    $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
 
11946
+    $echo "flag during linking and do at least one of the following:"
 
11947
+    if test -n "$shlibpath_var"; then
 
11948
+      $echo "   - add LIBDIR to the \`$shlibpath_var' environment variable"
 
11949
+      $echo "     during execution"
 
11950
+    fi
 
11951
+    if test -n "$runpath_var"; then
 
11952
+      $echo "   - add LIBDIR to the \`$runpath_var' environment variable"
 
11953
+      $echo "     during linking"
 
11954
+    fi
 
11955
+    if test -n "$hardcode_libdir_flag_spec"; then
 
11956
+      libdir=LIBDIR
 
11957
+      eval flag=\"$hardcode_libdir_flag_spec\"
 
11958
+
 
11959
+      $echo "   - use the \`$flag' linker flag"
 
11960
+    fi
 
11961
+    if test -n "$admincmds"; then
 
11962
+      $echo "   - have your system administrator run these commands:$admincmds"
 
11963
+    fi
 
11964
+    if test -f /etc/ld.so.conf; then
 
11965
+      $echo "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
 
11966
+    fi
 
11967
+    $echo
 
11968
+    $echo "See any operating system documentation about shared libraries for"
 
11969
+    $echo "more information, such as the ld(1) and ld.so(8) manual pages."
 
11970
+    $echo "----------------------------------------------------------------------"
 
11971
+    exit $EXIT_SUCCESS
 
11972
+    ;;
 
11973
+
 
11974
+  # libtool execute mode
 
11975
+  execute)
 
11976
+    modename="$modename: execute"
 
11977
+
 
11978
+    # The first argument is the command name.
 
11979
+    cmd="$nonopt"
 
11980
+    if test -z "$cmd"; then
 
11981
+      $echo "$modename: you must specify a COMMAND" 1>&2
 
11982
+      $echo "$help"
 
11983
+      exit $EXIT_FAILURE
 
11984
+    fi
 
11985
+
 
11986
+    # Handle -dlopen flags immediately.
 
11987
+    for file in $execute_dlfiles; do
 
11988
+      if test ! -f "$file"; then
 
11989
+       $echo "$modename: \`$file' is not a file" 1>&2
 
11990
+       $echo "$help" 1>&2
 
11991
+       exit $EXIT_FAILURE
 
11992
+      fi
 
11993
+
 
11994
+      dir=
 
11995
+      case $file in
 
11996
+      *.la)
 
11997
+       # Check to see that this really is a libtool archive.
 
11998
+       if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
11999
+       else
 
12000
+         $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
12001
+         $echo "$help" 1>&2
 
12002
+         exit $EXIT_FAILURE
 
12003
+       fi
 
12004
+
 
12005
+       # Read the libtool library.
 
12006
+       dlname=
 
12007
+       library_names=
 
12008
+
 
12009
+       # If there is no directory component, then add one.
 
12010
+       case $file in
 
12011
+       */* | *\\*) . $file ;;
 
12012
+       *) . ./$file ;;
 
12013
+       esac
 
12014
+
 
12015
+       # Skip this library if it cannot be dlopened.
 
12016
+       if test -z "$dlname"; then
 
12017
+         # Warn if it was a shared library.
 
12018
+         test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
 
12019
+         continue
 
12020
+       fi
 
12021
+
 
12022
+       dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
12023
+       test "X$dir" = "X$file" && dir=.
 
12024
+
 
12025
+       if test -f "$dir/$objdir/$dlname"; then
 
12026
+         dir="$dir/$objdir"
 
12027
+       else
 
12028
+         $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
 
12029
+         exit $EXIT_FAILURE
 
12030
+       fi
 
12031
+       ;;
 
12032
+
 
12033
+      *.lo)
 
12034
+       # Just add the directory containing the .lo file.
 
12035
+       dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
12036
+       test "X$dir" = "X$file" && dir=.
 
12037
+       ;;
 
12038
+
 
12039
+      *)
 
12040
+       $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
 
12041
+       continue
 
12042
+       ;;
 
12043
+      esac
 
12044
+
 
12045
+      # Get the absolute pathname.
 
12046
+      absdir=`cd "$dir" && pwd`
 
12047
+      test -n "$absdir" && dir="$absdir"
 
12048
+
 
12049
+      # Now add the directory to shlibpath_var.
 
12050
+      if eval "test -z \"\$$shlibpath_var\""; then
 
12051
+       eval "$shlibpath_var=\"\$dir\""
 
12052
+      else
 
12053
+       eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
 
12054
+      fi
 
12055
+    done
 
12056
+
 
12057
+    # This variable tells wrapper scripts just to set shlibpath_var
 
12058
+    # rather than running their programs.
 
12059
+    libtool_execute_magic="$magic"
 
12060
+
 
12061
+    # Check if any of the arguments is a wrapper script.
 
12062
+    args=
 
12063
+    for file
 
12064
+    do
 
12065
+      case $file in
 
12066
+      -*) ;;
 
12067
+      *)
 
12068
+       # Do a test to see if this is really a libtool program.
 
12069
+       if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
12070
+         # If there is no directory component, then add one.
 
12071
+         case $file in
 
12072
+         */* | *\\*) . $file ;;
 
12073
+         *) . ./$file ;;
 
12074
+         esac
 
12075
+
 
12076
+         # Transform arg to wrapped name.
 
12077
+         file="$progdir/$program"
 
12078
+       fi
 
12079
+       ;;
 
12080
+      esac
 
12081
+      # Quote arguments (to preserve shell metacharacters).
 
12082
+      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
 
12083
+      args="$args \"$file\""
 
12084
+    done
 
12085
+
 
12086
+    if test -z "$run"; then
 
12087
+      if test -n "$shlibpath_var"; then
 
12088
+       # Export the shlibpath_var.
 
12089
+       eval "export $shlibpath_var"
 
12090
+      fi
 
12091
+
 
12092
+      # Restore saved environment variables
 
12093
+      if test "${save_LC_ALL+set}" = set; then
 
12094
+       LC_ALL="$save_LC_ALL"; export LC_ALL
 
12095
+      fi
 
12096
+      if test "${save_LANG+set}" = set; then
 
12097
+       LANG="$save_LANG"; export LANG
 
12098
+      fi
 
12099
+
 
12100
+      # Now prepare to actually exec the command.
 
12101
+      exec_cmd="\$cmd$args"
 
12102
+    else
 
12103
+      # Display what would be done.
 
12104
+      if test -n "$shlibpath_var"; then
 
12105
+       eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
 
12106
+       $echo "export $shlibpath_var"
 
12107
+      fi
 
12108
+      $echo "$cmd$args"
 
12109
+      exit $EXIT_SUCCESS
 
12110
+    fi
 
12111
+    ;;
 
12112
+
 
12113
+  # libtool clean and uninstall mode
 
12114
+  clean | uninstall)
 
12115
+    modename="$modename: $mode"
 
12116
+    rm="$nonopt"
 
12117
+    files=
 
12118
+    rmforce=
 
12119
+    exit_status=0
 
12120
+
 
12121
+    # This variable tells wrapper scripts just to set variables rather
 
12122
+    # than running their programs.
 
12123
+    libtool_install_magic="$magic"
 
12124
+
 
12125
+    for arg
 
12126
+    do
 
12127
+      case $arg in
 
12128
+      -f) rm="$rm $arg"; rmforce=yes ;;
 
12129
+      -*) rm="$rm $arg" ;;
 
12130
+      *) files="$files $arg" ;;
 
12131
+      esac
 
12132
+    done
 
12133
+
 
12134
+    if test -z "$rm"; then
 
12135
+      $echo "$modename: you must specify an RM program" 1>&2
 
12136
+      $echo "$help" 1>&2
 
12137
+      exit $EXIT_FAILURE
 
12138
+    fi
 
12139
+
 
12140
+    rmdirs=
 
12141
+
 
12142
+    origobjdir="$objdir"
 
12143
+    for file in $files; do
 
12144
+      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
12145
+      if test "X$dir" = "X$file"; then
 
12146
+       dir=.
 
12147
+       objdir="$origobjdir"
 
12148
+      else
 
12149
+       objdir="$dir/$origobjdir"
 
12150
+      fi
 
12151
+      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
12152
+      test "$mode" = uninstall && objdir="$dir"
 
12153
+
 
12154
+      # Remember objdir for removal later, being careful to avoid duplicates
 
12155
+      if test "$mode" = clean; then
 
12156
+       case " $rmdirs " in
 
12157
+         *" $objdir "*) ;;
 
12158
+         *) rmdirs="$rmdirs $objdir" ;;
 
12159
+       esac
 
12160
+      fi
 
12161
+
 
12162
+      # Don't error if the file doesn't exist and rm -f was used.
 
12163
+      if (test -L "$file") >/dev/null 2>&1 \
 
12164
+       || (test -h "$file") >/dev/null 2>&1 \
 
12165
+       || test -f "$file"; then
 
12166
+       :
 
12167
+      elif test -d "$file"; then
 
12168
+       exit_status=1
 
12169
+       continue
 
12170
+      elif test "$rmforce" = yes; then
 
12171
+       continue
 
12172
+      fi
 
12173
+
 
12174
+      rmfiles="$file"
 
12175
+
 
12176
+      case $name in
 
12177
+      *.la)
 
12178
+       # Possibly a libtool archive, so verify it.
 
12179
+       if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
12180
+         . $dir/$name
 
12181
+
 
12182
+         # Delete the libtool libraries and symlinks.
 
12183
+         for n in $library_names; do
 
12184
+           rmfiles="$rmfiles $objdir/$n"
 
12185
+         done
 
12186
+         test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
 
12187
+         test "$mode" = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
 
12188
+
 
12189
+         if test "$mode" = uninstall; then
 
12190
+           if test -n "$library_names"; then
 
12191
+             # Do each command in the postuninstall commands.
 
12192
+             cmds=$postuninstall_cmds
 
12193
+             save_ifs="$IFS"; IFS='~'
 
12194
+             for cmd in $cmds; do
 
12195
+               IFS="$save_ifs"
 
12196
+               eval cmd=\"$cmd\"
 
12197
+               $show "$cmd"
 
12198
+               $run eval "$cmd"
 
12199
+               if test "$?" -ne 0 && test "$rmforce" != yes; then
 
12200
+                 exit_status=1
 
12201
+               fi
 
12202
+             done
 
12203
+             IFS="$save_ifs"
 
12204
+           fi
 
12205
+
 
12206
+           if test -n "$old_library"; then
 
12207
+             # Do each command in the old_postuninstall commands.
 
12208
+             cmds=$old_postuninstall_cmds
 
12209
+             save_ifs="$IFS"; IFS='~'
 
12210
+             for cmd in $cmds; do
 
12211
+               IFS="$save_ifs"
 
12212
+               eval cmd=\"$cmd\"
 
12213
+               $show "$cmd"
 
12214
+               $run eval "$cmd"
 
12215
+               if test "$?" -ne 0 && test "$rmforce" != yes; then
 
12216
+                 exit_status=1
 
12217
+               fi
 
12218
+             done
 
12219
+             IFS="$save_ifs"
 
12220
+           fi
 
12221
+           # FIXME: should reinstall the best remaining shared library.
 
12222
+         fi
 
12223
+       fi
 
12224
+       ;;
 
12225
+
 
12226
+      *.lo)
 
12227
+       # Possibly a libtool object, so verify it.
 
12228
+       if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
12229
+
 
12230
+         # Read the .lo file
 
12231
+         . $dir/$name
 
12232
+
 
12233
+         # Add PIC object to the list of files to remove.
 
12234
+         if test -n "$pic_object" \
 
12235
+            && test "$pic_object" != none; then
 
12236
+           rmfiles="$rmfiles $dir/$pic_object"
 
12237
+         fi
 
12238
+
 
12239
+         # Add non-PIC object to the list of files to remove.
 
12240
+         if test -n "$non_pic_object" \
 
12241
+            && test "$non_pic_object" != none; then
 
12242
+           rmfiles="$rmfiles $dir/$non_pic_object"
 
12243
+         fi
 
12244
+       fi
 
12245
+       ;;
 
12246
+
 
12247
+      *)
 
12248
+       if test "$mode" = clean ; then
 
12249
+         noexename=$name
 
12250
+         case $file in
 
12251
+         *.exe)
 
12252
+           file=`$echo $file|${SED} 's,.exe$,,'`
 
12253
+           noexename=`$echo $name|${SED} 's,.exe$,,'`
 
12254
+           # $file with .exe has already been added to rmfiles,
 
12255
+           # add $file without .exe
 
12256
+           rmfiles="$rmfiles $file"
 
12257
+           ;;
 
12258
+         esac
 
12259
+         # Do a test to see if this is a libtool program.
 
12260
+         if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
12261
+           relink_command=
 
12262
+           . $dir/$noexename
 
12263
+
 
12264
+           # note $name still contains .exe if it was in $file originally
 
12265
+           # as does the version of $file that was added into $rmfiles
 
12266
+           rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
 
12267
+           if test "$fast_install" = yes && test -n "$relink_command"; then
 
12268
+             rmfiles="$rmfiles $objdir/lt-$name"
 
12269
+           fi
 
12270
+           if test "X$noexename" != "X$name" ; then
 
12271
+             rmfiles="$rmfiles $objdir/lt-${noexename}.c"
 
12272
+           fi
 
12273
+         fi
 
12274
+       fi
 
12275
+       ;;
 
12276
+      esac
 
12277
+      $show "$rm $rmfiles"
 
12278
+      $run $rm $rmfiles || exit_status=1
 
12279
+    done
 
12280
+    objdir="$origobjdir"
 
12281
+
 
12282
+    # Try to remove the ${objdir}s in the directories where we deleted files
 
12283
+    for dir in $rmdirs; do
 
12284
+      if test -d "$dir"; then
 
12285
+       $show "rmdir $dir"
 
12286
+       $run rmdir $dir >/dev/null 2>&1
 
12287
+      fi
 
12288
+    done
 
12289
+
 
12290
+    exit $exit_status
 
12291
+    ;;
 
12292
+
 
12293
+  "")
 
12294
+    $echo "$modename: you must specify a MODE" 1>&2
 
12295
+    $echo "$generic_help" 1>&2
 
12296
+    exit $EXIT_FAILURE
 
12297
+    ;;
 
12298
+  esac
 
12299
+
 
12300
+  if test -z "$exec_cmd"; then
 
12301
+    $echo "$modename: invalid operation mode \`$mode'" 1>&2
 
12302
+    $echo "$generic_help" 1>&2
 
12303
+    exit $EXIT_FAILURE
 
12304
+  fi
 
12305
+fi # test -z "$show_help"
 
12306
+
 
12307
+if test -n "$exec_cmd"; then
 
12308
+  eval exec $exec_cmd
 
12309
+  exit $EXIT_FAILURE
 
12310
+fi
 
12311
+
 
12312
+# We need to display help for each of the modes.
 
12313
+case $mode in
 
12314
+"") $echo \
 
12315
+"Usage: $modename [OPTION]... [MODE-ARG]...
 
12316
+
 
12317
+Provide generalized library-building support services.
 
12318
+
 
12319
+    --config          show all configuration variables
 
12320
+    --debug           enable verbose shell tracing
 
12321
+-n, --dry-run         display commands without modifying any files
 
12322
+    --features        display basic configuration information and exit
 
12323
+    --finish          same as \`--mode=finish'
 
12324
+    --help            display this help message and exit
 
12325
+    --mode=MODE       use operation mode MODE [default=inferred from MODE-ARGS]
 
12326
+    --quiet           same as \`--silent'
 
12327
+    --silent          don't print informational messages
 
12328
+    --tag=TAG         use configuration variables from tag TAG
 
12329
+    --version         print version information
 
12330
+
 
12331
+MODE must be one of the following:
 
12332
+
 
12333
+      clean           remove files from the build directory
 
12334
+      compile         compile a source file into a libtool object
 
12335
+      execute         automatically set library path, then run a program
 
12336
+      finish          complete the installation of libtool libraries
 
12337
+      install         install libraries or executables
 
12338
+      link            create a library or an executable
 
12339
+      uninstall       remove libraries from an installed directory
 
12340
+
 
12341
+MODE-ARGS vary depending on the MODE.  Try \`$modename --help --mode=MODE' for
 
12342
+a more detailed description of MODE.
 
12343
+
 
12344
+Report bugs to <bug-libtool@gnu.org>."
 
12345
+  exit $EXIT_SUCCESS
 
12346
+  ;;
 
12347
+
 
12348
+clean)
 
12349
+  $echo \
 
12350
+"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
 
12351
+
 
12352
+Remove files from the build directory.
 
12353
+
 
12354
+RM is the name of the program to use to delete files associated with each FILE
 
12355
+(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
 
12356
+to RM.
 
12357
+
 
12358
+If FILE is a libtool library, object or program, all the files associated
 
12359
+with it are deleted. Otherwise, only FILE itself is deleted using RM."
 
12360
+  ;;
 
12361
+
 
12362
+compile)
 
12363
+  $echo \
 
12364
+"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
 
12365
+
 
12366
+Compile a source file into a libtool library object.
 
12367
+
 
12368
+This mode accepts the following additional options:
 
12369
+
 
12370
+  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
 
12371
+  -prefer-pic       try to building PIC objects only
 
12372
+  -prefer-non-pic   try to building non-PIC objects only
 
12373
+  -static           always build a \`.o' file suitable for static linking
 
12374
+
 
12375
+COMPILE-COMMAND is a command to be used in creating a \`standard' object file
 
12376
+from the given SOURCEFILE.
 
12377
+
 
12378
+The output file name is determined by removing the directory component from
 
12379
+SOURCEFILE, then substituting the C source code suffix \`.c' with the
 
12380
+library object suffix, \`.lo'."
 
12381
+  ;;
 
12382
+
 
12383
+execute)
 
12384
+  $echo \
 
12385
+"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
 
12386
+
 
12387
+Automatically set library path, then run a program.
 
12388
+
 
12389
+This mode accepts the following additional options:
 
12390
+
 
12391
+  -dlopen FILE      add the directory containing FILE to the library path
 
12392
+
 
12393
+This mode sets the library path environment variable according to \`-dlopen'
 
12394
+flags.
 
12395
+
 
12396
+If any of the ARGS are libtool executable wrappers, then they are translated
 
12397
+into their corresponding uninstalled binary, and any of their required library
 
12398
+directories are added to the library path.
 
12399
+
 
12400
+Then, COMMAND is executed, with ARGS as arguments."
 
12401
+  ;;
 
12402
+
 
12403
+finish)
 
12404
+  $echo \
 
12405
+"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
 
12406
+
 
12407
+Complete the installation of libtool libraries.
 
12408
+
 
12409
+Each LIBDIR is a directory that contains libtool libraries.
 
12410
+
 
12411
+The commands that this mode executes may require superuser privileges.  Use
 
12412
+the \`--dry-run' option if you just want to see what would be executed."
 
12413
+  ;;
 
12414
+
 
12415
+install)
 
12416
+  $echo \
 
12417
+"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
 
12418
+
 
12419
+Install executables or libraries.
 
12420
+
 
12421
+INSTALL-COMMAND is the installation command.  The first component should be
 
12422
+either the \`install' or \`cp' program.
 
12423
+
 
12424
+The rest of the components are interpreted as arguments to that command (only
 
12425
+BSD-compatible install options are recognized)."
 
12426
+  ;;
 
12427
+
 
12428
+link)
 
12429
+  $echo \
 
12430
+"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
 
12431
+
 
12432
+Link object files or libraries together to form another library, or to
 
12433
+create an executable program.
 
12434
+
 
12435
+LINK-COMMAND is a command using the C compiler that you would use to create
 
12436
+a program from several object files.
 
12437
+
 
12438
+The following components of LINK-COMMAND are treated specially:
 
12439
+
 
12440
+  -all-static       do not do any dynamic linking at all
 
12441
+  -avoid-version    do not add a version suffix if possible
 
12442
+  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
 
12443
+  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
 
12444
+  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
 
12445
+  -export-symbols SYMFILE
 
12446
+                   try to export only the symbols listed in SYMFILE
 
12447
+  -export-symbols-regex REGEX
 
12448
+                   try to export only the symbols matching REGEX
 
12449
+  -LLIBDIR          search LIBDIR for required installed libraries
 
12450
+  -lNAME            OUTPUT-FILE requires the installed library libNAME
 
12451
+  -module           build a library that can dlopened
 
12452
+  -no-fast-install  disable the fast-install mode
 
12453
+  -no-install       link a not-installable executable
 
12454
+  -no-undefined     declare that a library does not refer to external symbols
 
12455
+  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
 
12456
+  -objectlist FILE  Use a list of object files found in FILE to specify objects
 
12457
+  -precious-files-regex REGEX
 
12458
+                    don't remove output files matching REGEX
 
12459
+  -release RELEASE  specify package release information
 
12460
+  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
 
12461
+  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
 
12462
+  -static           do not do any dynamic linking of libtool libraries
 
12463
+  -version-info CURRENT[:REVISION[:AGE]]
 
12464
+                   specify library version info [each variable defaults to 0]
 
12465
+
 
12466
+All other options (arguments beginning with \`-') are ignored.
 
12467
+
 
12468
+Every other argument is treated as a filename.  Files ending in \`.la' are
 
12469
+treated as uninstalled libtool libraries, other files are standard or library
 
12470
+object files.
 
12471
+
 
12472
+If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
 
12473
+only library objects (\`.lo' files) may be specified, and \`-rpath' is
 
12474
+required, except when creating a convenience library.
 
12475
+
 
12476
+If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
 
12477
+using \`ar' and \`ranlib', or on Windows using \`lib'.
 
12478
+
 
12479
+If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
 
12480
+is created, otherwise an executable program is created."
 
12481
+  ;;
 
12482
+
 
12483
+uninstall)
 
12484
+  $echo \
 
12485
+"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
 
12486
+
 
12487
+Remove libraries from an installation directory.
 
12488
+
 
12489
+RM is the name of the program to use to delete files associated with each FILE
 
12490
+(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
 
12491
+to RM.
 
12492
+
 
12493
+If FILE is a libtool library, all the files associated with it are deleted.
 
12494
+Otherwise, only FILE itself is deleted using RM."
 
12495
+  ;;
 
12496
+
 
12497
+*)
 
12498
+  $echo "$modename: invalid operation mode \`$mode'" 1>&2
 
12499
+  $echo "$help" 1>&2
 
12500
+  exit $EXIT_FAILURE
 
12501
+  ;;
 
12502
+esac
 
12503
+
 
12504
+$echo
 
12505
+$echo "Try \`$modename --help' for more information about other modes."
 
12506
+
 
12507
+exit $EXIT_SUCCESS
 
12508
+
 
12509
+# The TAGs below are defined such that we never get into a situation
 
12510
+# in which we disable both kinds of libraries.  Given conflicting
 
12511
+# choices, we go for a static library, that is the most portable,
 
12512
+# since we can't tell whether shared libraries were disabled because
 
12513
+# the user asked for that or because the platform doesn't support
 
12514
+# them.  This is particularly important on AIX, because we don't
 
12515
+# support having both static and shared libraries enabled at the same
 
12516
+# time on that platform, so we default to a shared-only configuration.
 
12517
+# If a disable-shared tag is given, we'll fallback to a static-only
 
12518
+# configuration.  But we'll never go from static-only to shared-only.
 
12519
+
 
12520
+# ### BEGIN LIBTOOL TAG CONFIG: disable-shared
 
12521
+build_libtool_libs=no
 
12522
+build_old_libs=yes
 
12523
+# ### END LIBTOOL TAG CONFIG: disable-shared
 
12524
+
 
12525
+# ### BEGIN LIBTOOL TAG CONFIG: disable-static
 
12526
+build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
 
12527
+# ### END LIBTOOL TAG CONFIG: disable-static
 
12528
+
 
12529
+# Local Variables:
 
12530
+# mode:shell-script
 
12531
+# sh-indentation:2
 
12532
+# End:
 
12533
+# ### BEGIN LIBTOOL TAG CONFIG: CXX
 
12534
+
 
12535
+# Libtool was configured on host beebo:
 
12536
+
 
12537
+# Shell to use when invoking shell scripts.
 
12538
+SHELL="/bin/sh"
 
12539
+
 
12540
+# Whether or not to build shared libraries.
 
12541
+build_libtool_libs=yes
 
12542
+
 
12543
+# Whether or not to build static libraries.
 
12544
+build_old_libs=yes
 
12545
+
 
12546
+# Whether or not to add -lc for building shared libraries.
 
12547
+build_libtool_need_lc=no
 
12548
+
 
12549
+# Whether or not to disallow shared libs when runtime libs are static
 
12550
+allow_libtool_libs_with_static_runtimes=no
 
12551
+
 
12552
+# Whether or not to optimize for fast installation.
 
12553
+fast_install=yes
 
12554
+
 
12555
+# The host system.
 
12556
+host_alias=
 
12557
+host=i686-pc-linux-gnu
 
12558
+
 
12559
+# An echo program that does not interpret backslashes.
 
12560
+echo="echo"
 
12561
+
 
12562
+# The archiver.
 
12563
+AR="ar"
 
12564
+AR_FLAGS="cru"
 
12565
+
 
12566
+# A C compiler.
 
12567
+LTCC="gcc"
 
12568
+
 
12569
+# A language-specific compiler.
 
12570
+CC="g++"
 
12571
+
 
12572
+# Is the compiler the GNU C compiler?
 
12573
+with_gcc=yes
 
12574
+
 
12575
+# An ERE matcher.
 
12576
+EGREP="grep -E"
 
12577
+
 
12578
+# The linker used to build libraries.
 
12579
+LD="/usr/bin/ld"
 
12580
+
 
12581
+# Whether we need hard or soft links.
 
12582
+LN_S="ln -s"
 
12583
+
 
12584
+# A BSD-compatible nm program.
 
12585
+NM="/usr/bin/nm -B"
 
12586
+
 
12587
+# A symbol stripping program
 
12588
+STRIP="strip"
 
12589
+
 
12590
+# Used to examine libraries when file_magic_cmd begins "file"
 
12591
+MAGIC_CMD=file
 
12592
+
 
12593
+# Used on cygwin: DLL creation program.
 
12594
+DLLTOOL="dlltool"
 
12595
+
 
12596
+# Used on cygwin: object dumper.
 
12597
+OBJDUMP="objdump"
 
12598
+
 
12599
+# Used on cygwin: assembler.
 
12600
+AS="as"
 
12601
+
 
12602
+# The name of the directory that contains temporary libtool files.
 
12603
+objdir=.libs
 
12604
+
 
12605
+# How to create reloadable object files.
 
12606
+reload_flag=" -r"
 
12607
+reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs"
 
12608
+
 
12609
+# How to pass a linker flag through the compiler.
 
12610
+wl="-Wl,"
 
12611
+
 
12612
+# Object file suffix (normally "o").
 
12613
+objext="o"
 
12614
+
 
12615
+# Old archive suffix (normally "a").
 
12616
+libext="a"
 
12617
+
 
12618
+# Shared library suffix (normally ".so").
 
12619
+shrext_cmds='.so'
 
12620
+
 
12621
+# Executable file suffix (normally "").
 
12622
+exeext=""
 
12623
+
 
12624
+# Additional compiler flags for building library objects.
 
12625
+pic_flag=" -fPIC -DPIC"
 
12626
+pic_mode=default
 
12627
+
 
12628
+# What is the maximum length of a command?
 
12629
+max_cmd_len=32768
 
12630
+
 
12631
+# Does compiler simultaneously support -c and -o options?
 
12632
+compiler_c_o="yes"
 
12633
+
 
12634
+# Must we lock files when doing compilation ?
 
12635
+need_locks="no"
 
12636
+
 
12637
+# Do we need the lib prefix for modules?
 
12638
+need_lib_prefix=no
 
12639
+
 
12640
+# Do we need a version for libraries?
 
12641
+need_version=no
 
12642
+
 
12643
+# Whether dlopen is supported.
 
12644
+dlopen_support=unknown
 
12645
+
 
12646
+# Whether dlopen of programs is supported.
 
12647
+dlopen_self=unknown
 
12648
+
 
12649
+# Whether dlopen of statically linked programs is supported.
 
12650
+dlopen_self_static=unknown
 
12651
+
 
12652
+# Compiler flag to prevent dynamic linking.
 
12653
+link_static_flag="-static"
 
12654
+
 
12655
+# Compiler flag to turn off builtin functions.
 
12656
+no_builtin_flag=" -fno-builtin"
 
12657
+
 
12658
+# Compiler flag to allow reflexive dlopens.
 
12659
+export_dynamic_flag_spec="\${wl}--export-dynamic"
 
12660
+
 
12661
+# Compiler flag to generate shared objects directly from archives.
 
12662
+whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive"
 
12663
+
 
12664
+# Compiler flag to generate thread-safe objects.
 
12665
+thread_safe_flag_spec=""
 
12666
+
 
12667
+# Library versioning type.
 
12668
+version_type=linux
 
12669
+
 
12670
+# Format of library name prefix.
 
12671
+libname_spec="lib\$name"
 
12672
+
 
12673
+# List of archive names.  First name is the real one, the rest are links.
 
12674
+# The last name is the one that the linker finds with -lNAME.
 
12675
+library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext}\$major \$libname\${shared_ext}"
 
12676
+
 
12677
+# The coded name of the library, if different from the real name.
 
12678
+soname_spec="\${libname}\${release}\${shared_ext}\$major"
 
12679
+
 
12680
+# Commands used to build and install an old-style archive.
 
12681
+RANLIB="ranlib"
 
12682
+old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs\$old_deplibs~\$RANLIB \$oldlib"
 
12683
+old_postinstall_cmds="\$RANLIB \$oldlib~chmod 644 \$oldlib"
 
12684
+old_postuninstall_cmds=""
 
12685
+
 
12686
+# Create an old-style archive from a shared archive.
 
12687
+old_archive_from_new_cmds=""
 
12688
+
 
12689
+# Create a temporary old-style archive to link instead of a shared archive.
 
12690
+old_archive_from_expsyms_cmds=""
 
12691
+
 
12692
+# Commands used to build and install a shared archive.
 
12693
+archive_cmds="\$CC -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib"
 
12694
+archive_expsym_cmds="\$CC -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib"
 
12695
+postinstall_cmds=""
 
12696
+postuninstall_cmds=""
 
12697
+
 
12698
+# Commands used to build a loadable module (assumed same as above if empty)
 
12699
+module_cmds=""
 
12700
+module_expsym_cmds=""
 
12701
+
 
12702
+# Commands to strip libraries.
 
12703
+old_striplib="strip --strip-debug"
 
12704
+striplib="strip --strip-unneeded"
 
12705
+
 
12706
+# Dependencies to place before the objects being linked to create a
 
12707
+# shared library.
 
12708
+predep_objects="/usr/lib/gcc/i486-linux-gnu/4.0.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.0.1/crtbeginS.o"
 
12709
+
 
12710
+# Dependencies to place after the objects being linked to create a
 
12711
+# shared library.
 
12712
+postdep_objects="/usr/lib/gcc/i486-linux-gnu/4.0.1/crtendS.o /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../../lib/crtn.o"
 
12713
+
 
12714
+# Dependencies to place before the objects being linked to create a
 
12715
+# shared library.
 
12716
+predeps=""
 
12717
+
 
12718
+# Dependencies to place after the objects being linked to create a
 
12719
+# shared library.
 
12720
+postdeps="-lstdc++ -lm -lgcc_s -lc -lgcc_s"
 
12721
+
 
12722
+# The library search path used internally by the compiler when linking
 
12723
+# a shared library.
 
12724
+compiler_lib_search_path="-L/usr/lib/gcc/i486-linux-gnu/4.0.1 -L/usr/lib/gcc/i486-linux-gnu/4.0.1 -L/usr/lib/gcc/i486-linux-gnu/4.0.1/../../../../lib -L/usr/lib/gcc/i486-linux-gnu/4.0.1/../../.. -L/lib/../lib -L/usr/lib/../lib"
 
12725
+
 
12726
+# Method to check whether dependent libraries are shared objects.
 
12727
+deplibs_check_method="pass_all"
 
12728
+
 
12729
+# Command to use when deplibs_check_method == file_magic.
 
12730
+file_magic_cmd="\$MAGIC_CMD"
 
12731
+
 
12732
+# Flag that allows shared libraries with undefined symbols to be built.
 
12733
+allow_undefined_flag=""
 
12734
+
 
12735
+# Flag that forces no undefined symbols.
 
12736
+no_undefined_flag=""
 
12737
+
 
12738
+# Commands used to finish a libtool library installation in a directory.
 
12739
+finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir"
 
12740
+
 
12741
+# Same as above, but a single script fragment to be evaled but not shown.
 
12742
+finish_eval=""
 
12743
+
 
12744
+# Take the output of nm and produce a listing of raw symbols and C names.
 
12745
+global_symbol_pipe="sed -n -e 's/^.*[  ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[       ][      ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
 
12746
+
 
12747
+# Transform the output of nm in a proper C declaration
 
12748
+global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'"
 
12749
+
 
12750
+# Transform the output of nm in a C name address pair
 
12751
+global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'"
 
12752
+
 
12753
+# This is the shared library runtime path variable.
 
12754
+runpath_var=LD_RUN_PATH
 
12755
+
 
12756
+# This is the shared library path variable.
 
12757
+shlibpath_var=LD_LIBRARY_PATH
 
12758
+
 
12759
+# Is shlibpath searched before the hard-coded library search path?
 
12760
+shlibpath_overrides_runpath=no
 
12761
+
 
12762
+# How to hardcode a shared library path into an executable.
 
12763
+hardcode_action=immediate
 
12764
+
 
12765
+# Whether we should hardcode library paths into libraries.
 
12766
+hardcode_into_libs=yes
 
12767
+
 
12768
+# Flag to hardcode $libdir into a binary during linking.
 
12769
+# This must work even if $libdir does not exist.
 
12770
+hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir"
 
12771
+
 
12772
+# If ld is used when linking, flag to hardcode $libdir into
 
12773
+# a binary during linking. This must work even if $libdir does
 
12774
+# not exist.
 
12775
+hardcode_libdir_flag_spec_ld=""
 
12776
+
 
12777
+# Whether we need a single -rpath flag with a separated argument.
 
12778
+hardcode_libdir_separator=""
 
12779
+
 
12780
+# Set to yes if using DIR/libNAME during linking hardcodes DIR into the
 
12781
+# resulting binary.
 
12782
+hardcode_direct=no
 
12783
+
 
12784
+# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
 
12785
+# resulting binary.
 
12786
+hardcode_minus_L=no
 
12787
+
 
12788
+# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
 
12789
+# the resulting binary.
 
12790
+hardcode_shlibpath_var=
 
12791
+
 
12792
+# Set to yes if building a shared library automatically hardcodes DIR into the library
 
12793
+# and all subsequent libraries and executables linked against it.
 
12794
+hardcode_automatic=no
 
12795
+
 
12796
+# Variables whose values should be saved in libtool wrapper scripts and
 
12797
+# restored at relink time.
 
12798
+variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 
12799
+
 
12800
+# Whether libtool must link a program against all its dependency libraries.
 
12801
+link_all_deplibs=no
 
12802
+
 
12803
+# Compile-time system search path for libraries
 
12804
+sys_lib_search_path_spec=" /usr/lib/gcc/i486-linux-gnu/4.0.1/ /usr/lib/gcc/i486-linux-gnu/4.0.1/ /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../../i486-linux-gnu/lib/i486-linux-gnu/4.0.1/ /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../../i486-linux-gnu/lib/ /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../i486-linux-gnu/4.0.1/ /usr/lib/gcc/i486-linux-gnu/4.0.1/../../../ /lib/i486-linux-gnu/4.0.1/ /lib/ /usr/lib/i486-linux-gnu/4.0.1/ /usr/lib/"
 
12805
+
 
12806
+# Run-time system search path for libraries
 
12807
+sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib /lib64 /usr/lib64 /usr/X11R6/lib64 "
 
12808
+
 
12809
+# Fix the shell variable $srcfile for the compiler.
 
12810
+fix_srcfile_path=""
 
12811
+
 
12812
+# Set to yes if exported symbols are required.
 
12813
+always_export_symbols=no
 
12814
+
 
12815
+# The commands to list exported symbols.
 
12816
+export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols"
 
12817
+
 
12818
+# The commands to extract the exported symbol list from a shared archive.
 
12819
+extract_expsyms_cmds=""
 
12820
+
 
12821
+# Symbols that should not be listed in the preloaded symbols.
 
12822
+exclude_expsyms=""
 
12823
+
 
12824
+# Symbols that must always be exported.
 
12825
+include_expsyms=""
 
12826
+
 
12827
+# ### END LIBTOOL TAG CONFIG: CXX
 
12828
+
 
12829
diff -urNad --exclude=CVS --exclude=.svn ./Makefile /tmp/dpep-work.mDzhRz/irssi/Makefile
 
12830
--- ./Makefile  1970-01-01 02:00:00.000000000 +0200
 
12831
+++ /tmp/dpep-work.mDzhRz/irssi/Makefile        2005-07-17 16:48:38.000000000 +0300
 
12832
@@ -0,0 +1,802 @@
 
12833
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
12834
+# Makefile.  Generated from Makefile.in by configure.
 
12835
+
 
12836
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
12837
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
12838
+# This Makefile.in is free software; the Free Software Foundation
 
12839
+# gives unlimited permission to copy and/or distribute it,
 
12840
+# with or without modifications, as long as this notice is preserved.
 
12841
+
 
12842
+# This program is distributed in the hope that it will be useful,
 
12843
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
12844
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
12845
+# PARTICULAR PURPOSE.
 
12846
+
 
12847
+
 
12848
+
 
12849
+
 
12850
+srcdir = .
 
12851
+top_srcdir = .
 
12852
+
 
12853
+pkgdatadir = $(datadir)/irssi
 
12854
+pkglibdir = $(libdir)/irssi
 
12855
+pkgincludedir = $(includedir)/irssi
 
12856
+top_builddir = .
 
12857
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
12858
+INSTALL = /usr/bin/install -c
 
12859
+install_sh_DATA = $(install_sh) -c -m 644
 
12860
+install_sh_PROGRAM = $(install_sh) -c
 
12861
+install_sh_SCRIPT = $(install_sh) -c
 
12862
+INSTALL_HEADER = $(INSTALL_DATA)
 
12863
+transform = $(program_transform_name)
 
12864
+NORMAL_INSTALL = :
 
12865
+PRE_INSTALL = :
 
12866
+POST_INSTALL = :
 
12867
+NORMAL_UNINSTALL = :
 
12868
+PRE_UNINSTALL = :
 
12869
+POST_UNINSTALL = :
 
12870
+build_triplet = i686-pc-linux-gnu
 
12871
+host_triplet = i686-pc-linux-gnu
 
12872
+DIST_COMMON = README $(am__configure_deps) $(noinst_HEADERS) \
 
12873
+       $(pkginclude_HEADERS) $(srcdir)/Makefile.am \
 
12874
+       $(srcdir)/Makefile.in $(srcdir)/config.h.in \
 
12875
+       $(srcdir)/irssi-config.in $(srcdir)/irssi-version.h.in \
 
12876
+       $(srcdir)/irssi.spec.in $(srcdir)/stamp.h.in \
 
12877
+       $(top_srcdir)/configure \
 
12878
+       $(top_srcdir)/src/perl/common/Makefile.PL.in \
 
12879
+       $(top_srcdir)/src/perl/irc/Makefile.PL.in \
 
12880
+       $(top_srcdir)/src/perl/textui/Makefile.PL.in \
 
12881
+       $(top_srcdir)/src/perl/ui/Makefile.PL.in AUTHORS COPYING \
 
12882
+       ChangeLog INSTALL NEWS TODO acconfig.h config.guess config.sub \
 
12883
+       depcomp install-sh ltmain.sh missing
 
12884
+subdir = .
 
12885
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
12886
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
12887
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
12888
+       $(top_srcdir)/configure.in
 
12889
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
12890
+       $(ACLOCAL_M4)
 
12891
+am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 
12892
+ configure.lineno configure.status.lineno
 
12893
+mkinstalldirs = $(install_sh) -d
 
12894
+CONFIG_HEADER = config.h
 
12895
+CONFIG_CLEAN_FILES = src/perl/common/Makefile.PL \
 
12896
+       src/perl/irc/Makefile.PL src/perl/ui/Makefile.PL \
 
12897
+       src/perl/textui/Makefile.PL irssi-version.h stamp.h irssi.spec \
 
12898
+       irssi-config
 
12899
+SOURCES =
 
12900
+DIST_SOURCES =
 
12901
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
12902
+       html-recursive info-recursive install-data-recursive \
 
12903
+       install-exec-recursive install-info-recursive \
 
12904
+       install-recursive installcheck-recursive installdirs-recursive \
 
12905
+       pdf-recursive ps-recursive uninstall-info-recursive \
 
12906
+       uninstall-recursive
 
12907
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
12908
+am__vpath_adj = case $$p in \
 
12909
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
12910
+    *) f=$$p;; \
 
12911
+  esac;
 
12912
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
12913
+am__installdirs = "$(DESTDIR)$(confdir)" "$(DESTDIR)$(themedir)" \
 
12914
+       "$(DESTDIR)$(pkgincludedir)"
 
12915
+confDATA_INSTALL = $(INSTALL_DATA)
 
12916
+themeDATA_INSTALL = $(INSTALL_DATA)
 
12917
+DATA = $(conf_DATA) $(theme_DATA)
 
12918
+pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER)
 
12919
+HEADERS = $(noinst_HEADERS) $(pkginclude_HEADERS)
 
12920
+ETAGS = etags
 
12921
+CTAGS = ctags
 
12922
+DIST_SUBDIRS = $(SUBDIRS)
 
12923
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
12924
+distdir = $(PACKAGE)-$(VERSION)
 
12925
+top_distdir = $(distdir)
 
12926
+am__remove_distdir = \
 
12927
+  { test ! -d $(distdir) \
 
12928
+    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
 
12929
+         && rm -fr $(distdir); }; }
 
12930
+DIST_ARCHIVES = $(distdir).tar.gz
 
12931
+GZIP_ENV = --best
 
12932
+distuninstallcheck_listfiles = find . -type f -print
 
12933
+distcleancheck_listfiles = find . -type f -print
 
12934
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
12935
+AMDEP_FALSE = #
 
12936
+AMDEP_TRUE = 
 
12937
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
12938
+AR = ar
 
12939
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
12940
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
12941
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
12942
+AWK = gawk
 
12943
+BUILD_IRSSIBOT_FALSE = 
 
12944
+BUILD_IRSSIBOT_TRUE = #
 
12945
+BUILD_IRSSIPROXY_FALSE = 
 
12946
+BUILD_IRSSIPROXY_TRUE = #
 
12947
+BUILD_PLUGINS_FALSE = 
 
12948
+BUILD_PLUGINS_TRUE = #
 
12949
+BUILD_TEXTUI_FALSE = #
 
12950
+BUILD_TEXTUI_TRUE = 
 
12951
+CC = gcc
 
12952
+CCDEPMODE = depmode=gcc3
 
12953
+CFLAGS = -g -O2 -Wall  
 
12954
+CHAT_MODULES = irc
 
12955
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
12956
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
12957
+CPP = gcc -E
 
12958
+CPPFLAGS = 
 
12959
+CURSES_INCLUDEDIR = 
 
12960
+CURSES_LIBS = -lncurses
 
12961
+CXX = g++
 
12962
+CXXCPP = g++ -E
 
12963
+CXXDEPMODE = depmode=gcc3
 
12964
+CXXFLAGS = -g -O2
 
12965
+CYGPATH_W = echo
 
12966
+DEFS = -DHAVE_CONFIG_H
 
12967
+DEPDIR = .deps
 
12968
+DYNALOADER_A = 
 
12969
+ECHO = echo
 
12970
+ECHO_C = 
 
12971
+ECHO_N = -n
 
12972
+ECHO_T = 
 
12973
+EGREP = grep -E
 
12974
+EXEEXT = 
 
12975
+F77 = 
 
12976
+FFLAGS = 
 
12977
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
12978
+GLIB_CONFIG = 
 
12979
+GLIB_GENMARSHAL = glib-genmarshal
 
12980
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
12981
+GLIB_MKENUMS = glib-mkenums
 
12982
+GOBJECT_QUERY = gobject-query
 
12983
+HAVE_GNUTLS_FALSE = #
 
12984
+HAVE_GNUTLS_TRUE = 
 
12985
+HAVE_PERL_FALSE = #
 
12986
+HAVE_PERL_TRUE = 
 
12987
+HAVE_STATIC_PERL_FALSE = #
 
12988
+HAVE_STATIC_PERL_TRUE = 
 
12989
+INSTALL_DATA = ${INSTALL} -m 644
 
12990
+INSTALL_PROGRAM = ${INSTALL}
 
12991
+INSTALL_SCRIPT = ${INSTALL}
 
12992
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
12993
+LDFLAGS = 
 
12994
+LIBGNUTLS_CFLAGS = -I/usr/include
 
12995
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
12996
+LIBGNUTLS_LIBS = -lgnutls
 
12997
+LIBOBJS = 
 
12998
+LIBPERL_A = 
 
12999
+LIBS = 
 
13000
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
13001
+LN_S = ln -s
 
13002
+LTLIBOBJS = 
 
13003
+MAINT = 
 
13004
+MAINTAINER_MODE_FALSE = #
 
13005
+MAINTAINER_MODE_TRUE = 
 
13006
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
13007
+NEED_TPARM_FALSE = 
 
13008
+NEED_TPARM_TRUE = #
 
13009
+OBJEXT = o
 
13010
+PACKAGE = irssi
 
13011
+PACKAGE_BUGREPORT = 
 
13012
+PACKAGE_NAME = 
 
13013
+PACKAGE_STRING = 
 
13014
+PACKAGE_TARNAME = 
 
13015
+PACKAGE_VERSION = 
 
13016
+PATH_SEPARATOR = :
 
13017
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
13018
+PERL_EXTRA_OPTS = 
 
13019
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
13020
+PERL_LDFLAGS = 
 
13021
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
13022
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
13023
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
13024
+PERL_MM_PARAMS = 
 
13025
+PERL_STATIC_LIBS = 0
 
13026
+PERL_USE_LIB = 
 
13027
+PKG_CONFIG = /usr/bin/pkg-config
 
13028
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
13029
+RANLIB = ranlib
 
13030
+SET_MAKE = 
 
13031
+SHELL = /bin/sh
 
13032
+SSL_CFLAGS =  
 
13033
+SSL_LIBS = -lssl -lcrypto -ldl  
 
13034
+STRIP = strip
 
13035
+TEXTUI_LIBS = -lncurses
 
13036
+USE_CURSES_FALSE = 
 
13037
+USE_CURSES_TRUE = #
 
13038
+VERSION = 0.8.10-rc5
 
13039
+VERSION_DATE = 20050717
 
13040
+VERSION_TIME = 1223
 
13041
+ac_ct_AR = ar
 
13042
+ac_ct_CC = gcc
 
13043
+ac_ct_CXX = g++
 
13044
+ac_ct_F77 = 
 
13045
+ac_ct_RANLIB = ranlib
 
13046
+ac_ct_STRIP = strip
 
13047
+ac_pt_PKG_CONFIG = 
 
13048
+am__fastdepCC_FALSE = #
 
13049
+am__fastdepCC_TRUE = 
 
13050
+am__fastdepCXX_FALSE = #
 
13051
+am__fastdepCXX_TRUE = 
 
13052
+am__include = include
 
13053
+am__leading_dot = .
 
13054
+am__quote = 
 
13055
+am__tar = ${AMTAR} chof - "$$tardir"
 
13056
+am__untar = ${AMTAR} xf -
 
13057
+bindir = ${exec_prefix}/bin
 
13058
+build = i686-pc-linux-gnu
 
13059
+build_alias = 
 
13060
+build_cpu = i686
 
13061
+build_os = linux-gnu
 
13062
+build_vendor = pc
 
13063
+datadir = ${prefix}/share
 
13064
+exec_prefix = ${prefix}
 
13065
+host = i686-pc-linux-gnu
 
13066
+host_alias = 
 
13067
+host_cpu = i686
 
13068
+host_os = linux-gnu
 
13069
+host_vendor = pc
 
13070
+includedir = ${prefix}/include
 
13071
+infodir = ${prefix}/info
 
13072
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
13073
+irc_MODULES = dcc flood notifylist
 
13074
+libdir = ${exec_prefix}/lib
 
13075
+libexecdir = ${exec_prefix}/libexec
 
13076
+localstatedir = ${prefix}/var
 
13077
+mandir = ${prefix}/man
 
13078
+mkdir_p = mkdir -p --
 
13079
+oldincludedir = /usr/include
 
13080
+perl_module_fe_lib = 
 
13081
+perl_module_lib = 
 
13082
+perl_static_fe_lib = libfe_perl_static.la
 
13083
+perl_static_lib = libperl_core_static.la
 
13084
+perlpath = /usr/bin/perl
 
13085
+prefix = /usr/local
 
13086
+program_transform_name = s,x,x,
 
13087
+sbindir = ${exec_prefix}/sbin
 
13088
+sedpath = /bin/sed
 
13089
+sharedstatedir = ${prefix}/com
 
13090
+sysconfdir = ${prefix}/etc
 
13091
+target_alias = 
 
13092
+#PLUGINS = plugins
 
13093
+SUBDIRS = src docs scripts
 
13094
+confdir = $(sysconfdir)
 
13095
+conf_DATA = irssi.conf
 
13096
+themedir = $(datadir)/irssi/themes
 
13097
+theme_DATA = default.theme colorless.theme
 
13098
+pkginclude_HEADERS = config.h irssi-version.h
 
13099
+noinst_HEADERS = irssi-version.h.in
 
13100
+EXTRA_DIST = \
 
13101
+       ChangeLog \
 
13102
+       autogen.sh \
 
13103
+       curses.m4 \
 
13104
+       README \
 
13105
+       README.cygwin \
 
13106
+       file2header.sh \
 
13107
+       irssi.spec \
 
13108
+       irssi.spec.in \
 
13109
+       $(conf_DATA) \
 
13110
+       $(theme_DATA) \
 
13111
+       irssi-config.in \
 
13112
+       irssi-icon.png \
 
13113
+       syntax.pl \
 
13114
+       findsyntax.pl
 
13115
+
 
13116
+all: config.h
 
13117
+       $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
13118
+
 
13119
+.SUFFIXES:
 
13120
+am--refresh:
 
13121
+       @:
 
13122
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
13123
+       @for dep in $?; do \
 
13124
+         case '$(am__configure_deps)' in \
 
13125
+           *$$dep*) \
 
13126
+             echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
 
13127
+             cd $(srcdir) && $(AUTOMAKE) --gnu  \
 
13128
+               && exit 0; \
 
13129
+             exit 1;; \
 
13130
+         esac; \
 
13131
+       done; \
 
13132
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  Makefile'; \
 
13133
+       cd $(top_srcdir) && \
 
13134
+         $(AUTOMAKE) --gnu  Makefile
 
13135
+.PRECIOUS: Makefile
 
13136
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
13137
+       @case '$?' in \
 
13138
+         *config.status*) \
 
13139
+           echo ' $(SHELL) ./config.status'; \
 
13140
+           $(SHELL) ./config.status;; \
 
13141
+         *) \
 
13142
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
 
13143
+           cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
 
13144
+       esac;
 
13145
+
 
13146
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
13147
+       $(SHELL) ./config.status --recheck
 
13148
+
 
13149
+$(top_srcdir)/configure:  $(am__configure_deps)
 
13150
+       cd $(srcdir) && $(AUTOCONF)
 
13151
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
13152
+       cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
 
13153
+
 
13154
+stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
 
13155
+       @rm -f stamp-h1
 
13156
+       cd $(top_builddir) && $(SHELL) ./config.status config.h
 
13157
+$(srcdir)/config.h.in:  $(am__configure_deps) $(top_srcdir)/acconfig.h
 
13158
+       cd $(top_srcdir) && $(AUTOHEADER)
 
13159
+       rm -f stamp-h1
 
13160
+       touch $@
 
13161
+
 
13162
+distclean-hdr:
 
13163
+       -rm -f config.h stamp-h1
 
13164
+src/perl/common/Makefile.PL: $(top_builddir)/config.status $(top_srcdir)/src/perl/common/Makefile.PL.in
 
13165
+       cd $(top_builddir) && $(SHELL) ./config.status $@
 
13166
+src/perl/irc/Makefile.PL: $(top_builddir)/config.status $(top_srcdir)/src/perl/irc/Makefile.PL.in
 
13167
+       cd $(top_builddir) && $(SHELL) ./config.status $@
 
13168
+src/perl/ui/Makefile.PL: $(top_builddir)/config.status $(top_srcdir)/src/perl/ui/Makefile.PL.in
 
13169
+       cd $(top_builddir) && $(SHELL) ./config.status $@
 
13170
+src/perl/textui/Makefile.PL: $(top_builddir)/config.status $(top_srcdir)/src/perl/textui/Makefile.PL.in
 
13171
+       cd $(top_builddir) && $(SHELL) ./config.status $@
 
13172
+irssi-version.h: $(top_builddir)/config.status $(srcdir)/irssi-version.h.in
 
13173
+       cd $(top_builddir) && $(SHELL) ./config.status $@
 
13174
+stamp.h: $(top_builddir)/config.status $(srcdir)/stamp.h.in
 
13175
+       cd $(top_builddir) && $(SHELL) ./config.status $@
 
13176
+irssi.spec: $(top_builddir)/config.status $(srcdir)/irssi.spec.in
 
13177
+       cd $(top_builddir) && $(SHELL) ./config.status $@
 
13178
+irssi-config: $(top_builddir)/config.status $(srcdir)/irssi-config.in
 
13179
+       cd $(top_builddir) && $(SHELL) ./config.status $@
 
13180
+
 
13181
+mostlyclean-libtool:
 
13182
+       -rm -f *.lo
 
13183
+
 
13184
+clean-libtool:
 
13185
+       -rm -rf .libs _libs
 
13186
+
 
13187
+distclean-libtool:
 
13188
+       -rm -f libtool
 
13189
+uninstall-info-am:
 
13190
+install-confDATA: $(conf_DATA)
 
13191
+       @$(NORMAL_INSTALL)
 
13192
+       test -z "$(confdir)" || $(mkdir_p) "$(DESTDIR)$(confdir)"
 
13193
+       @list='$(conf_DATA)'; for p in $$list; do \
 
13194
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
13195
+         f=$(am__strip_dir) \
 
13196
+         echo " $(confDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(confdir)/$$f'"; \
 
13197
+         $(confDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(confdir)/$$f"; \
 
13198
+       done
 
13199
+
 
13200
+uninstall-confDATA:
 
13201
+       @$(NORMAL_UNINSTALL)
 
13202
+       @list='$(conf_DATA)'; for p in $$list; do \
 
13203
+         f=$(am__strip_dir) \
 
13204
+         echo " rm -f '$(DESTDIR)$(confdir)/$$f'"; \
 
13205
+         rm -f "$(DESTDIR)$(confdir)/$$f"; \
 
13206
+       done
 
13207
+install-themeDATA: $(theme_DATA)
 
13208
+       @$(NORMAL_INSTALL)
 
13209
+       test -z "$(themedir)" || $(mkdir_p) "$(DESTDIR)$(themedir)"
 
13210
+       @list='$(theme_DATA)'; for p in $$list; do \
 
13211
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
13212
+         f=$(am__strip_dir) \
 
13213
+         echo " $(themeDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(themedir)/$$f'"; \
 
13214
+         $(themeDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(themedir)/$$f"; \
 
13215
+       done
 
13216
+
 
13217
+uninstall-themeDATA:
 
13218
+       @$(NORMAL_UNINSTALL)
 
13219
+       @list='$(theme_DATA)'; for p in $$list; do \
 
13220
+         f=$(am__strip_dir) \
 
13221
+         echo " rm -f '$(DESTDIR)$(themedir)/$$f'"; \
 
13222
+         rm -f "$(DESTDIR)$(themedir)/$$f"; \
 
13223
+       done
 
13224
+install-pkgincludeHEADERS: $(pkginclude_HEADERS)
 
13225
+       @$(NORMAL_INSTALL)
 
13226
+       test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)"
 
13227
+       @list='$(pkginclude_HEADERS)'; for p in $$list; do \
 
13228
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
13229
+         f=$(am__strip_dir) \
 
13230
+         echo " $(pkgincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \
 
13231
+         $(pkgincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \
 
13232
+       done
 
13233
+
 
13234
+uninstall-pkgincludeHEADERS:
 
13235
+       @$(NORMAL_UNINSTALL)
 
13236
+       @list='$(pkginclude_HEADERS)'; for p in $$list; do \
 
13237
+         f=$(am__strip_dir) \
 
13238
+         echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \
 
13239
+         rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \
 
13240
+       done
 
13241
+
 
13242
+# This directory's subdirectories are mostly independent; you can cd
 
13243
+# into them and run `make' without going through this Makefile.
 
13244
+# To change the values of `make' variables: instead of editing Makefiles,
 
13245
+# (1) if the variable is set in `config.status', edit `config.status'
 
13246
+#     (which will cause the Makefiles to be regenerated when you run `make');
 
13247
+# (2) otherwise, pass the desired values on the `make' command line.
 
13248
+$(RECURSIVE_TARGETS):
 
13249
+       @failcom='exit 1'; \
 
13250
+       for f in x $$MAKEFLAGS; do \
 
13251
+         case $$f in \
 
13252
+           *=* | --[!k]*);; \
 
13253
+           *k*) failcom='fail=yes';; \
 
13254
+         esac; \
 
13255
+       done; \
 
13256
+       dot_seen=no; \
 
13257
+       target=`echo $@ | sed s/-recursive//`; \
 
13258
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
13259
+         echo "Making $$target in $$subdir"; \
 
13260
+         if test "$$subdir" = "."; then \
 
13261
+           dot_seen=yes; \
 
13262
+           local_target="$$target-am"; \
 
13263
+         else \
 
13264
+           local_target="$$target"; \
 
13265
+         fi; \
 
13266
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
13267
+         || eval $$failcom; \
 
13268
+       done; \
 
13269
+       if test "$$dot_seen" = "no"; then \
 
13270
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
13271
+       fi; test -z "$$fail"
 
13272
+
 
13273
+mostlyclean-recursive clean-recursive distclean-recursive \
 
13274
+maintainer-clean-recursive:
 
13275
+       @failcom='exit 1'; \
 
13276
+       for f in x $$MAKEFLAGS; do \
 
13277
+         case $$f in \
 
13278
+           *=* | --[!k]*);; \
 
13279
+           *k*) failcom='fail=yes';; \
 
13280
+         esac; \
 
13281
+       done; \
 
13282
+       dot_seen=no; \
 
13283
+       case "$@" in \
 
13284
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
13285
+         *) list='$(SUBDIRS)' ;; \
 
13286
+       esac; \
 
13287
+       rev=''; for subdir in $$list; do \
 
13288
+         if test "$$subdir" = "."; then :; else \
 
13289
+           rev="$$subdir $$rev"; \
 
13290
+         fi; \
 
13291
+       done; \
 
13292
+       rev="$$rev ."; \
 
13293
+       target=`echo $@ | sed s/-recursive//`; \
 
13294
+       for subdir in $$rev; do \
 
13295
+         echo "Making $$target in $$subdir"; \
 
13296
+         if test "$$subdir" = "."; then \
 
13297
+           local_target="$$target-am"; \
 
13298
+         else \
 
13299
+           local_target="$$target"; \
 
13300
+         fi; \
 
13301
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
13302
+         || eval $$failcom; \
 
13303
+       done && test -z "$$fail"
 
13304
+tags-recursive:
 
13305
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
13306
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
13307
+       done
 
13308
+ctags-recursive:
 
13309
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
13310
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
13311
+       done
 
13312
+
 
13313
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
13314
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
13315
+       unique=`for i in $$list; do \
 
13316
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
13317
+         done | \
 
13318
+         $(AWK) '    { files[$$0] = 1; } \
 
13319
+              END { for (i in files) print i; }'`; \
 
13320
+       mkid -fID $$unique
 
13321
+tags: TAGS
 
13322
+
 
13323
+TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
 
13324
+               $(TAGS_FILES) $(LISP)
 
13325
+       tags=; \
 
13326
+       here=`pwd`; \
 
13327
+       if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
13328
+         include_option=--etags-include; \
 
13329
+         empty_fix=.; \
 
13330
+       else \
 
13331
+         include_option=--include; \
 
13332
+         empty_fix=; \
 
13333
+       fi; \
 
13334
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
13335
+         if test "$$subdir" = .; then :; else \
 
13336
+           test ! -f $$subdir/TAGS || \
 
13337
+             tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
13338
+         fi; \
 
13339
+       done; \
 
13340
+       list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
 
13341
+       unique=`for i in $$list; do \
 
13342
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
13343
+         done | \
 
13344
+         $(AWK) '    { files[$$0] = 1; } \
 
13345
+              END { for (i in files) print i; }'`; \
 
13346
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
13347
+         test -n "$$unique" || unique=$$empty_fix; \
 
13348
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
13349
+           $$tags $$unique; \
 
13350
+       fi
 
13351
+ctags: CTAGS
 
13352
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
 
13353
+               $(TAGS_FILES) $(LISP)
 
13354
+       tags=; \
 
13355
+       here=`pwd`; \
 
13356
+       list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
 
13357
+       unique=`for i in $$list; do \
 
13358
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
13359
+         done | \
 
13360
+         $(AWK) '    { files[$$0] = 1; } \
 
13361
+              END { for (i in files) print i; }'`; \
 
13362
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
13363
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
13364
+            $$tags $$unique
 
13365
+
 
13366
+GTAGS:
 
13367
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
13368
+         && cd $(top_srcdir) \
 
13369
+         && gtags -i $(GTAGS_ARGS) $$here
 
13370
+
 
13371
+distclean-tags:
 
13372
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
13373
+
 
13374
+distdir: $(DISTFILES)
 
13375
+       $(am__remove_distdir)
 
13376
+       mkdir $(distdir)
 
13377
+       $(mkdir_p) $(distdir)/. $(distdir)/src/perl/common $(distdir)/src/perl/irc $(distdir)/src/perl/textui $(distdir)/src/perl/ui
 
13378
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
13379
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
13380
+       list='$(DISTFILES)'; for file in $$list; do \
 
13381
+         case $$file in \
 
13382
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
13383
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
13384
+         esac; \
 
13385
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
13386
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
13387
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
13388
+           dir="/$$dir"; \
 
13389
+           $(mkdir_p) "$(distdir)$$dir"; \
 
13390
+         else \
 
13391
+           dir=''; \
 
13392
+         fi; \
 
13393
+         if test -d $$d/$$file; then \
 
13394
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
13395
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
13396
+           fi; \
 
13397
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
13398
+         else \
 
13399
+           test -f $(distdir)/$$file \
 
13400
+           || cp -p $$d/$$file $(distdir)/$$file \
 
13401
+           || exit 1; \
 
13402
+         fi; \
 
13403
+       done
 
13404
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
13405
+         if test "$$subdir" = .; then :; else \
 
13406
+           test -d "$(distdir)/$$subdir" \
 
13407
+           || $(mkdir_p) "$(distdir)/$$subdir" \
 
13408
+           || exit 1; \
 
13409
+           distdir=`$(am__cd) $(distdir) && pwd`; \
 
13410
+           top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
 
13411
+           (cd $$subdir && \
 
13412
+             $(MAKE) $(AM_MAKEFLAGS) \
 
13413
+               top_distdir="$$top_distdir" \
 
13414
+               distdir="$$distdir/$$subdir" \
 
13415
+               distdir) \
 
13416
+             || exit 1; \
 
13417
+         fi; \
 
13418
+       done
 
13419
+       -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
13420
+         ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
 
13421
+         ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
 
13422
+         ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
 
13423
+       || chmod -R a+r $(distdir)
 
13424
+dist-gzip: distdir
 
13425
+       tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
 
13426
+       $(am__remove_distdir)
 
13427
+
 
13428
+dist-bzip2: distdir
 
13429
+       tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
 
13430
+       $(am__remove_distdir)
 
13431
+
 
13432
+dist-tarZ: distdir
 
13433
+       tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
 
13434
+       $(am__remove_distdir)
 
13435
+
 
13436
+dist-shar: distdir
 
13437
+       shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
 
13438
+       $(am__remove_distdir)
 
13439
+
 
13440
+dist-zip: distdir
 
13441
+       -rm -f $(distdir).zip
 
13442
+       zip -rq $(distdir).zip $(distdir)
 
13443
+       $(am__remove_distdir)
 
13444
+
 
13445
+dist dist-all: distdir
 
13446
+       tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
 
13447
+       $(am__remove_distdir)
 
13448
+
 
13449
+# This target untars the dist file and tries a VPATH configuration.  Then
 
13450
+# it guarantees that the distribution is self-contained by making another
 
13451
+# tarfile.
 
13452
+distcheck: dist
 
13453
+       case '$(DIST_ARCHIVES)' in \
 
13454
+       *.tar.gz*) \
 
13455
+         GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
13456
+       *.tar.bz2*) \
 
13457
+         bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
13458
+       *.tar.Z*) \
 
13459
+         uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
 
13460
+       *.shar.gz*) \
 
13461
+         GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
13462
+       *.zip*) \
 
13463
+         unzip $(distdir).zip ;;\
 
13464
+       esac
 
13465
+       chmod -R a-w $(distdir); chmod a+w $(distdir)
 
13466
+       mkdir $(distdir)/_build
 
13467
+       mkdir $(distdir)/_inst
 
13468
+       chmod a-w $(distdir)
 
13469
+       dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
 
13470
+         && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
 
13471
+         && cd $(distdir)/_build \
 
13472
+         && ../configure --srcdir=.. --prefix="$$dc_install_base" \
 
13473
+           $(DISTCHECK_CONFIGURE_FLAGS) \
 
13474
+         && $(MAKE) $(AM_MAKEFLAGS) \
 
13475
+         && $(MAKE) $(AM_MAKEFLAGS) dvi \
 
13476
+         && $(MAKE) $(AM_MAKEFLAGS) check \
 
13477
+         && $(MAKE) $(AM_MAKEFLAGS) install \
 
13478
+         && $(MAKE) $(AM_MAKEFLAGS) installcheck \
 
13479
+         && $(MAKE) $(AM_MAKEFLAGS) uninstall \
 
13480
+         && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
 
13481
+               distuninstallcheck \
 
13482
+         && chmod -R a-w "$$dc_install_base" \
 
13483
+         && ({ \
 
13484
+              (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
 
13485
+              && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
 
13486
+              && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
 
13487
+              && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
 
13488
+                   distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
 
13489
+             } || { rm -rf "$$dc_destdir"; exit 1; }) \
 
13490
+         && rm -rf "$$dc_destdir" \
 
13491
+         && $(MAKE) $(AM_MAKEFLAGS) dist \
 
13492
+         && rm -rf $(DIST_ARCHIVES) \
 
13493
+         && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
 
13494
+       $(am__remove_distdir)
 
13495
+       @(echo "$(distdir) archives ready for distribution: "; \
 
13496
+         list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
 
13497
+         sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
 
13498
+distuninstallcheck:
 
13499
+       @cd $(distuninstallcheck_dir) \
 
13500
+       && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
 
13501
+          || { echo "ERROR: files left after uninstall:" ; \
 
13502
+               if test -n "$(DESTDIR)"; then \
 
13503
+                 echo "  (check DESTDIR support)"; \
 
13504
+               fi ; \
 
13505
+               $(distuninstallcheck_listfiles) ; \
 
13506
+               exit 1; } >&2
 
13507
+distcleancheck: distclean
 
13508
+       @if test '$(srcdir)' = . ; then \
 
13509
+         echo "ERROR: distcleancheck can only run from a VPATH build" ; \
 
13510
+         exit 1 ; \
 
13511
+       fi
 
13512
+       @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
 
13513
+         || { echo "ERROR: files left in build directory after distclean:" ; \
 
13514
+              $(distcleancheck_listfiles) ; \
 
13515
+              exit 1; } >&2
 
13516
+check-am: all-am
 
13517
+check: check-recursive
 
13518
+all-am: Makefile $(DATA) $(HEADERS) config.h
 
13519
+installdirs: installdirs-recursive
 
13520
+installdirs-am:
 
13521
+       for dir in "$(DESTDIR)$(confdir)" "$(DESTDIR)$(themedir)" "$(DESTDIR)$(pkgincludedir)"; do \
 
13522
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
13523
+       done
 
13524
+install: install-recursive
 
13525
+install-exec: install-exec-recursive
 
13526
+install-data: install-data-recursive
 
13527
+uninstall: uninstall-recursive
 
13528
+
 
13529
+install-am: all-am
 
13530
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
13531
+
 
13532
+installcheck: installcheck-recursive
 
13533
+install-strip:
 
13534
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
13535
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
13536
+         `test -z '$(STRIP)' || \
 
13537
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
13538
+mostlyclean-generic:
 
13539
+
 
13540
+clean-generic:
 
13541
+
 
13542
+distclean-generic:
 
13543
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
13544
+
 
13545
+maintainer-clean-generic:
 
13546
+       @echo "This command is intended for maintainers to use"
 
13547
+       @echo "it deletes files that may require special tools to rebuild."
 
13548
+clean: clean-recursive
 
13549
+
 
13550
+clean-am: clean-generic clean-libtool mostlyclean-am
 
13551
+
 
13552
+distclean: distclean-recursive
 
13553
+       -rm -f $(am__CONFIG_DISTCLEAN_FILES)
 
13554
+       -rm -f Makefile
 
13555
+distclean-am: clean-am distclean-generic distclean-hdr \
 
13556
+       distclean-libtool distclean-tags
 
13557
+
 
13558
+dvi: dvi-recursive
 
13559
+
 
13560
+dvi-am:
 
13561
+
 
13562
+html: html-recursive
 
13563
+
 
13564
+info: info-recursive
 
13565
+
 
13566
+info-am:
 
13567
+
 
13568
+install-data-am: install-confDATA install-pkgincludeHEADERS \
 
13569
+       install-themeDATA
 
13570
+
 
13571
+install-exec-am:
 
13572
+
 
13573
+install-info: install-info-recursive
 
13574
+
 
13575
+install-man:
 
13576
+
 
13577
+installcheck-am:
 
13578
+
 
13579
+maintainer-clean: maintainer-clean-recursive
 
13580
+       -rm -f $(am__CONFIG_DISTCLEAN_FILES)
 
13581
+       -rm -rf $(top_srcdir)/autom4te.cache
 
13582
+       -rm -f Makefile
 
13583
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
13584
+
 
13585
+mostlyclean: mostlyclean-recursive
 
13586
+
 
13587
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
13588
+
 
13589
+pdf: pdf-recursive
 
13590
+
 
13591
+pdf-am:
 
13592
+
 
13593
+ps: ps-recursive
 
13594
+
 
13595
+ps-am:
 
13596
+
 
13597
+uninstall-am: uninstall-confDATA uninstall-info-am \
 
13598
+       uninstall-pkgincludeHEADERS uninstall-themeDATA
 
13599
+
 
13600
+uninstall-info: uninstall-info-recursive
 
13601
+
 
13602
+.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
 
13603
+       check-am clean clean-generic clean-libtool clean-recursive \
 
13604
+       ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
 
13605
+       dist-shar dist-tarZ dist-zip distcheck distclean \
 
13606
+       distclean-generic distclean-hdr distclean-libtool \
 
13607
+       distclean-recursive distclean-tags distcleancheck distdir \
 
13608
+       distuninstallcheck dvi dvi-am html html-am info info-am \
 
13609
+       install install-am install-confDATA install-data \
 
13610
+       install-data-am install-exec install-exec-am install-info \
 
13611
+       install-info-am install-man install-pkgincludeHEADERS \
 
13612
+       install-strip install-themeDATA installcheck installcheck-am \
 
13613
+       installdirs installdirs-am maintainer-clean \
 
13614
+       maintainer-clean-generic maintainer-clean-recursive \
 
13615
+       mostlyclean mostlyclean-generic mostlyclean-libtool \
 
13616
+       mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
 
13617
+       uninstall uninstall-am uninstall-confDATA uninstall-info-am \
 
13618
+       uninstall-pkgincludeHEADERS uninstall-themeDATA
 
13619
+
 
13620
+
 
13621
+# create default-config.h
 
13622
+config.h: default-config.h default-theme.h
 
13623
+
 
13624
+default-config.h: $(srcdir)/irssi.conf
 
13625
+       $(srcdir)/file2header.sh $(srcdir)/irssi.conf default_config > default-config.h
 
13626
+default-theme.h: $(srcdir)/default.theme
 
13627
+       $(srcdir)/file2header.sh $(srcdir)/default.theme default_theme > default-theme.h
 
13628
+
 
13629
+rpm: Makefile
 
13630
+       $(MAKE) dist
 
13631
+       rpm -ta --clean $(PACKAGE)-$(VERSION).tar.gz
 
13632
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
13633
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
13634
+.NOEXPORT:
 
13635
diff -urNad --exclude=CVS --exclude=.svn ./Makefile.in /tmp/dpep-work.mDzhRz/irssi/Makefile.in
 
13636
--- ./Makefile.in       2005-07-17 16:30:39.000000000 +0300
 
13637
+++ /tmp/dpep-work.mDzhRz/irssi/Makefile.in     2005-07-17 16:48:15.000000000 +0300
 
13638
@@ -148,6 +148,8 @@
 
13639
 GLIB_LIBS = @GLIB_LIBS@
 
13640
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
13641
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
13642
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
13643
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
13644
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
13645
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
13646
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
13647
@@ -157,6 +159,9 @@
 
13648
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
13649
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
13650
 LDFLAGS = @LDFLAGS@
 
13651
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
13652
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
13653
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
13654
 LIBOBJS = @LIBOBJS@
 
13655
 LIBPERL_A = @LIBPERL_A@
 
13656
 LIBS = @LIBS@
 
13657
diff -urNad --exclude=CVS --exclude=.svn ./scripts/examples/Makefile /tmp/dpep-work.mDzhRz/irssi/scripts/examples/Makefile
 
13658
--- ./scripts/examples/Makefile 1970-01-01 02:00:00.000000000 +0200
 
13659
+++ /tmp/dpep-work.mDzhRz/irssi/scripts/examples/Makefile       2005-07-17 16:48:40.000000000 +0300
 
13660
@@ -0,0 +1,409 @@
 
13661
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
13662
+# scripts/examples/Makefile.  Generated from Makefile.in by configure.
 
13663
+
 
13664
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
13665
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
13666
+# This Makefile.in is free software; the Free Software Foundation
 
13667
+# gives unlimited permission to copy and/or distribute it,
 
13668
+# with or without modifications, as long as this notice is preserved.
 
13669
+
 
13670
+# This program is distributed in the hope that it will be useful,
 
13671
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
13672
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
13673
+# PARTICULAR PURPOSE.
 
13674
+
 
13675
+
 
13676
+
 
13677
+srcdir = .
 
13678
+top_srcdir = ../..
 
13679
+
 
13680
+pkgdatadir = $(datadir)/irssi
 
13681
+pkglibdir = $(libdir)/irssi
 
13682
+pkgincludedir = $(includedir)/irssi
 
13683
+top_builddir = ../..
 
13684
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
13685
+INSTALL = /usr/bin/install -c
 
13686
+install_sh_DATA = $(install_sh) -c -m 644
 
13687
+install_sh_PROGRAM = $(install_sh) -c
 
13688
+install_sh_SCRIPT = $(install_sh) -c
 
13689
+INSTALL_HEADER = $(INSTALL_DATA)
 
13690
+transform = $(program_transform_name)
 
13691
+NORMAL_INSTALL = :
 
13692
+PRE_INSTALL = :
 
13693
+POST_INSTALL = :
 
13694
+NORMAL_UNINSTALL = :
 
13695
+PRE_UNINSTALL = :
 
13696
+POST_UNINSTALL = :
 
13697
+build_triplet = i686-pc-linux-gnu
 
13698
+host_triplet = i686-pc-linux-gnu
 
13699
+subdir = scripts/examples
 
13700
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
13701
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
13702
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
13703
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
13704
+       $(top_srcdir)/configure.in
 
13705
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
13706
+       $(ACLOCAL_M4)
 
13707
+mkinstalldirs = $(install_sh) -d
 
13708
+CONFIG_HEADER = $(top_builddir)/config.h
 
13709
+CONFIG_CLEAN_FILES =
 
13710
+SOURCES =
 
13711
+DIST_SOURCES =
 
13712
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
13713
+am__vpath_adj = case $$p in \
 
13714
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
13715
+    *) f=$$p;; \
 
13716
+  esac;
 
13717
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
13718
+am__installdirs = "$(DESTDIR)$(scriptdir)"
 
13719
+scriptDATA_INSTALL = $(INSTALL_DATA)
 
13720
+DATA = $(script_DATA)
 
13721
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
13722
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
13723
+AMDEP_FALSE = #
 
13724
+AMDEP_TRUE = 
 
13725
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
13726
+AR = ar
 
13727
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
13728
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
13729
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
13730
+AWK = gawk
 
13731
+BUILD_IRSSIBOT_FALSE = 
 
13732
+BUILD_IRSSIBOT_TRUE = #
 
13733
+BUILD_IRSSIPROXY_FALSE = 
 
13734
+BUILD_IRSSIPROXY_TRUE = #
 
13735
+BUILD_PLUGINS_FALSE = 
 
13736
+BUILD_PLUGINS_TRUE = #
 
13737
+BUILD_TEXTUI_FALSE = #
 
13738
+BUILD_TEXTUI_TRUE = 
 
13739
+CC = gcc
 
13740
+CCDEPMODE = depmode=gcc3
 
13741
+CFLAGS = -g -O2 -Wall  
 
13742
+CHAT_MODULES = irc
 
13743
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
13744
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
13745
+CPP = gcc -E
 
13746
+CPPFLAGS = 
 
13747
+CURSES_INCLUDEDIR = 
 
13748
+CURSES_LIBS = -lncurses
 
13749
+CXX = g++
 
13750
+CXXCPP = g++ -E
 
13751
+CXXDEPMODE = depmode=gcc3
 
13752
+CXXFLAGS = -g -O2
 
13753
+CYGPATH_W = echo
 
13754
+DEFS = -DHAVE_CONFIG_H
 
13755
+DEPDIR = .deps
 
13756
+DYNALOADER_A = 
 
13757
+ECHO = echo
 
13758
+ECHO_C = 
 
13759
+ECHO_N = -n
 
13760
+ECHO_T = 
 
13761
+EGREP = grep -E
 
13762
+EXEEXT = 
 
13763
+F77 = 
 
13764
+FFLAGS = 
 
13765
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
13766
+GLIB_CONFIG = 
 
13767
+GLIB_GENMARSHAL = glib-genmarshal
 
13768
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
13769
+GLIB_MKENUMS = glib-mkenums
 
13770
+GOBJECT_QUERY = gobject-query
 
13771
+HAVE_GNUTLS_FALSE = #
 
13772
+HAVE_GNUTLS_TRUE = 
 
13773
+HAVE_PERL_FALSE = #
 
13774
+HAVE_PERL_TRUE = 
 
13775
+HAVE_STATIC_PERL_FALSE = #
 
13776
+HAVE_STATIC_PERL_TRUE = 
 
13777
+INSTALL_DATA = ${INSTALL} -m 644
 
13778
+INSTALL_PROGRAM = ${INSTALL}
 
13779
+INSTALL_SCRIPT = ${INSTALL}
 
13780
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
13781
+LDFLAGS = 
 
13782
+LIBGNUTLS_CFLAGS = -I/usr/include
 
13783
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
13784
+LIBGNUTLS_LIBS = -lgnutls
 
13785
+LIBOBJS = 
 
13786
+LIBPERL_A = 
 
13787
+LIBS = 
 
13788
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
13789
+LN_S = ln -s
 
13790
+LTLIBOBJS = 
 
13791
+MAINT = 
 
13792
+MAINTAINER_MODE_FALSE = #
 
13793
+MAINTAINER_MODE_TRUE = 
 
13794
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
13795
+NEED_TPARM_FALSE = 
 
13796
+NEED_TPARM_TRUE = #
 
13797
+OBJEXT = o
 
13798
+PACKAGE = irssi
 
13799
+PACKAGE_BUGREPORT = 
 
13800
+PACKAGE_NAME = 
 
13801
+PACKAGE_STRING = 
 
13802
+PACKAGE_TARNAME = 
 
13803
+PACKAGE_VERSION = 
 
13804
+PATH_SEPARATOR = :
 
13805
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
13806
+PERL_EXTRA_OPTS = 
 
13807
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
13808
+PERL_LDFLAGS = 
 
13809
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
13810
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
13811
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
13812
+PERL_MM_PARAMS = 
 
13813
+PERL_STATIC_LIBS = 0
 
13814
+PERL_USE_LIB = 
 
13815
+PKG_CONFIG = /usr/bin/pkg-config
 
13816
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
13817
+RANLIB = ranlib
 
13818
+SET_MAKE = 
 
13819
+SHELL = /bin/sh
 
13820
+SSL_CFLAGS =  
 
13821
+SSL_LIBS = -lssl -lcrypto -ldl  
 
13822
+STRIP = strip
 
13823
+TEXTUI_LIBS = -lncurses
 
13824
+USE_CURSES_FALSE = 
 
13825
+USE_CURSES_TRUE = #
 
13826
+VERSION = 0.8.10-rc5
 
13827
+VERSION_DATE = 20050717
 
13828
+VERSION_TIME = 1223
 
13829
+ac_ct_AR = ar
 
13830
+ac_ct_CC = gcc
 
13831
+ac_ct_CXX = g++
 
13832
+ac_ct_F77 = 
 
13833
+ac_ct_RANLIB = ranlib
 
13834
+ac_ct_STRIP = strip
 
13835
+ac_pt_PKG_CONFIG = 
 
13836
+am__fastdepCC_FALSE = #
 
13837
+am__fastdepCC_TRUE = 
 
13838
+am__fastdepCXX_FALSE = #
 
13839
+am__fastdepCXX_TRUE = 
 
13840
+am__include = include
 
13841
+am__leading_dot = .
 
13842
+am__quote = 
 
13843
+am__tar = ${AMTAR} chof - "$$tardir"
 
13844
+am__untar = ${AMTAR} xf -
 
13845
+bindir = ${exec_prefix}/bin
 
13846
+build = i686-pc-linux-gnu
 
13847
+build_alias = 
 
13848
+build_cpu = i686
 
13849
+build_os = linux-gnu
 
13850
+build_vendor = pc
 
13851
+datadir = ${prefix}/share
 
13852
+exec_prefix = ${prefix}
 
13853
+host = i686-pc-linux-gnu
 
13854
+host_alias = 
 
13855
+host_cpu = i686
 
13856
+host_os = linux-gnu
 
13857
+host_vendor = pc
 
13858
+includedir = ${prefix}/include
 
13859
+infodir = ${prefix}/info
 
13860
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
13861
+irc_MODULES = dcc flood notifylist
 
13862
+libdir = ${exec_prefix}/lib
 
13863
+libexecdir = ${exec_prefix}/libexec
 
13864
+localstatedir = ${prefix}/var
 
13865
+mandir = ${prefix}/man
 
13866
+mkdir_p = mkdir -p --
 
13867
+oldincludedir = /usr/include
 
13868
+perl_module_fe_lib = 
 
13869
+perl_module_lib = 
 
13870
+perl_static_fe_lib = libfe_perl_static.la
 
13871
+perl_static_lib = libperl_core_static.la
 
13872
+perlpath = /usr/bin/perl
 
13873
+prefix = /usr/local
 
13874
+program_transform_name = s,x,x,
 
13875
+sbindir = ${exec_prefix}/sbin
 
13876
+sedpath = /bin/sed
 
13877
+sharedstatedir = ${prefix}/com
 
13878
+sysconfdir = ${prefix}/etc
 
13879
+target_alias = 
 
13880
+scriptdir = $(datadir)/irssi/scripts
 
13881
+script_DATA = \
 
13882
+       command.pl \
 
13883
+       msg-event.pl \
 
13884
+       redirect.pl
 
13885
+
 
13886
+EXTRA_DIST = $(script_DATA)
 
13887
+all: all-am
 
13888
+
 
13889
+.SUFFIXES:
 
13890
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
13891
+       @for dep in $?; do \
 
13892
+         case '$(am__configure_deps)' in \
 
13893
+           *$$dep*) \
 
13894
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
13895
+               && exit 0; \
 
13896
+             exit 1;; \
 
13897
+         esac; \
 
13898
+       done; \
 
13899
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  scripts/examples/Makefile'; \
 
13900
+       cd $(top_srcdir) && \
 
13901
+         $(AUTOMAKE) --gnu  scripts/examples/Makefile
 
13902
+.PRECIOUS: Makefile
 
13903
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
13904
+       @case '$?' in \
 
13905
+         *config.status*) \
 
13906
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
13907
+         *) \
 
13908
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
13909
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
13910
+       esac;
 
13911
+
 
13912
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
13913
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
13914
+
 
13915
+$(top_srcdir)/configure:  $(am__configure_deps)
 
13916
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
13917
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
13918
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
13919
+
 
13920
+mostlyclean-libtool:
 
13921
+       -rm -f *.lo
 
13922
+
 
13923
+clean-libtool:
 
13924
+       -rm -rf .libs _libs
 
13925
+
 
13926
+distclean-libtool:
 
13927
+       -rm -f libtool
 
13928
+uninstall-info-am:
 
13929
+install-scriptDATA: $(script_DATA)
 
13930
+       @$(NORMAL_INSTALL)
 
13931
+       test -z "$(scriptdir)" || $(mkdir_p) "$(DESTDIR)$(scriptdir)"
 
13932
+       @list='$(script_DATA)'; for p in $$list; do \
 
13933
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
13934
+         f=$(am__strip_dir) \
 
13935
+         echo " $(scriptDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(scriptdir)/$$f'"; \
 
13936
+         $(scriptDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(scriptdir)/$$f"; \
 
13937
+       done
 
13938
+
 
13939
+uninstall-scriptDATA:
 
13940
+       @$(NORMAL_UNINSTALL)
 
13941
+       @list='$(script_DATA)'; for p in $$list; do \
 
13942
+         f=$(am__strip_dir) \
 
13943
+         echo " rm -f '$(DESTDIR)$(scriptdir)/$$f'"; \
 
13944
+         rm -f "$(DESTDIR)$(scriptdir)/$$f"; \
 
13945
+       done
 
13946
+tags: TAGS
 
13947
+TAGS:
 
13948
+
 
13949
+ctags: CTAGS
 
13950
+CTAGS:
 
13951
+
 
13952
+
 
13953
+distdir: $(DISTFILES)
 
13954
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
13955
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
13956
+       list='$(DISTFILES)'; for file in $$list; do \
 
13957
+         case $$file in \
 
13958
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
13959
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
13960
+         esac; \
 
13961
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
13962
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
13963
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
13964
+           dir="/$$dir"; \
 
13965
+           $(mkdir_p) "$(distdir)$$dir"; \
 
13966
+         else \
 
13967
+           dir=''; \
 
13968
+         fi; \
 
13969
+         if test -d $$d/$$file; then \
 
13970
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
13971
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
13972
+           fi; \
 
13973
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
13974
+         else \
 
13975
+           test -f $(distdir)/$$file \
 
13976
+           || cp -p $$d/$$file $(distdir)/$$file \
 
13977
+           || exit 1; \
 
13978
+         fi; \
 
13979
+       done
 
13980
+check-am: all-am
 
13981
+check: check-am
 
13982
+all-am: Makefile $(DATA)
 
13983
+installdirs:
 
13984
+       for dir in "$(DESTDIR)$(scriptdir)"; do \
 
13985
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
13986
+       done
 
13987
+install: install-am
 
13988
+install-exec: install-exec-am
 
13989
+install-data: install-data-am
 
13990
+uninstall: uninstall-am
 
13991
+
 
13992
+install-am: all-am
 
13993
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
13994
+
 
13995
+installcheck: installcheck-am
 
13996
+install-strip:
 
13997
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
13998
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
13999
+         `test -z '$(STRIP)' || \
 
14000
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
14001
+mostlyclean-generic:
 
14002
+
 
14003
+clean-generic:
 
14004
+
 
14005
+distclean-generic:
 
14006
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
14007
+
 
14008
+maintainer-clean-generic:
 
14009
+       @echo "This command is intended for maintainers to use"
 
14010
+       @echo "it deletes files that may require special tools to rebuild."
 
14011
+clean: clean-am
 
14012
+
 
14013
+clean-am: clean-generic clean-libtool mostlyclean-am
 
14014
+
 
14015
+distclean: distclean-am
 
14016
+       -rm -f Makefile
 
14017
+distclean-am: clean-am distclean-generic distclean-libtool
 
14018
+
 
14019
+dvi: dvi-am
 
14020
+
 
14021
+dvi-am:
 
14022
+
 
14023
+html: html-am
 
14024
+
 
14025
+info: info-am
 
14026
+
 
14027
+info-am:
 
14028
+
 
14029
+install-data-am: install-scriptDATA
 
14030
+
 
14031
+install-exec-am:
 
14032
+
 
14033
+install-info: install-info-am
 
14034
+
 
14035
+install-man:
 
14036
+
 
14037
+installcheck-am:
 
14038
+
 
14039
+maintainer-clean: maintainer-clean-am
 
14040
+       -rm -f Makefile
 
14041
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
14042
+
 
14043
+mostlyclean: mostlyclean-am
 
14044
+
 
14045
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
14046
+
 
14047
+pdf: pdf-am
 
14048
+
 
14049
+pdf-am:
 
14050
+
 
14051
+ps: ps-am
 
14052
+
 
14053
+ps-am:
 
14054
+
 
14055
+uninstall-am: uninstall-info-am uninstall-scriptDATA
 
14056
+
 
14057
+.PHONY: all all-am check check-am clean clean-generic clean-libtool \
 
14058
+       distclean distclean-generic distclean-libtool distdir dvi \
 
14059
+       dvi-am html html-am info info-am install install-am \
 
14060
+       install-data install-data-am install-exec install-exec-am \
 
14061
+       install-info install-info-am install-man install-scriptDATA \
 
14062
+       install-strip installcheck installcheck-am installdirs \
 
14063
+       maintainer-clean maintainer-clean-generic mostlyclean \
 
14064
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
14065
+       uninstall uninstall-am uninstall-info-am uninstall-scriptDATA
 
14066
+
 
14067
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
14068
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
14069
+.NOEXPORT:
 
14070
diff -urNad --exclude=CVS --exclude=.svn ./scripts/examples/Makefile.in /tmp/dpep-work.mDzhRz/irssi/scripts/examples/Makefile.in
 
14071
--- ./scripts/examples/Makefile.in      2005-07-17 16:30:30.000000000 +0300
 
14072
+++ /tmp/dpep-work.mDzhRz/irssi/scripts/examples/Makefile.in    2005-07-17 16:48:06.000000000 +0300
 
14073
@@ -108,6 +108,8 @@
 
14074
 GLIB_LIBS = @GLIB_LIBS@
 
14075
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
14076
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
14077
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
14078
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
14079
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
14080
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
14081
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
14082
@@ -117,6 +119,9 @@
 
14083
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
14084
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
14085
 LDFLAGS = @LDFLAGS@
 
14086
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
14087
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
14088
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
14089
 LIBOBJS = @LIBOBJS@
 
14090
 LIBPERL_A = @LIBPERL_A@
 
14091
 LIBS = @LIBS@
 
14092
diff -urNad --exclude=CVS --exclude=.svn ./scripts/Makefile /tmp/dpep-work.mDzhRz/irssi/scripts/Makefile
 
14093
--- ./scripts/Makefile  1970-01-01 02:00:00.000000000 +0200
 
14094
+++ /tmp/dpep-work.mDzhRz/irssi/scripts/Makefile        2005-07-17 16:48:40.000000000 +0300
 
14095
@@ -0,0 +1,576 @@
 
14096
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
14097
+# scripts/Makefile.  Generated from Makefile.in by configure.
 
14098
+
 
14099
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
14100
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
14101
+# This Makefile.in is free software; the Free Software Foundation
 
14102
+# gives unlimited permission to copy and/or distribute it,
 
14103
+# with or without modifications, as long as this notice is preserved.
 
14104
+
 
14105
+# This program is distributed in the hope that it will be useful,
 
14106
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
14107
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
14108
+# PARTICULAR PURPOSE.
 
14109
+
 
14110
+
 
14111
+
 
14112
+srcdir = .
 
14113
+top_srcdir = ..
 
14114
+
 
14115
+pkgdatadir = $(datadir)/irssi
 
14116
+pkglibdir = $(libdir)/irssi
 
14117
+pkgincludedir = $(includedir)/irssi
 
14118
+top_builddir = ..
 
14119
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
14120
+INSTALL = /usr/bin/install -c
 
14121
+install_sh_DATA = $(install_sh) -c -m 644
 
14122
+install_sh_PROGRAM = $(install_sh) -c
 
14123
+install_sh_SCRIPT = $(install_sh) -c
 
14124
+INSTALL_HEADER = $(INSTALL_DATA)
 
14125
+transform = $(program_transform_name)
 
14126
+NORMAL_INSTALL = :
 
14127
+PRE_INSTALL = :
 
14128
+POST_INSTALL = :
 
14129
+NORMAL_UNINSTALL = :
 
14130
+PRE_UNINSTALL = :
 
14131
+POST_UNINSTALL = :
 
14132
+build_triplet = i686-pc-linux-gnu
 
14133
+host_triplet = i686-pc-linux-gnu
 
14134
+subdir = scripts
 
14135
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
14136
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
14137
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
14138
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
14139
+       $(top_srcdir)/configure.in
 
14140
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
14141
+       $(ACLOCAL_M4)
 
14142
+mkinstalldirs = $(install_sh) -d
 
14143
+CONFIG_HEADER = $(top_builddir)/config.h
 
14144
+CONFIG_CLEAN_FILES =
 
14145
+SOURCES =
 
14146
+DIST_SOURCES =
 
14147
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
14148
+       html-recursive info-recursive install-data-recursive \
 
14149
+       install-exec-recursive install-info-recursive \
 
14150
+       install-recursive installcheck-recursive installdirs-recursive \
 
14151
+       pdf-recursive ps-recursive uninstall-info-recursive \
 
14152
+       uninstall-recursive
 
14153
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
14154
+am__vpath_adj = case $$p in \
 
14155
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
14156
+    *) f=$$p;; \
 
14157
+  esac;
 
14158
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
14159
+am__installdirs = "$(DESTDIR)$(scriptdir)"
 
14160
+scriptDATA_INSTALL = $(INSTALL_DATA)
 
14161
+DATA = $(script_DATA)
 
14162
+ETAGS = etags
 
14163
+CTAGS = ctags
 
14164
+DIST_SUBDIRS = $(SUBDIRS)
 
14165
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
14166
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
14167
+AMDEP_FALSE = #
 
14168
+AMDEP_TRUE = 
 
14169
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
14170
+AR = ar
 
14171
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
14172
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
14173
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
14174
+AWK = gawk
 
14175
+BUILD_IRSSIBOT_FALSE = 
 
14176
+BUILD_IRSSIBOT_TRUE = #
 
14177
+BUILD_IRSSIPROXY_FALSE = 
 
14178
+BUILD_IRSSIPROXY_TRUE = #
 
14179
+BUILD_PLUGINS_FALSE = 
 
14180
+BUILD_PLUGINS_TRUE = #
 
14181
+BUILD_TEXTUI_FALSE = #
 
14182
+BUILD_TEXTUI_TRUE = 
 
14183
+CC = gcc
 
14184
+CCDEPMODE = depmode=gcc3
 
14185
+CFLAGS = -g -O2 -Wall  
 
14186
+CHAT_MODULES = irc
 
14187
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
14188
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
14189
+CPP = gcc -E
 
14190
+CPPFLAGS = 
 
14191
+CURSES_INCLUDEDIR = 
 
14192
+CURSES_LIBS = -lncurses
 
14193
+CXX = g++
 
14194
+CXXCPP = g++ -E
 
14195
+CXXDEPMODE = depmode=gcc3
 
14196
+CXXFLAGS = -g -O2
 
14197
+CYGPATH_W = echo
 
14198
+DEFS = -DHAVE_CONFIG_H
 
14199
+DEPDIR = .deps
 
14200
+DYNALOADER_A = 
 
14201
+ECHO = echo
 
14202
+ECHO_C = 
 
14203
+ECHO_N = -n
 
14204
+ECHO_T = 
 
14205
+EGREP = grep -E
 
14206
+EXEEXT = 
 
14207
+F77 = 
 
14208
+FFLAGS = 
 
14209
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
14210
+GLIB_CONFIG = 
 
14211
+GLIB_GENMARSHAL = glib-genmarshal
 
14212
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
14213
+GLIB_MKENUMS = glib-mkenums
 
14214
+GOBJECT_QUERY = gobject-query
 
14215
+HAVE_GNUTLS_FALSE = #
 
14216
+HAVE_GNUTLS_TRUE = 
 
14217
+HAVE_PERL_FALSE = #
 
14218
+HAVE_PERL_TRUE = 
 
14219
+HAVE_STATIC_PERL_FALSE = #
 
14220
+HAVE_STATIC_PERL_TRUE = 
 
14221
+INSTALL_DATA = ${INSTALL} -m 644
 
14222
+INSTALL_PROGRAM = ${INSTALL}
 
14223
+INSTALL_SCRIPT = ${INSTALL}
 
14224
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
14225
+LDFLAGS = 
 
14226
+LIBGNUTLS_CFLAGS = -I/usr/include
 
14227
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
14228
+LIBGNUTLS_LIBS = -lgnutls
 
14229
+LIBOBJS = 
 
14230
+LIBPERL_A = 
 
14231
+LIBS = 
 
14232
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
14233
+LN_S = ln -s
 
14234
+LTLIBOBJS = 
 
14235
+MAINT = 
 
14236
+MAINTAINER_MODE_FALSE = #
 
14237
+MAINTAINER_MODE_TRUE = 
 
14238
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
14239
+NEED_TPARM_FALSE = 
 
14240
+NEED_TPARM_TRUE = #
 
14241
+OBJEXT = o
 
14242
+PACKAGE = irssi
 
14243
+PACKAGE_BUGREPORT = 
 
14244
+PACKAGE_NAME = 
 
14245
+PACKAGE_STRING = 
 
14246
+PACKAGE_TARNAME = 
 
14247
+PACKAGE_VERSION = 
 
14248
+PATH_SEPARATOR = :
 
14249
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
14250
+PERL_EXTRA_OPTS = 
 
14251
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
14252
+PERL_LDFLAGS = 
 
14253
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
14254
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
14255
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
14256
+PERL_MM_PARAMS = 
 
14257
+PERL_STATIC_LIBS = 0
 
14258
+PERL_USE_LIB = 
 
14259
+PKG_CONFIG = /usr/bin/pkg-config
 
14260
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
14261
+RANLIB = ranlib
 
14262
+SET_MAKE = 
 
14263
+SHELL = /bin/sh
 
14264
+SSL_CFLAGS =  
 
14265
+SSL_LIBS = -lssl -lcrypto -ldl  
 
14266
+STRIP = strip
 
14267
+TEXTUI_LIBS = -lncurses
 
14268
+USE_CURSES_FALSE = 
 
14269
+USE_CURSES_TRUE = #
 
14270
+VERSION = 0.8.10-rc5
 
14271
+VERSION_DATE = 20050717
 
14272
+VERSION_TIME = 1223
 
14273
+ac_ct_AR = ar
 
14274
+ac_ct_CC = gcc
 
14275
+ac_ct_CXX = g++
 
14276
+ac_ct_F77 = 
 
14277
+ac_ct_RANLIB = ranlib
 
14278
+ac_ct_STRIP = strip
 
14279
+ac_pt_PKG_CONFIG = 
 
14280
+am__fastdepCC_FALSE = #
 
14281
+am__fastdepCC_TRUE = 
 
14282
+am__fastdepCXX_FALSE = #
 
14283
+am__fastdepCXX_TRUE = 
 
14284
+am__include = include
 
14285
+am__leading_dot = .
 
14286
+am__quote = 
 
14287
+am__tar = ${AMTAR} chof - "$$tardir"
 
14288
+am__untar = ${AMTAR} xf -
 
14289
+bindir = ${exec_prefix}/bin
 
14290
+build = i686-pc-linux-gnu
 
14291
+build_alias = 
 
14292
+build_cpu = i686
 
14293
+build_os = linux-gnu
 
14294
+build_vendor = pc
 
14295
+datadir = ${prefix}/share
 
14296
+exec_prefix = ${prefix}
 
14297
+host = i686-pc-linux-gnu
 
14298
+host_alias = 
 
14299
+host_cpu = i686
 
14300
+host_os = linux-gnu
 
14301
+host_vendor = pc
 
14302
+includedir = ${prefix}/include
 
14303
+infodir = ${prefix}/info
 
14304
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
14305
+irc_MODULES = dcc flood notifylist
 
14306
+libdir = ${exec_prefix}/lib
 
14307
+libexecdir = ${exec_prefix}/libexec
 
14308
+localstatedir = ${prefix}/var
 
14309
+mandir = ${prefix}/man
 
14310
+mkdir_p = mkdir -p --
 
14311
+oldincludedir = /usr/include
 
14312
+perl_module_fe_lib = 
 
14313
+perl_module_lib = 
 
14314
+perl_static_fe_lib = libfe_perl_static.la
 
14315
+perl_static_lib = libperl_core_static.la
 
14316
+perlpath = /usr/bin/perl
 
14317
+prefix = /usr/local
 
14318
+program_transform_name = s,x,x,
 
14319
+sbindir = ${exec_prefix}/sbin
 
14320
+sedpath = /bin/sed
 
14321
+sharedstatedir = ${prefix}/com
 
14322
+sysconfdir = ${prefix}/etc
 
14323
+target_alias = 
 
14324
+SUBDIRS = examples
 
14325
+scriptdir = $(datadir)/irssi/scripts
 
14326
+script_DATA = \
 
14327
+       autoop.pl \
 
14328
+       autorejoin.pl \
 
14329
+       buf.pl \
 
14330
+       dns.pl \
 
14331
+       kills.pl \
 
14332
+       mail.pl \
 
14333
+       mlock.pl \
 
14334
+       quitmsg.pl \
 
14335
+       scriptassist.pl \
 
14336
+       splitlong.pl \
 
14337
+       usercount.pl
 
14338
+
 
14339
+EXTRA_DIST = $(script_DATA)
 
14340
+all: all-recursive
 
14341
+
 
14342
+.SUFFIXES:
 
14343
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
14344
+       @for dep in $?; do \
 
14345
+         case '$(am__configure_deps)' in \
 
14346
+           *$$dep*) \
 
14347
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
14348
+               && exit 0; \
 
14349
+             exit 1;; \
 
14350
+         esac; \
 
14351
+       done; \
 
14352
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  scripts/Makefile'; \
 
14353
+       cd $(top_srcdir) && \
 
14354
+         $(AUTOMAKE) --gnu  scripts/Makefile
 
14355
+.PRECIOUS: Makefile
 
14356
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
14357
+       @case '$?' in \
 
14358
+         *config.status*) \
 
14359
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
14360
+         *) \
 
14361
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
14362
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
14363
+       esac;
 
14364
+
 
14365
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
14366
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
14367
+
 
14368
+$(top_srcdir)/configure:  $(am__configure_deps)
 
14369
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
14370
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
14371
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
14372
+
 
14373
+mostlyclean-libtool:
 
14374
+       -rm -f *.lo
 
14375
+
 
14376
+clean-libtool:
 
14377
+       -rm -rf .libs _libs
 
14378
+
 
14379
+distclean-libtool:
 
14380
+       -rm -f libtool
 
14381
+uninstall-info-am:
 
14382
+install-scriptDATA: $(script_DATA)
 
14383
+       @$(NORMAL_INSTALL)
 
14384
+       test -z "$(scriptdir)" || $(mkdir_p) "$(DESTDIR)$(scriptdir)"
 
14385
+       @list='$(script_DATA)'; for p in $$list; do \
 
14386
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
14387
+         f=$(am__strip_dir) \
 
14388
+         echo " $(scriptDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(scriptdir)/$$f'"; \
 
14389
+         $(scriptDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(scriptdir)/$$f"; \
 
14390
+       done
 
14391
+
 
14392
+uninstall-scriptDATA:
 
14393
+       @$(NORMAL_UNINSTALL)
 
14394
+       @list='$(script_DATA)'; for p in $$list; do \
 
14395
+         f=$(am__strip_dir) \
 
14396
+         echo " rm -f '$(DESTDIR)$(scriptdir)/$$f'"; \
 
14397
+         rm -f "$(DESTDIR)$(scriptdir)/$$f"; \
 
14398
+       done
 
14399
+
 
14400
+# This directory's subdirectories are mostly independent; you can cd
 
14401
+# into them and run `make' without going through this Makefile.
 
14402
+# To change the values of `make' variables: instead of editing Makefiles,
 
14403
+# (1) if the variable is set in `config.status', edit `config.status'
 
14404
+#     (which will cause the Makefiles to be regenerated when you run `make');
 
14405
+# (2) otherwise, pass the desired values on the `make' command line.
 
14406
+$(RECURSIVE_TARGETS):
 
14407
+       @failcom='exit 1'; \
 
14408
+       for f in x $$MAKEFLAGS; do \
 
14409
+         case $$f in \
 
14410
+           *=* | --[!k]*);; \
 
14411
+           *k*) failcom='fail=yes';; \
 
14412
+         esac; \
 
14413
+       done; \
 
14414
+       dot_seen=no; \
 
14415
+       target=`echo $@ | sed s/-recursive//`; \
 
14416
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
14417
+         echo "Making $$target in $$subdir"; \
 
14418
+         if test "$$subdir" = "."; then \
 
14419
+           dot_seen=yes; \
 
14420
+           local_target="$$target-am"; \
 
14421
+         else \
 
14422
+           local_target="$$target"; \
 
14423
+         fi; \
 
14424
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
14425
+         || eval $$failcom; \
 
14426
+       done; \
 
14427
+       if test "$$dot_seen" = "no"; then \
 
14428
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
14429
+       fi; test -z "$$fail"
 
14430
+
 
14431
+mostlyclean-recursive clean-recursive distclean-recursive \
 
14432
+maintainer-clean-recursive:
 
14433
+       @failcom='exit 1'; \
 
14434
+       for f in x $$MAKEFLAGS; do \
 
14435
+         case $$f in \
 
14436
+           *=* | --[!k]*);; \
 
14437
+           *k*) failcom='fail=yes';; \
 
14438
+         esac; \
 
14439
+       done; \
 
14440
+       dot_seen=no; \
 
14441
+       case "$@" in \
 
14442
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
14443
+         *) list='$(SUBDIRS)' ;; \
 
14444
+       esac; \
 
14445
+       rev=''; for subdir in $$list; do \
 
14446
+         if test "$$subdir" = "."; then :; else \
 
14447
+           rev="$$subdir $$rev"; \
 
14448
+         fi; \
 
14449
+       done; \
 
14450
+       rev="$$rev ."; \
 
14451
+       target=`echo $@ | sed s/-recursive//`; \
 
14452
+       for subdir in $$rev; do \
 
14453
+         echo "Making $$target in $$subdir"; \
 
14454
+         if test "$$subdir" = "."; then \
 
14455
+           local_target="$$target-am"; \
 
14456
+         else \
 
14457
+           local_target="$$target"; \
 
14458
+         fi; \
 
14459
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
14460
+         || eval $$failcom; \
 
14461
+       done && test -z "$$fail"
 
14462
+tags-recursive:
 
14463
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
14464
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
14465
+       done
 
14466
+ctags-recursive:
 
14467
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
14468
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
14469
+       done
 
14470
+
 
14471
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
14472
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
14473
+       unique=`for i in $$list; do \
 
14474
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
14475
+         done | \
 
14476
+         $(AWK) '    { files[$$0] = 1; } \
 
14477
+              END { for (i in files) print i; }'`; \
 
14478
+       mkid -fID $$unique
 
14479
+tags: TAGS
 
14480
+
 
14481
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
14482
+               $(TAGS_FILES) $(LISP)
 
14483
+       tags=; \
 
14484
+       here=`pwd`; \
 
14485
+       if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
14486
+         include_option=--etags-include; \
 
14487
+         empty_fix=.; \
 
14488
+       else \
 
14489
+         include_option=--include; \
 
14490
+         empty_fix=; \
 
14491
+       fi; \
 
14492
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
14493
+         if test "$$subdir" = .; then :; else \
 
14494
+           test ! -f $$subdir/TAGS || \
 
14495
+             tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
14496
+         fi; \
 
14497
+       done; \
 
14498
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
14499
+       unique=`for i in $$list; do \
 
14500
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
14501
+         done | \
 
14502
+         $(AWK) '    { files[$$0] = 1; } \
 
14503
+              END { for (i in files) print i; }'`; \
 
14504
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
14505
+         test -n "$$unique" || unique=$$empty_fix; \
 
14506
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
14507
+           $$tags $$unique; \
 
14508
+       fi
 
14509
+ctags: CTAGS
 
14510
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
14511
+               $(TAGS_FILES) $(LISP)
 
14512
+       tags=; \
 
14513
+       here=`pwd`; \
 
14514
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
14515
+       unique=`for i in $$list; do \
 
14516
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
14517
+         done | \
 
14518
+         $(AWK) '    { files[$$0] = 1; } \
 
14519
+              END { for (i in files) print i; }'`; \
 
14520
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
14521
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
14522
+            $$tags $$unique
 
14523
+
 
14524
+GTAGS:
 
14525
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
14526
+         && cd $(top_srcdir) \
 
14527
+         && gtags -i $(GTAGS_ARGS) $$here
 
14528
+
 
14529
+distclean-tags:
 
14530
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
14531
+
 
14532
+distdir: $(DISTFILES)
 
14533
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
14534
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
14535
+       list='$(DISTFILES)'; for file in $$list; do \
 
14536
+         case $$file in \
 
14537
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
14538
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
14539
+         esac; \
 
14540
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
14541
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
14542
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
14543
+           dir="/$$dir"; \
 
14544
+           $(mkdir_p) "$(distdir)$$dir"; \
 
14545
+         else \
 
14546
+           dir=''; \
 
14547
+         fi; \
 
14548
+         if test -d $$d/$$file; then \
 
14549
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
14550
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
14551
+           fi; \
 
14552
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
14553
+         else \
 
14554
+           test -f $(distdir)/$$file \
 
14555
+           || cp -p $$d/$$file $(distdir)/$$file \
 
14556
+           || exit 1; \
 
14557
+         fi; \
 
14558
+       done
 
14559
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
14560
+         if test "$$subdir" = .; then :; else \
 
14561
+           test -d "$(distdir)/$$subdir" \
 
14562
+           || $(mkdir_p) "$(distdir)/$$subdir" \
 
14563
+           || exit 1; \
 
14564
+           distdir=`$(am__cd) $(distdir) && pwd`; \
 
14565
+           top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
 
14566
+           (cd $$subdir && \
 
14567
+             $(MAKE) $(AM_MAKEFLAGS) \
 
14568
+               top_distdir="$$top_distdir" \
 
14569
+               distdir="$$distdir/$$subdir" \
 
14570
+               distdir) \
 
14571
+             || exit 1; \
 
14572
+         fi; \
 
14573
+       done
 
14574
+check-am: all-am
 
14575
+check: check-recursive
 
14576
+all-am: Makefile $(DATA)
 
14577
+installdirs: installdirs-recursive
 
14578
+installdirs-am:
 
14579
+       for dir in "$(DESTDIR)$(scriptdir)"; do \
 
14580
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
14581
+       done
 
14582
+install: install-recursive
 
14583
+install-exec: install-exec-recursive
 
14584
+install-data: install-data-recursive
 
14585
+uninstall: uninstall-recursive
 
14586
+
 
14587
+install-am: all-am
 
14588
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
14589
+
 
14590
+installcheck: installcheck-recursive
 
14591
+install-strip:
 
14592
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
14593
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
14594
+         `test -z '$(STRIP)' || \
 
14595
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
14596
+mostlyclean-generic:
 
14597
+
 
14598
+clean-generic:
 
14599
+
 
14600
+distclean-generic:
 
14601
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
14602
+
 
14603
+maintainer-clean-generic:
 
14604
+       @echo "This command is intended for maintainers to use"
 
14605
+       @echo "it deletes files that may require special tools to rebuild."
 
14606
+clean: clean-recursive
 
14607
+
 
14608
+clean-am: clean-generic clean-libtool mostlyclean-am
 
14609
+
 
14610
+distclean: distclean-recursive
 
14611
+       -rm -f Makefile
 
14612
+distclean-am: clean-am distclean-generic distclean-libtool \
 
14613
+       distclean-tags
 
14614
+
 
14615
+dvi: dvi-recursive
 
14616
+
 
14617
+dvi-am:
 
14618
+
 
14619
+html: html-recursive
 
14620
+
 
14621
+info: info-recursive
 
14622
+
 
14623
+info-am:
 
14624
+
 
14625
+install-data-am: install-scriptDATA
 
14626
+
 
14627
+install-exec-am:
 
14628
+
 
14629
+install-info: install-info-recursive
 
14630
+
 
14631
+install-man:
 
14632
+
 
14633
+installcheck-am:
 
14634
+
 
14635
+maintainer-clean: maintainer-clean-recursive
 
14636
+       -rm -f Makefile
 
14637
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
14638
+
 
14639
+mostlyclean: mostlyclean-recursive
 
14640
+
 
14641
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
14642
+
 
14643
+pdf: pdf-recursive
 
14644
+
 
14645
+pdf-am:
 
14646
+
 
14647
+ps: ps-recursive
 
14648
+
 
14649
+ps-am:
 
14650
+
 
14651
+uninstall-am: uninstall-info-am uninstall-scriptDATA
 
14652
+
 
14653
+uninstall-info: uninstall-info-recursive
 
14654
+
 
14655
+.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
 
14656
+       clean clean-generic clean-libtool clean-recursive ctags \
 
14657
+       ctags-recursive distclean distclean-generic distclean-libtool \
 
14658
+       distclean-recursive distclean-tags distdir dvi dvi-am html \
 
14659
+       html-am info info-am install install-am install-data \
 
14660
+       install-data-am install-exec install-exec-am install-info \
 
14661
+       install-info-am install-man install-scriptDATA install-strip \
 
14662
+       installcheck installcheck-am installdirs installdirs-am \
 
14663
+       maintainer-clean maintainer-clean-generic \
 
14664
+       maintainer-clean-recursive mostlyclean mostlyclean-generic \
 
14665
+       mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
 
14666
+       tags tags-recursive uninstall uninstall-am uninstall-info-am \
 
14667
+       uninstall-scriptDATA
 
14668
+
 
14669
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
14670
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
14671
+.NOEXPORT:
 
14672
diff -urNad --exclude=CVS --exclude=.svn ./scripts/Makefile.in /tmp/dpep-work.mDzhRz/irssi/scripts/Makefile.in
 
14673
--- ./scripts/Makefile.in       2005-07-17 16:30:30.000000000 +0300
 
14674
+++ /tmp/dpep-work.mDzhRz/irssi/scripts/Makefile.in     2005-07-17 16:48:06.000000000 +0300
 
14675
@@ -117,6 +117,8 @@
 
14676
 GLIB_LIBS = @GLIB_LIBS@
 
14677
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
14678
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
14679
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
14680
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
14681
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
14682
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
14683
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
14684
@@ -126,6 +128,9 @@
 
14685
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
14686
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
14687
 LDFLAGS = @LDFLAGS@
 
14688
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
14689
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
14690
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
14691
 LIBOBJS = @LIBOBJS@
 
14692
 LIBPERL_A = @LIBPERL_A@
 
14693
 LIBS = @LIBS@
 
14694
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/args.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/args.Po
 
14695
--- ./src/core/.deps/args.Po    1970-01-01 02:00:00.000000000 +0200
 
14696
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/args.Po  2005-07-17 16:48:41.000000000 +0300
 
14697
@@ -0,0 +1 @@
 
14698
+# dummy
 
14699
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/channels.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/channels.Po
 
14700
--- ./src/core/.deps/channels.Po        1970-01-01 02:00:00.000000000 +0200
 
14701
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/channels.Po      2005-07-17 16:48:41.000000000 +0300
 
14702
@@ -0,0 +1 @@
 
14703
+# dummy
 
14704
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/channels-setup.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/channels-setup.Po
 
14705
--- ./src/core/.deps/channels-setup.Po  1970-01-01 02:00:00.000000000 +0200
 
14706
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/channels-setup.Po        2005-07-17 16:48:41.000000000 +0300
 
14707
@@ -0,0 +1 @@
 
14708
+# dummy
 
14709
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/chat-commands.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/chat-commands.Po
 
14710
--- ./src/core/.deps/chat-commands.Po   1970-01-01 02:00:00.000000000 +0200
 
14711
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/chat-commands.Po 2005-07-17 16:48:41.000000000 +0300
 
14712
@@ -0,0 +1 @@
 
14713
+# dummy
 
14714
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/chatnets.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/chatnets.Po
 
14715
--- ./src/core/.deps/chatnets.Po        1970-01-01 02:00:00.000000000 +0200
 
14716
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/chatnets.Po      2005-07-17 16:48:41.000000000 +0300
 
14717
@@ -0,0 +1 @@
 
14718
+# dummy
 
14719
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/chat-protocols.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/chat-protocols.Po
 
14720
--- ./src/core/.deps/chat-protocols.Po  1970-01-01 02:00:00.000000000 +0200
 
14721
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/chat-protocols.Po        2005-07-17 16:48:41.000000000 +0300
 
14722
@@ -0,0 +1 @@
 
14723
+# dummy
 
14724
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/commands.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/commands.Po
 
14725
--- ./src/core/.deps/commands.Po        1970-01-01 02:00:00.000000000 +0200
 
14726
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/commands.Po      2005-07-17 16:48:41.000000000 +0300
 
14727
@@ -0,0 +1 @@
 
14728
+# dummy
 
14729
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/core.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/core.Po
 
14730
--- ./src/core/.deps/core.Po    1970-01-01 02:00:00.000000000 +0200
 
14731
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/core.Po  2005-07-17 16:48:41.000000000 +0300
 
14732
@@ -0,0 +1 @@
 
14733
+# dummy
 
14734
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/expandos.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/expandos.Po
 
14735
--- ./src/core/.deps/expandos.Po        1970-01-01 02:00:00.000000000 +0200
 
14736
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/expandos.Po      2005-07-17 16:48:41.000000000 +0300
 
14737
@@ -0,0 +1 @@
 
14738
+# dummy
 
14739
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/ignore.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/ignore.Po
 
14740
--- ./src/core/.deps/ignore.Po  1970-01-01 02:00:00.000000000 +0200
 
14741
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/ignore.Po        2005-07-17 16:48:41.000000000 +0300
 
14742
@@ -0,0 +1 @@
 
14743
+# dummy
 
14744
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/levels.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/levels.Po
 
14745
--- ./src/core/.deps/levels.Po  1970-01-01 02:00:00.000000000 +0200
 
14746
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/levels.Po        2005-07-17 16:48:41.000000000 +0300
 
14747
@@ -0,0 +1 @@
 
14748
+# dummy
 
14749
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/line-split.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/line-split.Po
 
14750
--- ./src/core/.deps/line-split.Po      1970-01-01 02:00:00.000000000 +0200
 
14751
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/line-split.Po    2005-07-17 16:48:41.000000000 +0300
 
14752
@@ -0,0 +1 @@
 
14753
+# dummy
 
14754
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/log-away.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/log-away.Po
 
14755
--- ./src/core/.deps/log-away.Po        1970-01-01 02:00:00.000000000 +0200
 
14756
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/log-away.Po      2005-07-17 16:48:41.000000000 +0300
 
14757
@@ -0,0 +1 @@
 
14758
+# dummy
 
14759
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/log.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/log.Po
 
14760
--- ./src/core/.deps/log.Po     1970-01-01 02:00:00.000000000 +0200
 
14761
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/log.Po   2005-07-17 16:48:41.000000000 +0300
 
14762
@@ -0,0 +1 @@
 
14763
+# dummy
 
14764
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/masks.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/masks.Po
 
14765
--- ./src/core/.deps/masks.Po   1970-01-01 02:00:00.000000000 +0200
 
14766
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/masks.Po 2005-07-17 16:48:41.000000000 +0300
 
14767
@@ -0,0 +1 @@
 
14768
+# dummy
 
14769
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/misc.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/misc.Po
 
14770
--- ./src/core/.deps/misc.Po    1970-01-01 02:00:00.000000000 +0200
 
14771
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/misc.Po  2005-07-17 16:48:41.000000000 +0300
 
14772
@@ -0,0 +1 @@
 
14773
+# dummy
 
14774
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/modules-load.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/modules-load.Po
 
14775
--- ./src/core/.deps/modules-load.Po    1970-01-01 02:00:00.000000000 +0200
 
14776
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/modules-load.Po  2005-07-17 16:48:41.000000000 +0300
 
14777
@@ -0,0 +1 @@
 
14778
+# dummy
 
14779
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/modules.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/modules.Po
 
14780
--- ./src/core/.deps/modules.Po 1970-01-01 02:00:00.000000000 +0200
 
14781
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/modules.Po       2005-07-17 16:48:41.000000000 +0300
 
14782
@@ -0,0 +1 @@
 
14783
+# dummy
 
14784
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/net-disconnect.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/net-disconnect.Po
 
14785
--- ./src/core/.deps/net-disconnect.Po  1970-01-01 02:00:00.000000000 +0200
 
14786
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/net-disconnect.Po        2005-07-17 16:48:41.000000000 +0300
 
14787
@@ -0,0 +1 @@
 
14788
+# dummy
 
14789
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/net-nonblock.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/net-nonblock.Po
 
14790
--- ./src/core/.deps/net-nonblock.Po    1970-01-01 02:00:00.000000000 +0200
 
14791
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/net-nonblock.Po  2005-07-17 16:48:41.000000000 +0300
 
14792
@@ -0,0 +1 @@
 
14793
+# dummy
 
14794
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/net-sendbuffer.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/net-sendbuffer.Po
 
14795
--- ./src/core/.deps/net-sendbuffer.Po  1970-01-01 02:00:00.000000000 +0200
 
14796
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/net-sendbuffer.Po        2005-07-17 16:48:41.000000000 +0300
 
14797
@@ -0,0 +1 @@
 
14798
+# dummy
 
14799
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/network-gnutls.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/network-gnutls.Po
 
14800
--- ./src/core/.deps/network-gnutls.Po  1970-01-01 02:00:00.000000000 +0200
 
14801
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/network-gnutls.Po        2005-07-17 16:48:41.000000000 +0300
 
14802
@@ -0,0 +1 @@
 
14803
+# dummy
 
14804
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/network.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/network.Po
 
14805
--- ./src/core/.deps/network.Po 1970-01-01 02:00:00.000000000 +0200
 
14806
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/network.Po       2005-07-17 16:48:41.000000000 +0300
 
14807
@@ -0,0 +1 @@
 
14808
+# dummy
 
14809
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/nicklist.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/nicklist.Po
 
14810
--- ./src/core/.deps/nicklist.Po        1970-01-01 02:00:00.000000000 +0200
 
14811
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/nicklist.Po      2005-07-17 16:48:41.000000000 +0300
 
14812
@@ -0,0 +1 @@
 
14813
+# dummy
 
14814
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/nickmatch-cache.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/nickmatch-cache.Po
 
14815
--- ./src/core/.deps/nickmatch-cache.Po 1970-01-01 02:00:00.000000000 +0200
 
14816
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/nickmatch-cache.Po       2005-07-17 16:48:41.000000000 +0300
 
14817
@@ -0,0 +1 @@
 
14818
+# dummy
 
14819
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/pidwait.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/pidwait.Po
 
14820
--- ./src/core/.deps/pidwait.Po 1970-01-01 02:00:00.000000000 +0200
 
14821
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/pidwait.Po       2005-07-17 16:48:41.000000000 +0300
 
14822
@@ -0,0 +1 @@
 
14823
+# dummy
 
14824
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/queries.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/queries.Po
 
14825
--- ./src/core/.deps/queries.Po 1970-01-01 02:00:00.000000000 +0200
 
14826
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/queries.Po       2005-07-17 16:48:41.000000000 +0300
 
14827
@@ -0,0 +1 @@
 
14828
+# dummy
 
14829
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/rawlog.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/rawlog.Po
 
14830
--- ./src/core/.deps/rawlog.Po  1970-01-01 02:00:00.000000000 +0200
 
14831
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/rawlog.Po        2005-07-17 16:48:41.000000000 +0300
 
14832
@@ -0,0 +1 @@
 
14833
+# dummy
 
14834
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/recode.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/recode.Po
 
14835
--- ./src/core/.deps/recode.Po  1970-01-01 02:00:00.000000000 +0200
 
14836
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/recode.Po        2005-07-17 16:48:41.000000000 +0300
 
14837
@@ -0,0 +1 @@
 
14838
+# dummy
 
14839
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/servers.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/servers.Po
 
14840
--- ./src/core/.deps/servers.Po 1970-01-01 02:00:00.000000000 +0200
 
14841
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/servers.Po       2005-07-17 16:48:41.000000000 +0300
 
14842
@@ -0,0 +1 @@
 
14843
+# dummy
 
14844
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/servers-reconnect.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/servers-reconnect.Po
 
14845
--- ./src/core/.deps/servers-reconnect.Po       1970-01-01 02:00:00.000000000 +0200
 
14846
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/servers-reconnect.Po     2005-07-17 16:48:41.000000000 +0300
 
14847
@@ -0,0 +1 @@
 
14848
+# dummy
 
14849
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/servers-setup.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/servers-setup.Po
 
14850
--- ./src/core/.deps/servers-setup.Po   1970-01-01 02:00:00.000000000 +0200
 
14851
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/servers-setup.Po 2005-07-17 16:48:41.000000000 +0300
 
14852
@@ -0,0 +1 @@
 
14853
+# dummy
 
14854
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/session.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/session.Po
 
14855
--- ./src/core/.deps/session.Po 1970-01-01 02:00:00.000000000 +0200
 
14856
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/session.Po       2005-07-17 16:48:41.000000000 +0300
 
14857
@@ -0,0 +1 @@
 
14858
+# dummy
 
14859
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/settings.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/settings.Po
 
14860
--- ./src/core/.deps/settings.Po        1970-01-01 02:00:00.000000000 +0200
 
14861
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/settings.Po      2005-07-17 16:48:41.000000000 +0300
 
14862
@@ -0,0 +1 @@
 
14863
+# dummy
 
14864
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/signals.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/signals.Po
 
14865
--- ./src/core/.deps/signals.Po 1970-01-01 02:00:00.000000000 +0200
 
14866
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/signals.Po       2005-07-17 16:48:41.000000000 +0300
 
14867
@@ -0,0 +1 @@
 
14868
+# dummy
 
14869
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/special-vars.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/special-vars.Po
 
14870
--- ./src/core/.deps/special-vars.Po    1970-01-01 02:00:00.000000000 +0200
 
14871
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/special-vars.Po  2005-07-17 16:48:41.000000000 +0300
 
14872
@@ -0,0 +1 @@
 
14873
+# dummy
 
14874
diff -urNad --exclude=CVS --exclude=.svn ./src/core/.deps/write-buffer.Po /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/write-buffer.Po
 
14875
--- ./src/core/.deps/write-buffer.Po    1970-01-01 02:00:00.000000000 +0200
 
14876
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/.deps/write-buffer.Po  2005-07-17 16:48:41.000000000 +0300
 
14877
@@ -0,0 +1 @@
 
14878
+# dummy
 
14879
diff -urNad --exclude=CVS --exclude=.svn ./src/core/Makefile /tmp/dpep-work.mDzhRz/irssi/src/core/Makefile
 
14880
--- ./src/core/Makefile 1970-01-01 02:00:00.000000000 +0200
 
14881
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/Makefile       2005-07-17 16:48:38.000000000 +0300
 
14882
@@ -0,0 +1,665 @@
 
14883
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
14884
+# src/core/Makefile.  Generated from Makefile.in by configure.
 
14885
+
 
14886
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
14887
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
14888
+# This Makefile.in is free software; the Free Software Foundation
 
14889
+# gives unlimited permission to copy and/or distribute it,
 
14890
+# with or without modifications, as long as this notice is preserved.
 
14891
+
 
14892
+# This program is distributed in the hope that it will be useful,
 
14893
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
14894
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
14895
+# PARTICULAR PURPOSE.
 
14896
+
 
14897
+
 
14898
+
 
14899
+
 
14900
+srcdir = .
 
14901
+top_srcdir = ../..
 
14902
+
 
14903
+pkgdatadir = $(datadir)/irssi
 
14904
+pkglibdir = $(libdir)/irssi
 
14905
+pkgincludedir = $(includedir)/irssi
 
14906
+top_builddir = ../..
 
14907
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
14908
+INSTALL = /usr/bin/install -c
 
14909
+install_sh_DATA = $(install_sh) -c -m 644
 
14910
+install_sh_PROGRAM = $(install_sh) -c
 
14911
+install_sh_SCRIPT = $(install_sh) -c
 
14912
+INSTALL_HEADER = $(INSTALL_DATA)
 
14913
+transform = $(program_transform_name)
 
14914
+NORMAL_INSTALL = :
 
14915
+PRE_INSTALL = :
 
14916
+POST_INSTALL = :
 
14917
+NORMAL_UNINSTALL = :
 
14918
+PRE_UNINSTALL = :
 
14919
+POST_UNINSTALL = :
 
14920
+build_triplet = i686-pc-linux-gnu
 
14921
+host_triplet = i686-pc-linux-gnu
 
14922
+subdir = src/core
 
14923
+DIST_COMMON = $(pkginc_core_HEADERS) $(srcdir)/Makefile.am \
 
14924
+       $(srcdir)/Makefile.in
 
14925
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
14926
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
14927
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
14928
+       $(top_srcdir)/configure.in
 
14929
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
14930
+       $(ACLOCAL_M4)
 
14931
+mkinstalldirs = $(install_sh) -d
 
14932
+CONFIG_HEADER = $(top_builddir)/config.h
 
14933
+CONFIG_CLEAN_FILES =
 
14934
+LIBRARIES = $(noinst_LIBRARIES)
 
14935
+ARFLAGS = cru
 
14936
+libcore_a_AR = $(AR) $(ARFLAGS)
 
14937
+libcore_a_LIBADD =
 
14938
+am__objects_1 = network-gnutls.$(OBJEXT)
 
14939
+am_libcore_a_OBJECTS = args.$(OBJEXT) channels.$(OBJEXT) \
 
14940
+       channels-setup.$(OBJEXT) commands.$(OBJEXT) \
 
14941
+       chat-commands.$(OBJEXT) chat-protocols.$(OBJEXT) \
 
14942
+       chatnets.$(OBJEXT) core.$(OBJEXT) expandos.$(OBJEXT) \
 
14943
+       ignore.$(OBJEXT) levels.$(OBJEXT) line-split.$(OBJEXT) \
 
14944
+       log.$(OBJEXT) log-away.$(OBJEXT) masks.$(OBJEXT) \
 
14945
+       misc.$(OBJEXT) modules.$(OBJEXT) modules-load.$(OBJEXT) \
 
14946
+       net-disconnect.$(OBJEXT) net-nonblock.$(OBJEXT) \
 
14947
+       net-sendbuffer.$(OBJEXT) network.$(OBJEXT) $(am__objects_1) \
 
14948
+       nicklist.$(OBJEXT) nickmatch-cache.$(OBJEXT) pidwait.$(OBJEXT) \
 
14949
+       queries.$(OBJEXT) rawlog.$(OBJEXT) recode.$(OBJEXT) \
 
14950
+       servers.$(OBJEXT) servers-reconnect.$(OBJEXT) \
 
14951
+       servers-setup.$(OBJEXT) session.$(OBJEXT) settings.$(OBJEXT) \
 
14952
+       signals.$(OBJEXT) special-vars.$(OBJEXT) \
 
14953
+       write-buffer.$(OBJEXT)
 
14954
+libcore_a_OBJECTS = $(am_libcore_a_OBJECTS)
 
14955
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
14956
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
14957
+am__depfiles_maybe = depfiles
 
14958
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
14959
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
14960
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
14961
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
14962
+       $(AM_CFLAGS) $(CFLAGS)
 
14963
+CCLD = $(CC)
 
14964
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
14965
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
14966
+SOURCES = $(libcore_a_SOURCES)
 
14967
+DIST_SOURCES = $(libcore_a_SOURCES)
 
14968
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
14969
+am__vpath_adj = case $$p in \
 
14970
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
14971
+    *) f=$$p;; \
 
14972
+  esac;
 
14973
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
14974
+am__installdirs = "$(DESTDIR)$(pkginc_coredir)"
 
14975
+pkginc_coreHEADERS_INSTALL = $(INSTALL_HEADER)
 
14976
+HEADERS = $(pkginc_core_HEADERS)
 
14977
+ETAGS = etags
 
14978
+CTAGS = ctags
 
14979
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
14980
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
14981
+AMDEP_FALSE = #
 
14982
+AMDEP_TRUE = 
 
14983
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
14984
+AR = ar
 
14985
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
14986
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
14987
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
14988
+AWK = gawk
 
14989
+BUILD_IRSSIBOT_FALSE = 
 
14990
+BUILD_IRSSIBOT_TRUE = #
 
14991
+BUILD_IRSSIPROXY_FALSE = 
 
14992
+BUILD_IRSSIPROXY_TRUE = #
 
14993
+BUILD_PLUGINS_FALSE = 
 
14994
+BUILD_PLUGINS_TRUE = #
 
14995
+BUILD_TEXTUI_FALSE = #
 
14996
+BUILD_TEXTUI_TRUE = 
 
14997
+CC = gcc
 
14998
+CCDEPMODE = depmode=gcc3
 
14999
+CFLAGS = -g -O2 -Wall  
 
15000
+CHAT_MODULES = irc
 
15001
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
15002
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
15003
+CPP = gcc -E
 
15004
+CPPFLAGS = 
 
15005
+CURSES_INCLUDEDIR = 
 
15006
+CURSES_LIBS = -lncurses
 
15007
+CXX = g++
 
15008
+CXXCPP = g++ -E
 
15009
+CXXDEPMODE = depmode=gcc3
 
15010
+CXXFLAGS = -g -O2
 
15011
+CYGPATH_W = echo
 
15012
+DEFS = -DHAVE_CONFIG_H
 
15013
+DEPDIR = .deps
 
15014
+DYNALOADER_A = 
 
15015
+ECHO = echo
 
15016
+ECHO_C = 
 
15017
+ECHO_N = -n
 
15018
+ECHO_T = 
 
15019
+EGREP = grep -E
 
15020
+EXEEXT = 
 
15021
+F77 = 
 
15022
+FFLAGS = 
 
15023
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
15024
+GLIB_CONFIG = 
 
15025
+GLIB_GENMARSHAL = glib-genmarshal
 
15026
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
15027
+GLIB_MKENUMS = glib-mkenums
 
15028
+GOBJECT_QUERY = gobject-query
 
15029
+HAVE_GNUTLS_FALSE = #
 
15030
+HAVE_GNUTLS_TRUE = 
 
15031
+HAVE_PERL_FALSE = #
 
15032
+HAVE_PERL_TRUE = 
 
15033
+HAVE_STATIC_PERL_FALSE = #
 
15034
+HAVE_STATIC_PERL_TRUE = 
 
15035
+INSTALL_DATA = ${INSTALL} -m 644
 
15036
+INSTALL_PROGRAM = ${INSTALL}
 
15037
+INSTALL_SCRIPT = ${INSTALL}
 
15038
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
15039
+LDFLAGS = 
 
15040
+LIBGNUTLS_CFLAGS = -I/usr/include
 
15041
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
15042
+LIBGNUTLS_LIBS = -lgnutls
 
15043
+LIBOBJS = 
 
15044
+LIBPERL_A = 
 
15045
+LIBS = 
 
15046
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
15047
+LN_S = ln -s
 
15048
+LTLIBOBJS = 
 
15049
+MAINT = 
 
15050
+MAINTAINER_MODE_FALSE = #
 
15051
+MAINTAINER_MODE_TRUE = 
 
15052
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
15053
+NEED_TPARM_FALSE = 
 
15054
+NEED_TPARM_TRUE = #
 
15055
+OBJEXT = o
 
15056
+PACKAGE = irssi
 
15057
+PACKAGE_BUGREPORT = 
 
15058
+PACKAGE_NAME = 
 
15059
+PACKAGE_STRING = 
 
15060
+PACKAGE_TARNAME = 
 
15061
+PACKAGE_VERSION = 
 
15062
+PATH_SEPARATOR = :
 
15063
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
15064
+PERL_EXTRA_OPTS = 
 
15065
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
15066
+PERL_LDFLAGS = 
 
15067
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
15068
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
15069
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
15070
+PERL_MM_PARAMS = 
 
15071
+PERL_STATIC_LIBS = 0
 
15072
+PERL_USE_LIB = 
 
15073
+PKG_CONFIG = /usr/bin/pkg-config
 
15074
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
15075
+RANLIB = ranlib
 
15076
+SET_MAKE = 
 
15077
+SHELL = /bin/sh
 
15078
+SSL_CFLAGS =  
 
15079
+SSL_LIBS = -lssl -lcrypto -ldl  
 
15080
+STRIP = strip
 
15081
+TEXTUI_LIBS = -lncurses
 
15082
+USE_CURSES_FALSE = 
 
15083
+USE_CURSES_TRUE = #
 
15084
+VERSION = 0.8.10-rc5
 
15085
+VERSION_DATE = 20050717
 
15086
+VERSION_TIME = 1223
 
15087
+ac_ct_AR = ar
 
15088
+ac_ct_CC = gcc
 
15089
+ac_ct_CXX = g++
 
15090
+ac_ct_F77 = 
 
15091
+ac_ct_RANLIB = ranlib
 
15092
+ac_ct_STRIP = strip
 
15093
+ac_pt_PKG_CONFIG = 
 
15094
+am__fastdepCC_FALSE = #
 
15095
+am__fastdepCC_TRUE = 
 
15096
+am__fastdepCXX_FALSE = #
 
15097
+am__fastdepCXX_TRUE = 
 
15098
+am__include = include
 
15099
+am__leading_dot = .
 
15100
+am__quote = 
 
15101
+am__tar = ${AMTAR} chof - "$$tardir"
 
15102
+am__untar = ${AMTAR} xf -
 
15103
+bindir = ${exec_prefix}/bin
 
15104
+build = i686-pc-linux-gnu
 
15105
+build_alias = 
 
15106
+build_cpu = i686
 
15107
+build_os = linux-gnu
 
15108
+build_vendor = pc
 
15109
+datadir = ${prefix}/share
 
15110
+exec_prefix = ${prefix}
 
15111
+host = i686-pc-linux-gnu
 
15112
+host_alias = 
 
15113
+host_cpu = i686
 
15114
+host_os = linux-gnu
 
15115
+host_vendor = pc
 
15116
+includedir = ${prefix}/include
 
15117
+infodir = ${prefix}/info
 
15118
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
15119
+irc_MODULES = dcc flood notifylist
 
15120
+libdir = ${exec_prefix}/lib
 
15121
+libexecdir = ${exec_prefix}/libexec
 
15122
+localstatedir = ${prefix}/var
 
15123
+mandir = ${prefix}/man
 
15124
+mkdir_p = mkdir -p --
 
15125
+oldincludedir = /usr/include
 
15126
+perl_module_fe_lib = 
 
15127
+perl_module_lib = 
 
15128
+perl_static_fe_lib = libfe_perl_static.la
 
15129
+perl_static_lib = libperl_core_static.la
 
15130
+perlpath = /usr/bin/perl
 
15131
+prefix = /usr/local
 
15132
+program_transform_name = s,x,x,
 
15133
+sbindir = ${exec_prefix}/sbin
 
15134
+sedpath = /bin/sed
 
15135
+sharedstatedir = ${prefix}/com
 
15136
+sysconfdir = ${prefix}/etc
 
15137
+target_alias = 
 
15138
+noinst_LIBRARIES = libcore.a
 
15139
+INCLUDES = \
 
15140
+       -I$(top_srcdir)/src \
 
15141
+       -I$(top_srcdir)/src/core \
 
15142
+       $(GLIB_CFLAGS) \
 
15143
+       -DSYSCONFDIR=\""$(sysconfdir)"\" \
 
15144
+       -DMODULEDIR=\""$(libdir)/irssi/modules"\"
 
15145
+
 
15146
+
 
15147
+#if HAVE_OPENSSL
 
15148
+#SSL = network-openssl.c
 
15149
+#else
 
15150
+SSL = network-gnutls.c
 
15151
+#endif
 
15152
+libcore_a_SOURCES = \
 
15153
+       args.c \
 
15154
+       channels.c \
 
15155
+       channels-setup.c \
 
15156
+       commands.c \
 
15157
+       chat-commands.c \
 
15158
+       chat-protocols.c \
 
15159
+       chatnets.c \
 
15160
+       core.c \
 
15161
+       expandos.c \
 
15162
+        ignore.c \
 
15163
+        levels.c \
 
15164
+       line-split.c \
 
15165
+       log.c \
 
15166
+       log-away.c \
 
15167
+       masks.c \
 
15168
+       misc.c \
 
15169
+       modules.c \
 
15170
+       modules-load.c \
 
15171
+       net-disconnect.c \
 
15172
+       net-nonblock.c \
 
15173
+       net-sendbuffer.c \
 
15174
+       network.c \
 
15175
+       $(SSL) \
 
15176
+       nicklist.c \
 
15177
+       nickmatch-cache.c \
 
15178
+       pidwait.c \
 
15179
+       queries.c \
 
15180
+       rawlog.c \
 
15181
+       recode.c \
 
15182
+       servers.c \
 
15183
+       servers-reconnect.c \
 
15184
+       servers-setup.c \
 
15185
+       session.c \
 
15186
+       settings.c \
 
15187
+       signals.c \
 
15188
+       special-vars.c \
 
15189
+       write-buffer.c
 
15190
+
 
15191
+structure_headers = \
 
15192
+       channel-rec.h \
 
15193
+       channel-setup-rec.h \
 
15194
+       chatnet-rec.h \
 
15195
+       query-rec.h \
 
15196
+       server-rec.h \
 
15197
+       server-setup-rec.h \
 
15198
+       server-connect-rec.h \
 
15199
+       window-item-rec.h
 
15200
+
 
15201
+pkginc_coredir = $(pkgincludedir)/src/core
 
15202
+pkginc_core_HEADERS = \
 
15203
+       args.h \
 
15204
+       channels.h \
 
15205
+       channels-setup.h \
 
15206
+       commands.h \
 
15207
+       chat-protocols.h \
 
15208
+       chatnets.h \
 
15209
+       core.h \
 
15210
+       expandos.h \
 
15211
+        ignore.h \
 
15212
+        levels.h \
 
15213
+       line-split.h \
 
15214
+       log.h \
 
15215
+       masks.h \
 
15216
+       misc.h \
 
15217
+       module.h \
 
15218
+       modules.h \
 
15219
+       modules-load.h \
 
15220
+       net-disconnect.h \
 
15221
+       net-nonblock.h \
 
15222
+       net-sendbuffer.h \
 
15223
+       network.h \
 
15224
+       nick-rec.h \
 
15225
+       nicklist.h \
 
15226
+       nickmatch-cache.h \
 
15227
+       pidwait.h \
 
15228
+       queries.h \
 
15229
+       rawlog.h \
 
15230
+       recode.h \
 
15231
+       servers.h \
 
15232
+       servers-reconnect.h \
 
15233
+       servers-setup.h \
 
15234
+       session.h \
 
15235
+       settings.h \
 
15236
+       signals.h \
 
15237
+       special-vars.h \
 
15238
+       window-item-def.h \
 
15239
+       write-buffer.h \
 
15240
+       $(structure_headers)
 
15241
+
 
15242
+all: all-am
 
15243
+
 
15244
+.SUFFIXES:
 
15245
+.SUFFIXES: .c .lo .o .obj
 
15246
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
15247
+       @for dep in $?; do \
 
15248
+         case '$(am__configure_deps)' in \
 
15249
+           *$$dep*) \
 
15250
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
15251
+               && exit 0; \
 
15252
+             exit 1;; \
 
15253
+         esac; \
 
15254
+       done; \
 
15255
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/core/Makefile'; \
 
15256
+       cd $(top_srcdir) && \
 
15257
+         $(AUTOMAKE) --gnu  src/core/Makefile
 
15258
+.PRECIOUS: Makefile
 
15259
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
15260
+       @case '$?' in \
 
15261
+         *config.status*) \
 
15262
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
15263
+         *) \
 
15264
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
15265
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
15266
+       esac;
 
15267
+
 
15268
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
15269
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
15270
+
 
15271
+$(top_srcdir)/configure:  $(am__configure_deps)
 
15272
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
15273
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
15274
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
15275
+
 
15276
+clean-noinstLIBRARIES:
 
15277
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
15278
+libcore.a: $(libcore_a_OBJECTS) $(libcore_a_DEPENDENCIES) 
 
15279
+       -rm -f libcore.a
 
15280
+       $(libcore_a_AR) libcore.a $(libcore_a_OBJECTS) $(libcore_a_LIBADD)
 
15281
+       $(RANLIB) libcore.a
 
15282
+
 
15283
+mostlyclean-compile:
 
15284
+       -rm -f *.$(OBJEXT)
 
15285
+
 
15286
+distclean-compile:
 
15287
+       -rm -f *.tab.c
 
15288
+
 
15289
+include ./$(DEPDIR)/args.Po
 
15290
+include ./$(DEPDIR)/channels-setup.Po
 
15291
+include ./$(DEPDIR)/channels.Po
 
15292
+include ./$(DEPDIR)/chat-commands.Po
 
15293
+include ./$(DEPDIR)/chat-protocols.Po
 
15294
+include ./$(DEPDIR)/chatnets.Po
 
15295
+include ./$(DEPDIR)/commands.Po
 
15296
+include ./$(DEPDIR)/core.Po
 
15297
+include ./$(DEPDIR)/expandos.Po
 
15298
+include ./$(DEPDIR)/ignore.Po
 
15299
+include ./$(DEPDIR)/levels.Po
 
15300
+include ./$(DEPDIR)/line-split.Po
 
15301
+include ./$(DEPDIR)/log-away.Po
 
15302
+include ./$(DEPDIR)/log.Po
 
15303
+include ./$(DEPDIR)/masks.Po
 
15304
+include ./$(DEPDIR)/misc.Po
 
15305
+include ./$(DEPDIR)/modules-load.Po
 
15306
+include ./$(DEPDIR)/modules.Po
 
15307
+include ./$(DEPDIR)/net-disconnect.Po
 
15308
+include ./$(DEPDIR)/net-nonblock.Po
 
15309
+include ./$(DEPDIR)/net-sendbuffer.Po
 
15310
+include ./$(DEPDIR)/network-gnutls.Po
 
15311
+include ./$(DEPDIR)/network.Po
 
15312
+include ./$(DEPDIR)/nicklist.Po
 
15313
+include ./$(DEPDIR)/nickmatch-cache.Po
 
15314
+include ./$(DEPDIR)/pidwait.Po
 
15315
+include ./$(DEPDIR)/queries.Po
 
15316
+include ./$(DEPDIR)/rawlog.Po
 
15317
+include ./$(DEPDIR)/recode.Po
 
15318
+include ./$(DEPDIR)/servers-reconnect.Po
 
15319
+include ./$(DEPDIR)/servers-setup.Po
 
15320
+include ./$(DEPDIR)/servers.Po
 
15321
+include ./$(DEPDIR)/session.Po
 
15322
+include ./$(DEPDIR)/settings.Po
 
15323
+include ./$(DEPDIR)/signals.Po
 
15324
+include ./$(DEPDIR)/special-vars.Po
 
15325
+include ./$(DEPDIR)/write-buffer.Po
 
15326
+
 
15327
+.c.o:
 
15328
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
15329
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
15330
+#      source='$<' object='$@' libtool=no \
 
15331
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
15332
+#      $(COMPILE) -c $<
 
15333
+
 
15334
+.c.obj:
 
15335
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
15336
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
15337
+#      source='$<' object='$@' libtool=no \
 
15338
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
15339
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
15340
+
 
15341
+.c.lo:
 
15342
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
15343
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
15344
+#      source='$<' object='$@' libtool=yes \
 
15345
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
15346
+#      $(LTCOMPILE) -c -o $@ $<
 
15347
+
 
15348
+mostlyclean-libtool:
 
15349
+       -rm -f *.lo
 
15350
+
 
15351
+clean-libtool:
 
15352
+       -rm -rf .libs _libs
 
15353
+
 
15354
+distclean-libtool:
 
15355
+       -rm -f libtool
 
15356
+uninstall-info-am:
 
15357
+install-pkginc_coreHEADERS: $(pkginc_core_HEADERS)
 
15358
+       @$(NORMAL_INSTALL)
 
15359
+       test -z "$(pkginc_coredir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_coredir)"
 
15360
+       @list='$(pkginc_core_HEADERS)'; for p in $$list; do \
 
15361
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
15362
+         f=$(am__strip_dir) \
 
15363
+         echo " $(pkginc_coreHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_coredir)/$$f'"; \
 
15364
+         $(pkginc_coreHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_coredir)/$$f"; \
 
15365
+       done
 
15366
+
 
15367
+uninstall-pkginc_coreHEADERS:
 
15368
+       @$(NORMAL_UNINSTALL)
 
15369
+       @list='$(pkginc_core_HEADERS)'; for p in $$list; do \
 
15370
+         f=$(am__strip_dir) \
 
15371
+         echo " rm -f '$(DESTDIR)$(pkginc_coredir)/$$f'"; \
 
15372
+         rm -f "$(DESTDIR)$(pkginc_coredir)/$$f"; \
 
15373
+       done
 
15374
+
 
15375
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
15376
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
15377
+       unique=`for i in $$list; do \
 
15378
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
15379
+         done | \
 
15380
+         $(AWK) '    { files[$$0] = 1; } \
 
15381
+              END { for (i in files) print i; }'`; \
 
15382
+       mkid -fID $$unique
 
15383
+tags: TAGS
 
15384
+
 
15385
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
15386
+               $(TAGS_FILES) $(LISP)
 
15387
+       tags=; \
 
15388
+       here=`pwd`; \
 
15389
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
15390
+       unique=`for i in $$list; do \
 
15391
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
15392
+         done | \
 
15393
+         $(AWK) '    { files[$$0] = 1; } \
 
15394
+              END { for (i in files) print i; }'`; \
 
15395
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
15396
+         test -n "$$unique" || unique=$$empty_fix; \
 
15397
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
15398
+           $$tags $$unique; \
 
15399
+       fi
 
15400
+ctags: CTAGS
 
15401
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
15402
+               $(TAGS_FILES) $(LISP)
 
15403
+       tags=; \
 
15404
+       here=`pwd`; \
 
15405
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
15406
+       unique=`for i in $$list; do \
 
15407
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
15408
+         done | \
 
15409
+         $(AWK) '    { files[$$0] = 1; } \
 
15410
+              END { for (i in files) print i; }'`; \
 
15411
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
15412
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
15413
+            $$tags $$unique
 
15414
+
 
15415
+GTAGS:
 
15416
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
15417
+         && cd $(top_srcdir) \
 
15418
+         && gtags -i $(GTAGS_ARGS) $$here
 
15419
+
 
15420
+distclean-tags:
 
15421
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
15422
+
 
15423
+distdir: $(DISTFILES)
 
15424
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
15425
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
15426
+       list='$(DISTFILES)'; for file in $$list; do \
 
15427
+         case $$file in \
 
15428
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
15429
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
15430
+         esac; \
 
15431
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
15432
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
15433
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
15434
+           dir="/$$dir"; \
 
15435
+           $(mkdir_p) "$(distdir)$$dir"; \
 
15436
+         else \
 
15437
+           dir=''; \
 
15438
+         fi; \
 
15439
+         if test -d $$d/$$file; then \
 
15440
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
15441
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
15442
+           fi; \
 
15443
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
15444
+         else \
 
15445
+           test -f $(distdir)/$$file \
 
15446
+           || cp -p $$d/$$file $(distdir)/$$file \
 
15447
+           || exit 1; \
 
15448
+         fi; \
 
15449
+       done
 
15450
+check-am: all-am
 
15451
+check: check-am
 
15452
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
15453
+installdirs:
 
15454
+       for dir in "$(DESTDIR)$(pkginc_coredir)"; do \
 
15455
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
15456
+       done
 
15457
+install: install-am
 
15458
+install-exec: install-exec-am
 
15459
+install-data: install-data-am
 
15460
+uninstall: uninstall-am
 
15461
+
 
15462
+install-am: all-am
 
15463
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
15464
+
 
15465
+installcheck: installcheck-am
 
15466
+install-strip:
 
15467
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
15468
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
15469
+         `test -z '$(STRIP)' || \
 
15470
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
15471
+mostlyclean-generic:
 
15472
+
 
15473
+clean-generic:
 
15474
+
 
15475
+distclean-generic:
 
15476
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
15477
+
 
15478
+maintainer-clean-generic:
 
15479
+       @echo "This command is intended for maintainers to use"
 
15480
+       @echo "it deletes files that may require special tools to rebuild."
 
15481
+clean: clean-am
 
15482
+
 
15483
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
15484
+       mostlyclean-am
 
15485
+
 
15486
+distclean: distclean-am
 
15487
+       -rm -rf ./$(DEPDIR)
 
15488
+       -rm -f Makefile
 
15489
+distclean-am: clean-am distclean-compile distclean-generic \
 
15490
+       distclean-libtool distclean-tags
 
15491
+
 
15492
+dvi: dvi-am
 
15493
+
 
15494
+dvi-am:
 
15495
+
 
15496
+html: html-am
 
15497
+
 
15498
+info: info-am
 
15499
+
 
15500
+info-am:
 
15501
+
 
15502
+install-data-am: install-pkginc_coreHEADERS
 
15503
+
 
15504
+install-exec-am:
 
15505
+
 
15506
+install-info: install-info-am
 
15507
+
 
15508
+install-man:
 
15509
+
 
15510
+installcheck-am:
 
15511
+
 
15512
+maintainer-clean: maintainer-clean-am
 
15513
+       -rm -rf ./$(DEPDIR)
 
15514
+       -rm -f Makefile
 
15515
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
15516
+
 
15517
+mostlyclean: mostlyclean-am
 
15518
+
 
15519
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
15520
+       mostlyclean-libtool
 
15521
+
 
15522
+pdf: pdf-am
 
15523
+
 
15524
+pdf-am:
 
15525
+
 
15526
+ps: ps-am
 
15527
+
 
15528
+ps-am:
 
15529
+
 
15530
+uninstall-am: uninstall-info-am uninstall-pkginc_coreHEADERS
 
15531
+
 
15532
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
15533
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
15534
+       distclean-compile distclean-generic distclean-libtool \
 
15535
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
15536
+       install install-am install-data install-data-am install-exec \
 
15537
+       install-exec-am install-info install-info-am install-man \
 
15538
+       install-pkginc_coreHEADERS install-strip installcheck \
 
15539
+       installcheck-am installdirs maintainer-clean \
 
15540
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
15541
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
15542
+       tags uninstall uninstall-am uninstall-info-am \
 
15543
+       uninstall-pkginc_coreHEADERS
 
15544
+
 
15545
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
15546
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
15547
+.NOEXPORT:
 
15548
diff -urNad --exclude=CVS --exclude=.svn ./src/core/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/core/Makefile.in
 
15549
--- ./src/core/Makefile.in      2005-07-17 16:30:31.000000000 +0300
 
15550
+++ /tmp/dpep-work.mDzhRz/irssi/src/core/Makefile.in    2005-07-17 16:48:07.000000000 +0300
 
15551
@@ -53,6 +53,7 @@
 
15552
 ARFLAGS = cru
 
15553
 libcore_a_AR = $(AR) $(ARFLAGS)
 
15554
 libcore_a_LIBADD =
 
15555
+am__objects_1 = network-gnutls.$(OBJEXT)
 
15556
 am_libcore_a_OBJECTS = args.$(OBJEXT) channels.$(OBJEXT) \
 
15557
        channels-setup.$(OBJEXT) commands.$(OBJEXT) \
 
15558
        chat-commands.$(OBJEXT) chat-protocols.$(OBJEXT) \
 
15559
@@ -61,13 +62,13 @@
 
15560
        log.$(OBJEXT) log-away.$(OBJEXT) masks.$(OBJEXT) \
 
15561
        misc.$(OBJEXT) modules.$(OBJEXT) modules-load.$(OBJEXT) \
 
15562
        net-disconnect.$(OBJEXT) net-nonblock.$(OBJEXT) \
 
15563
-       net-sendbuffer.$(OBJEXT) network.$(OBJEXT) \
 
15564
-       network-openssl.$(OBJEXT) nicklist.$(OBJEXT) \
 
15565
-       nickmatch-cache.$(OBJEXT) pidwait.$(OBJEXT) queries.$(OBJEXT) \
 
15566
-       rawlog.$(OBJEXT) recode.$(OBJEXT) servers.$(OBJEXT) \
 
15567
-       servers-reconnect.$(OBJEXT) servers-setup.$(OBJEXT) \
 
15568
-       session.$(OBJEXT) settings.$(OBJEXT) signals.$(OBJEXT) \
 
15569
-       special-vars.$(OBJEXT) write-buffer.$(OBJEXT)
 
15570
+       net-sendbuffer.$(OBJEXT) network.$(OBJEXT) $(am__objects_1) \
 
15571
+       nicklist.$(OBJEXT) nickmatch-cache.$(OBJEXT) pidwait.$(OBJEXT) \
 
15572
+       queries.$(OBJEXT) rawlog.$(OBJEXT) recode.$(OBJEXT) \
 
15573
+       servers.$(OBJEXT) servers-reconnect.$(OBJEXT) \
 
15574
+       servers-setup.$(OBJEXT) session.$(OBJEXT) settings.$(OBJEXT) \
 
15575
+       signals.$(OBJEXT) special-vars.$(OBJEXT) \
 
15576
+       write-buffer.$(OBJEXT)
 
15577
 libcore_a_OBJECTS = $(am_libcore_a_OBJECTS)
 
15578
 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
15579
 depcomp = $(SHELL) $(top_srcdir)/depcomp
 
15580
@@ -143,6 +144,8 @@
 
15581
 GLIB_LIBS = @GLIB_LIBS@
 
15582
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
15583
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
15584
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
15585
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
15586
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
15587
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
15588
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
15589
@@ -152,6 +155,9 @@
 
15590
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
15591
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
15592
 LDFLAGS = @LDFLAGS@
 
15593
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
15594
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
15595
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
15596
 LIBOBJS = @LIBOBJS@
 
15597
 LIBPERL_A = @LIBPERL_A@
 
15598
 LIBS = @LIBS@
 
15599
@@ -255,6 +261,12 @@
 
15600
        -DSYSCONFDIR=\""$(sysconfdir)"\" \
 
15601
        -DMODULEDIR=\""$(libdir)/irssi/modules"\"
 
15602
 
 
15603
+
 
15604
+#if HAVE_OPENSSL
 
15605
+#SSL = network-openssl.c
 
15606
+#else
 
15607
+SSL = network-gnutls.c
 
15608
+#endif
 
15609
 libcore_a_SOURCES = \
 
15610
        args.c \
 
15611
        channels.c \
 
15612
@@ -278,7 +290,7 @@
 
15613
        net-nonblock.c \
 
15614
        net-sendbuffer.c \
 
15615
        network.c \
 
15616
-       network-openssl.c \
 
15617
+       $(SSL) \
 
15618
        nicklist.c \
 
15619
        nickmatch-cache.c \
 
15620
        pidwait.c \
 
15621
@@ -413,7 +425,7 @@
 
15622
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/net-disconnect.Po@am__quote@
 
15623
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/net-nonblock.Po@am__quote@
 
15624
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/net-sendbuffer.Po@am__quote@
 
15625
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network-openssl.Po@am__quote@
 
15626
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network-gnutls.Po@am__quote@
 
15627
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network.Po@am__quote@
 
15628
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nicklist.Po@am__quote@
 
15629
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nickmatch-cache.Po@am__quote@
 
15630
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/autorun.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/autorun.Po
 
15631
--- ./src/fe-common/core/.deps/autorun.Po       1970-01-01 02:00:00.000000000 +0200
 
15632
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/autorun.Po     2005-07-17 16:48:41.000000000 +0300
 
15633
@@ -0,0 +1 @@
 
15634
+# dummy
 
15635
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/chat-completion.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/chat-completion.Po
 
15636
--- ./src/fe-common/core/.deps/chat-completion.Po       1970-01-01 02:00:00.000000000 +0200
 
15637
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/chat-completion.Po     2005-07-17 16:48:41.000000000 +0300
 
15638
@@ -0,0 +1 @@
 
15639
+# dummy
 
15640
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/command-history.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/command-history.Po
 
15641
--- ./src/fe-common/core/.deps/command-history.Po       1970-01-01 02:00:00.000000000 +0200
 
15642
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/command-history.Po     2005-07-17 16:48:41.000000000 +0300
 
15643
@@ -0,0 +1 @@
 
15644
+# dummy
 
15645
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/completion.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/completion.Po
 
15646
--- ./src/fe-common/core/.deps/completion.Po    1970-01-01 02:00:00.000000000 +0200
 
15647
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/completion.Po  2005-07-17 16:48:41.000000000 +0300
 
15648
@@ -0,0 +1 @@
 
15649
+# dummy
 
15650
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-channels.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-channels.Po
 
15651
--- ./src/fe-common/core/.deps/fe-channels.Po   1970-01-01 02:00:00.000000000 +0200
 
15652
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-channels.Po 2005-07-17 16:48:41.000000000 +0300
 
15653
@@ -0,0 +1 @@
 
15654
+# dummy
 
15655
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-common-core.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-common-core.Po
 
15656
--- ./src/fe-common/core/.deps/fe-common-core.Po        1970-01-01 02:00:00.000000000 +0200
 
15657
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-common-core.Po      2005-07-17 16:48:41.000000000 +0300
 
15658
@@ -0,0 +1 @@
 
15659
+# dummy
 
15660
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-core-commands.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-core-commands.Po
 
15661
--- ./src/fe-common/core/.deps/fe-core-commands.Po      1970-01-01 02:00:00.000000000 +0200
 
15662
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-core-commands.Po    2005-07-17 16:48:41.000000000 +0300
 
15663
@@ -0,0 +1 @@
 
15664
+# dummy
 
15665
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-exec.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-exec.Po
 
15666
--- ./src/fe-common/core/.deps/fe-exec.Po       1970-01-01 02:00:00.000000000 +0200
 
15667
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-exec.Po     2005-07-17 16:48:41.000000000 +0300
 
15668
@@ -0,0 +1 @@
 
15669
+# dummy
 
15670
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-expandos.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-expandos.Po
 
15671
--- ./src/fe-common/core/.deps/fe-expandos.Po   1970-01-01 02:00:00.000000000 +0200
 
15672
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-expandos.Po 2005-07-17 16:48:41.000000000 +0300
 
15673
@@ -0,0 +1 @@
 
15674
+# dummy
 
15675
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-help.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-help.Po
 
15676
--- ./src/fe-common/core/.deps/fe-help.Po       1970-01-01 02:00:00.000000000 +0200
 
15677
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-help.Po     2005-07-17 16:48:41.000000000 +0300
 
15678
@@ -0,0 +1 @@
 
15679
+# dummy
 
15680
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-ignore-messages.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-ignore-messages.Po
 
15681
--- ./src/fe-common/core/.deps/fe-ignore-messages.Po    1970-01-01 02:00:00.000000000 +0200
 
15682
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-ignore-messages.Po  2005-07-17 16:48:41.000000000 +0300
 
15683
@@ -0,0 +1 @@
 
15684
+# dummy
 
15685
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-ignore.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-ignore.Po
 
15686
--- ./src/fe-common/core/.deps/fe-ignore.Po     1970-01-01 02:00:00.000000000 +0200
 
15687
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-ignore.Po   2005-07-17 16:48:41.000000000 +0300
 
15688
@@ -0,0 +1 @@
 
15689
+# dummy
 
15690
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-log.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-log.Po
 
15691
--- ./src/fe-common/core/.deps/fe-log.Po        1970-01-01 02:00:00.000000000 +0200
 
15692
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-log.Po      2005-07-17 16:48:41.000000000 +0300
 
15693
@@ -0,0 +1 @@
 
15694
+# dummy
 
15695
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-messages.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-messages.Po
 
15696
--- ./src/fe-common/core/.deps/fe-messages.Po   1970-01-01 02:00:00.000000000 +0200
 
15697
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-messages.Po 2005-07-17 16:48:41.000000000 +0300
 
15698
@@ -0,0 +1 @@
 
15699
+# dummy
 
15700
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-modules.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-modules.Po
 
15701
--- ./src/fe-common/core/.deps/fe-modules.Po    1970-01-01 02:00:00.000000000 +0200
 
15702
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-modules.Po  2005-07-17 16:48:41.000000000 +0300
 
15703
@@ -0,0 +1 @@
 
15704
+# dummy
 
15705
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-queries.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-queries.Po
 
15706
--- ./src/fe-common/core/.deps/fe-queries.Po    1970-01-01 02:00:00.000000000 +0200
 
15707
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-queries.Po  2005-07-17 16:48:41.000000000 +0300
 
15708
@@ -0,0 +1 @@
 
15709
+# dummy
 
15710
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-recode.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-recode.Po
 
15711
--- ./src/fe-common/core/.deps/fe-recode.Po     1970-01-01 02:00:00.000000000 +0200
 
15712
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-recode.Po   2005-07-17 16:48:41.000000000 +0300
 
15713
@@ -0,0 +1 @@
 
15714
+# dummy
 
15715
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-server.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-server.Po
 
15716
--- ./src/fe-common/core/.deps/fe-server.Po     1970-01-01 02:00:00.000000000 +0200
 
15717
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-server.Po   2005-07-17 16:48:41.000000000 +0300
 
15718
@@ -0,0 +1 @@
 
15719
+# dummy
 
15720
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-settings.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-settings.Po
 
15721
--- ./src/fe-common/core/.deps/fe-settings.Po   1970-01-01 02:00:00.000000000 +0200
 
15722
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-settings.Po 2005-07-17 16:48:41.000000000 +0300
 
15723
@@ -0,0 +1 @@
 
15724
+# dummy
 
15725
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/fe-windows.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-windows.Po
 
15726
--- ./src/fe-common/core/.deps/fe-windows.Po    1970-01-01 02:00:00.000000000 +0200
 
15727
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/fe-windows.Po  2005-07-17 16:48:41.000000000 +0300
 
15728
@@ -0,0 +1 @@
 
15729
+# dummy
 
15730
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/formats.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/formats.Po
 
15731
--- ./src/fe-common/core/.deps/formats.Po       1970-01-01 02:00:00.000000000 +0200
 
15732
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/formats.Po     2005-07-17 16:48:41.000000000 +0300
 
15733
@@ -0,0 +1 @@
 
15734
+# dummy
 
15735
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/hilight-text.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/hilight-text.Po
 
15736
--- ./src/fe-common/core/.deps/hilight-text.Po  1970-01-01 02:00:00.000000000 +0200
 
15737
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/hilight-text.Po        2005-07-17 16:48:41.000000000 +0300
 
15738
@@ -0,0 +1 @@
 
15739
+# dummy
 
15740
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/keyboard.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/keyboard.Po
 
15741
--- ./src/fe-common/core/.deps/keyboard.Po      1970-01-01 02:00:00.000000000 +0200
 
15742
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/keyboard.Po    2005-07-17 16:48:41.000000000 +0300
 
15743
@@ -0,0 +1 @@
 
15744
+# dummy
 
15745
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/module-formats.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/module-formats.Po
 
15746
--- ./src/fe-common/core/.deps/module-formats.Po        1970-01-01 02:00:00.000000000 +0200
 
15747
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/module-formats.Po      2005-07-17 16:48:41.000000000 +0300
 
15748
@@ -0,0 +1 @@
 
15749
+# dummy
 
15750
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/printtext.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/printtext.Po
 
15751
--- ./src/fe-common/core/.deps/printtext.Po     1970-01-01 02:00:00.000000000 +0200
 
15752
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/printtext.Po   2005-07-17 16:48:41.000000000 +0300
 
15753
@@ -0,0 +1 @@
 
15754
+# dummy
 
15755
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/themes.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/themes.Po
 
15756
--- ./src/fe-common/core/.deps/themes.Po        1970-01-01 02:00:00.000000000 +0200
 
15757
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/themes.Po      2005-07-17 16:48:41.000000000 +0300
 
15758
@@ -0,0 +1 @@
 
15759
+# dummy
 
15760
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/translation.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/translation.Po
 
15761
--- ./src/fe-common/core/.deps/translation.Po   1970-01-01 02:00:00.000000000 +0200
 
15762
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/translation.Po 2005-07-17 16:48:41.000000000 +0300
 
15763
@@ -0,0 +1 @@
 
15764
+# dummy
 
15765
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/utf8.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/utf8.Po
 
15766
--- ./src/fe-common/core/.deps/utf8.Po  1970-01-01 02:00:00.000000000 +0200
 
15767
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/utf8.Po        2005-07-17 16:48:41.000000000 +0300
 
15768
@@ -0,0 +1 @@
 
15769
+# dummy
 
15770
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/window-activity.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/window-activity.Po
 
15771
--- ./src/fe-common/core/.deps/window-activity.Po       1970-01-01 02:00:00.000000000 +0200
 
15772
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/window-activity.Po     2005-07-17 16:48:41.000000000 +0300
 
15773
@@ -0,0 +1 @@
 
15774
+# dummy
 
15775
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/window-commands.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/window-commands.Po
 
15776
--- ./src/fe-common/core/.deps/window-commands.Po       1970-01-01 02:00:00.000000000 +0200
 
15777
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/window-commands.Po     2005-07-17 16:48:41.000000000 +0300
 
15778
@@ -0,0 +1 @@
 
15779
+# dummy
 
15780
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/window-items.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/window-items.Po
 
15781
--- ./src/fe-common/core/.deps/window-items.Po  1970-01-01 02:00:00.000000000 +0200
 
15782
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/window-items.Po        2005-07-17 16:48:41.000000000 +0300
 
15783
@@ -0,0 +1 @@
 
15784
+# dummy
 
15785
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/.deps/windows-layout.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/windows-layout.Po
 
15786
--- ./src/fe-common/core/.deps/windows-layout.Po        1970-01-01 02:00:00.000000000 +0200
 
15787
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/.deps/windows-layout.Po      2005-07-17 16:48:41.000000000 +0300
 
15788
@@ -0,0 +1 @@
 
15789
+# dummy
 
15790
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/Makefile /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/Makefile
 
15791
--- ./src/fe-common/core/Makefile       1970-01-01 02:00:00.000000000 +0200
 
15792
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/Makefile     2005-07-17 16:48:39.000000000 +0300
 
15793
@@ -0,0 +1,622 @@
 
15794
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
15795
+# src/fe-common/core/Makefile.  Generated from Makefile.in by configure.
 
15796
+
 
15797
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
15798
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
15799
+# This Makefile.in is free software; the Free Software Foundation
 
15800
+# gives unlimited permission to copy and/or distribute it,
 
15801
+# with or without modifications, as long as this notice is preserved.
 
15802
+
 
15803
+# This program is distributed in the hope that it will be useful,
 
15804
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
15805
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
15806
+# PARTICULAR PURPOSE.
 
15807
+
 
15808
+
 
15809
+
 
15810
+
 
15811
+srcdir = .
 
15812
+top_srcdir = ../../..
 
15813
+
 
15814
+pkgdatadir = $(datadir)/irssi
 
15815
+pkglibdir = $(libdir)/irssi
 
15816
+pkgincludedir = $(includedir)/irssi
 
15817
+top_builddir = ../../..
 
15818
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
15819
+INSTALL = /usr/bin/install -c
 
15820
+install_sh_DATA = $(install_sh) -c -m 644
 
15821
+install_sh_PROGRAM = $(install_sh) -c
 
15822
+install_sh_SCRIPT = $(install_sh) -c
 
15823
+INSTALL_HEADER = $(INSTALL_DATA)
 
15824
+transform = $(program_transform_name)
 
15825
+NORMAL_INSTALL = :
 
15826
+PRE_INSTALL = :
 
15827
+POST_INSTALL = :
 
15828
+NORMAL_UNINSTALL = :
 
15829
+PRE_UNINSTALL = :
 
15830
+POST_UNINSTALL = :
 
15831
+build_triplet = i686-pc-linux-gnu
 
15832
+host_triplet = i686-pc-linux-gnu
 
15833
+subdir = src/fe-common/core
 
15834
+DIST_COMMON = $(pkginc_fe_common_core_HEADERS) $(srcdir)/Makefile.am \
 
15835
+       $(srcdir)/Makefile.in
 
15836
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
15837
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
15838
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
15839
+       $(top_srcdir)/configure.in
 
15840
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
15841
+       $(ACLOCAL_M4)
 
15842
+mkinstalldirs = $(install_sh) -d
 
15843
+CONFIG_HEADER = $(top_builddir)/config.h
 
15844
+CONFIG_CLEAN_FILES =
 
15845
+LIBRARIES = $(noinst_LIBRARIES)
 
15846
+ARFLAGS = cru
 
15847
+libfe_common_core_a_AR = $(AR) $(ARFLAGS)
 
15848
+libfe_common_core_a_LIBADD =
 
15849
+am_libfe_common_core_a_OBJECTS = autorun.$(OBJEXT) \
 
15850
+       chat-completion.$(OBJEXT) command-history.$(OBJEXT) \
 
15851
+       completion.$(OBJEXT) fe-channels.$(OBJEXT) \
 
15852
+       fe-common-core.$(OBJEXT) fe-core-commands.$(OBJEXT) \
 
15853
+       fe-exec.$(OBJEXT) fe-expandos.$(OBJEXT) fe-help.$(OBJEXT) \
 
15854
+       fe-ignore.$(OBJEXT) fe-ignore-messages.$(OBJEXT) \
 
15855
+       fe-log.$(OBJEXT) fe-messages.$(OBJEXT) fe-modules.$(OBJEXT) \
 
15856
+       fe-queries.$(OBJEXT) fe-server.$(OBJEXT) fe-settings.$(OBJEXT) \
 
15857
+       utf8.$(OBJEXT) formats.$(OBJEXT) hilight-text.$(OBJEXT) \
 
15858
+       keyboard.$(OBJEXT) module-formats.$(OBJEXT) \
 
15859
+       printtext.$(OBJEXT) fe-recode.$(OBJEXT) themes.$(OBJEXT) \
 
15860
+       translation.$(OBJEXT) window-activity.$(OBJEXT) \
 
15861
+       window-commands.$(OBJEXT) window-items.$(OBJEXT) \
 
15862
+       windows-layout.$(OBJEXT) fe-windows.$(OBJEXT)
 
15863
+libfe_common_core_a_OBJECTS = $(am_libfe_common_core_a_OBJECTS)
 
15864
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
15865
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
15866
+am__depfiles_maybe = depfiles
 
15867
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
15868
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
15869
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
15870
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
15871
+       $(AM_CFLAGS) $(CFLAGS)
 
15872
+CCLD = $(CC)
 
15873
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
15874
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
15875
+SOURCES = $(libfe_common_core_a_SOURCES)
 
15876
+DIST_SOURCES = $(libfe_common_core_a_SOURCES)
 
15877
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
15878
+am__vpath_adj = case $$p in \
 
15879
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
15880
+    *) f=$$p;; \
 
15881
+  esac;
 
15882
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
15883
+am__installdirs = "$(DESTDIR)$(pkginc_fe_common_coredir)"
 
15884
+pkginc_fe_common_coreHEADERS_INSTALL = $(INSTALL_HEADER)
 
15885
+HEADERS = $(pkginc_fe_common_core_HEADERS)
 
15886
+ETAGS = etags
 
15887
+CTAGS = ctags
 
15888
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
15889
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
15890
+AMDEP_FALSE = #
 
15891
+AMDEP_TRUE = 
 
15892
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
15893
+AR = ar
 
15894
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
15895
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
15896
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
15897
+AWK = gawk
 
15898
+BUILD_IRSSIBOT_FALSE = 
 
15899
+BUILD_IRSSIBOT_TRUE = #
 
15900
+BUILD_IRSSIPROXY_FALSE = 
 
15901
+BUILD_IRSSIPROXY_TRUE = #
 
15902
+BUILD_PLUGINS_FALSE = 
 
15903
+BUILD_PLUGINS_TRUE = #
 
15904
+BUILD_TEXTUI_FALSE = #
 
15905
+BUILD_TEXTUI_TRUE = 
 
15906
+CC = gcc
 
15907
+CCDEPMODE = depmode=gcc3
 
15908
+CFLAGS = -g -O2 -Wall  
 
15909
+CHAT_MODULES = irc
 
15910
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
15911
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
15912
+CPP = gcc -E
 
15913
+CPPFLAGS = 
 
15914
+CURSES_INCLUDEDIR = 
 
15915
+CURSES_LIBS = -lncurses
 
15916
+CXX = g++
 
15917
+CXXCPP = g++ -E
 
15918
+CXXDEPMODE = depmode=gcc3
 
15919
+CXXFLAGS = -g -O2
 
15920
+CYGPATH_W = echo
 
15921
+DEFS = -DHAVE_CONFIG_H
 
15922
+DEPDIR = .deps
 
15923
+DYNALOADER_A = 
 
15924
+ECHO = echo
 
15925
+ECHO_C = 
 
15926
+ECHO_N = -n
 
15927
+ECHO_T = 
 
15928
+EGREP = grep -E
 
15929
+EXEEXT = 
 
15930
+F77 = 
 
15931
+FFLAGS = 
 
15932
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
15933
+GLIB_CONFIG = 
 
15934
+GLIB_GENMARSHAL = glib-genmarshal
 
15935
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
15936
+GLIB_MKENUMS = glib-mkenums
 
15937
+GOBJECT_QUERY = gobject-query
 
15938
+HAVE_GNUTLS_FALSE = #
 
15939
+HAVE_GNUTLS_TRUE = 
 
15940
+HAVE_PERL_FALSE = #
 
15941
+HAVE_PERL_TRUE = 
 
15942
+HAVE_STATIC_PERL_FALSE = #
 
15943
+HAVE_STATIC_PERL_TRUE = 
 
15944
+INSTALL_DATA = ${INSTALL} -m 644
 
15945
+INSTALL_PROGRAM = ${INSTALL}
 
15946
+INSTALL_SCRIPT = ${INSTALL}
 
15947
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
15948
+LDFLAGS = 
 
15949
+LIBGNUTLS_CFLAGS = -I/usr/include
 
15950
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
15951
+LIBGNUTLS_LIBS = -lgnutls
 
15952
+LIBOBJS = 
 
15953
+LIBPERL_A = 
 
15954
+LIBS = 
 
15955
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
15956
+LN_S = ln -s
 
15957
+LTLIBOBJS = 
 
15958
+MAINT = 
 
15959
+MAINTAINER_MODE_FALSE = #
 
15960
+MAINTAINER_MODE_TRUE = 
 
15961
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
15962
+NEED_TPARM_FALSE = 
 
15963
+NEED_TPARM_TRUE = #
 
15964
+OBJEXT = o
 
15965
+PACKAGE = irssi
 
15966
+PACKAGE_BUGREPORT = 
 
15967
+PACKAGE_NAME = 
 
15968
+PACKAGE_STRING = 
 
15969
+PACKAGE_TARNAME = 
 
15970
+PACKAGE_VERSION = 
 
15971
+PATH_SEPARATOR = :
 
15972
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
15973
+PERL_EXTRA_OPTS = 
 
15974
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
15975
+PERL_LDFLAGS = 
 
15976
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
15977
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
15978
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
15979
+PERL_MM_PARAMS = 
 
15980
+PERL_STATIC_LIBS = 0
 
15981
+PERL_USE_LIB = 
 
15982
+PKG_CONFIG = /usr/bin/pkg-config
 
15983
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
15984
+RANLIB = ranlib
 
15985
+SET_MAKE = 
 
15986
+SHELL = /bin/sh
 
15987
+SSL_CFLAGS =  
 
15988
+SSL_LIBS = -lssl -lcrypto -ldl  
 
15989
+STRIP = strip
 
15990
+TEXTUI_LIBS = -lncurses
 
15991
+USE_CURSES_FALSE = 
 
15992
+USE_CURSES_TRUE = #
 
15993
+VERSION = 0.8.10-rc5
 
15994
+VERSION_DATE = 20050717
 
15995
+VERSION_TIME = 1223
 
15996
+ac_ct_AR = ar
 
15997
+ac_ct_CC = gcc
 
15998
+ac_ct_CXX = g++
 
15999
+ac_ct_F77 = 
 
16000
+ac_ct_RANLIB = ranlib
 
16001
+ac_ct_STRIP = strip
 
16002
+ac_pt_PKG_CONFIG = 
 
16003
+am__fastdepCC_FALSE = #
 
16004
+am__fastdepCC_TRUE = 
 
16005
+am__fastdepCXX_FALSE = #
 
16006
+am__fastdepCXX_TRUE = 
 
16007
+am__include = include
 
16008
+am__leading_dot = .
 
16009
+am__quote = 
 
16010
+am__tar = ${AMTAR} chof - "$$tardir"
 
16011
+am__untar = ${AMTAR} xf -
 
16012
+bindir = ${exec_prefix}/bin
 
16013
+build = i686-pc-linux-gnu
 
16014
+build_alias = 
 
16015
+build_cpu = i686
 
16016
+build_os = linux-gnu
 
16017
+build_vendor = pc
 
16018
+datadir = ${prefix}/share
 
16019
+exec_prefix = ${prefix}
 
16020
+host = i686-pc-linux-gnu
 
16021
+host_alias = 
 
16022
+host_cpu = i686
 
16023
+host_os = linux-gnu
 
16024
+host_vendor = pc
 
16025
+includedir = ${prefix}/include
 
16026
+infodir = ${prefix}/info
 
16027
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
16028
+irc_MODULES = dcc flood notifylist
 
16029
+libdir = ${exec_prefix}/lib
 
16030
+libexecdir = ${exec_prefix}/libexec
 
16031
+localstatedir = ${prefix}/var
 
16032
+mandir = ${prefix}/man
 
16033
+mkdir_p = mkdir -p --
 
16034
+oldincludedir = /usr/include
 
16035
+perl_module_fe_lib = 
 
16036
+perl_module_lib = 
 
16037
+perl_static_fe_lib = libfe_perl_static.la
 
16038
+perl_static_lib = libperl_core_static.la
 
16039
+perlpath = /usr/bin/perl
 
16040
+prefix = /usr/local
 
16041
+program_transform_name = s,x,x,
 
16042
+sbindir = ${exec_prefix}/sbin
 
16043
+sedpath = /bin/sed
 
16044
+sharedstatedir = ${prefix}/com
 
16045
+sysconfdir = ${prefix}/etc
 
16046
+target_alias = 
 
16047
+noinst_LIBRARIES = libfe_common_core.a
 
16048
+INCLUDES = \
 
16049
+       -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \
 
16050
+       $(GLIB_CFLAGS) \
 
16051
+       -DHELPDIR=\""$(datadir)/irssi/help"\" \
 
16052
+       -DTHEMESDIR=\""$(datadir)/irssi/themes"\"
 
16053
+
 
16054
+libfe_common_core_a_SOURCES = \
 
16055
+       autorun.c \
 
16056
+       chat-completion.c \
 
16057
+       command-history.c \
 
16058
+       completion.c \
 
16059
+       fe-channels.c \
 
16060
+       fe-common-core.c \
 
16061
+       fe-core-commands.c \
 
16062
+       fe-exec.c \
 
16063
+       fe-expandos.c \
 
16064
+       fe-help.c \
 
16065
+       fe-ignore.c \
 
16066
+       fe-ignore-messages.c \
 
16067
+       fe-log.c \
 
16068
+       fe-messages.c \
 
16069
+       fe-modules.c \
 
16070
+       fe-queries.c \
 
16071
+       fe-server.c \
 
16072
+       fe-settings.c \
 
16073
+       utf8.c \
 
16074
+       formats.c \
 
16075
+       hilight-text.c \
 
16076
+       keyboard.c \
 
16077
+       module-formats.c \
 
16078
+       printtext.c \
 
16079
+       fe-recode.c \
 
16080
+       themes.c \
 
16081
+       translation.c \
 
16082
+       window-activity.c \
 
16083
+       window-commands.c \
 
16084
+       window-items.c \
 
16085
+       windows-layout.c \
 
16086
+       fe-windows.c
 
16087
+
 
16088
+pkginc_fe_common_coredir = $(pkgincludedir)/src/fe-common/core
 
16089
+pkginc_fe_common_core_HEADERS = \
 
16090
+       autorun.h \
 
16091
+       command-history.h \
 
16092
+       chat-completion.h \
 
16093
+       completion.h \
 
16094
+       fe-channels.h \
 
16095
+       fe-common-core.h \
 
16096
+       fe-core-commands.h \
 
16097
+       fe-exec.h \
 
16098
+       fe-messages.h \
 
16099
+       fe-queries.h \
 
16100
+       utf8.h \
 
16101
+       formats.h \
 
16102
+       hilight-text.h \
 
16103
+       keyboard.h \
 
16104
+       module-formats.h \
 
16105
+       module.h \
 
16106
+       printtext.h \
 
16107
+       fe-recode.h \
 
16108
+       themes.h \
 
16109
+       translation.h \
 
16110
+       window-activity.h \
 
16111
+       window-items.h \
 
16112
+       windows-layout.h \
 
16113
+       fe-windows.h
 
16114
+
 
16115
+all: all-am
 
16116
+
 
16117
+.SUFFIXES:
 
16118
+.SUFFIXES: .c .lo .o .obj
 
16119
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
16120
+       @for dep in $?; do \
 
16121
+         case '$(am__configure_deps)' in \
 
16122
+           *$$dep*) \
 
16123
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
16124
+               && exit 0; \
 
16125
+             exit 1;; \
 
16126
+         esac; \
 
16127
+       done; \
 
16128
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/fe-common/core/Makefile'; \
 
16129
+       cd $(top_srcdir) && \
 
16130
+         $(AUTOMAKE) --gnu  src/fe-common/core/Makefile
 
16131
+.PRECIOUS: Makefile
 
16132
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
16133
+       @case '$?' in \
 
16134
+         *config.status*) \
 
16135
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
16136
+         *) \
 
16137
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
16138
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
16139
+       esac;
 
16140
+
 
16141
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
16142
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
16143
+
 
16144
+$(top_srcdir)/configure:  $(am__configure_deps)
 
16145
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
16146
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
16147
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
16148
+
 
16149
+clean-noinstLIBRARIES:
 
16150
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
16151
+libfe_common_core.a: $(libfe_common_core_a_OBJECTS) $(libfe_common_core_a_DEPENDENCIES) 
 
16152
+       -rm -f libfe_common_core.a
 
16153
+       $(libfe_common_core_a_AR) libfe_common_core.a $(libfe_common_core_a_OBJECTS) $(libfe_common_core_a_LIBADD)
 
16154
+       $(RANLIB) libfe_common_core.a
 
16155
+
 
16156
+mostlyclean-compile:
 
16157
+       -rm -f *.$(OBJEXT)
 
16158
+
 
16159
+distclean-compile:
 
16160
+       -rm -f *.tab.c
 
16161
+
 
16162
+include ./$(DEPDIR)/autorun.Po
 
16163
+include ./$(DEPDIR)/chat-completion.Po
 
16164
+include ./$(DEPDIR)/command-history.Po
 
16165
+include ./$(DEPDIR)/completion.Po
 
16166
+include ./$(DEPDIR)/fe-channels.Po
 
16167
+include ./$(DEPDIR)/fe-common-core.Po
 
16168
+include ./$(DEPDIR)/fe-core-commands.Po
 
16169
+include ./$(DEPDIR)/fe-exec.Po
 
16170
+include ./$(DEPDIR)/fe-expandos.Po
 
16171
+include ./$(DEPDIR)/fe-help.Po
 
16172
+include ./$(DEPDIR)/fe-ignore-messages.Po
 
16173
+include ./$(DEPDIR)/fe-ignore.Po
 
16174
+include ./$(DEPDIR)/fe-log.Po
 
16175
+include ./$(DEPDIR)/fe-messages.Po
 
16176
+include ./$(DEPDIR)/fe-modules.Po
 
16177
+include ./$(DEPDIR)/fe-queries.Po
 
16178
+include ./$(DEPDIR)/fe-recode.Po
 
16179
+include ./$(DEPDIR)/fe-server.Po
 
16180
+include ./$(DEPDIR)/fe-settings.Po
 
16181
+include ./$(DEPDIR)/fe-windows.Po
 
16182
+include ./$(DEPDIR)/formats.Po
 
16183
+include ./$(DEPDIR)/hilight-text.Po
 
16184
+include ./$(DEPDIR)/keyboard.Po
 
16185
+include ./$(DEPDIR)/module-formats.Po
 
16186
+include ./$(DEPDIR)/printtext.Po
 
16187
+include ./$(DEPDIR)/themes.Po
 
16188
+include ./$(DEPDIR)/translation.Po
 
16189
+include ./$(DEPDIR)/utf8.Po
 
16190
+include ./$(DEPDIR)/window-activity.Po
 
16191
+include ./$(DEPDIR)/window-commands.Po
 
16192
+include ./$(DEPDIR)/window-items.Po
 
16193
+include ./$(DEPDIR)/windows-layout.Po
 
16194
+
 
16195
+.c.o:
 
16196
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
16197
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
16198
+#      source='$<' object='$@' libtool=no \
 
16199
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
16200
+#      $(COMPILE) -c $<
 
16201
+
 
16202
+.c.obj:
 
16203
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
16204
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
16205
+#      source='$<' object='$@' libtool=no \
 
16206
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
16207
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
16208
+
 
16209
+.c.lo:
 
16210
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
16211
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
16212
+#      source='$<' object='$@' libtool=yes \
 
16213
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
16214
+#      $(LTCOMPILE) -c -o $@ $<
 
16215
+
 
16216
+mostlyclean-libtool:
 
16217
+       -rm -f *.lo
 
16218
+
 
16219
+clean-libtool:
 
16220
+       -rm -rf .libs _libs
 
16221
+
 
16222
+distclean-libtool:
 
16223
+       -rm -f libtool
 
16224
+uninstall-info-am:
 
16225
+install-pkginc_fe_common_coreHEADERS: $(pkginc_fe_common_core_HEADERS)
 
16226
+       @$(NORMAL_INSTALL)
 
16227
+       test -z "$(pkginc_fe_common_coredir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_fe_common_coredir)"
 
16228
+       @list='$(pkginc_fe_common_core_HEADERS)'; for p in $$list; do \
 
16229
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
16230
+         f=$(am__strip_dir) \
 
16231
+         echo " $(pkginc_fe_common_coreHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_fe_common_coredir)/$$f'"; \
 
16232
+         $(pkginc_fe_common_coreHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_fe_common_coredir)/$$f"; \
 
16233
+       done
 
16234
+
 
16235
+uninstall-pkginc_fe_common_coreHEADERS:
 
16236
+       @$(NORMAL_UNINSTALL)
 
16237
+       @list='$(pkginc_fe_common_core_HEADERS)'; for p in $$list; do \
 
16238
+         f=$(am__strip_dir) \
 
16239
+         echo " rm -f '$(DESTDIR)$(pkginc_fe_common_coredir)/$$f'"; \
 
16240
+         rm -f "$(DESTDIR)$(pkginc_fe_common_coredir)/$$f"; \
 
16241
+       done
 
16242
+
 
16243
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
16244
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
16245
+       unique=`for i in $$list; do \
 
16246
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
16247
+         done | \
 
16248
+         $(AWK) '    { files[$$0] = 1; } \
 
16249
+              END { for (i in files) print i; }'`; \
 
16250
+       mkid -fID $$unique
 
16251
+tags: TAGS
 
16252
+
 
16253
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
16254
+               $(TAGS_FILES) $(LISP)
 
16255
+       tags=; \
 
16256
+       here=`pwd`; \
 
16257
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
16258
+       unique=`for i in $$list; do \
 
16259
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
16260
+         done | \
 
16261
+         $(AWK) '    { files[$$0] = 1; } \
 
16262
+              END { for (i in files) print i; }'`; \
 
16263
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
16264
+         test -n "$$unique" || unique=$$empty_fix; \
 
16265
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
16266
+           $$tags $$unique; \
 
16267
+       fi
 
16268
+ctags: CTAGS
 
16269
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
16270
+               $(TAGS_FILES) $(LISP)
 
16271
+       tags=; \
 
16272
+       here=`pwd`; \
 
16273
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
16274
+       unique=`for i in $$list; do \
 
16275
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
16276
+         done | \
 
16277
+         $(AWK) '    { files[$$0] = 1; } \
 
16278
+              END { for (i in files) print i; }'`; \
 
16279
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
16280
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
16281
+            $$tags $$unique
 
16282
+
 
16283
+GTAGS:
 
16284
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
16285
+         && cd $(top_srcdir) \
 
16286
+         && gtags -i $(GTAGS_ARGS) $$here
 
16287
+
 
16288
+distclean-tags:
 
16289
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
16290
+
 
16291
+distdir: $(DISTFILES)
 
16292
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
16293
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
16294
+       list='$(DISTFILES)'; for file in $$list; do \
 
16295
+         case $$file in \
 
16296
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
16297
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
16298
+         esac; \
 
16299
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
16300
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
16301
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
16302
+           dir="/$$dir"; \
 
16303
+           $(mkdir_p) "$(distdir)$$dir"; \
 
16304
+         else \
 
16305
+           dir=''; \
 
16306
+         fi; \
 
16307
+         if test -d $$d/$$file; then \
 
16308
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
16309
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
16310
+           fi; \
 
16311
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
16312
+         else \
 
16313
+           test -f $(distdir)/$$file \
 
16314
+           || cp -p $$d/$$file $(distdir)/$$file \
 
16315
+           || exit 1; \
 
16316
+         fi; \
 
16317
+       done
 
16318
+check-am: all-am
 
16319
+check: check-am
 
16320
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
16321
+installdirs:
 
16322
+       for dir in "$(DESTDIR)$(pkginc_fe_common_coredir)"; do \
 
16323
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
16324
+       done
 
16325
+install: install-am
 
16326
+install-exec: install-exec-am
 
16327
+install-data: install-data-am
 
16328
+uninstall: uninstall-am
 
16329
+
 
16330
+install-am: all-am
 
16331
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
16332
+
 
16333
+installcheck: installcheck-am
 
16334
+install-strip:
 
16335
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
16336
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
16337
+         `test -z '$(STRIP)' || \
 
16338
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
16339
+mostlyclean-generic:
 
16340
+
 
16341
+clean-generic:
 
16342
+
 
16343
+distclean-generic:
 
16344
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
16345
+
 
16346
+maintainer-clean-generic:
 
16347
+       @echo "This command is intended for maintainers to use"
 
16348
+       @echo "it deletes files that may require special tools to rebuild."
 
16349
+clean: clean-am
 
16350
+
 
16351
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
16352
+       mostlyclean-am
 
16353
+
 
16354
+distclean: distclean-am
 
16355
+       -rm -rf ./$(DEPDIR)
 
16356
+       -rm -f Makefile
 
16357
+distclean-am: clean-am distclean-compile distclean-generic \
 
16358
+       distclean-libtool distclean-tags
 
16359
+
 
16360
+dvi: dvi-am
 
16361
+
 
16362
+dvi-am:
 
16363
+
 
16364
+html: html-am
 
16365
+
 
16366
+info: info-am
 
16367
+
 
16368
+info-am:
 
16369
+
 
16370
+install-data-am: install-pkginc_fe_common_coreHEADERS
 
16371
+
 
16372
+install-exec-am:
 
16373
+
 
16374
+install-info: install-info-am
 
16375
+
 
16376
+install-man:
 
16377
+
 
16378
+installcheck-am:
 
16379
+
 
16380
+maintainer-clean: maintainer-clean-am
 
16381
+       -rm -rf ./$(DEPDIR)
 
16382
+       -rm -f Makefile
 
16383
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
16384
+
 
16385
+mostlyclean: mostlyclean-am
 
16386
+
 
16387
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
16388
+       mostlyclean-libtool
 
16389
+
 
16390
+pdf: pdf-am
 
16391
+
 
16392
+pdf-am:
 
16393
+
 
16394
+ps: ps-am
 
16395
+
 
16396
+ps-am:
 
16397
+
 
16398
+uninstall-am: uninstall-info-am uninstall-pkginc_fe_common_coreHEADERS
 
16399
+
 
16400
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
16401
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
16402
+       distclean-compile distclean-generic distclean-libtool \
 
16403
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
16404
+       install install-am install-data install-data-am install-exec \
 
16405
+       install-exec-am install-info install-info-am install-man \
 
16406
+       install-pkginc_fe_common_coreHEADERS install-strip \
 
16407
+       installcheck installcheck-am installdirs maintainer-clean \
 
16408
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
16409
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
16410
+       tags uninstall uninstall-am uninstall-info-am \
 
16411
+       uninstall-pkginc_fe_common_coreHEADERS
 
16412
+
 
16413
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
16414
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
16415
+.NOEXPORT:
 
16416
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/core/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/Makefile.in
 
16417
--- ./src/fe-common/core/Makefile.in    2005-07-17 16:30:32.000000000 +0300
 
16418
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/core/Makefile.in  2005-07-17 16:48:08.000000000 +0300
 
16419
@@ -142,6 +142,8 @@
 
16420
 GLIB_LIBS = @GLIB_LIBS@
 
16421
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
16422
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
16423
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
16424
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
16425
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
16426
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
16427
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
16428
@@ -151,6 +153,9 @@
 
16429
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
16430
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
16431
 LDFLAGS = @LDFLAGS@
 
16432
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
16433
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
16434
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
16435
 LIBOBJS = @LIBOBJS@
 
16436
 LIBPERL_A = @LIBPERL_A@
 
16437
 LIBS = @LIBS@
 
16438
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/.deps/fe-dcc-chat-messages.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-chat-messages.Po
 
16439
--- ./src/fe-common/irc/dcc/.deps/fe-dcc-chat-messages.Po       1970-01-01 02:00:00.000000000 +0200
 
16440
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-chat-messages.Po     2005-07-17 16:48:41.000000000 +0300
 
16441
@@ -0,0 +1 @@
 
16442
+# dummy
 
16443
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/.deps/fe-dcc-chat.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-chat.Po
 
16444
--- ./src/fe-common/irc/dcc/.deps/fe-dcc-chat.Po        1970-01-01 02:00:00.000000000 +0200
 
16445
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-chat.Po      2005-07-17 16:48:41.000000000 +0300
 
16446
@@ -0,0 +1 @@
 
16447
+# dummy
 
16448
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/.deps/fe-dcc-get.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-get.Po
 
16449
--- ./src/fe-common/irc/dcc/.deps/fe-dcc-get.Po 1970-01-01 02:00:00.000000000 +0200
 
16450
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-get.Po       2005-07-17 16:48:41.000000000 +0300
 
16451
@@ -0,0 +1 @@
 
16452
+# dummy
 
16453
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/.deps/fe-dcc.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc.Po
 
16454
--- ./src/fe-common/irc/dcc/.deps/fe-dcc.Po     1970-01-01 02:00:00.000000000 +0200
 
16455
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc.Po   2005-07-17 16:48:41.000000000 +0300
 
16456
@@ -0,0 +1 @@
 
16457
+# dummy
 
16458
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/.deps/fe-dcc-send.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-send.Po
 
16459
--- ./src/fe-common/irc/dcc/.deps/fe-dcc-send.Po        1970-01-01 02:00:00.000000000 +0200
 
16460
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-send.Po      2005-07-17 16:48:41.000000000 +0300
 
16461
@@ -0,0 +1 @@
 
16462
+# dummy
 
16463
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/.deps/fe-dcc-server.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-server.Po
 
16464
--- ./src/fe-common/irc/dcc/.deps/fe-dcc-server.Po      1970-01-01 02:00:00.000000000 +0200
 
16465
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/fe-dcc-server.Po    2005-07-17 16:48:41.000000000 +0300
 
16466
@@ -0,0 +1 @@
 
16467
+# dummy
 
16468
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/.deps/module-formats.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/module-formats.Po
 
16469
--- ./src/fe-common/irc/dcc/.deps/module-formats.Po     1970-01-01 02:00:00.000000000 +0200
 
16470
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/.deps/module-formats.Po   2005-07-17 16:48:42.000000000 +0300
 
16471
@@ -0,0 +1 @@
 
16472
+# dummy
 
16473
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/Makefile /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/Makefile
 
16474
--- ./src/fe-common/irc/dcc/Makefile    1970-01-01 02:00:00.000000000 +0200
 
16475
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/Makefile  2005-07-17 16:48:39.000000000 +0300
 
16476
@@ -0,0 +1,546 @@
 
16477
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
16478
+# src/fe-common/irc/dcc/Makefile.  Generated from Makefile.in by configure.
 
16479
+
 
16480
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
16481
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
16482
+# This Makefile.in is free software; the Free Software Foundation
 
16483
+# gives unlimited permission to copy and/or distribute it,
 
16484
+# with or without modifications, as long as this notice is preserved.
 
16485
+
 
16486
+# This program is distributed in the hope that it will be useful,
 
16487
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
16488
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
16489
+# PARTICULAR PURPOSE.
 
16490
+
 
16491
+
 
16492
+
 
16493
+
 
16494
+srcdir = .
 
16495
+top_srcdir = ../../../..
 
16496
+
 
16497
+pkgdatadir = $(datadir)/irssi
 
16498
+pkglibdir = $(libdir)/irssi
 
16499
+pkgincludedir = $(includedir)/irssi
 
16500
+top_builddir = ../../../..
 
16501
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
16502
+INSTALL = /usr/bin/install -c
 
16503
+install_sh_DATA = $(install_sh) -c -m 644
 
16504
+install_sh_PROGRAM = $(install_sh) -c
 
16505
+install_sh_SCRIPT = $(install_sh) -c
 
16506
+INSTALL_HEADER = $(INSTALL_DATA)
 
16507
+transform = $(program_transform_name)
 
16508
+NORMAL_INSTALL = :
 
16509
+PRE_INSTALL = :
 
16510
+POST_INSTALL = :
 
16511
+NORMAL_UNINSTALL = :
 
16512
+PRE_UNINSTALL = :
 
16513
+POST_UNINSTALL = :
 
16514
+build_triplet = i686-pc-linux-gnu
 
16515
+host_triplet = i686-pc-linux-gnu
 
16516
+subdir = src/fe-common/irc/dcc
 
16517
+DIST_COMMON = $(pkginc_fe_common_irc_dcc_HEADERS) \
 
16518
+       $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
16519
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
16520
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
16521
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
16522
+       $(top_srcdir)/configure.in
 
16523
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
16524
+       $(ACLOCAL_M4)
 
16525
+mkinstalldirs = $(install_sh) -d
 
16526
+CONFIG_HEADER = $(top_builddir)/config.h
 
16527
+CONFIG_CLEAN_FILES =
 
16528
+LIBRARIES = $(noinst_LIBRARIES)
 
16529
+ARFLAGS = cru
 
16530
+libfe_irc_dcc_a_AR = $(AR) $(ARFLAGS)
 
16531
+libfe_irc_dcc_a_LIBADD =
 
16532
+am_libfe_irc_dcc_a_OBJECTS = fe-dcc.$(OBJEXT) fe-dcc-chat.$(OBJEXT) \
 
16533
+       fe-dcc-chat-messages.$(OBJEXT) fe-dcc-get.$(OBJEXT) \
 
16534
+       fe-dcc-send.$(OBJEXT) module-formats.$(OBJEXT) \
 
16535
+       fe-dcc-server.$(OBJEXT)
 
16536
+libfe_irc_dcc_a_OBJECTS = $(am_libfe_irc_dcc_a_OBJECTS)
 
16537
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
16538
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
16539
+am__depfiles_maybe = depfiles
 
16540
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
16541
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
16542
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
16543
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
16544
+       $(AM_CFLAGS) $(CFLAGS)
 
16545
+CCLD = $(CC)
 
16546
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
16547
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
16548
+SOURCES = $(libfe_irc_dcc_a_SOURCES)
 
16549
+DIST_SOURCES = $(libfe_irc_dcc_a_SOURCES)
 
16550
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
16551
+am__vpath_adj = case $$p in \
 
16552
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
16553
+    *) f=$$p;; \
 
16554
+  esac;
 
16555
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
16556
+am__installdirs = "$(DESTDIR)$(pkginc_fe_common_irc_dccdir)"
 
16557
+pkginc_fe_common_irc_dccHEADERS_INSTALL = $(INSTALL_HEADER)
 
16558
+HEADERS = $(pkginc_fe_common_irc_dcc_HEADERS)
 
16559
+ETAGS = etags
 
16560
+CTAGS = ctags
 
16561
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
16562
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
16563
+AMDEP_FALSE = #
 
16564
+AMDEP_TRUE = 
 
16565
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
16566
+AR = ar
 
16567
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
16568
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
16569
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
16570
+AWK = gawk
 
16571
+BUILD_IRSSIBOT_FALSE = 
 
16572
+BUILD_IRSSIBOT_TRUE = #
 
16573
+BUILD_IRSSIPROXY_FALSE = 
 
16574
+BUILD_IRSSIPROXY_TRUE = #
 
16575
+BUILD_PLUGINS_FALSE = 
 
16576
+BUILD_PLUGINS_TRUE = #
 
16577
+BUILD_TEXTUI_FALSE = #
 
16578
+BUILD_TEXTUI_TRUE = 
 
16579
+CC = gcc
 
16580
+CCDEPMODE = depmode=gcc3
 
16581
+CFLAGS = -g -O2 -Wall  
 
16582
+CHAT_MODULES = irc
 
16583
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
16584
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
16585
+CPP = gcc -E
 
16586
+CPPFLAGS = 
 
16587
+CURSES_INCLUDEDIR = 
 
16588
+CURSES_LIBS = -lncurses
 
16589
+CXX = g++
 
16590
+CXXCPP = g++ -E
 
16591
+CXXDEPMODE = depmode=gcc3
 
16592
+CXXFLAGS = -g -O2
 
16593
+CYGPATH_W = echo
 
16594
+DEFS = -DHAVE_CONFIG_H
 
16595
+DEPDIR = .deps
 
16596
+DYNALOADER_A = 
 
16597
+ECHO = echo
 
16598
+ECHO_C = 
 
16599
+ECHO_N = -n
 
16600
+ECHO_T = 
 
16601
+EGREP = grep -E
 
16602
+EXEEXT = 
 
16603
+F77 = 
 
16604
+FFLAGS = 
 
16605
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
16606
+GLIB_CONFIG = 
 
16607
+GLIB_GENMARSHAL = glib-genmarshal
 
16608
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
16609
+GLIB_MKENUMS = glib-mkenums
 
16610
+GOBJECT_QUERY = gobject-query
 
16611
+HAVE_GNUTLS_FALSE = #
 
16612
+HAVE_GNUTLS_TRUE = 
 
16613
+HAVE_PERL_FALSE = #
 
16614
+HAVE_PERL_TRUE = 
 
16615
+HAVE_STATIC_PERL_FALSE = #
 
16616
+HAVE_STATIC_PERL_TRUE = 
 
16617
+INSTALL_DATA = ${INSTALL} -m 644
 
16618
+INSTALL_PROGRAM = ${INSTALL}
 
16619
+INSTALL_SCRIPT = ${INSTALL}
 
16620
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
16621
+LDFLAGS = 
 
16622
+LIBGNUTLS_CFLAGS = -I/usr/include
 
16623
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
16624
+LIBGNUTLS_LIBS = -lgnutls
 
16625
+LIBOBJS = 
 
16626
+LIBPERL_A = 
 
16627
+LIBS = 
 
16628
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
16629
+LN_S = ln -s
 
16630
+LTLIBOBJS = 
 
16631
+MAINT = 
 
16632
+MAINTAINER_MODE_FALSE = #
 
16633
+MAINTAINER_MODE_TRUE = 
 
16634
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
16635
+NEED_TPARM_FALSE = 
 
16636
+NEED_TPARM_TRUE = #
 
16637
+OBJEXT = o
 
16638
+PACKAGE = irssi
 
16639
+PACKAGE_BUGREPORT = 
 
16640
+PACKAGE_NAME = 
 
16641
+PACKAGE_STRING = 
 
16642
+PACKAGE_TARNAME = 
 
16643
+PACKAGE_VERSION = 
 
16644
+PATH_SEPARATOR = :
 
16645
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
16646
+PERL_EXTRA_OPTS = 
 
16647
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
16648
+PERL_LDFLAGS = 
 
16649
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
16650
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
16651
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
16652
+PERL_MM_PARAMS = 
 
16653
+PERL_STATIC_LIBS = 0
 
16654
+PERL_USE_LIB = 
 
16655
+PKG_CONFIG = /usr/bin/pkg-config
 
16656
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
16657
+RANLIB = ranlib
 
16658
+SET_MAKE = 
 
16659
+SHELL = /bin/sh
 
16660
+SSL_CFLAGS =  
 
16661
+SSL_LIBS = -lssl -lcrypto -ldl  
 
16662
+STRIP = strip
 
16663
+TEXTUI_LIBS = -lncurses
 
16664
+USE_CURSES_FALSE = 
 
16665
+USE_CURSES_TRUE = #
 
16666
+VERSION = 0.8.10-rc5
 
16667
+VERSION_DATE = 20050717
 
16668
+VERSION_TIME = 1223
 
16669
+ac_ct_AR = ar
 
16670
+ac_ct_CC = gcc
 
16671
+ac_ct_CXX = g++
 
16672
+ac_ct_F77 = 
 
16673
+ac_ct_RANLIB = ranlib
 
16674
+ac_ct_STRIP = strip
 
16675
+ac_pt_PKG_CONFIG = 
 
16676
+am__fastdepCC_FALSE = #
 
16677
+am__fastdepCC_TRUE = 
 
16678
+am__fastdepCXX_FALSE = #
 
16679
+am__fastdepCXX_TRUE = 
 
16680
+am__include = include
 
16681
+am__leading_dot = .
 
16682
+am__quote = 
 
16683
+am__tar = ${AMTAR} chof - "$$tardir"
 
16684
+am__untar = ${AMTAR} xf -
 
16685
+bindir = ${exec_prefix}/bin
 
16686
+build = i686-pc-linux-gnu
 
16687
+build_alias = 
 
16688
+build_cpu = i686
 
16689
+build_os = linux-gnu
 
16690
+build_vendor = pc
 
16691
+datadir = ${prefix}/share
 
16692
+exec_prefix = ${prefix}
 
16693
+host = i686-pc-linux-gnu
 
16694
+host_alias = 
 
16695
+host_cpu = i686
 
16696
+host_os = linux-gnu
 
16697
+host_vendor = pc
 
16698
+includedir = ${prefix}/include
 
16699
+infodir = ${prefix}/info
 
16700
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
16701
+irc_MODULES = dcc flood notifylist
 
16702
+libdir = ${exec_prefix}/lib
 
16703
+libexecdir = ${exec_prefix}/libexec
 
16704
+localstatedir = ${prefix}/var
 
16705
+mandir = ${prefix}/man
 
16706
+mkdir_p = mkdir -p --
 
16707
+oldincludedir = /usr/include
 
16708
+perl_module_fe_lib = 
 
16709
+perl_module_lib = 
 
16710
+perl_static_fe_lib = libfe_perl_static.la
 
16711
+perl_static_lib = libperl_core_static.la
 
16712
+perlpath = /usr/bin/perl
 
16713
+prefix = /usr/local
 
16714
+program_transform_name = s,x,x,
 
16715
+sbindir = ${exec_prefix}/sbin
 
16716
+sedpath = /bin/sed
 
16717
+sharedstatedir = ${prefix}/com
 
16718
+sysconfdir = ${prefix}/etc
 
16719
+target_alias = 
 
16720
+noinst_LIBRARIES = libfe_irc_dcc.a
 
16721
+INCLUDES = \
 
16722
+       -I$(top_srcdir)/src \
 
16723
+       -I$(top_srcdir)/src/core/ \
 
16724
+       -I$(top_srcdir)/src/irc/core/ \
 
16725
+       -I$(top_srcdir)/src/irc/dcc/ \
 
16726
+       -I$(top_srcdir)/src/fe-common/core/ \
 
16727
+       $(GLIB_CFLAGS) \
 
16728
+       -DHELPDIR=\""$(datadir)/irssi/help"\" \
 
16729
+       -DSYSCONFDIR=\""$(sysconfdir)"\"
 
16730
+
 
16731
+libfe_irc_dcc_a_SOURCES = \
 
16732
+       fe-dcc.c \
 
16733
+       fe-dcc-chat.c \
 
16734
+       fe-dcc-chat-messages.c \
 
16735
+       fe-dcc-get.c \
 
16736
+       fe-dcc-send.c \
 
16737
+       module-formats.c \
 
16738
+       fe-dcc-server.c
 
16739
+
 
16740
+pkginc_fe_common_irc_dccdir = $(pkgincludedir)/src/fe-common/irc/dcc
 
16741
+pkginc_fe_common_irc_dcc_HEADERS = \
 
16742
+       module.h \
 
16743
+       module-formats.h \
 
16744
+       fe-dcc.h
 
16745
+
 
16746
+all: all-am
 
16747
+
 
16748
+.SUFFIXES:
 
16749
+.SUFFIXES: .c .lo .o .obj
 
16750
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
16751
+       @for dep in $?; do \
 
16752
+         case '$(am__configure_deps)' in \
 
16753
+           *$$dep*) \
 
16754
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
16755
+               && exit 0; \
 
16756
+             exit 1;; \
 
16757
+         esac; \
 
16758
+       done; \
 
16759
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/fe-common/irc/dcc/Makefile'; \
 
16760
+       cd $(top_srcdir) && \
 
16761
+         $(AUTOMAKE) --gnu  src/fe-common/irc/dcc/Makefile
 
16762
+.PRECIOUS: Makefile
 
16763
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
16764
+       @case '$?' in \
 
16765
+         *config.status*) \
 
16766
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
16767
+         *) \
 
16768
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
16769
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
16770
+       esac;
 
16771
+
 
16772
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
16773
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
16774
+
 
16775
+$(top_srcdir)/configure:  $(am__configure_deps)
 
16776
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
16777
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
16778
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
16779
+
 
16780
+clean-noinstLIBRARIES:
 
16781
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
16782
+libfe_irc_dcc.a: $(libfe_irc_dcc_a_OBJECTS) $(libfe_irc_dcc_a_DEPENDENCIES) 
 
16783
+       -rm -f libfe_irc_dcc.a
 
16784
+       $(libfe_irc_dcc_a_AR) libfe_irc_dcc.a $(libfe_irc_dcc_a_OBJECTS) $(libfe_irc_dcc_a_LIBADD)
 
16785
+       $(RANLIB) libfe_irc_dcc.a
 
16786
+
 
16787
+mostlyclean-compile:
 
16788
+       -rm -f *.$(OBJEXT)
 
16789
+
 
16790
+distclean-compile:
 
16791
+       -rm -f *.tab.c
 
16792
+
 
16793
+include ./$(DEPDIR)/fe-dcc-chat-messages.Po
 
16794
+include ./$(DEPDIR)/fe-dcc-chat.Po
 
16795
+include ./$(DEPDIR)/fe-dcc-get.Po
 
16796
+include ./$(DEPDIR)/fe-dcc-send.Po
 
16797
+include ./$(DEPDIR)/fe-dcc-server.Po
 
16798
+include ./$(DEPDIR)/fe-dcc.Po
 
16799
+include ./$(DEPDIR)/module-formats.Po
 
16800
+
 
16801
+.c.o:
 
16802
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
16803
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
16804
+#      source='$<' object='$@' libtool=no \
 
16805
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
16806
+#      $(COMPILE) -c $<
 
16807
+
 
16808
+.c.obj:
 
16809
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
16810
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
16811
+#      source='$<' object='$@' libtool=no \
 
16812
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
16813
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
16814
+
 
16815
+.c.lo:
 
16816
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
16817
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
16818
+#      source='$<' object='$@' libtool=yes \
 
16819
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
16820
+#      $(LTCOMPILE) -c -o $@ $<
 
16821
+
 
16822
+mostlyclean-libtool:
 
16823
+       -rm -f *.lo
 
16824
+
 
16825
+clean-libtool:
 
16826
+       -rm -rf .libs _libs
 
16827
+
 
16828
+distclean-libtool:
 
16829
+       -rm -f libtool
 
16830
+uninstall-info-am:
 
16831
+install-pkginc_fe_common_irc_dccHEADERS: $(pkginc_fe_common_irc_dcc_HEADERS)
 
16832
+       @$(NORMAL_INSTALL)
 
16833
+       test -z "$(pkginc_fe_common_irc_dccdir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_fe_common_irc_dccdir)"
 
16834
+       @list='$(pkginc_fe_common_irc_dcc_HEADERS)'; for p in $$list; do \
 
16835
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
16836
+         f=$(am__strip_dir) \
 
16837
+         echo " $(pkginc_fe_common_irc_dccHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_fe_common_irc_dccdir)/$$f'"; \
 
16838
+         $(pkginc_fe_common_irc_dccHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_fe_common_irc_dccdir)/$$f"; \
 
16839
+       done
 
16840
+
 
16841
+uninstall-pkginc_fe_common_irc_dccHEADERS:
 
16842
+       @$(NORMAL_UNINSTALL)
 
16843
+       @list='$(pkginc_fe_common_irc_dcc_HEADERS)'; for p in $$list; do \
 
16844
+         f=$(am__strip_dir) \
 
16845
+         echo " rm -f '$(DESTDIR)$(pkginc_fe_common_irc_dccdir)/$$f'"; \
 
16846
+         rm -f "$(DESTDIR)$(pkginc_fe_common_irc_dccdir)/$$f"; \
 
16847
+       done
 
16848
+
 
16849
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
16850
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
16851
+       unique=`for i in $$list; do \
 
16852
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
16853
+         done | \
 
16854
+         $(AWK) '    { files[$$0] = 1; } \
 
16855
+              END { for (i in files) print i; }'`; \
 
16856
+       mkid -fID $$unique
 
16857
+tags: TAGS
 
16858
+
 
16859
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
16860
+               $(TAGS_FILES) $(LISP)
 
16861
+       tags=; \
 
16862
+       here=`pwd`; \
 
16863
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
16864
+       unique=`for i in $$list; do \
 
16865
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
16866
+         done | \
 
16867
+         $(AWK) '    { files[$$0] = 1; } \
 
16868
+              END { for (i in files) print i; }'`; \
 
16869
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
16870
+         test -n "$$unique" || unique=$$empty_fix; \
 
16871
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
16872
+           $$tags $$unique; \
 
16873
+       fi
 
16874
+ctags: CTAGS
 
16875
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
16876
+               $(TAGS_FILES) $(LISP)
 
16877
+       tags=; \
 
16878
+       here=`pwd`; \
 
16879
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
16880
+       unique=`for i in $$list; do \
 
16881
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
16882
+         done | \
 
16883
+         $(AWK) '    { files[$$0] = 1; } \
 
16884
+              END { for (i in files) print i; }'`; \
 
16885
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
16886
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
16887
+            $$tags $$unique
 
16888
+
 
16889
+GTAGS:
 
16890
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
16891
+         && cd $(top_srcdir) \
 
16892
+         && gtags -i $(GTAGS_ARGS) $$here
 
16893
+
 
16894
+distclean-tags:
 
16895
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
16896
+
 
16897
+distdir: $(DISTFILES)
 
16898
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
16899
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
16900
+       list='$(DISTFILES)'; for file in $$list; do \
 
16901
+         case $$file in \
 
16902
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
16903
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
16904
+         esac; \
 
16905
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
16906
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
16907
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
16908
+           dir="/$$dir"; \
 
16909
+           $(mkdir_p) "$(distdir)$$dir"; \
 
16910
+         else \
 
16911
+           dir=''; \
 
16912
+         fi; \
 
16913
+         if test -d $$d/$$file; then \
 
16914
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
16915
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
16916
+           fi; \
 
16917
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
16918
+         else \
 
16919
+           test -f $(distdir)/$$file \
 
16920
+           || cp -p $$d/$$file $(distdir)/$$file \
 
16921
+           || exit 1; \
 
16922
+         fi; \
 
16923
+       done
 
16924
+check-am: all-am
 
16925
+check: check-am
 
16926
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
16927
+installdirs:
 
16928
+       for dir in "$(DESTDIR)$(pkginc_fe_common_irc_dccdir)"; do \
 
16929
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
16930
+       done
 
16931
+install: install-am
 
16932
+install-exec: install-exec-am
 
16933
+install-data: install-data-am
 
16934
+uninstall: uninstall-am
 
16935
+
 
16936
+install-am: all-am
 
16937
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
16938
+
 
16939
+installcheck: installcheck-am
 
16940
+install-strip:
 
16941
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
16942
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
16943
+         `test -z '$(STRIP)' || \
 
16944
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
16945
+mostlyclean-generic:
 
16946
+
 
16947
+clean-generic:
 
16948
+
 
16949
+distclean-generic:
 
16950
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
16951
+
 
16952
+maintainer-clean-generic:
 
16953
+       @echo "This command is intended for maintainers to use"
 
16954
+       @echo "it deletes files that may require special tools to rebuild."
 
16955
+clean: clean-am
 
16956
+
 
16957
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
16958
+       mostlyclean-am
 
16959
+
 
16960
+distclean: distclean-am
 
16961
+       -rm -rf ./$(DEPDIR)
 
16962
+       -rm -f Makefile
 
16963
+distclean-am: clean-am distclean-compile distclean-generic \
 
16964
+       distclean-libtool distclean-tags
 
16965
+
 
16966
+dvi: dvi-am
 
16967
+
 
16968
+dvi-am:
 
16969
+
 
16970
+html: html-am
 
16971
+
 
16972
+info: info-am
 
16973
+
 
16974
+info-am:
 
16975
+
 
16976
+install-data-am: install-pkginc_fe_common_irc_dccHEADERS
 
16977
+
 
16978
+install-exec-am:
 
16979
+
 
16980
+install-info: install-info-am
 
16981
+
 
16982
+install-man:
 
16983
+
 
16984
+installcheck-am:
 
16985
+
 
16986
+maintainer-clean: maintainer-clean-am
 
16987
+       -rm -rf ./$(DEPDIR)
 
16988
+       -rm -f Makefile
 
16989
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
16990
+
 
16991
+mostlyclean: mostlyclean-am
 
16992
+
 
16993
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
16994
+       mostlyclean-libtool
 
16995
+
 
16996
+pdf: pdf-am
 
16997
+
 
16998
+pdf-am:
 
16999
+
 
17000
+ps: ps-am
 
17001
+
 
17002
+ps-am:
 
17003
+
 
17004
+uninstall-am: uninstall-info-am \
 
17005
+       uninstall-pkginc_fe_common_irc_dccHEADERS
 
17006
+
 
17007
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
17008
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
17009
+       distclean-compile distclean-generic distclean-libtool \
 
17010
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
17011
+       install install-am install-data install-data-am install-exec \
 
17012
+       install-exec-am install-info install-info-am install-man \
 
17013
+       install-pkginc_fe_common_irc_dccHEADERS install-strip \
 
17014
+       installcheck installcheck-am installdirs maintainer-clean \
 
17015
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
17016
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
17017
+       tags uninstall uninstall-am uninstall-info-am \
 
17018
+       uninstall-pkginc_fe_common_irc_dccHEADERS
 
17019
+
 
17020
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
17021
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
17022
+.NOEXPORT:
 
17023
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/dcc/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/Makefile.in
 
17024
--- ./src/fe-common/irc/dcc/Makefile.in 2005-07-17 16:30:33.000000000 +0300
 
17025
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/dcc/Makefile.in       2005-07-17 16:48:09.000000000 +0300
 
17026
@@ -132,6 +132,8 @@
 
17027
 GLIB_LIBS = @GLIB_LIBS@
 
17028
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
17029
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
17030
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
17031
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
17032
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
17033
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
17034
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
17035
@@ -141,6 +143,9 @@
 
17036
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
17037
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
17038
 LDFLAGS = @LDFLAGS@
 
17039
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
17040
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
17041
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
17042
 LIBOBJS = @LIBOBJS@
 
17043
 LIBPERL_A = @LIBPERL_A@
 
17044
 LIBS = @LIBS@
 
17045
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-common-irc.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-common-irc.Po
 
17046
--- ./src/fe-common/irc/.deps/fe-common-irc.Po  1970-01-01 02:00:00.000000000 +0200
 
17047
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-common-irc.Po        2005-07-17 16:48:41.000000000 +0300
 
17048
@@ -0,0 +1 @@
 
17049
+# dummy
 
17050
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-ctcp.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-ctcp.Po
 
17051
--- ./src/fe-common/irc/.deps/fe-ctcp.Po        1970-01-01 02:00:00.000000000 +0200
 
17052
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-ctcp.Po      2005-07-17 16:48:41.000000000 +0300
 
17053
@@ -0,0 +1 @@
 
17054
+# dummy
 
17055
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-events-numeric.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-events-numeric.Po
 
17056
--- ./src/fe-common/irc/.deps/fe-events-numeric.Po      1970-01-01 02:00:00.000000000 +0200
 
17057
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-events-numeric.Po    2005-07-17 16:48:41.000000000 +0300
 
17058
@@ -0,0 +1 @@
 
17059
+# dummy
 
17060
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-events.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-events.Po
 
17061
--- ./src/fe-common/irc/.deps/fe-events.Po      1970-01-01 02:00:00.000000000 +0200
 
17062
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-events.Po    2005-07-17 16:48:41.000000000 +0300
 
17063
@@ -0,0 +1 @@
 
17064
+# dummy
 
17065
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-irc-channels.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-channels.Po
 
17066
--- ./src/fe-common/irc/.deps/fe-irc-channels.Po        1970-01-01 02:00:00.000000000 +0200
 
17067
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-channels.Po      2005-07-17 16:48:41.000000000 +0300
 
17068
@@ -0,0 +1 @@
 
17069
+# dummy
 
17070
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-irc-commands.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-commands.Po
 
17071
--- ./src/fe-common/irc/.deps/fe-irc-commands.Po        1970-01-01 02:00:00.000000000 +0200
 
17072
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-commands.Po      2005-07-17 16:48:41.000000000 +0300
 
17073
@@ -0,0 +1 @@
 
17074
+# dummy
 
17075
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-irc-messages.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-messages.Po
 
17076
--- ./src/fe-common/irc/.deps/fe-irc-messages.Po        1970-01-01 02:00:00.000000000 +0200
 
17077
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-messages.Po      2005-07-17 16:48:41.000000000 +0300
 
17078
@@ -0,0 +1 @@
 
17079
+# dummy
 
17080
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-ircnet.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-ircnet.Po
 
17081
--- ./src/fe-common/irc/.deps/fe-ircnet.Po      1970-01-01 02:00:00.000000000 +0200
 
17082
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-ircnet.Po    2005-07-17 16:48:41.000000000 +0300
 
17083
@@ -0,0 +1 @@
 
17084
+# dummy
 
17085
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-irc-queries.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-queries.Po
 
17086
--- ./src/fe-common/irc/.deps/fe-irc-queries.Po 1970-01-01 02:00:00.000000000 +0200
 
17087
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-queries.Po       2005-07-17 16:48:41.000000000 +0300
 
17088
@@ -0,0 +1 @@
 
17089
+# dummy
 
17090
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-irc-server.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-server.Po
 
17091
--- ./src/fe-common/irc/.deps/fe-irc-server.Po  1970-01-01 02:00:00.000000000 +0200
 
17092
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-irc-server.Po        2005-07-17 16:48:41.000000000 +0300
 
17093
@@ -0,0 +1 @@
 
17094
+# dummy
 
17095
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-modes.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-modes.Po
 
17096
--- ./src/fe-common/irc/.deps/fe-modes.Po       1970-01-01 02:00:00.000000000 +0200
 
17097
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-modes.Po     2005-07-17 16:48:41.000000000 +0300
 
17098
@@ -0,0 +1 @@
 
17099
+# dummy
 
17100
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-netjoin.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-netjoin.Po
 
17101
--- ./src/fe-common/irc/.deps/fe-netjoin.Po     1970-01-01 02:00:00.000000000 +0200
 
17102
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-netjoin.Po   2005-07-17 16:48:41.000000000 +0300
 
17103
@@ -0,0 +1 @@
 
17104
+# dummy
 
17105
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-netsplit.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-netsplit.Po
 
17106
--- ./src/fe-common/irc/.deps/fe-netsplit.Po    1970-01-01 02:00:00.000000000 +0200
 
17107
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-netsplit.Po  2005-07-17 16:48:41.000000000 +0300
 
17108
@@ -0,0 +1 @@
 
17109
+# dummy
 
17110
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/fe-whois.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-whois.Po
 
17111
--- ./src/fe-common/irc/.deps/fe-whois.Po       1970-01-01 02:00:00.000000000 +0200
 
17112
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/fe-whois.Po     2005-07-17 16:48:41.000000000 +0300
 
17113
@@ -0,0 +1 @@
 
17114
+# dummy
 
17115
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/irc-completion.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/irc-completion.Po
 
17116
--- ./src/fe-common/irc/.deps/irc-completion.Po 1970-01-01 02:00:00.000000000 +0200
 
17117
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/irc-completion.Po       2005-07-17 16:48:41.000000000 +0300
 
17118
@@ -0,0 +1 @@
 
17119
+# dummy
 
17120
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/irc-modules.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/irc-modules.Po
 
17121
--- ./src/fe-common/irc/.deps/irc-modules.Po    1970-01-01 02:00:00.000000000 +0200
 
17122
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/irc-modules.Po  2005-07-17 16:48:41.000000000 +0300
 
17123
@@ -0,0 +1 @@
 
17124
+# dummy
 
17125
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/.deps/module-formats.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/module-formats.Po
 
17126
--- ./src/fe-common/irc/.deps/module-formats.Po 1970-01-01 02:00:00.000000000 +0200
 
17127
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/.deps/module-formats.Po       2005-07-17 16:48:41.000000000 +0300
 
17128
@@ -0,0 +1 @@
 
17129
+# dummy
 
17130
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/irc-modules.c /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/irc-modules.c
 
17131
--- ./src/fe-common/irc/irc-modules.c   1970-01-01 02:00:00.000000000 +0200
 
17132
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/irc-modules.c 2005-07-17 16:48:37.000000000 +0300
 
17133
@@ -0,0 +1,5 @@
 
17134
+/* this file is automatically generated by configure - don't change */
 
17135
+void fe_irc_dcc_init(void);void fe_irc_notifylist_init(void);
 
17136
+void fe_irc_notifylist_deinit(void);void fe_irc_dcc_deinit(void);
 
17137
+void fe_irc_modules_init(void) {  fe_irc_dcc_init(); fe_irc_notifylist_init(); }
 
17138
+void fe_irc_modules_deinit(void) { fe_irc_notifylist_deinit(); fe_irc_dcc_deinit();  }
 
17139
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/Makefile /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/Makefile
 
17140
--- ./src/fe-common/irc/Makefile        1970-01-01 02:00:00.000000000 +0200
 
17141
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/Makefile      2005-07-17 16:48:39.000000000 +0300
 
17142
@@ -0,0 +1,684 @@
 
17143
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
17144
+# src/fe-common/irc/Makefile.  Generated from Makefile.in by configure.
 
17145
+
 
17146
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
17147
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
17148
+# This Makefile.in is free software; the Free Software Foundation
 
17149
+# gives unlimited permission to copy and/or distribute it,
 
17150
+# with or without modifications, as long as this notice is preserved.
 
17151
+
 
17152
+# This program is distributed in the hope that it will be useful,
 
17153
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
17154
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
17155
+# PARTICULAR PURPOSE.
 
17156
+
 
17157
+
 
17158
+
 
17159
+
 
17160
+srcdir = .
 
17161
+top_srcdir = ../../..
 
17162
+
 
17163
+pkgdatadir = $(datadir)/irssi
 
17164
+pkglibdir = $(libdir)/irssi
 
17165
+pkgincludedir = $(includedir)/irssi
 
17166
+top_builddir = ../../..
 
17167
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
17168
+INSTALL = /usr/bin/install -c
 
17169
+install_sh_DATA = $(install_sh) -c -m 644
 
17170
+install_sh_PROGRAM = $(install_sh) -c
 
17171
+install_sh_SCRIPT = $(install_sh) -c
 
17172
+INSTALL_HEADER = $(INSTALL_DATA)
 
17173
+transform = $(program_transform_name)
 
17174
+NORMAL_INSTALL = :
 
17175
+PRE_INSTALL = :
 
17176
+POST_INSTALL = :
 
17177
+NORMAL_UNINSTALL = :
 
17178
+PRE_UNINSTALL = :
 
17179
+POST_UNINSTALL = :
 
17180
+build_triplet = i686-pc-linux-gnu
 
17181
+host_triplet = i686-pc-linux-gnu
 
17182
+subdir = src/fe-common/irc
 
17183
+DIST_COMMON = $(pkginc_fe_common_irc_HEADERS) $(srcdir)/Makefile.am \
 
17184
+       $(srcdir)/Makefile.in
 
17185
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
17186
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
17187
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
17188
+       $(top_srcdir)/configure.in
 
17189
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
17190
+       $(ACLOCAL_M4)
 
17191
+mkinstalldirs = $(install_sh) -d
 
17192
+CONFIG_HEADER = $(top_builddir)/config.h
 
17193
+CONFIG_CLEAN_FILES =
 
17194
+LIBRARIES = $(noinst_LIBRARIES)
 
17195
+ARFLAGS = cru
 
17196
+libfe_common_irc_a_AR = $(AR) $(ARFLAGS)
 
17197
+libfe_common_irc_a_LIBADD =
 
17198
+am__objects_1 = fe-irc-channels.$(OBJEXT) fe-irc-commands.$(OBJEXT) \
 
17199
+       fe-irc-messages.$(OBJEXT) fe-irc-queries.$(OBJEXT) \
 
17200
+       fe-irc-server.$(OBJEXT) fe-ircnet.$(OBJEXT) fe-ctcp.$(OBJEXT) \
 
17201
+       fe-events.$(OBJEXT) fe-events-numeric.$(OBJEXT) \
 
17202
+       fe-modes.$(OBJEXT) fe-netjoin.$(OBJEXT) fe-netsplit.$(OBJEXT) \
 
17203
+       fe-common-irc.$(OBJEXT) fe-whois.$(OBJEXT) \
 
17204
+       irc-completion.$(OBJEXT) module-formats.$(OBJEXT)
 
17205
+am_libfe_common_irc_a_OBJECTS = $(am__objects_1) irc-modules.$(OBJEXT)
 
17206
+libfe_common_irc_a_OBJECTS = $(am_libfe_common_irc_a_OBJECTS)
 
17207
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
17208
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
17209
+am__depfiles_maybe = depfiles
 
17210
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
17211
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
17212
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
17213
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
17214
+       $(AM_CFLAGS) $(CFLAGS)
 
17215
+CCLD = $(CC)
 
17216
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
17217
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
17218
+SOURCES = $(libfe_common_irc_a_SOURCES)
 
17219
+DIST_SOURCES = $(libfe_common_irc_a_SOURCES)
 
17220
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
17221
+       html-recursive info-recursive install-data-recursive \
 
17222
+       install-exec-recursive install-info-recursive \
 
17223
+       install-recursive installcheck-recursive installdirs-recursive \
 
17224
+       pdf-recursive ps-recursive uninstall-info-recursive \
 
17225
+       uninstall-recursive
 
17226
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
17227
+am__vpath_adj = case $$p in \
 
17228
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
17229
+    *) f=$$p;; \
 
17230
+  esac;
 
17231
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
17232
+am__installdirs = "$(DESTDIR)$(pkginc_fe_common_ircdir)"
 
17233
+pkginc_fe_common_ircHEADERS_INSTALL = $(INSTALL_HEADER)
 
17234
+HEADERS = $(pkginc_fe_common_irc_HEADERS)
 
17235
+ETAGS = etags
 
17236
+CTAGS = ctags
 
17237
+DIST_SUBDIRS = $(SUBDIRS)
 
17238
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
17239
+AMDEP_FALSE = #
 
17240
+AMDEP_TRUE = 
 
17241
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
17242
+AR = ar
 
17243
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
17244
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
17245
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
17246
+AWK = gawk
 
17247
+BUILD_IRSSIBOT_FALSE = 
 
17248
+BUILD_IRSSIBOT_TRUE = #
 
17249
+BUILD_IRSSIPROXY_FALSE = 
 
17250
+BUILD_IRSSIPROXY_TRUE = #
 
17251
+BUILD_PLUGINS_FALSE = 
 
17252
+BUILD_PLUGINS_TRUE = #
 
17253
+BUILD_TEXTUI_FALSE = #
 
17254
+BUILD_TEXTUI_TRUE = 
 
17255
+CC = gcc
 
17256
+CCDEPMODE = depmode=gcc3
 
17257
+CFLAGS = -g -O2 -Wall  
 
17258
+CHAT_MODULES = irc
 
17259
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
17260
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
17261
+CPP = gcc -E
 
17262
+CPPFLAGS = 
 
17263
+CURSES_INCLUDEDIR = 
 
17264
+CURSES_LIBS = -lncurses
 
17265
+CXX = g++
 
17266
+CXXCPP = g++ -E
 
17267
+CXXDEPMODE = depmode=gcc3
 
17268
+CXXFLAGS = -g -O2
 
17269
+CYGPATH_W = echo
 
17270
+DEFS = -DHAVE_CONFIG_H
 
17271
+DEPDIR = .deps
 
17272
+DYNALOADER_A = 
 
17273
+ECHO = echo
 
17274
+ECHO_C = 
 
17275
+ECHO_N = -n
 
17276
+ECHO_T = 
 
17277
+EGREP = grep -E
 
17278
+EXEEXT = 
 
17279
+F77 = 
 
17280
+FFLAGS = 
 
17281
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
17282
+GLIB_CONFIG = 
 
17283
+GLIB_GENMARSHAL = glib-genmarshal
 
17284
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
17285
+GLIB_MKENUMS = glib-mkenums
 
17286
+GOBJECT_QUERY = gobject-query
 
17287
+HAVE_GNUTLS_FALSE = #
 
17288
+HAVE_GNUTLS_TRUE = 
 
17289
+HAVE_PERL_FALSE = #
 
17290
+HAVE_PERL_TRUE = 
 
17291
+HAVE_STATIC_PERL_FALSE = #
 
17292
+HAVE_STATIC_PERL_TRUE = 
 
17293
+INSTALL_DATA = ${INSTALL} -m 644
 
17294
+INSTALL_PROGRAM = ${INSTALL}
 
17295
+INSTALL_SCRIPT = ${INSTALL}
 
17296
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
17297
+LDFLAGS = 
 
17298
+LIBGNUTLS_CFLAGS = -I/usr/include
 
17299
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
17300
+LIBGNUTLS_LIBS = -lgnutls
 
17301
+LIBOBJS = 
 
17302
+LIBPERL_A = 
 
17303
+LIBS = 
 
17304
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
17305
+LN_S = ln -s
 
17306
+LTLIBOBJS = 
 
17307
+MAINT = 
 
17308
+MAINTAINER_MODE_FALSE = #
 
17309
+MAINTAINER_MODE_TRUE = 
 
17310
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
17311
+NEED_TPARM_FALSE = 
 
17312
+NEED_TPARM_TRUE = #
 
17313
+OBJEXT = o
 
17314
+PACKAGE = irssi
 
17315
+PACKAGE_BUGREPORT = 
 
17316
+PACKAGE_NAME = 
 
17317
+PACKAGE_STRING = 
 
17318
+PACKAGE_TARNAME = 
 
17319
+PACKAGE_VERSION = 
 
17320
+PATH_SEPARATOR = :
 
17321
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
17322
+PERL_EXTRA_OPTS = 
 
17323
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
17324
+PERL_LDFLAGS = 
 
17325
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
17326
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
17327
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
17328
+PERL_MM_PARAMS = 
 
17329
+PERL_STATIC_LIBS = 0
 
17330
+PERL_USE_LIB = 
 
17331
+PKG_CONFIG = /usr/bin/pkg-config
 
17332
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
17333
+RANLIB = ranlib
 
17334
+SET_MAKE = 
 
17335
+SHELL = /bin/sh
 
17336
+SSL_CFLAGS =  
 
17337
+SSL_LIBS = -lssl -lcrypto -ldl  
 
17338
+STRIP = strip
 
17339
+TEXTUI_LIBS = -lncurses
 
17340
+USE_CURSES_FALSE = 
 
17341
+USE_CURSES_TRUE = #
 
17342
+VERSION = 0.8.10-rc5
 
17343
+VERSION_DATE = 20050717
 
17344
+VERSION_TIME = 1223
 
17345
+ac_ct_AR = ar
 
17346
+ac_ct_CC = gcc
 
17347
+ac_ct_CXX = g++
 
17348
+ac_ct_F77 = 
 
17349
+ac_ct_RANLIB = ranlib
 
17350
+ac_ct_STRIP = strip
 
17351
+ac_pt_PKG_CONFIG = 
 
17352
+am__fastdepCC_FALSE = #
 
17353
+am__fastdepCC_TRUE = 
 
17354
+am__fastdepCXX_FALSE = #
 
17355
+am__fastdepCXX_TRUE = 
 
17356
+am__include = include
 
17357
+am__leading_dot = .
 
17358
+am__quote = 
 
17359
+am__tar = ${AMTAR} chof - "$$tardir"
 
17360
+am__untar = ${AMTAR} xf -
 
17361
+bindir = ${exec_prefix}/bin
 
17362
+build = i686-pc-linux-gnu
 
17363
+build_alias = 
 
17364
+build_cpu = i686
 
17365
+build_os = linux-gnu
 
17366
+build_vendor = pc
 
17367
+datadir = ${prefix}/share
 
17368
+exec_prefix = ${prefix}
 
17369
+host = i686-pc-linux-gnu
 
17370
+host_alias = 
 
17371
+host_cpu = i686
 
17372
+host_os = linux-gnu
 
17373
+host_vendor = pc
 
17374
+includedir = ${prefix}/include
 
17375
+infodir = ${prefix}/info
 
17376
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
17377
+irc_MODULES = dcc flood notifylist
 
17378
+libdir = ${exec_prefix}/lib
 
17379
+libexecdir = ${exec_prefix}/libexec
 
17380
+localstatedir = ${prefix}/var
 
17381
+mandir = ${prefix}/man
 
17382
+mkdir_p = mkdir -p --
 
17383
+oldincludedir = /usr/include
 
17384
+perl_module_fe_lib = 
 
17385
+perl_module_lib = 
 
17386
+perl_static_fe_lib = libfe_perl_static.la
 
17387
+perl_static_lib = libperl_core_static.la
 
17388
+perlpath = /usr/bin/perl
 
17389
+prefix = /usr/local
 
17390
+program_transform_name = s,x,x,
 
17391
+sbindir = ${exec_prefix}/sbin
 
17392
+sedpath = /bin/sed
 
17393
+sharedstatedir = ${prefix}/com
 
17394
+sysconfdir = ${prefix}/etc
 
17395
+target_alias = 
 
17396
+SUBDIRS = dcc notifylist
 
17397
+noinst_LIBRARIES = libfe_common_irc.a
 
17398
+INCLUDES = \
 
17399
+       -I$(top_srcdir)/src \
 
17400
+       -I$(top_srcdir)/src/core/ \
 
17401
+       -I$(top_srcdir)/src/irc/core/ \
 
17402
+       -I$(top_srcdir)/src/fe-common/core/ \
 
17403
+       $(GLIB_CFLAGS) \
 
17404
+       -DHELPDIR=\""$(datadir)/irssi/help"\" \
 
17405
+       -DSYSCONFDIR=\""$(sysconfdir)"\"
 
17406
+
 
17407
+real_sources = \
 
17408
+       fe-irc-channels.c \
 
17409
+       fe-irc-commands.c \
 
17410
+       fe-irc-messages.c \
 
17411
+       fe-irc-queries.c \
 
17412
+       fe-irc-server.c \
 
17413
+       fe-ircnet.c \
 
17414
+       fe-ctcp.c \
 
17415
+       fe-events.c \
 
17416
+       fe-events-numeric.c \
 
17417
+       fe-modes.c \
 
17418
+       fe-netjoin.c \
 
17419
+       fe-netsplit.c \
 
17420
+       fe-common-irc.c \
 
17421
+       fe-whois.c \
 
17422
+       irc-completion.c \
 
17423
+       module-formats.c 
 
17424
+
 
17425
+libfe_common_irc_a_SOURCES = \
 
17426
+       $(real_sources) \
 
17427
+        irc-modules.c
 
17428
+
 
17429
+pkginc_fe_common_ircdir = $(pkgincludedir)/src/fe-common/irc
 
17430
+pkginc_fe_common_irc_HEADERS = \
 
17431
+       fe-irc-server.h \
 
17432
+       module.h \
 
17433
+       module-formats.h
 
17434
+
 
17435
+DISTFILES = $(DIST_COMMON) $(real_sources) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
 
17436
+all: all-recursive
 
17437
+
 
17438
+.SUFFIXES:
 
17439
+.SUFFIXES: .c .lo .o .obj
 
17440
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
17441
+       @for dep in $?; do \
 
17442
+         case '$(am__configure_deps)' in \
 
17443
+           *$$dep*) \
 
17444
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
17445
+               && exit 0; \
 
17446
+             exit 1;; \
 
17447
+         esac; \
 
17448
+       done; \
 
17449
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/fe-common/irc/Makefile'; \
 
17450
+       cd $(top_srcdir) && \
 
17451
+         $(AUTOMAKE) --gnu  src/fe-common/irc/Makefile
 
17452
+.PRECIOUS: Makefile
 
17453
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
17454
+       @case '$?' in \
 
17455
+         *config.status*) \
 
17456
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
17457
+         *) \
 
17458
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
17459
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
17460
+       esac;
 
17461
+
 
17462
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
17463
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
17464
+
 
17465
+$(top_srcdir)/configure:  $(am__configure_deps)
 
17466
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
17467
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
17468
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
17469
+
 
17470
+clean-noinstLIBRARIES:
 
17471
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
17472
+libfe_common_irc.a: $(libfe_common_irc_a_OBJECTS) $(libfe_common_irc_a_DEPENDENCIES) 
 
17473
+       -rm -f libfe_common_irc.a
 
17474
+       $(libfe_common_irc_a_AR) libfe_common_irc.a $(libfe_common_irc_a_OBJECTS) $(libfe_common_irc_a_LIBADD)
 
17475
+       $(RANLIB) libfe_common_irc.a
 
17476
+
 
17477
+mostlyclean-compile:
 
17478
+       -rm -f *.$(OBJEXT)
 
17479
+
 
17480
+distclean-compile:
 
17481
+       -rm -f *.tab.c
 
17482
+
 
17483
+include ./$(DEPDIR)/fe-common-irc.Po
 
17484
+include ./$(DEPDIR)/fe-ctcp.Po
 
17485
+include ./$(DEPDIR)/fe-events-numeric.Po
 
17486
+include ./$(DEPDIR)/fe-events.Po
 
17487
+include ./$(DEPDIR)/fe-irc-channels.Po
 
17488
+include ./$(DEPDIR)/fe-irc-commands.Po
 
17489
+include ./$(DEPDIR)/fe-irc-messages.Po
 
17490
+include ./$(DEPDIR)/fe-irc-queries.Po
 
17491
+include ./$(DEPDIR)/fe-irc-server.Po
 
17492
+include ./$(DEPDIR)/fe-ircnet.Po
 
17493
+include ./$(DEPDIR)/fe-modes.Po
 
17494
+include ./$(DEPDIR)/fe-netjoin.Po
 
17495
+include ./$(DEPDIR)/fe-netsplit.Po
 
17496
+include ./$(DEPDIR)/fe-whois.Po
 
17497
+include ./$(DEPDIR)/irc-completion.Po
 
17498
+include ./$(DEPDIR)/irc-modules.Po
 
17499
+include ./$(DEPDIR)/module-formats.Po
 
17500
+
 
17501
+.c.o:
 
17502
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
17503
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
17504
+#      source='$<' object='$@' libtool=no \
 
17505
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
17506
+#      $(COMPILE) -c $<
 
17507
+
 
17508
+.c.obj:
 
17509
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
17510
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
17511
+#      source='$<' object='$@' libtool=no \
 
17512
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
17513
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
17514
+
 
17515
+.c.lo:
 
17516
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
17517
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
17518
+#      source='$<' object='$@' libtool=yes \
 
17519
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
17520
+#      $(LTCOMPILE) -c -o $@ $<
 
17521
+
 
17522
+mostlyclean-libtool:
 
17523
+       -rm -f *.lo
 
17524
+
 
17525
+clean-libtool:
 
17526
+       -rm -rf .libs _libs
 
17527
+
 
17528
+distclean-libtool:
 
17529
+       -rm -f libtool
 
17530
+uninstall-info-am:
 
17531
+install-pkginc_fe_common_ircHEADERS: $(pkginc_fe_common_irc_HEADERS)
 
17532
+       @$(NORMAL_INSTALL)
 
17533
+       test -z "$(pkginc_fe_common_ircdir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_fe_common_ircdir)"
 
17534
+       @list='$(pkginc_fe_common_irc_HEADERS)'; for p in $$list; do \
 
17535
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
17536
+         f=$(am__strip_dir) \
 
17537
+         echo " $(pkginc_fe_common_ircHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_fe_common_ircdir)/$$f'"; \
 
17538
+         $(pkginc_fe_common_ircHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_fe_common_ircdir)/$$f"; \
 
17539
+       done
 
17540
+
 
17541
+uninstall-pkginc_fe_common_ircHEADERS:
 
17542
+       @$(NORMAL_UNINSTALL)
 
17543
+       @list='$(pkginc_fe_common_irc_HEADERS)'; for p in $$list; do \
 
17544
+         f=$(am__strip_dir) \
 
17545
+         echo " rm -f '$(DESTDIR)$(pkginc_fe_common_ircdir)/$$f'"; \
 
17546
+         rm -f "$(DESTDIR)$(pkginc_fe_common_ircdir)/$$f"; \
 
17547
+       done
 
17548
+
 
17549
+# This directory's subdirectories are mostly independent; you can cd
 
17550
+# into them and run `make' without going through this Makefile.
 
17551
+# To change the values of `make' variables: instead of editing Makefiles,
 
17552
+# (1) if the variable is set in `config.status', edit `config.status'
 
17553
+#     (which will cause the Makefiles to be regenerated when you run `make');
 
17554
+# (2) otherwise, pass the desired values on the `make' command line.
 
17555
+$(RECURSIVE_TARGETS):
 
17556
+       @failcom='exit 1'; \
 
17557
+       for f in x $$MAKEFLAGS; do \
 
17558
+         case $$f in \
 
17559
+           *=* | --[!k]*);; \
 
17560
+           *k*) failcom='fail=yes';; \
 
17561
+         esac; \
 
17562
+       done; \
 
17563
+       dot_seen=no; \
 
17564
+       target=`echo $@ | sed s/-recursive//`; \
 
17565
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
17566
+         echo "Making $$target in $$subdir"; \
 
17567
+         if test "$$subdir" = "."; then \
 
17568
+           dot_seen=yes; \
 
17569
+           local_target="$$target-am"; \
 
17570
+         else \
 
17571
+           local_target="$$target"; \
 
17572
+         fi; \
 
17573
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
17574
+         || eval $$failcom; \
 
17575
+       done; \
 
17576
+       if test "$$dot_seen" = "no"; then \
 
17577
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
17578
+       fi; test -z "$$fail"
 
17579
+
 
17580
+mostlyclean-recursive clean-recursive distclean-recursive \
 
17581
+maintainer-clean-recursive:
 
17582
+       @failcom='exit 1'; \
 
17583
+       for f in x $$MAKEFLAGS; do \
 
17584
+         case $$f in \
 
17585
+           *=* | --[!k]*);; \
 
17586
+           *k*) failcom='fail=yes';; \
 
17587
+         esac; \
 
17588
+       done; \
 
17589
+       dot_seen=no; \
 
17590
+       case "$@" in \
 
17591
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
17592
+         *) list='$(SUBDIRS)' ;; \
 
17593
+       esac; \
 
17594
+       rev=''; for subdir in $$list; do \
 
17595
+         if test "$$subdir" = "."; then :; else \
 
17596
+           rev="$$subdir $$rev"; \
 
17597
+         fi; \
 
17598
+       done; \
 
17599
+       rev="$$rev ."; \
 
17600
+       target=`echo $@ | sed s/-recursive//`; \
 
17601
+       for subdir in $$rev; do \
 
17602
+         echo "Making $$target in $$subdir"; \
 
17603
+         if test "$$subdir" = "."; then \
 
17604
+           local_target="$$target-am"; \
 
17605
+         else \
 
17606
+           local_target="$$target"; \
 
17607
+         fi; \
 
17608
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
17609
+         || eval $$failcom; \
 
17610
+       done && test -z "$$fail"
 
17611
+tags-recursive:
 
17612
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
17613
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
17614
+       done
 
17615
+ctags-recursive:
 
17616
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
17617
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
17618
+       done
 
17619
+
 
17620
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
17621
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
17622
+       unique=`for i in $$list; do \
 
17623
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
17624
+         done | \
 
17625
+         $(AWK) '    { files[$$0] = 1; } \
 
17626
+              END { for (i in files) print i; }'`; \
 
17627
+       mkid -fID $$unique
 
17628
+tags: TAGS
 
17629
+
 
17630
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
17631
+               $(TAGS_FILES) $(LISP)
 
17632
+       tags=; \
 
17633
+       here=`pwd`; \
 
17634
+       if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
17635
+         include_option=--etags-include; \
 
17636
+         empty_fix=.; \
 
17637
+       else \
 
17638
+         include_option=--include; \
 
17639
+         empty_fix=; \
 
17640
+       fi; \
 
17641
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
17642
+         if test "$$subdir" = .; then :; else \
 
17643
+           test ! -f $$subdir/TAGS || \
 
17644
+             tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
17645
+         fi; \
 
17646
+       done; \
 
17647
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
17648
+       unique=`for i in $$list; do \
 
17649
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
17650
+         done | \
 
17651
+         $(AWK) '    { files[$$0] = 1; } \
 
17652
+              END { for (i in files) print i; }'`; \
 
17653
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
17654
+         test -n "$$unique" || unique=$$empty_fix; \
 
17655
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
17656
+           $$tags $$unique; \
 
17657
+       fi
 
17658
+ctags: CTAGS
 
17659
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
17660
+               $(TAGS_FILES) $(LISP)
 
17661
+       tags=; \
 
17662
+       here=`pwd`; \
 
17663
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
17664
+       unique=`for i in $$list; do \
 
17665
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
17666
+         done | \
 
17667
+         $(AWK) '    { files[$$0] = 1; } \
 
17668
+              END { for (i in files) print i; }'`; \
 
17669
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
17670
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
17671
+            $$tags $$unique
 
17672
+
 
17673
+GTAGS:
 
17674
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
17675
+         && cd $(top_srcdir) \
 
17676
+         && gtags -i $(GTAGS_ARGS) $$here
 
17677
+
 
17678
+distclean-tags:
 
17679
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
17680
+
 
17681
+distdir: $(DISTFILES)
 
17682
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
17683
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
17684
+       list='$(DISTFILES)'; for file in $$list; do \
 
17685
+         case $$file in \
 
17686
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
17687
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
17688
+         esac; \
 
17689
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
17690
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
17691
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
17692
+           dir="/$$dir"; \
 
17693
+           $(mkdir_p) "$(distdir)$$dir"; \
 
17694
+         else \
 
17695
+           dir=''; \
 
17696
+         fi; \
 
17697
+         if test -d $$d/$$file; then \
 
17698
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
17699
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
17700
+           fi; \
 
17701
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
17702
+         else \
 
17703
+           test -f $(distdir)/$$file \
 
17704
+           || cp -p $$d/$$file $(distdir)/$$file \
 
17705
+           || exit 1; \
 
17706
+         fi; \
 
17707
+       done
 
17708
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
17709
+         if test "$$subdir" = .; then :; else \
 
17710
+           test -d "$(distdir)/$$subdir" \
 
17711
+           || $(mkdir_p) "$(distdir)/$$subdir" \
 
17712
+           || exit 1; \
 
17713
+           distdir=`$(am__cd) $(distdir) && pwd`; \
 
17714
+           top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
 
17715
+           (cd $$subdir && \
 
17716
+             $(MAKE) $(AM_MAKEFLAGS) \
 
17717
+               top_distdir="$$top_distdir" \
 
17718
+               distdir="$$distdir/$$subdir" \
 
17719
+               distdir) \
 
17720
+             || exit 1; \
 
17721
+         fi; \
 
17722
+       done
 
17723
+check-am: all-am
 
17724
+check: check-recursive
 
17725
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
17726
+installdirs: installdirs-recursive
 
17727
+installdirs-am:
 
17728
+       for dir in "$(DESTDIR)$(pkginc_fe_common_ircdir)"; do \
 
17729
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
17730
+       done
 
17731
+install: install-recursive
 
17732
+install-exec: install-exec-recursive
 
17733
+install-data: install-data-recursive
 
17734
+uninstall: uninstall-recursive
 
17735
+
 
17736
+install-am: all-am
 
17737
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
17738
+
 
17739
+installcheck: installcheck-recursive
 
17740
+install-strip:
 
17741
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
17742
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
17743
+         `test -z '$(STRIP)' || \
 
17744
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
17745
+mostlyclean-generic:
 
17746
+
 
17747
+clean-generic:
 
17748
+
 
17749
+maintainer-clean-generic:
 
17750
+       @echo "This command is intended for maintainers to use"
 
17751
+       @echo "it deletes files that may require special tools to rebuild."
 
17752
+clean: clean-recursive
 
17753
+
 
17754
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
17755
+       mostlyclean-am
 
17756
+
 
17757
+distclean: distclean-recursive
 
17758
+       -rm -rf ./$(DEPDIR)
 
17759
+       -rm -f Makefile
 
17760
+distclean-am: clean-am distclean-compile distclean-generic \
 
17761
+       distclean-libtool distclean-tags
 
17762
+
 
17763
+dvi: dvi-recursive
 
17764
+
 
17765
+dvi-am:
 
17766
+
 
17767
+html: html-recursive
 
17768
+
 
17769
+info: info-recursive
 
17770
+
 
17771
+info-am:
 
17772
+
 
17773
+install-data-am: install-pkginc_fe_common_ircHEADERS
 
17774
+
 
17775
+install-exec-am:
 
17776
+
 
17777
+install-info: install-info-recursive
 
17778
+
 
17779
+install-man:
 
17780
+
 
17781
+installcheck-am:
 
17782
+
 
17783
+maintainer-clean: maintainer-clean-recursive
 
17784
+       -rm -rf ./$(DEPDIR)
 
17785
+       -rm -f Makefile
 
17786
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
17787
+
 
17788
+mostlyclean: mostlyclean-recursive
 
17789
+
 
17790
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
17791
+       mostlyclean-libtool
 
17792
+
 
17793
+pdf: pdf-recursive
 
17794
+
 
17795
+pdf-am:
 
17796
+
 
17797
+ps: ps-recursive
 
17798
+
 
17799
+ps-am:
 
17800
+
 
17801
+uninstall-am: uninstall-info-am uninstall-pkginc_fe_common_ircHEADERS
 
17802
+
 
17803
+uninstall-info: uninstall-info-recursive
 
17804
+
 
17805
+.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
 
17806
+       clean clean-generic clean-libtool clean-noinstLIBRARIES \
 
17807
+       clean-recursive ctags ctags-recursive distclean \
 
17808
+       distclean-compile distclean-generic distclean-libtool \
 
17809
+       distclean-recursive distclean-tags distdir dvi dvi-am html \
 
17810
+       html-am info info-am install install-am install-data \
 
17811
+       install-data-am install-exec install-exec-am install-info \
 
17812
+       install-info-am install-man \
 
17813
+       install-pkginc_fe_common_ircHEADERS install-strip installcheck \
 
17814
+       installcheck-am installdirs installdirs-am maintainer-clean \
 
17815
+       maintainer-clean-generic maintainer-clean-recursive \
 
17816
+       mostlyclean mostlyclean-compile mostlyclean-generic \
 
17817
+       mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
 
17818
+       tags tags-recursive uninstall uninstall-am uninstall-info-am \
 
17819
+       uninstall-pkginc_fe_common_ircHEADERS
 
17820
+
 
17821
+
 
17822
+distclean-generic:
 
17823
+       rm -f irc-modules.c
 
17824
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
17825
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
17826
+.NOEXPORT:
 
17827
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/Makefile.in
 
17828
--- ./src/fe-common/irc/Makefile.in     2005-07-17 16:30:32.000000000 +0300
 
17829
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/Makefile.in   2005-07-17 16:48:08.000000000 +0300
 
17830
@@ -142,6 +142,8 @@
 
17831
 GLIB_LIBS = @GLIB_LIBS@
 
17832
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
17833
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
17834
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
17835
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
17836
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
17837
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
17838
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
17839
@@ -151,6 +153,9 @@
 
17840
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
17841
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
17842
 LDFLAGS = @LDFLAGS@
 
17843
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
17844
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
17845
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
17846
 LIBOBJS = @LIBOBJS@
 
17847
 LIBPERL_A = @LIBPERL_A@
 
17848
 LIBS = @LIBS@
 
17849
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/notifylist/.deps/fe-notifylist.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/notifylist/.deps/fe-notifylist.Po
 
17850
--- ./src/fe-common/irc/notifylist/.deps/fe-notifylist.Po       1970-01-01 02:00:00.000000000 +0200
 
17851
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/notifylist/.deps/fe-notifylist.Po     2005-07-17 16:48:42.000000000 +0300
 
17852
@@ -0,0 +1 @@
 
17853
+# dummy
 
17854
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/notifylist/.deps/module-formats.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/notifylist/.deps/module-formats.Po
 
17855
--- ./src/fe-common/irc/notifylist/.deps/module-formats.Po      1970-01-01 02:00:00.000000000 +0200
 
17856
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/notifylist/.deps/module-formats.Po    2005-07-17 16:48:42.000000000 +0300
 
17857
@@ -0,0 +1 @@
 
17858
+# dummy
 
17859
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/notifylist/Makefile /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/notifylist/Makefile
 
17860
--- ./src/fe-common/irc/notifylist/Makefile     1970-01-01 02:00:00.000000000 +0200
 
17861
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/notifylist/Makefile   2005-07-17 16:48:39.000000000 +0300
 
17862
@@ -0,0 +1,532 @@
 
17863
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
17864
+# src/fe-common/irc/notifylist/Makefile.  Generated from Makefile.in by configure.
 
17865
+
 
17866
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
17867
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
17868
+# This Makefile.in is free software; the Free Software Foundation
 
17869
+# gives unlimited permission to copy and/or distribute it,
 
17870
+# with or without modifications, as long as this notice is preserved.
 
17871
+
 
17872
+# This program is distributed in the hope that it will be useful,
 
17873
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
17874
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
17875
+# PARTICULAR PURPOSE.
 
17876
+
 
17877
+
 
17878
+
 
17879
+
 
17880
+srcdir = .
 
17881
+top_srcdir = ../../../..
 
17882
+
 
17883
+pkgdatadir = $(datadir)/irssi
 
17884
+pkglibdir = $(libdir)/irssi
 
17885
+pkgincludedir = $(includedir)/irssi
 
17886
+top_builddir = ../../../..
 
17887
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
17888
+INSTALL = /usr/bin/install -c
 
17889
+install_sh_DATA = $(install_sh) -c -m 644
 
17890
+install_sh_PROGRAM = $(install_sh) -c
 
17891
+install_sh_SCRIPT = $(install_sh) -c
 
17892
+INSTALL_HEADER = $(INSTALL_DATA)
 
17893
+transform = $(program_transform_name)
 
17894
+NORMAL_INSTALL = :
 
17895
+PRE_INSTALL = :
 
17896
+POST_INSTALL = :
 
17897
+NORMAL_UNINSTALL = :
 
17898
+PRE_UNINSTALL = :
 
17899
+POST_UNINSTALL = :
 
17900
+build_triplet = i686-pc-linux-gnu
 
17901
+host_triplet = i686-pc-linux-gnu
 
17902
+subdir = src/fe-common/irc/notifylist
 
17903
+DIST_COMMON = $(pkginc_fe_common_irc_notifylist_HEADERS) \
 
17904
+       $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
17905
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
17906
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
17907
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
17908
+       $(top_srcdir)/configure.in
 
17909
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
17910
+       $(ACLOCAL_M4)
 
17911
+mkinstalldirs = $(install_sh) -d
 
17912
+CONFIG_HEADER = $(top_builddir)/config.h
 
17913
+CONFIG_CLEAN_FILES =
 
17914
+LIBRARIES = $(noinst_LIBRARIES)
 
17915
+ARFLAGS = cru
 
17916
+libfe_irc_notifylist_a_AR = $(AR) $(ARFLAGS)
 
17917
+libfe_irc_notifylist_a_LIBADD =
 
17918
+am_libfe_irc_notifylist_a_OBJECTS = fe-notifylist.$(OBJEXT) \
 
17919
+       module-formats.$(OBJEXT)
 
17920
+libfe_irc_notifylist_a_OBJECTS = $(am_libfe_irc_notifylist_a_OBJECTS)
 
17921
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
17922
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
17923
+am__depfiles_maybe = depfiles
 
17924
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
17925
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
17926
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
17927
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
17928
+       $(AM_CFLAGS) $(CFLAGS)
 
17929
+CCLD = $(CC)
 
17930
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
17931
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
17932
+SOURCES = $(libfe_irc_notifylist_a_SOURCES)
 
17933
+DIST_SOURCES = $(libfe_irc_notifylist_a_SOURCES)
 
17934
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
17935
+am__vpath_adj = case $$p in \
 
17936
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
17937
+    *) f=$$p;; \
 
17938
+  esac;
 
17939
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
17940
+am__installdirs = "$(DESTDIR)$(pkginc_fe_common_irc_notifylistdir)"
 
17941
+pkginc_fe_common_irc_notifylistHEADERS_INSTALL = $(INSTALL_HEADER)
 
17942
+HEADERS = $(pkginc_fe_common_irc_notifylist_HEADERS)
 
17943
+ETAGS = etags
 
17944
+CTAGS = ctags
 
17945
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
17946
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
17947
+AMDEP_FALSE = #
 
17948
+AMDEP_TRUE = 
 
17949
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
17950
+AR = ar
 
17951
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
17952
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
17953
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
17954
+AWK = gawk
 
17955
+BUILD_IRSSIBOT_FALSE = 
 
17956
+BUILD_IRSSIBOT_TRUE = #
 
17957
+BUILD_IRSSIPROXY_FALSE = 
 
17958
+BUILD_IRSSIPROXY_TRUE = #
 
17959
+BUILD_PLUGINS_FALSE = 
 
17960
+BUILD_PLUGINS_TRUE = #
 
17961
+BUILD_TEXTUI_FALSE = #
 
17962
+BUILD_TEXTUI_TRUE = 
 
17963
+CC = gcc
 
17964
+CCDEPMODE = depmode=gcc3
 
17965
+CFLAGS = -g -O2 -Wall  
 
17966
+CHAT_MODULES = irc
 
17967
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
17968
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
17969
+CPP = gcc -E
 
17970
+CPPFLAGS = 
 
17971
+CURSES_INCLUDEDIR = 
 
17972
+CURSES_LIBS = -lncurses
 
17973
+CXX = g++
 
17974
+CXXCPP = g++ -E
 
17975
+CXXDEPMODE = depmode=gcc3
 
17976
+CXXFLAGS = -g -O2
 
17977
+CYGPATH_W = echo
 
17978
+DEFS = -DHAVE_CONFIG_H
 
17979
+DEPDIR = .deps
 
17980
+DYNALOADER_A = 
 
17981
+ECHO = echo
 
17982
+ECHO_C = 
 
17983
+ECHO_N = -n
 
17984
+ECHO_T = 
 
17985
+EGREP = grep -E
 
17986
+EXEEXT = 
 
17987
+F77 = 
 
17988
+FFLAGS = 
 
17989
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
17990
+GLIB_CONFIG = 
 
17991
+GLIB_GENMARSHAL = glib-genmarshal
 
17992
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
17993
+GLIB_MKENUMS = glib-mkenums
 
17994
+GOBJECT_QUERY = gobject-query
 
17995
+HAVE_GNUTLS_FALSE = #
 
17996
+HAVE_GNUTLS_TRUE = 
 
17997
+HAVE_PERL_FALSE = #
 
17998
+HAVE_PERL_TRUE = 
 
17999
+HAVE_STATIC_PERL_FALSE = #
 
18000
+HAVE_STATIC_PERL_TRUE = 
 
18001
+INSTALL_DATA = ${INSTALL} -m 644
 
18002
+INSTALL_PROGRAM = ${INSTALL}
 
18003
+INSTALL_SCRIPT = ${INSTALL}
 
18004
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
18005
+LDFLAGS = 
 
18006
+LIBGNUTLS_CFLAGS = -I/usr/include
 
18007
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
18008
+LIBGNUTLS_LIBS = -lgnutls
 
18009
+LIBOBJS = 
 
18010
+LIBPERL_A = 
 
18011
+LIBS = 
 
18012
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
18013
+LN_S = ln -s
 
18014
+LTLIBOBJS = 
 
18015
+MAINT = 
 
18016
+MAINTAINER_MODE_FALSE = #
 
18017
+MAINTAINER_MODE_TRUE = 
 
18018
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
18019
+NEED_TPARM_FALSE = 
 
18020
+NEED_TPARM_TRUE = #
 
18021
+OBJEXT = o
 
18022
+PACKAGE = irssi
 
18023
+PACKAGE_BUGREPORT = 
 
18024
+PACKAGE_NAME = 
 
18025
+PACKAGE_STRING = 
 
18026
+PACKAGE_TARNAME = 
 
18027
+PACKAGE_VERSION = 
 
18028
+PATH_SEPARATOR = :
 
18029
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
18030
+PERL_EXTRA_OPTS = 
 
18031
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
18032
+PERL_LDFLAGS = 
 
18033
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
18034
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
18035
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
18036
+PERL_MM_PARAMS = 
 
18037
+PERL_STATIC_LIBS = 0
 
18038
+PERL_USE_LIB = 
 
18039
+PKG_CONFIG = /usr/bin/pkg-config
 
18040
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
18041
+RANLIB = ranlib
 
18042
+SET_MAKE = 
 
18043
+SHELL = /bin/sh
 
18044
+SSL_CFLAGS =  
 
18045
+SSL_LIBS = -lssl -lcrypto -ldl  
 
18046
+STRIP = strip
 
18047
+TEXTUI_LIBS = -lncurses
 
18048
+USE_CURSES_FALSE = 
 
18049
+USE_CURSES_TRUE = #
 
18050
+VERSION = 0.8.10-rc5
 
18051
+VERSION_DATE = 20050717
 
18052
+VERSION_TIME = 1223
 
18053
+ac_ct_AR = ar
 
18054
+ac_ct_CC = gcc
 
18055
+ac_ct_CXX = g++
 
18056
+ac_ct_F77 = 
 
18057
+ac_ct_RANLIB = ranlib
 
18058
+ac_ct_STRIP = strip
 
18059
+ac_pt_PKG_CONFIG = 
 
18060
+am__fastdepCC_FALSE = #
 
18061
+am__fastdepCC_TRUE = 
 
18062
+am__fastdepCXX_FALSE = #
 
18063
+am__fastdepCXX_TRUE = 
 
18064
+am__include = include
 
18065
+am__leading_dot = .
 
18066
+am__quote = 
 
18067
+am__tar = ${AMTAR} chof - "$$tardir"
 
18068
+am__untar = ${AMTAR} xf -
 
18069
+bindir = ${exec_prefix}/bin
 
18070
+build = i686-pc-linux-gnu
 
18071
+build_alias = 
 
18072
+build_cpu = i686
 
18073
+build_os = linux-gnu
 
18074
+build_vendor = pc
 
18075
+datadir = ${prefix}/share
 
18076
+exec_prefix = ${prefix}
 
18077
+host = i686-pc-linux-gnu
 
18078
+host_alias = 
 
18079
+host_cpu = i686
 
18080
+host_os = linux-gnu
 
18081
+host_vendor = pc
 
18082
+includedir = ${prefix}/include
 
18083
+infodir = ${prefix}/info
 
18084
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
18085
+irc_MODULES = dcc flood notifylist
 
18086
+libdir = ${exec_prefix}/lib
 
18087
+libexecdir = ${exec_prefix}/libexec
 
18088
+localstatedir = ${prefix}/var
 
18089
+mandir = ${prefix}/man
 
18090
+mkdir_p = mkdir -p --
 
18091
+oldincludedir = /usr/include
 
18092
+perl_module_fe_lib = 
 
18093
+perl_module_lib = 
 
18094
+perl_static_fe_lib = libfe_perl_static.la
 
18095
+perl_static_lib = libperl_core_static.la
 
18096
+perlpath = /usr/bin/perl
 
18097
+prefix = /usr/local
 
18098
+program_transform_name = s,x,x,
 
18099
+sbindir = ${exec_prefix}/sbin
 
18100
+sedpath = /bin/sed
 
18101
+sharedstatedir = ${prefix}/com
 
18102
+sysconfdir = ${prefix}/etc
 
18103
+target_alias = 
 
18104
+noinst_LIBRARIES = libfe_irc_notifylist.a
 
18105
+INCLUDES = \
 
18106
+       -I$(top_srcdir)/src \
 
18107
+       -I$(top_srcdir)/src/core/ \
 
18108
+       -I$(top_srcdir)/src/irc/core/ \
 
18109
+       -I$(top_srcdir)/src/fe-common/core/ \
 
18110
+       $(GLIB_CFLAGS) \
 
18111
+       -DHELPDIR=\""$(datadir)/irssi/help"\" \
 
18112
+       -DSYSCONFDIR=\""$(sysconfdir)"\"
 
18113
+
 
18114
+libfe_irc_notifylist_a_SOURCES = \
 
18115
+       fe-notifylist.c \
 
18116
+       module-formats.c
 
18117
+
 
18118
+pkginc_fe_common_irc_notifylistdir = $(pkgincludedir)/src/fe-common/irc/notifylist
 
18119
+pkginc_fe_common_irc_notifylist_HEADERS = \
 
18120
+       module.h \
 
18121
+       module-formats.h
 
18122
+
 
18123
+all: all-am
 
18124
+
 
18125
+.SUFFIXES:
 
18126
+.SUFFIXES: .c .lo .o .obj
 
18127
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
18128
+       @for dep in $?; do \
 
18129
+         case '$(am__configure_deps)' in \
 
18130
+           *$$dep*) \
 
18131
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
18132
+               && exit 0; \
 
18133
+             exit 1;; \
 
18134
+         esac; \
 
18135
+       done; \
 
18136
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/fe-common/irc/notifylist/Makefile'; \
 
18137
+       cd $(top_srcdir) && \
 
18138
+         $(AUTOMAKE) --gnu  src/fe-common/irc/notifylist/Makefile
 
18139
+.PRECIOUS: Makefile
 
18140
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
18141
+       @case '$?' in \
 
18142
+         *config.status*) \
 
18143
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
18144
+         *) \
 
18145
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
18146
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
18147
+       esac;
 
18148
+
 
18149
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
18150
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
18151
+
 
18152
+$(top_srcdir)/configure:  $(am__configure_deps)
 
18153
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
18154
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
18155
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
18156
+
 
18157
+clean-noinstLIBRARIES:
 
18158
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
18159
+libfe_irc_notifylist.a: $(libfe_irc_notifylist_a_OBJECTS) $(libfe_irc_notifylist_a_DEPENDENCIES) 
 
18160
+       -rm -f libfe_irc_notifylist.a
 
18161
+       $(libfe_irc_notifylist_a_AR) libfe_irc_notifylist.a $(libfe_irc_notifylist_a_OBJECTS) $(libfe_irc_notifylist_a_LIBADD)
 
18162
+       $(RANLIB) libfe_irc_notifylist.a
 
18163
+
 
18164
+mostlyclean-compile:
 
18165
+       -rm -f *.$(OBJEXT)
 
18166
+
 
18167
+distclean-compile:
 
18168
+       -rm -f *.tab.c
 
18169
+
 
18170
+include ./$(DEPDIR)/fe-notifylist.Po
 
18171
+include ./$(DEPDIR)/module-formats.Po
 
18172
+
 
18173
+.c.o:
 
18174
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
18175
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
18176
+#      source='$<' object='$@' libtool=no \
 
18177
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
18178
+#      $(COMPILE) -c $<
 
18179
+
 
18180
+.c.obj:
 
18181
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
18182
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
18183
+#      source='$<' object='$@' libtool=no \
 
18184
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
18185
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
18186
+
 
18187
+.c.lo:
 
18188
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
18189
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
18190
+#      source='$<' object='$@' libtool=yes \
 
18191
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
18192
+#      $(LTCOMPILE) -c -o $@ $<
 
18193
+
 
18194
+mostlyclean-libtool:
 
18195
+       -rm -f *.lo
 
18196
+
 
18197
+clean-libtool:
 
18198
+       -rm -rf .libs _libs
 
18199
+
 
18200
+distclean-libtool:
 
18201
+       -rm -f libtool
 
18202
+uninstall-info-am:
 
18203
+install-pkginc_fe_common_irc_notifylistHEADERS: $(pkginc_fe_common_irc_notifylist_HEADERS)
 
18204
+       @$(NORMAL_INSTALL)
 
18205
+       test -z "$(pkginc_fe_common_irc_notifylistdir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_fe_common_irc_notifylistdir)"
 
18206
+       @list='$(pkginc_fe_common_irc_notifylist_HEADERS)'; for p in $$list; do \
 
18207
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
18208
+         f=$(am__strip_dir) \
 
18209
+         echo " $(pkginc_fe_common_irc_notifylistHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_fe_common_irc_notifylistdir)/$$f'"; \
 
18210
+         $(pkginc_fe_common_irc_notifylistHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_fe_common_irc_notifylistdir)/$$f"; \
 
18211
+       done
 
18212
+
 
18213
+uninstall-pkginc_fe_common_irc_notifylistHEADERS:
 
18214
+       @$(NORMAL_UNINSTALL)
 
18215
+       @list='$(pkginc_fe_common_irc_notifylist_HEADERS)'; for p in $$list; do \
 
18216
+         f=$(am__strip_dir) \
 
18217
+         echo " rm -f '$(DESTDIR)$(pkginc_fe_common_irc_notifylistdir)/$$f'"; \
 
18218
+         rm -f "$(DESTDIR)$(pkginc_fe_common_irc_notifylistdir)/$$f"; \
 
18219
+       done
 
18220
+
 
18221
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
18222
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
18223
+       unique=`for i in $$list; do \
 
18224
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
18225
+         done | \
 
18226
+         $(AWK) '    { files[$$0] = 1; } \
 
18227
+              END { for (i in files) print i; }'`; \
 
18228
+       mkid -fID $$unique
 
18229
+tags: TAGS
 
18230
+
 
18231
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
18232
+               $(TAGS_FILES) $(LISP)
 
18233
+       tags=; \
 
18234
+       here=`pwd`; \
 
18235
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
18236
+       unique=`for i in $$list; do \
 
18237
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
18238
+         done | \
 
18239
+         $(AWK) '    { files[$$0] = 1; } \
 
18240
+              END { for (i in files) print i; }'`; \
 
18241
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
18242
+         test -n "$$unique" || unique=$$empty_fix; \
 
18243
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
18244
+           $$tags $$unique; \
 
18245
+       fi
 
18246
+ctags: CTAGS
 
18247
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
18248
+               $(TAGS_FILES) $(LISP)
 
18249
+       tags=; \
 
18250
+       here=`pwd`; \
 
18251
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
18252
+       unique=`for i in $$list; do \
 
18253
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
18254
+         done | \
 
18255
+         $(AWK) '    { files[$$0] = 1; } \
 
18256
+              END { for (i in files) print i; }'`; \
 
18257
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
18258
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
18259
+            $$tags $$unique
 
18260
+
 
18261
+GTAGS:
 
18262
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
18263
+         && cd $(top_srcdir) \
 
18264
+         && gtags -i $(GTAGS_ARGS) $$here
 
18265
+
 
18266
+distclean-tags:
 
18267
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
18268
+
 
18269
+distdir: $(DISTFILES)
 
18270
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
18271
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
18272
+       list='$(DISTFILES)'; for file in $$list; do \
 
18273
+         case $$file in \
 
18274
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
18275
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
18276
+         esac; \
 
18277
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
18278
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
18279
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
18280
+           dir="/$$dir"; \
 
18281
+           $(mkdir_p) "$(distdir)$$dir"; \
 
18282
+         else \
 
18283
+           dir=''; \
 
18284
+         fi; \
 
18285
+         if test -d $$d/$$file; then \
 
18286
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
18287
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
18288
+           fi; \
 
18289
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
18290
+         else \
 
18291
+           test -f $(distdir)/$$file \
 
18292
+           || cp -p $$d/$$file $(distdir)/$$file \
 
18293
+           || exit 1; \
 
18294
+         fi; \
 
18295
+       done
 
18296
+check-am: all-am
 
18297
+check: check-am
 
18298
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
18299
+installdirs:
 
18300
+       for dir in "$(DESTDIR)$(pkginc_fe_common_irc_notifylistdir)"; do \
 
18301
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
18302
+       done
 
18303
+install: install-am
 
18304
+install-exec: install-exec-am
 
18305
+install-data: install-data-am
 
18306
+uninstall: uninstall-am
 
18307
+
 
18308
+install-am: all-am
 
18309
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
18310
+
 
18311
+installcheck: installcheck-am
 
18312
+install-strip:
 
18313
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
18314
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
18315
+         `test -z '$(STRIP)' || \
 
18316
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
18317
+mostlyclean-generic:
 
18318
+
 
18319
+clean-generic:
 
18320
+
 
18321
+distclean-generic:
 
18322
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
18323
+
 
18324
+maintainer-clean-generic:
 
18325
+       @echo "This command is intended for maintainers to use"
 
18326
+       @echo "it deletes files that may require special tools to rebuild."
 
18327
+clean: clean-am
 
18328
+
 
18329
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
18330
+       mostlyclean-am
 
18331
+
 
18332
+distclean: distclean-am
 
18333
+       -rm -rf ./$(DEPDIR)
 
18334
+       -rm -f Makefile
 
18335
+distclean-am: clean-am distclean-compile distclean-generic \
 
18336
+       distclean-libtool distclean-tags
 
18337
+
 
18338
+dvi: dvi-am
 
18339
+
 
18340
+dvi-am:
 
18341
+
 
18342
+html: html-am
 
18343
+
 
18344
+info: info-am
 
18345
+
 
18346
+info-am:
 
18347
+
 
18348
+install-data-am: install-pkginc_fe_common_irc_notifylistHEADERS
 
18349
+
 
18350
+install-exec-am:
 
18351
+
 
18352
+install-info: install-info-am
 
18353
+
 
18354
+install-man:
 
18355
+
 
18356
+installcheck-am:
 
18357
+
 
18358
+maintainer-clean: maintainer-clean-am
 
18359
+       -rm -rf ./$(DEPDIR)
 
18360
+       -rm -f Makefile
 
18361
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
18362
+
 
18363
+mostlyclean: mostlyclean-am
 
18364
+
 
18365
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
18366
+       mostlyclean-libtool
 
18367
+
 
18368
+pdf: pdf-am
 
18369
+
 
18370
+pdf-am:
 
18371
+
 
18372
+ps: ps-am
 
18373
+
 
18374
+ps-am:
 
18375
+
 
18376
+uninstall-am: uninstall-info-am \
 
18377
+       uninstall-pkginc_fe_common_irc_notifylistHEADERS
 
18378
+
 
18379
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
18380
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
18381
+       distclean-compile distclean-generic distclean-libtool \
 
18382
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
18383
+       install install-am install-data install-data-am install-exec \
 
18384
+       install-exec-am install-info install-info-am install-man \
 
18385
+       install-pkginc_fe_common_irc_notifylistHEADERS install-strip \
 
18386
+       installcheck installcheck-am installdirs maintainer-clean \
 
18387
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
18388
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
18389
+       tags uninstall uninstall-am uninstall-info-am \
 
18390
+       uninstall-pkginc_fe_common_irc_notifylistHEADERS
 
18391
+
 
18392
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
18393
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
18394
+.NOEXPORT:
 
18395
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/irc/notifylist/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/notifylist/Makefile.in
 
18396
--- ./src/fe-common/irc/notifylist/Makefile.in  2005-07-17 16:30:33.000000000 +0300
 
18397
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/irc/notifylist/Makefile.in        2005-07-17 16:48:09.000000000 +0300
 
18398
@@ -130,6 +130,8 @@
 
18399
 GLIB_LIBS = @GLIB_LIBS@
 
18400
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
18401
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
18402
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
18403
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
18404
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
18405
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
18406
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
18407
@@ -139,6 +141,9 @@
 
18408
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
18409
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
18410
 LDFLAGS = @LDFLAGS@
 
18411
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
18412
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
18413
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
18414
 LIBOBJS = @LIBOBJS@
 
18415
 LIBPERL_A = @LIBPERL_A@
 
18416
 LIBS = @LIBS@
 
18417
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/Makefile /tmp/dpep-work.mDzhRz/irssi/src/fe-common/Makefile
 
18418
--- ./src/fe-common/Makefile    1970-01-01 02:00:00.000000000 +0200
 
18419
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/Makefile  2005-07-17 16:48:39.000000000 +0300
 
18420
@@ -0,0 +1,530 @@
 
18421
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
18422
+# src/fe-common/Makefile.  Generated from Makefile.in by configure.
 
18423
+
 
18424
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
18425
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
18426
+# This Makefile.in is free software; the Free Software Foundation
 
18427
+# gives unlimited permission to copy and/or distribute it,
 
18428
+# with or without modifications, as long as this notice is preserved.
 
18429
+
 
18430
+# This program is distributed in the hope that it will be useful,
 
18431
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
18432
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
18433
+# PARTICULAR PURPOSE.
 
18434
+
 
18435
+
 
18436
+srcdir = .
 
18437
+top_srcdir = ../..
 
18438
+
 
18439
+pkgdatadir = $(datadir)/irssi
 
18440
+pkglibdir = $(libdir)/irssi
 
18441
+pkgincludedir = $(includedir)/irssi
 
18442
+top_builddir = ../..
 
18443
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
18444
+INSTALL = /usr/bin/install -c
 
18445
+install_sh_DATA = $(install_sh) -c -m 644
 
18446
+install_sh_PROGRAM = $(install_sh) -c
 
18447
+install_sh_SCRIPT = $(install_sh) -c
 
18448
+INSTALL_HEADER = $(INSTALL_DATA)
 
18449
+transform = $(program_transform_name)
 
18450
+NORMAL_INSTALL = :
 
18451
+PRE_INSTALL = :
 
18452
+POST_INSTALL = :
 
18453
+NORMAL_UNINSTALL = :
 
18454
+PRE_UNINSTALL = :
 
18455
+POST_UNINSTALL = :
 
18456
+build_triplet = i686-pc-linux-gnu
 
18457
+host_triplet = i686-pc-linux-gnu
 
18458
+subdir = src/fe-common
 
18459
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
18460
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
18461
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
18462
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
18463
+       $(top_srcdir)/configure.in
 
18464
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
18465
+       $(ACLOCAL_M4)
 
18466
+mkinstalldirs = $(install_sh) -d
 
18467
+CONFIG_HEADER = $(top_builddir)/config.h
 
18468
+CONFIG_CLEAN_FILES =
 
18469
+SOURCES =
 
18470
+DIST_SOURCES =
 
18471
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
18472
+       html-recursive info-recursive install-data-recursive \
 
18473
+       install-exec-recursive install-info-recursive \
 
18474
+       install-recursive installcheck-recursive installdirs-recursive \
 
18475
+       pdf-recursive ps-recursive uninstall-info-recursive \
 
18476
+       uninstall-recursive
 
18477
+ETAGS = etags
 
18478
+CTAGS = ctags
 
18479
+DIST_SUBDIRS = $(SUBDIRS)
 
18480
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
18481
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
18482
+AMDEP_FALSE = #
 
18483
+AMDEP_TRUE = 
 
18484
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
18485
+AR = ar
 
18486
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
18487
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
18488
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
18489
+AWK = gawk
 
18490
+BUILD_IRSSIBOT_FALSE = 
 
18491
+BUILD_IRSSIBOT_TRUE = #
 
18492
+BUILD_IRSSIPROXY_FALSE = 
 
18493
+BUILD_IRSSIPROXY_TRUE = #
 
18494
+BUILD_PLUGINS_FALSE = 
 
18495
+BUILD_PLUGINS_TRUE = #
 
18496
+BUILD_TEXTUI_FALSE = #
 
18497
+BUILD_TEXTUI_TRUE = 
 
18498
+CC = gcc
 
18499
+CCDEPMODE = depmode=gcc3
 
18500
+CFLAGS = -g -O2 -Wall  
 
18501
+CHAT_MODULES = irc
 
18502
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
18503
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
18504
+CPP = gcc -E
 
18505
+CPPFLAGS = 
 
18506
+CURSES_INCLUDEDIR = 
 
18507
+CURSES_LIBS = -lncurses
 
18508
+CXX = g++
 
18509
+CXXCPP = g++ -E
 
18510
+CXXDEPMODE = depmode=gcc3
 
18511
+CXXFLAGS = -g -O2
 
18512
+CYGPATH_W = echo
 
18513
+DEFS = -DHAVE_CONFIG_H
 
18514
+DEPDIR = .deps
 
18515
+DYNALOADER_A = 
 
18516
+ECHO = echo
 
18517
+ECHO_C = 
 
18518
+ECHO_N = -n
 
18519
+ECHO_T = 
 
18520
+EGREP = grep -E
 
18521
+EXEEXT = 
 
18522
+F77 = 
 
18523
+FFLAGS = 
 
18524
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
18525
+GLIB_CONFIG = 
 
18526
+GLIB_GENMARSHAL = glib-genmarshal
 
18527
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
18528
+GLIB_MKENUMS = glib-mkenums
 
18529
+GOBJECT_QUERY = gobject-query
 
18530
+HAVE_GNUTLS_FALSE = #
 
18531
+HAVE_GNUTLS_TRUE = 
 
18532
+HAVE_PERL_FALSE = #
 
18533
+HAVE_PERL_TRUE = 
 
18534
+HAVE_STATIC_PERL_FALSE = #
 
18535
+HAVE_STATIC_PERL_TRUE = 
 
18536
+INSTALL_DATA = ${INSTALL} -m 644
 
18537
+INSTALL_PROGRAM = ${INSTALL}
 
18538
+INSTALL_SCRIPT = ${INSTALL}
 
18539
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
18540
+LDFLAGS = 
 
18541
+LIBGNUTLS_CFLAGS = -I/usr/include
 
18542
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
18543
+LIBGNUTLS_LIBS = -lgnutls
 
18544
+LIBOBJS = 
 
18545
+LIBPERL_A = 
 
18546
+LIBS = 
 
18547
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
18548
+LN_S = ln -s
 
18549
+LTLIBOBJS = 
 
18550
+MAINT = 
 
18551
+MAINTAINER_MODE_FALSE = #
 
18552
+MAINTAINER_MODE_TRUE = 
 
18553
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
18554
+NEED_TPARM_FALSE = 
 
18555
+NEED_TPARM_TRUE = #
 
18556
+OBJEXT = o
 
18557
+PACKAGE = irssi
 
18558
+PACKAGE_BUGREPORT = 
 
18559
+PACKAGE_NAME = 
 
18560
+PACKAGE_STRING = 
 
18561
+PACKAGE_TARNAME = 
 
18562
+PACKAGE_VERSION = 
 
18563
+PATH_SEPARATOR = :
 
18564
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
18565
+PERL_EXTRA_OPTS = 
 
18566
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
18567
+PERL_LDFLAGS = 
 
18568
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
18569
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
18570
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
18571
+PERL_MM_PARAMS = 
 
18572
+PERL_STATIC_LIBS = 0
 
18573
+PERL_USE_LIB = 
 
18574
+PKG_CONFIG = /usr/bin/pkg-config
 
18575
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
18576
+RANLIB = ranlib
 
18577
+SET_MAKE = 
 
18578
+SHELL = /bin/sh
 
18579
+SSL_CFLAGS =  
 
18580
+SSL_LIBS = -lssl -lcrypto -ldl  
 
18581
+STRIP = strip
 
18582
+TEXTUI_LIBS = -lncurses
 
18583
+USE_CURSES_FALSE = 
 
18584
+USE_CURSES_TRUE = #
 
18585
+VERSION = 0.8.10-rc5
 
18586
+VERSION_DATE = 20050717
 
18587
+VERSION_TIME = 1223
 
18588
+ac_ct_AR = ar
 
18589
+ac_ct_CC = gcc
 
18590
+ac_ct_CXX = g++
 
18591
+ac_ct_F77 = 
 
18592
+ac_ct_RANLIB = ranlib
 
18593
+ac_ct_STRIP = strip
 
18594
+ac_pt_PKG_CONFIG = 
 
18595
+am__fastdepCC_FALSE = #
 
18596
+am__fastdepCC_TRUE = 
 
18597
+am__fastdepCXX_FALSE = #
 
18598
+am__fastdepCXX_TRUE = 
 
18599
+am__include = include
 
18600
+am__leading_dot = .
 
18601
+am__quote = 
 
18602
+am__tar = ${AMTAR} chof - "$$tardir"
 
18603
+am__untar = ${AMTAR} xf -
 
18604
+bindir = ${exec_prefix}/bin
 
18605
+build = i686-pc-linux-gnu
 
18606
+build_alias = 
 
18607
+build_cpu = i686
 
18608
+build_os = linux-gnu
 
18609
+build_vendor = pc
 
18610
+datadir = ${prefix}/share
 
18611
+exec_prefix = ${prefix}
 
18612
+host = i686-pc-linux-gnu
 
18613
+host_alias = 
 
18614
+host_cpu = i686
 
18615
+host_os = linux-gnu
 
18616
+host_vendor = pc
 
18617
+includedir = ${prefix}/include
 
18618
+infodir = ${prefix}/info
 
18619
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
18620
+irc_MODULES = dcc flood notifylist
 
18621
+libdir = ${exec_prefix}/lib
 
18622
+libexecdir = ${exec_prefix}/libexec
 
18623
+localstatedir = ${prefix}/var
 
18624
+mandir = ${prefix}/man
 
18625
+mkdir_p = mkdir -p --
 
18626
+oldincludedir = /usr/include
 
18627
+perl_module_fe_lib = 
 
18628
+perl_module_lib = 
 
18629
+perl_static_fe_lib = libfe_perl_static.la
 
18630
+perl_static_lib = libperl_core_static.la
 
18631
+perlpath = /usr/bin/perl
 
18632
+prefix = /usr/local
 
18633
+program_transform_name = s,x,x,
 
18634
+sbindir = ${exec_prefix}/sbin
 
18635
+sedpath = /bin/sed
 
18636
+sharedstatedir = ${prefix}/com
 
18637
+sysconfdir = ${prefix}/etc
 
18638
+target_alias = 
 
18639
+SUBDIRS = core irc
 
18640
+all: all-recursive
 
18641
+
 
18642
+.SUFFIXES:
 
18643
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
18644
+       @for dep in $?; do \
 
18645
+         case '$(am__configure_deps)' in \
 
18646
+           *$$dep*) \
 
18647
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
18648
+               && exit 0; \
 
18649
+             exit 1;; \
 
18650
+         esac; \
 
18651
+       done; \
 
18652
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/fe-common/Makefile'; \
 
18653
+       cd $(top_srcdir) && \
 
18654
+         $(AUTOMAKE) --gnu  src/fe-common/Makefile
 
18655
+.PRECIOUS: Makefile
 
18656
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
18657
+       @case '$?' in \
 
18658
+         *config.status*) \
 
18659
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
18660
+         *) \
 
18661
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
18662
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
18663
+       esac;
 
18664
+
 
18665
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
18666
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
18667
+
 
18668
+$(top_srcdir)/configure:  $(am__configure_deps)
 
18669
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
18670
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
18671
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
18672
+
 
18673
+mostlyclean-libtool:
 
18674
+       -rm -f *.lo
 
18675
+
 
18676
+clean-libtool:
 
18677
+       -rm -rf .libs _libs
 
18678
+
 
18679
+distclean-libtool:
 
18680
+       -rm -f libtool
 
18681
+uninstall-info-am:
 
18682
+
 
18683
+# This directory's subdirectories are mostly independent; you can cd
 
18684
+# into them and run `make' without going through this Makefile.
 
18685
+# To change the values of `make' variables: instead of editing Makefiles,
 
18686
+# (1) if the variable is set in `config.status', edit `config.status'
 
18687
+#     (which will cause the Makefiles to be regenerated when you run `make');
 
18688
+# (2) otherwise, pass the desired values on the `make' command line.
 
18689
+$(RECURSIVE_TARGETS):
 
18690
+       @failcom='exit 1'; \
 
18691
+       for f in x $$MAKEFLAGS; do \
 
18692
+         case $$f in \
 
18693
+           *=* | --[!k]*);; \
 
18694
+           *k*) failcom='fail=yes';; \
 
18695
+         esac; \
 
18696
+       done; \
 
18697
+       dot_seen=no; \
 
18698
+       target=`echo $@ | sed s/-recursive//`; \
 
18699
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
18700
+         echo "Making $$target in $$subdir"; \
 
18701
+         if test "$$subdir" = "."; then \
 
18702
+           dot_seen=yes; \
 
18703
+           local_target="$$target-am"; \
 
18704
+         else \
 
18705
+           local_target="$$target"; \
 
18706
+         fi; \
 
18707
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
18708
+         || eval $$failcom; \
 
18709
+       done; \
 
18710
+       if test "$$dot_seen" = "no"; then \
 
18711
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
18712
+       fi; test -z "$$fail"
 
18713
+
 
18714
+mostlyclean-recursive clean-recursive distclean-recursive \
 
18715
+maintainer-clean-recursive:
 
18716
+       @failcom='exit 1'; \
 
18717
+       for f in x $$MAKEFLAGS; do \
 
18718
+         case $$f in \
 
18719
+           *=* | --[!k]*);; \
 
18720
+           *k*) failcom='fail=yes';; \
 
18721
+         esac; \
 
18722
+       done; \
 
18723
+       dot_seen=no; \
 
18724
+       case "$@" in \
 
18725
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
18726
+         *) list='$(SUBDIRS)' ;; \
 
18727
+       esac; \
 
18728
+       rev=''; for subdir in $$list; do \
 
18729
+         if test "$$subdir" = "."; then :; else \
 
18730
+           rev="$$subdir $$rev"; \
 
18731
+         fi; \
 
18732
+       done; \
 
18733
+       rev="$$rev ."; \
 
18734
+       target=`echo $@ | sed s/-recursive//`; \
 
18735
+       for subdir in $$rev; do \
 
18736
+         echo "Making $$target in $$subdir"; \
 
18737
+         if test "$$subdir" = "."; then \
 
18738
+           local_target="$$target-am"; \
 
18739
+         else \
 
18740
+           local_target="$$target"; \
 
18741
+         fi; \
 
18742
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
18743
+         || eval $$failcom; \
 
18744
+       done && test -z "$$fail"
 
18745
+tags-recursive:
 
18746
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
18747
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
18748
+       done
 
18749
+ctags-recursive:
 
18750
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
18751
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
18752
+       done
 
18753
+
 
18754
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
18755
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
18756
+       unique=`for i in $$list; do \
 
18757
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
18758
+         done | \
 
18759
+         $(AWK) '    { files[$$0] = 1; } \
 
18760
+              END { for (i in files) print i; }'`; \
 
18761
+       mkid -fID $$unique
 
18762
+tags: TAGS
 
18763
+
 
18764
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
18765
+               $(TAGS_FILES) $(LISP)
 
18766
+       tags=; \
 
18767
+       here=`pwd`; \
 
18768
+       if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
18769
+         include_option=--etags-include; \
 
18770
+         empty_fix=.; \
 
18771
+       else \
 
18772
+         include_option=--include; \
 
18773
+         empty_fix=; \
 
18774
+       fi; \
 
18775
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
18776
+         if test "$$subdir" = .; then :; else \
 
18777
+           test ! -f $$subdir/TAGS || \
 
18778
+             tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
18779
+         fi; \
 
18780
+       done; \
 
18781
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
18782
+       unique=`for i in $$list; do \
 
18783
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
18784
+         done | \
 
18785
+         $(AWK) '    { files[$$0] = 1; } \
 
18786
+              END { for (i in files) print i; }'`; \
 
18787
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
18788
+         test -n "$$unique" || unique=$$empty_fix; \
 
18789
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
18790
+           $$tags $$unique; \
 
18791
+       fi
 
18792
+ctags: CTAGS
 
18793
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
18794
+               $(TAGS_FILES) $(LISP)
 
18795
+       tags=; \
 
18796
+       here=`pwd`; \
 
18797
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
18798
+       unique=`for i in $$list; do \
 
18799
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
18800
+         done | \
 
18801
+         $(AWK) '    { files[$$0] = 1; } \
 
18802
+              END { for (i in files) print i; }'`; \
 
18803
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
18804
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
18805
+            $$tags $$unique
 
18806
+
 
18807
+GTAGS:
 
18808
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
18809
+         && cd $(top_srcdir) \
 
18810
+         && gtags -i $(GTAGS_ARGS) $$here
 
18811
+
 
18812
+distclean-tags:
 
18813
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
18814
+
 
18815
+distdir: $(DISTFILES)
 
18816
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
18817
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
18818
+       list='$(DISTFILES)'; for file in $$list; do \
 
18819
+         case $$file in \
 
18820
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
18821
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
18822
+         esac; \
 
18823
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
18824
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
18825
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
18826
+           dir="/$$dir"; \
 
18827
+           $(mkdir_p) "$(distdir)$$dir"; \
 
18828
+         else \
 
18829
+           dir=''; \
 
18830
+         fi; \
 
18831
+         if test -d $$d/$$file; then \
 
18832
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
18833
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
18834
+           fi; \
 
18835
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
18836
+         else \
 
18837
+           test -f $(distdir)/$$file \
 
18838
+           || cp -p $$d/$$file $(distdir)/$$file \
 
18839
+           || exit 1; \
 
18840
+         fi; \
 
18841
+       done
 
18842
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
18843
+         if test "$$subdir" = .; then :; else \
 
18844
+           test -d "$(distdir)/$$subdir" \
 
18845
+           || $(mkdir_p) "$(distdir)/$$subdir" \
 
18846
+           || exit 1; \
 
18847
+           distdir=`$(am__cd) $(distdir) && pwd`; \
 
18848
+           top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
 
18849
+           (cd $$subdir && \
 
18850
+             $(MAKE) $(AM_MAKEFLAGS) \
 
18851
+               top_distdir="$$top_distdir" \
 
18852
+               distdir="$$distdir/$$subdir" \
 
18853
+               distdir) \
 
18854
+             || exit 1; \
 
18855
+         fi; \
 
18856
+       done
 
18857
+check-am: all-am
 
18858
+check: check-recursive
 
18859
+all-am: Makefile
 
18860
+installdirs: installdirs-recursive
 
18861
+installdirs-am:
 
18862
+install: install-recursive
 
18863
+install-exec: install-exec-recursive
 
18864
+install-data: install-data-recursive
 
18865
+uninstall: uninstall-recursive
 
18866
+
 
18867
+install-am: all-am
 
18868
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
18869
+
 
18870
+installcheck: installcheck-recursive
 
18871
+install-strip:
 
18872
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
18873
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
18874
+         `test -z '$(STRIP)' || \
 
18875
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
18876
+mostlyclean-generic:
 
18877
+
 
18878
+clean-generic:
 
18879
+
 
18880
+distclean-generic:
 
18881
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
18882
+
 
18883
+maintainer-clean-generic:
 
18884
+       @echo "This command is intended for maintainers to use"
 
18885
+       @echo "it deletes files that may require special tools to rebuild."
 
18886
+clean: clean-recursive
 
18887
+
 
18888
+clean-am: clean-generic clean-libtool mostlyclean-am
 
18889
+
 
18890
+distclean: distclean-recursive
 
18891
+       -rm -f Makefile
 
18892
+distclean-am: clean-am distclean-generic distclean-libtool \
 
18893
+       distclean-tags
 
18894
+
 
18895
+dvi: dvi-recursive
 
18896
+
 
18897
+dvi-am:
 
18898
+
 
18899
+html: html-recursive
 
18900
+
 
18901
+info: info-recursive
 
18902
+
 
18903
+info-am:
 
18904
+
 
18905
+install-data-am:
 
18906
+
 
18907
+install-exec-am:
 
18908
+
 
18909
+install-info: install-info-recursive
 
18910
+
 
18911
+install-man:
 
18912
+
 
18913
+installcheck-am:
 
18914
+
 
18915
+maintainer-clean: maintainer-clean-recursive
 
18916
+       -rm -f Makefile
 
18917
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
18918
+
 
18919
+mostlyclean: mostlyclean-recursive
 
18920
+
 
18921
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
18922
+
 
18923
+pdf: pdf-recursive
 
18924
+
 
18925
+pdf-am:
 
18926
+
 
18927
+ps: ps-recursive
 
18928
+
 
18929
+ps-am:
 
18930
+
 
18931
+uninstall-am: uninstall-info-am
 
18932
+
 
18933
+uninstall-info: uninstall-info-recursive
 
18934
+
 
18935
+.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
 
18936
+       clean clean-generic clean-libtool clean-recursive ctags \
 
18937
+       ctags-recursive distclean distclean-generic distclean-libtool \
 
18938
+       distclean-recursive distclean-tags distdir dvi dvi-am html \
 
18939
+       html-am info info-am install install-am install-data \
 
18940
+       install-data-am install-exec install-exec-am install-info \
 
18941
+       install-info-am install-man install-strip installcheck \
 
18942
+       installcheck-am installdirs installdirs-am maintainer-clean \
 
18943
+       maintainer-clean-generic maintainer-clean-recursive \
 
18944
+       mostlyclean mostlyclean-generic mostlyclean-libtool \
 
18945
+       mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
 
18946
+       uninstall uninstall-am uninstall-info-am
 
18947
+
 
18948
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
18949
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
18950
+.NOEXPORT:
 
18951
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-common/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/fe-common/Makefile.in
 
18952
--- ./src/fe-common/Makefile.in 2005-07-17 16:30:32.000000000 +0300
 
18953
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-common/Makefile.in       2005-07-17 16:48:07.000000000 +0300
 
18954
@@ -107,6 +107,8 @@
 
18955
 GLIB_LIBS = @GLIB_LIBS@
 
18956
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
18957
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
18958
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
18959
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
18960
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
18961
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
18962
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
18963
@@ -116,6 +118,9 @@
 
18964
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
18965
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
18966
 LDFLAGS = @LDFLAGS@
 
18967
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
18968
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
18969
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
18970
 LIBOBJS = @LIBOBJS@
 
18971
 LIBPERL_A = @LIBPERL_A@
 
18972
 LIBS = @LIBS@
 
18973
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-none/.deps/irssi.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-none/.deps/irssi.Po
 
18974
--- ./src/fe-none/.deps/irssi.Po        1970-01-01 02:00:00.000000000 +0200
 
18975
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-none/.deps/irssi.Po      2005-07-17 16:48:42.000000000 +0300
 
18976
@@ -0,0 +1 @@
 
18977
+# dummy
 
18978
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-none/Makefile /tmp/dpep-work.mDzhRz/irssi/src/fe-none/Makefile
 
18979
--- ./src/fe-none/Makefile      1970-01-01 02:00:00.000000000 +0200
 
18980
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-none/Makefile    2005-07-17 16:48:39.000000000 +0300
 
18981
@@ -0,0 +1,527 @@
 
18982
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
18983
+# src/fe-none/Makefile.  Generated from Makefile.in by configure.
 
18984
+
 
18985
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
18986
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
18987
+# This Makefile.in is free software; the Free Software Foundation
 
18988
+# gives unlimited permission to copy and/or distribute it,
 
18989
+# with or without modifications, as long as this notice is preserved.
 
18990
+
 
18991
+# This program is distributed in the hope that it will be useful,
 
18992
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
18993
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
18994
+# PARTICULAR PURPOSE.
 
18995
+
 
18996
+
 
18997
+
 
18998
+
 
18999
+srcdir = .
 
19000
+top_srcdir = ../..
 
19001
+
 
19002
+pkgdatadir = $(datadir)/irssi
 
19003
+pkglibdir = $(libdir)/irssi
 
19004
+pkgincludedir = $(includedir)/irssi
 
19005
+top_builddir = ../..
 
19006
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
19007
+INSTALL = /usr/bin/install -c
 
19008
+install_sh_DATA = $(install_sh) -c -m 644
 
19009
+install_sh_PROGRAM = $(install_sh) -c
 
19010
+install_sh_SCRIPT = $(install_sh) -c
 
19011
+INSTALL_HEADER = $(INSTALL_DATA)
 
19012
+transform = $(program_transform_name)
 
19013
+NORMAL_INSTALL = :
 
19014
+PRE_INSTALL = :
 
19015
+POST_INSTALL = :
 
19016
+NORMAL_UNINSTALL = :
 
19017
+PRE_UNINSTALL = :
 
19018
+POST_UNINSTALL = :
 
19019
+build_triplet = i686-pc-linux-gnu
 
19020
+host_triplet = i686-pc-linux-gnu
 
19021
+bin_PROGRAMS = botti$(EXEEXT)
 
19022
+subdir = src/fe-none
 
19023
+DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
 
19024
+       $(srcdir)/Makefile.in
 
19025
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
19026
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
19027
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
19028
+       $(top_srcdir)/configure.in
 
19029
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
19030
+       $(ACLOCAL_M4)
 
19031
+mkinstalldirs = $(install_sh) -d
 
19032
+CONFIG_HEADER = $(top_builddir)/config.h
 
19033
+CONFIG_CLEAN_FILES =
 
19034
+am__installdirs = "$(DESTDIR)$(bindir)"
 
19035
+binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
 
19036
+PROGRAMS = $(bin_PROGRAMS)
 
19037
+am_botti_OBJECTS = irssi.$(OBJEXT)
 
19038
+botti_OBJECTS = $(am_botti_OBJECTS)
 
19039
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
19040
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
19041
+am__depfiles_maybe = depfiles
 
19042
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
19043
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
19044
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
19045
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
19046
+       $(AM_CFLAGS) $(CFLAGS)
 
19047
+CCLD = $(CC)
 
19048
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
19049
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
19050
+SOURCES = $(botti_SOURCES)
 
19051
+DIST_SOURCES = $(botti_SOURCES)
 
19052
+HEADERS = $(noinst_HEADERS)
 
19053
+ETAGS = etags
 
19054
+CTAGS = ctags
 
19055
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
19056
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
19057
+AMDEP_FALSE = #
 
19058
+AMDEP_TRUE = 
 
19059
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
19060
+AR = ar
 
19061
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
19062
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
19063
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
19064
+AWK = gawk
 
19065
+BUILD_IRSSIBOT_FALSE = 
 
19066
+BUILD_IRSSIBOT_TRUE = #
 
19067
+BUILD_IRSSIPROXY_FALSE = 
 
19068
+BUILD_IRSSIPROXY_TRUE = #
 
19069
+BUILD_PLUGINS_FALSE = 
 
19070
+BUILD_PLUGINS_TRUE = #
 
19071
+BUILD_TEXTUI_FALSE = #
 
19072
+BUILD_TEXTUI_TRUE = 
 
19073
+CC = gcc
 
19074
+CCDEPMODE = depmode=gcc3
 
19075
+CFLAGS = -g -O2 -Wall  
 
19076
+CHAT_MODULES = irc
 
19077
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
19078
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
19079
+CPP = gcc -E
 
19080
+CPPFLAGS = 
 
19081
+CURSES_INCLUDEDIR = 
 
19082
+CURSES_LIBS = -lncurses
 
19083
+CXX = g++
 
19084
+CXXCPP = g++ -E
 
19085
+CXXDEPMODE = depmode=gcc3
 
19086
+CXXFLAGS = -g -O2
 
19087
+CYGPATH_W = echo
 
19088
+DEFS = -DHAVE_CONFIG_H
 
19089
+DEPDIR = .deps
 
19090
+DYNALOADER_A = 
 
19091
+ECHO = echo
 
19092
+ECHO_C = 
 
19093
+ECHO_N = -n
 
19094
+ECHO_T = 
 
19095
+EGREP = grep -E
 
19096
+EXEEXT = 
 
19097
+F77 = 
 
19098
+FFLAGS = 
 
19099
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
19100
+GLIB_CONFIG = 
 
19101
+GLIB_GENMARSHAL = glib-genmarshal
 
19102
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
19103
+GLIB_MKENUMS = glib-mkenums
 
19104
+GOBJECT_QUERY = gobject-query
 
19105
+HAVE_GNUTLS_FALSE = #
 
19106
+HAVE_GNUTLS_TRUE = 
 
19107
+HAVE_PERL_FALSE = #
 
19108
+HAVE_PERL_TRUE = 
 
19109
+HAVE_STATIC_PERL_FALSE = #
 
19110
+HAVE_STATIC_PERL_TRUE = 
 
19111
+INSTALL_DATA = ${INSTALL} -m 644
 
19112
+INSTALL_PROGRAM = ${INSTALL}
 
19113
+INSTALL_SCRIPT = ${INSTALL}
 
19114
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
19115
+LDFLAGS = 
 
19116
+LIBGNUTLS_CFLAGS = -I/usr/include
 
19117
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
19118
+LIBGNUTLS_LIBS = -lgnutls
 
19119
+LIBOBJS = 
 
19120
+LIBPERL_A = 
 
19121
+LIBS = 
 
19122
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
19123
+LN_S = ln -s
 
19124
+LTLIBOBJS = 
 
19125
+MAINT = 
 
19126
+MAINTAINER_MODE_FALSE = #
 
19127
+MAINTAINER_MODE_TRUE = 
 
19128
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
19129
+NEED_TPARM_FALSE = 
 
19130
+NEED_TPARM_TRUE = #
 
19131
+OBJEXT = o
 
19132
+PACKAGE = irssi
 
19133
+PACKAGE_BUGREPORT = 
 
19134
+PACKAGE_NAME = 
 
19135
+PACKAGE_STRING = 
 
19136
+PACKAGE_TARNAME = 
 
19137
+PACKAGE_VERSION = 
 
19138
+PATH_SEPARATOR = :
 
19139
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
19140
+PERL_EXTRA_OPTS = 
 
19141
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
19142
+PERL_LDFLAGS = 
 
19143
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
19144
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
19145
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
19146
+PERL_MM_PARAMS = 
 
19147
+PERL_STATIC_LIBS = 0
 
19148
+PERL_USE_LIB = 
 
19149
+PKG_CONFIG = /usr/bin/pkg-config
 
19150
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
19151
+RANLIB = ranlib
 
19152
+SET_MAKE = 
 
19153
+SHELL = /bin/sh
 
19154
+SSL_CFLAGS =  
 
19155
+SSL_LIBS = -lssl -lcrypto -ldl  
 
19156
+STRIP = strip
 
19157
+TEXTUI_LIBS = -lncurses
 
19158
+USE_CURSES_FALSE = 
 
19159
+USE_CURSES_TRUE = #
 
19160
+VERSION = 0.8.10-rc5
 
19161
+VERSION_DATE = 20050717
 
19162
+VERSION_TIME = 1223
 
19163
+ac_ct_AR = ar
 
19164
+ac_ct_CC = gcc
 
19165
+ac_ct_CXX = g++
 
19166
+ac_ct_F77 = 
 
19167
+ac_ct_RANLIB = ranlib
 
19168
+ac_ct_STRIP = strip
 
19169
+ac_pt_PKG_CONFIG = 
 
19170
+am__fastdepCC_FALSE = #
 
19171
+am__fastdepCC_TRUE = 
 
19172
+am__fastdepCXX_FALSE = #
 
19173
+am__fastdepCXX_TRUE = 
 
19174
+am__include = include
 
19175
+am__leading_dot = .
 
19176
+am__quote = 
 
19177
+am__tar = ${AMTAR} chof - "$$tardir"
 
19178
+am__untar = ${AMTAR} xf -
 
19179
+bindir = ${exec_prefix}/bin
 
19180
+build = i686-pc-linux-gnu
 
19181
+build_alias = 
 
19182
+build_cpu = i686
 
19183
+build_os = linux-gnu
 
19184
+build_vendor = pc
 
19185
+datadir = ${prefix}/share
 
19186
+exec_prefix = ${prefix}
 
19187
+host = i686-pc-linux-gnu
 
19188
+host_alias = 
 
19189
+host_cpu = i686
 
19190
+host_os = linux-gnu
 
19191
+host_vendor = pc
 
19192
+includedir = ${prefix}/include
 
19193
+infodir = ${prefix}/info
 
19194
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
19195
+irc_MODULES = dcc flood notifylist
 
19196
+libdir = ${exec_prefix}/lib
 
19197
+libexecdir = ${exec_prefix}/libexec
 
19198
+localstatedir = ${prefix}/var
 
19199
+mandir = ${prefix}/man
 
19200
+mkdir_p = mkdir -p --
 
19201
+oldincludedir = /usr/include
 
19202
+perl_module_fe_lib = 
 
19203
+perl_module_lib = 
 
19204
+perl_static_fe_lib = libfe_perl_static.la
 
19205
+perl_static_lib = libperl_core_static.la
 
19206
+perlpath = /usr/bin/perl
 
19207
+prefix = /usr/local
 
19208
+program_transform_name = s,x,x,
 
19209
+sbindir = ${exec_prefix}/sbin
 
19210
+sedpath = /bin/sed
 
19211
+sharedstatedir = ${prefix}/com
 
19212
+sysconfdir = ${prefix}/etc
 
19213
+target_alias = 
 
19214
+INCLUDES = \
 
19215
+       -I$(top_srcdir)/src \
 
19216
+       -I$(top_srcdir)/src/core/ \
 
19217
+       -I$(top_srcdir)/src/irc/core/ \
 
19218
+       $(GLIB_CFLAGS)
 
19219
+
 
19220
+botti_DEPENDENCIES =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
19221
+botti_LDADD = \
 
19222
+        ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a \
 
19223
+       ../perl/libperl_core_static.la \
 
19224
+       -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt \
 
19225
+        -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl   \
 
19226
+       -lgnutls
 
19227
+
 
19228
+botti_SOURCES = \
 
19229
+        irssi.c
 
19230
+
 
19231
+noinst_HEADERS = \
 
19232
+       module.h
 
19233
+
 
19234
+all: all-am
 
19235
+
 
19236
+.SUFFIXES:
 
19237
+.SUFFIXES: .c .lo .o .obj
 
19238
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
19239
+       @for dep in $?; do \
 
19240
+         case '$(am__configure_deps)' in \
 
19241
+           *$$dep*) \
 
19242
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
19243
+               && exit 0; \
 
19244
+             exit 1;; \
 
19245
+         esac; \
 
19246
+       done; \
 
19247
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/fe-none/Makefile'; \
 
19248
+       cd $(top_srcdir) && \
 
19249
+         $(AUTOMAKE) --gnu  src/fe-none/Makefile
 
19250
+.PRECIOUS: Makefile
 
19251
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
19252
+       @case '$?' in \
 
19253
+         *config.status*) \
 
19254
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
19255
+         *) \
 
19256
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
19257
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
19258
+       esac;
 
19259
+
 
19260
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
19261
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
19262
+
 
19263
+$(top_srcdir)/configure:  $(am__configure_deps)
 
19264
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
19265
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
19266
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
19267
+install-binPROGRAMS: $(bin_PROGRAMS)
 
19268
+       @$(NORMAL_INSTALL)
 
19269
+       test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
 
19270
+       @list='$(bin_PROGRAMS)'; for p in $$list; do \
 
19271
+         p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
 
19272
+         if test -f $$p \
 
19273
+            || test -f $$p1 \
 
19274
+         ; then \
 
19275
+           f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
 
19276
+          echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
 
19277
+          $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
 
19278
+         else :; fi; \
 
19279
+       done
 
19280
+
 
19281
+uninstall-binPROGRAMS:
 
19282
+       @$(NORMAL_UNINSTALL)
 
19283
+       @list='$(bin_PROGRAMS)'; for p in $$list; do \
 
19284
+         f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
 
19285
+         echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
 
19286
+         rm -f "$(DESTDIR)$(bindir)/$$f"; \
 
19287
+       done
 
19288
+
 
19289
+clean-binPROGRAMS:
 
19290
+       @list='$(bin_PROGRAMS)'; for p in $$list; do \
 
19291
+         f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
 
19292
+         echo " rm -f $$p $$f"; \
 
19293
+         rm -f $$p $$f ; \
 
19294
+       done
 
19295
+botti$(EXEEXT): $(botti_OBJECTS) $(botti_DEPENDENCIES) 
 
19296
+       @rm -f botti$(EXEEXT)
 
19297
+       $(LINK) $(botti_LDFLAGS) $(botti_OBJECTS) $(botti_LDADD) $(LIBS)
 
19298
+
 
19299
+mostlyclean-compile:
 
19300
+       -rm -f *.$(OBJEXT)
 
19301
+
 
19302
+distclean-compile:
 
19303
+       -rm -f *.tab.c
 
19304
+
 
19305
+include ./$(DEPDIR)/irssi.Po
 
19306
+
 
19307
+.c.o:
 
19308
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
19309
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
19310
+#      source='$<' object='$@' libtool=no \
 
19311
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
19312
+#      $(COMPILE) -c $<
 
19313
+
 
19314
+.c.obj:
 
19315
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
19316
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
19317
+#      source='$<' object='$@' libtool=no \
 
19318
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
19319
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
19320
+
 
19321
+.c.lo:
 
19322
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
19323
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
19324
+#      source='$<' object='$@' libtool=yes \
 
19325
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
19326
+#      $(LTCOMPILE) -c -o $@ $<
 
19327
+
 
19328
+mostlyclean-libtool:
 
19329
+       -rm -f *.lo
 
19330
+
 
19331
+clean-libtool:
 
19332
+       -rm -rf .libs _libs
 
19333
+
 
19334
+distclean-libtool:
 
19335
+       -rm -f libtool
 
19336
+uninstall-info-am:
 
19337
+
 
19338
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
19339
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
19340
+       unique=`for i in $$list; do \
 
19341
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
19342
+         done | \
 
19343
+         $(AWK) '    { files[$$0] = 1; } \
 
19344
+              END { for (i in files) print i; }'`; \
 
19345
+       mkid -fID $$unique
 
19346
+tags: TAGS
 
19347
+
 
19348
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
19349
+               $(TAGS_FILES) $(LISP)
 
19350
+       tags=; \
 
19351
+       here=`pwd`; \
 
19352
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
19353
+       unique=`for i in $$list; do \
 
19354
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
19355
+         done | \
 
19356
+         $(AWK) '    { files[$$0] = 1; } \
 
19357
+              END { for (i in files) print i; }'`; \
 
19358
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
19359
+         test -n "$$unique" || unique=$$empty_fix; \
 
19360
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
19361
+           $$tags $$unique; \
 
19362
+       fi
 
19363
+ctags: CTAGS
 
19364
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
19365
+               $(TAGS_FILES) $(LISP)
 
19366
+       tags=; \
 
19367
+       here=`pwd`; \
 
19368
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
19369
+       unique=`for i in $$list; do \
 
19370
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
19371
+         done | \
 
19372
+         $(AWK) '    { files[$$0] = 1; } \
 
19373
+              END { for (i in files) print i; }'`; \
 
19374
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
19375
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
19376
+            $$tags $$unique
 
19377
+
 
19378
+GTAGS:
 
19379
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
19380
+         && cd $(top_srcdir) \
 
19381
+         && gtags -i $(GTAGS_ARGS) $$here
 
19382
+
 
19383
+distclean-tags:
 
19384
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
19385
+
 
19386
+distdir: $(DISTFILES)
 
19387
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
19388
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
19389
+       list='$(DISTFILES)'; for file in $$list; do \
 
19390
+         case $$file in \
 
19391
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
19392
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
19393
+         esac; \
 
19394
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
19395
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
19396
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
19397
+           dir="/$$dir"; \
 
19398
+           $(mkdir_p) "$(distdir)$$dir"; \
 
19399
+         else \
 
19400
+           dir=''; \
 
19401
+         fi; \
 
19402
+         if test -d $$d/$$file; then \
 
19403
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
19404
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
19405
+           fi; \
 
19406
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
19407
+         else \
 
19408
+           test -f $(distdir)/$$file \
 
19409
+           || cp -p $$d/$$file $(distdir)/$$file \
 
19410
+           || exit 1; \
 
19411
+         fi; \
 
19412
+       done
 
19413
+check-am: all-am
 
19414
+check: check-am
 
19415
+all-am: Makefile $(PROGRAMS) $(HEADERS)
 
19416
+installdirs:
 
19417
+       for dir in "$(DESTDIR)$(bindir)"; do \
 
19418
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
19419
+       done
 
19420
+install: install-am
 
19421
+install-exec: install-exec-am
 
19422
+install-data: install-data-am
 
19423
+uninstall: uninstall-am
 
19424
+
 
19425
+install-am: all-am
 
19426
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
19427
+
 
19428
+installcheck: installcheck-am
 
19429
+install-strip:
 
19430
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
19431
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
19432
+         `test -z '$(STRIP)' || \
 
19433
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
19434
+mostlyclean-generic:
 
19435
+
 
19436
+clean-generic:
 
19437
+
 
19438
+distclean-generic:
 
19439
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
19440
+
 
19441
+maintainer-clean-generic:
 
19442
+       @echo "This command is intended for maintainers to use"
 
19443
+       @echo "it deletes files that may require special tools to rebuild."
 
19444
+clean: clean-am
 
19445
+
 
19446
+clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
 
19447
+
 
19448
+distclean: distclean-am
 
19449
+       -rm -rf ./$(DEPDIR)
 
19450
+       -rm -f Makefile
 
19451
+distclean-am: clean-am distclean-compile distclean-generic \
 
19452
+       distclean-libtool distclean-tags
 
19453
+
 
19454
+dvi: dvi-am
 
19455
+
 
19456
+dvi-am:
 
19457
+
 
19458
+html: html-am
 
19459
+
 
19460
+info: info-am
 
19461
+
 
19462
+info-am:
 
19463
+
 
19464
+install-data-am:
 
19465
+
 
19466
+install-exec-am: install-binPROGRAMS
 
19467
+
 
19468
+install-info: install-info-am
 
19469
+
 
19470
+install-man:
 
19471
+
 
19472
+installcheck-am:
 
19473
+
 
19474
+maintainer-clean: maintainer-clean-am
 
19475
+       -rm -rf ./$(DEPDIR)
 
19476
+       -rm -f Makefile
 
19477
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
19478
+
 
19479
+mostlyclean: mostlyclean-am
 
19480
+
 
19481
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
19482
+       mostlyclean-libtool
 
19483
+
 
19484
+pdf: pdf-am
 
19485
+
 
19486
+pdf-am:
 
19487
+
 
19488
+ps: ps-am
 
19489
+
 
19490
+ps-am:
 
19491
+
 
19492
+uninstall-am: uninstall-binPROGRAMS uninstall-info-am
 
19493
+
 
19494
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
 
19495
+       clean-generic clean-libtool ctags distclean distclean-compile \
 
19496
+       distclean-generic distclean-libtool distclean-tags distdir dvi \
 
19497
+       dvi-am html html-am info info-am install install-am \
 
19498
+       install-binPROGRAMS install-data install-data-am install-exec \
 
19499
+       install-exec-am install-info install-info-am install-man \
 
19500
+       install-strip installcheck installcheck-am installdirs \
 
19501
+       maintainer-clean maintainer-clean-generic mostlyclean \
 
19502
+       mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
 
19503
+       pdf pdf-am ps ps-am tags uninstall uninstall-am \
 
19504
+       uninstall-binPROGRAMS uninstall-info-am
 
19505
+
 
19506
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
19507
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
19508
+.NOEXPORT:
 
19509
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-none/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/fe-none/Makefile.in
 
19510
--- ./src/fe-none/Makefile.in   2005-07-17 16:30:34.000000000 +0300
 
19511
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-none/Makefile.in 2005-07-17 16:48:10.000000000 +0300
 
19512
@@ -121,6 +121,8 @@
 
19513
 GLIB_LIBS = @GLIB_LIBS@
 
19514
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
19515
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
19516
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
19517
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
19518
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
19519
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
19520
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
19521
@@ -130,6 +132,9 @@
 
19522
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
19523
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
19524
 LDFLAGS = @LDFLAGS@
 
19525
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
19526
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
19527
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
19528
 LIBOBJS = @LIBOBJS@
 
19529
 LIBPERL_A = @LIBPERL_A@
 
19530
 LIBS = @LIBS@
 
19531
@@ -236,7 +241,8 @@
 
19532
        @COMMON_NOUI_LIBS@ \
 
19533
        @PERL_LINK_LIBS@ \
 
19534
        @PERL_LINK_FLAGS@ \
 
19535
-       @PROG_LIBS@
 
19536
+       @PROG_LIBS@ \
 
19537
+       -lgnutls
 
19538
 
 
19539
 botti_SOURCES = \
 
19540
         irssi.c
 
19541
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/gui-entry.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-entry.Po
 
19542
--- ./src/fe-text/.deps/gui-entry.Po    1970-01-01 02:00:00.000000000 +0200
 
19543
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-entry.Po  2005-07-17 16:48:42.000000000 +0300
 
19544
@@ -0,0 +1 @@
 
19545
+# dummy
 
19546
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/gui-expandos.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-expandos.Po
 
19547
--- ./src/fe-text/.deps/gui-expandos.Po 1970-01-01 02:00:00.000000000 +0200
 
19548
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-expandos.Po       2005-07-17 16:48:42.000000000 +0300
 
19549
@@ -0,0 +1 @@
 
19550
+# dummy
 
19551
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/gui-printtext.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-printtext.Po
 
19552
--- ./src/fe-text/.deps/gui-printtext.Po        1970-01-01 02:00:00.000000000 +0200
 
19553
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-printtext.Po      2005-07-17 16:48:42.000000000 +0300
 
19554
@@ -0,0 +1 @@
 
19555
+# dummy
 
19556
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/gui-readline.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-readline.Po
 
19557
--- ./src/fe-text/.deps/gui-readline.Po 1970-01-01 02:00:00.000000000 +0200
 
19558
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-readline.Po       2005-07-17 16:48:42.000000000 +0300
 
19559
@@ -0,0 +1 @@
 
19560
+# dummy
 
19561
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/gui-windows.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-windows.Po
 
19562
--- ./src/fe-text/.deps/gui-windows.Po  1970-01-01 02:00:00.000000000 +0200
 
19563
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/gui-windows.Po        2005-07-17 16:48:42.000000000 +0300
 
19564
@@ -0,0 +1 @@
 
19565
+# dummy
 
19566
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/irssi.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/irssi.Po
 
19567
--- ./src/fe-text/.deps/irssi.Po        1970-01-01 02:00:00.000000000 +0200
 
19568
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/irssi.Po      2005-07-17 16:48:42.000000000 +0300
 
19569
@@ -0,0 +1 @@
 
19570
+# dummy
 
19571
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/lastlog.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/lastlog.Po
 
19572
--- ./src/fe-text/.deps/lastlog.Po      1970-01-01 02:00:00.000000000 +0200
 
19573
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/lastlog.Po    2005-07-17 16:48:42.000000000 +0300
 
19574
@@ -0,0 +1 @@
 
19575
+# dummy
 
19576
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/mainwindow-activity.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/mainwindow-activity.Po
 
19577
--- ./src/fe-text/.deps/mainwindow-activity.Po  1970-01-01 02:00:00.000000000 +0200
 
19578
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/mainwindow-activity.Po        2005-07-17 16:48:42.000000000 +0300
 
19579
@@ -0,0 +1 @@
 
19580
+# dummy
 
19581
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/mainwindows-layout.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/mainwindows-layout.Po
 
19582
--- ./src/fe-text/.deps/mainwindows-layout.Po   1970-01-01 02:00:00.000000000 +0200
 
19583
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/mainwindows-layout.Po 2005-07-17 16:48:42.000000000 +0300
 
19584
@@ -0,0 +1 @@
 
19585
+# dummy
 
19586
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/mainwindows.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/mainwindows.Po
 
19587
--- ./src/fe-text/.deps/mainwindows.Po  1970-01-01 02:00:00.000000000 +0200
 
19588
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/mainwindows.Po        2005-07-17 16:48:42.000000000 +0300
 
19589
@@ -0,0 +1 @@
 
19590
+# dummy
 
19591
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/module-formats.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/module-formats.Po
 
19592
--- ./src/fe-text/.deps/module-formats.Po       1970-01-01 02:00:00.000000000 +0200
 
19593
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/module-formats.Po     2005-07-17 16:48:42.000000000 +0300
 
19594
@@ -0,0 +1 @@
 
19595
+# dummy
 
19596
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/statusbar-config.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/statusbar-config.Po
 
19597
--- ./src/fe-text/.deps/statusbar-config.Po     1970-01-01 02:00:00.000000000 +0200
 
19598
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/statusbar-config.Po   2005-07-17 16:48:42.000000000 +0300
 
19599
@@ -0,0 +1 @@
 
19600
+# dummy
 
19601
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/statusbar-items.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/statusbar-items.Po
 
19602
--- ./src/fe-text/.deps/statusbar-items.Po      1970-01-01 02:00:00.000000000 +0200
 
19603
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/statusbar-items.Po    2005-07-17 16:48:42.000000000 +0300
 
19604
@@ -0,0 +1 @@
 
19605
+# dummy
 
19606
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/statusbar.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/statusbar.Po
 
19607
--- ./src/fe-text/.deps/statusbar.Po    1970-01-01 02:00:00.000000000 +0200
 
19608
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/statusbar.Po  2005-07-17 16:48:42.000000000 +0300
 
19609
@@ -0,0 +1 @@
 
19610
+# dummy
 
19611
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/term-curses.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/term-curses.Po
 
19612
--- ./src/fe-text/.deps/term-curses.Po  1970-01-01 02:00:00.000000000 +0200
 
19613
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/term-curses.Po        2005-07-17 16:48:42.000000000 +0300
 
19614
@@ -0,0 +1 @@
 
19615
+# dummy
 
19616
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/term-dummy.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/term-dummy.Po
 
19617
--- ./src/fe-text/.deps/term-dummy.Po   1970-01-01 02:00:00.000000000 +0200
 
19618
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/term-dummy.Po 2005-07-17 16:48:42.000000000 +0300
 
19619
@@ -0,0 +1 @@
 
19620
+# dummy
 
19621
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/terminfo-core.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/terminfo-core.Po
 
19622
--- ./src/fe-text/.deps/terminfo-core.Po        1970-01-01 02:00:00.000000000 +0200
 
19623
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/terminfo-core.Po      2005-07-17 16:48:42.000000000 +0300
 
19624
@@ -0,0 +1 @@
 
19625
+# dummy
 
19626
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/term.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/term.Po
 
19627
--- ./src/fe-text/.deps/term.Po 1970-01-01 02:00:00.000000000 +0200
 
19628
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/term.Po       2005-07-17 16:48:42.000000000 +0300
 
19629
@@ -0,0 +1 @@
 
19630
+# dummy
 
19631
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/term-terminfo.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/term-terminfo.Po
 
19632
--- ./src/fe-text/.deps/term-terminfo.Po        1970-01-01 02:00:00.000000000 +0200
 
19633
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/term-terminfo.Po      2005-07-17 16:48:42.000000000 +0300
 
19634
@@ -0,0 +1 @@
 
19635
+# dummy
 
19636
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/textbuffer-commands.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/textbuffer-commands.Po
 
19637
--- ./src/fe-text/.deps/textbuffer-commands.Po  1970-01-01 02:00:00.000000000 +0200
 
19638
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/textbuffer-commands.Po        2005-07-17 16:48:42.000000000 +0300
 
19639
@@ -0,0 +1 @@
 
19640
+# dummy
 
19641
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/textbuffer.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/textbuffer.Po
 
19642
--- ./src/fe-text/.deps/textbuffer.Po   1970-01-01 02:00:00.000000000 +0200
 
19643
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/textbuffer.Po 2005-07-17 16:48:42.000000000 +0300
 
19644
@@ -0,0 +1 @@
 
19645
+# dummy
 
19646
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/textbuffer-reformat.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/textbuffer-reformat.Po
 
19647
--- ./src/fe-text/.deps/textbuffer-reformat.Po  1970-01-01 02:00:00.000000000 +0200
 
19648
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/textbuffer-reformat.Po        2005-07-17 16:48:42.000000000 +0300
 
19649
@@ -0,0 +1 @@
 
19650
+# dummy
 
19651
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/textbuffer-view.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/textbuffer-view.Po
 
19652
--- ./src/fe-text/.deps/textbuffer-view.Po      1970-01-01 02:00:00.000000000 +0200
 
19653
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/textbuffer-view.Po    2005-07-17 16:48:42.000000000 +0300
 
19654
@@ -0,0 +1 @@
 
19655
+# dummy
 
19656
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/.deps/tparm.Po /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/tparm.Po
 
19657
--- ./src/fe-text/.deps/tparm.Po        1970-01-01 02:00:00.000000000 +0200
 
19658
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/.deps/tparm.Po      2005-07-17 16:48:42.000000000 +0300
 
19659
@@ -0,0 +1 @@
 
19660
+# dummy
 
19661
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/Makefile /tmp/dpep-work.mDzhRz/irssi/src/fe-text/Makefile
 
19662
--- ./src/fe-text/Makefile      1970-01-01 02:00:00.000000000 +0200
 
19663
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/Makefile    2005-07-17 16:48:39.000000000 +0300
 
19664
@@ -0,0 +1,633 @@
 
19665
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
19666
+# src/fe-text/Makefile.  Generated from Makefile.in by configure.
 
19667
+
 
19668
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
19669
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
19670
+# This Makefile.in is free software; the Free Software Foundation
 
19671
+# gives unlimited permission to copy and/or distribute it,
 
19672
+# with or without modifications, as long as this notice is preserved.
 
19673
+
 
19674
+# This program is distributed in the hope that it will be useful,
 
19675
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
19676
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
19677
+# PARTICULAR PURPOSE.
 
19678
+
 
19679
+
 
19680
+
 
19681
+
 
19682
+srcdir = .
 
19683
+top_srcdir = ../..
 
19684
+
 
19685
+pkgdatadir = $(datadir)/irssi
 
19686
+pkglibdir = $(libdir)/irssi
 
19687
+pkgincludedir = $(includedir)/irssi
 
19688
+top_builddir = ../..
 
19689
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
19690
+INSTALL = /usr/bin/install -c
 
19691
+install_sh_DATA = $(install_sh) -c -m 644
 
19692
+install_sh_PROGRAM = $(install_sh) -c
 
19693
+install_sh_SCRIPT = $(install_sh) -c
 
19694
+INSTALL_HEADER = $(INSTALL_DATA)
 
19695
+transform = $(program_transform_name)
 
19696
+NORMAL_INSTALL = :
 
19697
+PRE_INSTALL = :
 
19698
+POST_INSTALL = :
 
19699
+NORMAL_UNINSTALL = :
 
19700
+PRE_UNINSTALL = :
 
19701
+POST_UNINSTALL = :
 
19702
+build_triplet = i686-pc-linux-gnu
 
19703
+host_triplet = i686-pc-linux-gnu
 
19704
+bin_PROGRAMS = irssi$(EXEEXT)
 
19705
+subdir = src/fe-text
 
19706
+DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
 
19707
+       $(srcdir)/Makefile.in
 
19708
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
19709
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
19710
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
19711
+       $(top_srcdir)/configure.in
 
19712
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
19713
+       $(ACLOCAL_M4)
 
19714
+mkinstalldirs = $(install_sh) -d
 
19715
+CONFIG_HEADER = $(top_builddir)/config.h
 
19716
+CONFIG_CLEAN_FILES =
 
19717
+am__installdirs = "$(DESTDIR)$(bindir)"
 
19718
+binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
 
19719
+PROGRAMS = $(bin_PROGRAMS)
 
19720
+am__irssi_SOURCES_DIST = gui-entry.c gui-expandos.c gui-printtext.c \
 
19721
+       gui-readline.c gui-windows.c lastlog.c mainwindows.c \
 
19722
+       mainwindow-activity.c mainwindows-layout.c statusbar.c \
 
19723
+       statusbar-config.c statusbar-items.c term.c term-dummy.c \
 
19724
+       tparm.c term-terminfo.c terminfo-core.c term-curses.c \
 
19725
+       textbuffer.c textbuffer-commands.c textbuffer-reformat.c \
 
19726
+       textbuffer-view.c irssi.c module-formats.c
 
19727
+am__objects_1 = tparm.$(OBJEXT)
 
19728
+#am__objects_2 = $(am__objects_1)
 
19729
+am__objects_3 = term-terminfo.$(OBJEXT) terminfo-core.$(OBJEXT)
 
19730
+am__objects_4 = term-curses.$(OBJEXT)
 
19731
+am__objects_5 = $(am__objects_3)
 
19732
+#am__objects_5 = $(am__objects_4)
 
19733
+am_irssi_OBJECTS = gui-entry.$(OBJEXT) gui-expandos.$(OBJEXT) \
 
19734
+       gui-printtext.$(OBJEXT) gui-readline.$(OBJEXT) \
 
19735
+       gui-windows.$(OBJEXT) lastlog.$(OBJEXT) mainwindows.$(OBJEXT) \
 
19736
+       mainwindow-activity.$(OBJEXT) mainwindows-layout.$(OBJEXT) \
 
19737
+       statusbar.$(OBJEXT) statusbar-config.$(OBJEXT) \
 
19738
+       statusbar-items.$(OBJEXT) term.$(OBJEXT) term-dummy.$(OBJEXT) \
 
19739
+       $(am__objects_2) $(am__objects_5) textbuffer.$(OBJEXT) \
 
19740
+       textbuffer-commands.$(OBJEXT) textbuffer-reformat.$(OBJEXT) \
 
19741
+       textbuffer-view.$(OBJEXT) irssi.$(OBJEXT) \
 
19742
+       module-formats.$(OBJEXT)
 
19743
+irssi_OBJECTS = $(am_irssi_OBJECTS)
 
19744
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
19745
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
19746
+am__depfiles_maybe = depfiles
 
19747
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
19748
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
19749
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
19750
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
19751
+       $(AM_CFLAGS) $(CFLAGS)
 
19752
+CCLD = $(CC)
 
19753
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
19754
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
19755
+SOURCES = $(irssi_SOURCES)
 
19756
+DIST_SOURCES = $(am__irssi_SOURCES_DIST)
 
19757
+HEADERS = $(noinst_HEADERS)
 
19758
+ETAGS = etags
 
19759
+CTAGS = ctags
 
19760
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
19761
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
19762
+AMDEP_FALSE = #
 
19763
+AMDEP_TRUE = 
 
19764
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
19765
+AR = ar
 
19766
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
19767
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
19768
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
19769
+AWK = gawk
 
19770
+BUILD_IRSSIBOT_FALSE = 
 
19771
+BUILD_IRSSIBOT_TRUE = #
 
19772
+BUILD_IRSSIPROXY_FALSE = 
 
19773
+BUILD_IRSSIPROXY_TRUE = #
 
19774
+BUILD_PLUGINS_FALSE = 
 
19775
+BUILD_PLUGINS_TRUE = #
 
19776
+BUILD_TEXTUI_FALSE = #
 
19777
+BUILD_TEXTUI_TRUE = 
 
19778
+CC = gcc
 
19779
+CCDEPMODE = depmode=gcc3
 
19780
+CFLAGS = -g -O2 -Wall  
 
19781
+CHAT_MODULES = irc
 
19782
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
19783
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
19784
+CPP = gcc -E
 
19785
+CPPFLAGS = 
 
19786
+CURSES_INCLUDEDIR = 
 
19787
+CURSES_LIBS = -lncurses
 
19788
+CXX = g++
 
19789
+CXXCPP = g++ -E
 
19790
+CXXDEPMODE = depmode=gcc3
 
19791
+CXXFLAGS = -g -O2
 
19792
+CYGPATH_W = echo
 
19793
+DEFS = -DHAVE_CONFIG_H
 
19794
+DEPDIR = .deps
 
19795
+DYNALOADER_A = 
 
19796
+ECHO = echo
 
19797
+ECHO_C = 
 
19798
+ECHO_N = -n
 
19799
+ECHO_T = 
 
19800
+EGREP = grep -E
 
19801
+EXEEXT = 
 
19802
+F77 = 
 
19803
+FFLAGS = 
 
19804
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
19805
+GLIB_CONFIG = 
 
19806
+GLIB_GENMARSHAL = glib-genmarshal
 
19807
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
19808
+GLIB_MKENUMS = glib-mkenums
 
19809
+GOBJECT_QUERY = gobject-query
 
19810
+HAVE_GNUTLS_FALSE = #
 
19811
+HAVE_GNUTLS_TRUE = 
 
19812
+HAVE_PERL_FALSE = #
 
19813
+HAVE_PERL_TRUE = 
 
19814
+HAVE_STATIC_PERL_FALSE = #
 
19815
+HAVE_STATIC_PERL_TRUE = 
 
19816
+INSTALL_DATA = ${INSTALL} -m 644
 
19817
+INSTALL_PROGRAM = ${INSTALL}
 
19818
+INSTALL_SCRIPT = ${INSTALL}
 
19819
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
19820
+LDFLAGS = 
 
19821
+LIBGNUTLS_CFLAGS = -I/usr/include
 
19822
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
19823
+LIBGNUTLS_LIBS = -lgnutls
 
19824
+LIBOBJS = 
 
19825
+LIBPERL_A = 
 
19826
+LIBS = 
 
19827
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
19828
+LN_S = ln -s
 
19829
+LTLIBOBJS = 
 
19830
+MAINT = 
 
19831
+MAINTAINER_MODE_FALSE = #
 
19832
+MAINTAINER_MODE_TRUE = 
 
19833
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
19834
+NEED_TPARM_FALSE = 
 
19835
+NEED_TPARM_TRUE = #
 
19836
+OBJEXT = o
 
19837
+PACKAGE = irssi
 
19838
+PACKAGE_BUGREPORT = 
 
19839
+PACKAGE_NAME = 
 
19840
+PACKAGE_STRING = 
 
19841
+PACKAGE_TARNAME = 
 
19842
+PACKAGE_VERSION = 
 
19843
+PATH_SEPARATOR = :
 
19844
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
19845
+PERL_EXTRA_OPTS = 
 
19846
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
19847
+PERL_LDFLAGS = 
 
19848
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
19849
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
19850
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
19851
+PERL_MM_PARAMS = 
 
19852
+PERL_STATIC_LIBS = 0
 
19853
+PERL_USE_LIB = 
 
19854
+PKG_CONFIG = /usr/bin/pkg-config
 
19855
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
19856
+RANLIB = ranlib
 
19857
+SET_MAKE = 
 
19858
+SHELL = /bin/sh
 
19859
+SSL_CFLAGS =  
 
19860
+SSL_LIBS = -lssl -lcrypto -ldl  
 
19861
+STRIP = strip
 
19862
+TEXTUI_LIBS = -lncurses
 
19863
+USE_CURSES_FALSE = 
 
19864
+USE_CURSES_TRUE = #
 
19865
+VERSION = 0.8.10-rc5
 
19866
+VERSION_DATE = 20050717
 
19867
+VERSION_TIME = 1223
 
19868
+ac_ct_AR = ar
 
19869
+ac_ct_CC = gcc
 
19870
+ac_ct_CXX = g++
 
19871
+ac_ct_F77 = 
 
19872
+ac_ct_RANLIB = ranlib
 
19873
+ac_ct_STRIP = strip
 
19874
+ac_pt_PKG_CONFIG = 
 
19875
+am__fastdepCC_FALSE = #
 
19876
+am__fastdepCC_TRUE = 
 
19877
+am__fastdepCXX_FALSE = #
 
19878
+am__fastdepCXX_TRUE = 
 
19879
+am__include = include
 
19880
+am__leading_dot = .
 
19881
+am__quote = 
 
19882
+am__tar = ${AMTAR} chof - "$$tardir"
 
19883
+am__untar = ${AMTAR} xf -
 
19884
+bindir = ${exec_prefix}/bin
 
19885
+build = i686-pc-linux-gnu
 
19886
+build_alias = 
 
19887
+build_cpu = i686
 
19888
+build_os = linux-gnu
 
19889
+build_vendor = pc
 
19890
+datadir = ${prefix}/share
 
19891
+exec_prefix = ${prefix}
 
19892
+host = i686-pc-linux-gnu
 
19893
+host_alias = 
 
19894
+host_cpu = i686
 
19895
+host_os = linux-gnu
 
19896
+host_vendor = pc
 
19897
+includedir = ${prefix}/include
 
19898
+infodir = ${prefix}/info
 
19899
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
19900
+irc_MODULES = dcc flood notifylist
 
19901
+libdir = ${exec_prefix}/lib
 
19902
+libexecdir = ${exec_prefix}/libexec
 
19903
+localstatedir = ${prefix}/var
 
19904
+mandir = ${prefix}/man
 
19905
+mkdir_p = mkdir -p --
 
19906
+oldincludedir = /usr/include
 
19907
+perl_module_fe_lib = 
 
19908
+perl_module_lib = 
 
19909
+perl_static_fe_lib = libfe_perl_static.la
 
19910
+perl_static_lib = libperl_core_static.la
 
19911
+perlpath = /usr/bin/perl
 
19912
+prefix = /usr/local
 
19913
+program_transform_name = s,x,x,
 
19914
+sbindir = ${exec_prefix}/sbin
 
19915
+sedpath = /bin/sed
 
19916
+sharedstatedir = ${prefix}/com
 
19917
+sysconfdir = ${prefix}/etc
 
19918
+target_alias = 
 
19919
+INCLUDES = \
 
19920
+       -I$(top_srcdir)/src \
 
19921
+       -I$(top_srcdir)/src/core/ \
 
19922
+       -I$(top_srcdir)/src/fe-common/core/ \
 
19923
+       $(GLIB_CFLAGS) \
 
19924
+       $(CURSES_INCLUDEDIR) \
 
19925
+       -DLOCALEDIR=\""$(datadir)/locale"\"
 
19926
+
 
19927
+irssi_DEPENDENCIES = \
 
19928
+       ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a \
 
19929
+       ../perl/libperl_core_static.la \
 
19930
+       ../perl/libfe_perl_static.la
 
19931
+
 
19932
+irssi_LDFLAGS = -export-dynamic
 
19933
+irssi_LDADD = \
 
19934
+       ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a \
 
19935
+       ../perl/libperl_core_static.la \
 
19936
+       ../perl/libfe_perl_static.la \
 
19937
+       -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt \
 
19938
+        -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl   \
 
19939
+       -lncurses \
 
19940
+       -lgnutls
 
19941
+
 
19942
+tparm_sources = \
 
19943
+       tparm.c
 
19944
+
 
19945
+terminfo_sources = \
 
19946
+        term-terminfo.c \
 
19947
+        terminfo-core.c
 
19948
+
 
19949
+curses_sources = \
 
19950
+       term-curses.c
 
19951
+
 
19952
+#use_tparm_sources = $(tparm_sources)
 
19953
+use_term_sources = $(terminfo_sources)
 
19954
+#use_term_sources = $(curses_sources)
 
19955
+irssi_SOURCES = \
 
19956
+        gui-entry.c \
 
19957
+       gui-expandos.c \
 
19958
+        gui-printtext.c \
 
19959
+        gui-readline.c \
 
19960
+        gui-windows.c \
 
19961
+       lastlog.c \
 
19962
+        mainwindows.c \
 
19963
+        mainwindow-activity.c \
 
19964
+        mainwindows-layout.c \
 
19965
+        statusbar.c \
 
19966
+        statusbar-config.c \
 
19967
+        statusbar-items.c \
 
19968
+        term.c \
 
19969
+       term-dummy.c \
 
19970
+       $(use_tparm_sources) \
 
19971
+       $(use_term_sources) \
 
19972
+        textbuffer.c \
 
19973
+        textbuffer-commands.c \
 
19974
+        textbuffer-reformat.c \
 
19975
+        textbuffer-view.c \
 
19976
+        irssi.c \
 
19977
+       module-formats.c
 
19978
+
 
19979
+noinst_HEADERS = \
 
19980
+        gui-entry.h \
 
19981
+        gui-printtext.h \
 
19982
+        gui-readline.h \
 
19983
+        gui-windows.h \
 
19984
+        mainwindows.h \
 
19985
+        statusbar.h \
 
19986
+        statusbar-config.h \
 
19987
+       term.h \
 
19988
+       terminfo-core.h \
 
19989
+        textbuffer.h \
 
19990
+        textbuffer-view.h \
 
19991
+        textbuffer-reformat.h \
 
19992
+       module.h \
 
19993
+       module-formats.h
 
19994
+
 
19995
+EXTRA_DIST = \
 
19996
+       $(tparm_sources) \
 
19997
+       $(terminfo_sources) \
 
19998
+       $(curses_sources)
 
19999
+
 
20000
+all: all-am
 
20001
+
 
20002
+.SUFFIXES:
 
20003
+.SUFFIXES: .c .lo .o .obj
 
20004
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
20005
+       @for dep in $?; do \
 
20006
+         case '$(am__configure_deps)' in \
 
20007
+           *$$dep*) \
 
20008
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
20009
+               && exit 0; \
 
20010
+             exit 1;; \
 
20011
+         esac; \
 
20012
+       done; \
 
20013
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/fe-text/Makefile'; \
 
20014
+       cd $(top_srcdir) && \
 
20015
+         $(AUTOMAKE) --gnu  src/fe-text/Makefile
 
20016
+.PRECIOUS: Makefile
 
20017
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
20018
+       @case '$?' in \
 
20019
+         *config.status*) \
 
20020
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
20021
+         *) \
 
20022
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
20023
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
20024
+       esac;
 
20025
+
 
20026
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
20027
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
20028
+
 
20029
+$(top_srcdir)/configure:  $(am__configure_deps)
 
20030
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
20031
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
20032
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
20033
+install-binPROGRAMS: $(bin_PROGRAMS)
 
20034
+       @$(NORMAL_INSTALL)
 
20035
+       test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
 
20036
+       @list='$(bin_PROGRAMS)'; for p in $$list; do \
 
20037
+         p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
 
20038
+         if test -f $$p \
 
20039
+            || test -f $$p1 \
 
20040
+         ; then \
 
20041
+           f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
 
20042
+          echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
 
20043
+          $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
 
20044
+         else :; fi; \
 
20045
+       done
 
20046
+
 
20047
+uninstall-binPROGRAMS:
 
20048
+       @$(NORMAL_UNINSTALL)
 
20049
+       @list='$(bin_PROGRAMS)'; for p in $$list; do \
 
20050
+         f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
 
20051
+         echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
 
20052
+         rm -f "$(DESTDIR)$(bindir)/$$f"; \
 
20053
+       done
 
20054
+
 
20055
+clean-binPROGRAMS:
 
20056
+       @list='$(bin_PROGRAMS)'; for p in $$list; do \
 
20057
+         f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
 
20058
+         echo " rm -f $$p $$f"; \
 
20059
+         rm -f $$p $$f ; \
 
20060
+       done
 
20061
+irssi$(EXEEXT): $(irssi_OBJECTS) $(irssi_DEPENDENCIES) 
 
20062
+       @rm -f irssi$(EXEEXT)
 
20063
+       $(LINK) $(irssi_LDFLAGS) $(irssi_OBJECTS) $(irssi_LDADD) $(LIBS)
 
20064
+
 
20065
+mostlyclean-compile:
 
20066
+       -rm -f *.$(OBJEXT)
 
20067
+
 
20068
+distclean-compile:
 
20069
+       -rm -f *.tab.c
 
20070
+
 
20071
+include ./$(DEPDIR)/gui-entry.Po
 
20072
+include ./$(DEPDIR)/gui-expandos.Po
 
20073
+include ./$(DEPDIR)/gui-printtext.Po
 
20074
+include ./$(DEPDIR)/gui-readline.Po
 
20075
+include ./$(DEPDIR)/gui-windows.Po
 
20076
+include ./$(DEPDIR)/irssi.Po
 
20077
+include ./$(DEPDIR)/lastlog.Po
 
20078
+include ./$(DEPDIR)/mainwindow-activity.Po
 
20079
+include ./$(DEPDIR)/mainwindows-layout.Po
 
20080
+include ./$(DEPDIR)/mainwindows.Po
 
20081
+include ./$(DEPDIR)/module-formats.Po
 
20082
+include ./$(DEPDIR)/statusbar-config.Po
 
20083
+include ./$(DEPDIR)/statusbar-items.Po
 
20084
+include ./$(DEPDIR)/statusbar.Po
 
20085
+include ./$(DEPDIR)/term-curses.Po
 
20086
+include ./$(DEPDIR)/term-dummy.Po
 
20087
+include ./$(DEPDIR)/term-terminfo.Po
 
20088
+include ./$(DEPDIR)/term.Po
 
20089
+include ./$(DEPDIR)/terminfo-core.Po
 
20090
+include ./$(DEPDIR)/textbuffer-commands.Po
 
20091
+include ./$(DEPDIR)/textbuffer-reformat.Po
 
20092
+include ./$(DEPDIR)/textbuffer-view.Po
 
20093
+include ./$(DEPDIR)/textbuffer.Po
 
20094
+include ./$(DEPDIR)/tparm.Po
 
20095
+
 
20096
+.c.o:
 
20097
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
20098
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
20099
+#      source='$<' object='$@' libtool=no \
 
20100
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
20101
+#      $(COMPILE) -c $<
 
20102
+
 
20103
+.c.obj:
 
20104
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
20105
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
20106
+#      source='$<' object='$@' libtool=no \
 
20107
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
20108
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
20109
+
 
20110
+.c.lo:
 
20111
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
20112
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
20113
+#      source='$<' object='$@' libtool=yes \
 
20114
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
20115
+#      $(LTCOMPILE) -c -o $@ $<
 
20116
+
 
20117
+mostlyclean-libtool:
 
20118
+       -rm -f *.lo
 
20119
+
 
20120
+clean-libtool:
 
20121
+       -rm -rf .libs _libs
 
20122
+
 
20123
+distclean-libtool:
 
20124
+       -rm -f libtool
 
20125
+uninstall-info-am:
 
20126
+
 
20127
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
20128
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
20129
+       unique=`for i in $$list; do \
 
20130
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
20131
+         done | \
 
20132
+         $(AWK) '    { files[$$0] = 1; } \
 
20133
+              END { for (i in files) print i; }'`; \
 
20134
+       mkid -fID $$unique
 
20135
+tags: TAGS
 
20136
+
 
20137
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
20138
+               $(TAGS_FILES) $(LISP)
 
20139
+       tags=; \
 
20140
+       here=`pwd`; \
 
20141
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
20142
+       unique=`for i in $$list; do \
 
20143
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
20144
+         done | \
 
20145
+         $(AWK) '    { files[$$0] = 1; } \
 
20146
+              END { for (i in files) print i; }'`; \
 
20147
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
20148
+         test -n "$$unique" || unique=$$empty_fix; \
 
20149
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
20150
+           $$tags $$unique; \
 
20151
+       fi
 
20152
+ctags: CTAGS
 
20153
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
20154
+               $(TAGS_FILES) $(LISP)
 
20155
+       tags=; \
 
20156
+       here=`pwd`; \
 
20157
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
20158
+       unique=`for i in $$list; do \
 
20159
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
20160
+         done | \
 
20161
+         $(AWK) '    { files[$$0] = 1; } \
 
20162
+              END { for (i in files) print i; }'`; \
 
20163
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
20164
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
20165
+            $$tags $$unique
 
20166
+
 
20167
+GTAGS:
 
20168
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
20169
+         && cd $(top_srcdir) \
 
20170
+         && gtags -i $(GTAGS_ARGS) $$here
 
20171
+
 
20172
+distclean-tags:
 
20173
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
20174
+
 
20175
+distdir: $(DISTFILES)
 
20176
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
20177
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
20178
+       list='$(DISTFILES)'; for file in $$list; do \
 
20179
+         case $$file in \
 
20180
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
20181
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
20182
+         esac; \
 
20183
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
20184
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
20185
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
20186
+           dir="/$$dir"; \
 
20187
+           $(mkdir_p) "$(distdir)$$dir"; \
 
20188
+         else \
 
20189
+           dir=''; \
 
20190
+         fi; \
 
20191
+         if test -d $$d/$$file; then \
 
20192
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
20193
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
20194
+           fi; \
 
20195
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
20196
+         else \
 
20197
+           test -f $(distdir)/$$file \
 
20198
+           || cp -p $$d/$$file $(distdir)/$$file \
 
20199
+           || exit 1; \
 
20200
+         fi; \
 
20201
+       done
 
20202
+check-am: all-am
 
20203
+check: check-am
 
20204
+all-am: Makefile $(PROGRAMS) $(HEADERS)
 
20205
+installdirs:
 
20206
+       for dir in "$(DESTDIR)$(bindir)"; do \
 
20207
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
20208
+       done
 
20209
+install: install-am
 
20210
+install-exec: install-exec-am
 
20211
+install-data: install-data-am
 
20212
+uninstall: uninstall-am
 
20213
+
 
20214
+install-am: all-am
 
20215
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
20216
+
 
20217
+installcheck: installcheck-am
 
20218
+install-strip:
 
20219
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
20220
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
20221
+         `test -z '$(STRIP)' || \
 
20222
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
20223
+mostlyclean-generic:
 
20224
+
 
20225
+clean-generic:
 
20226
+
 
20227
+distclean-generic:
 
20228
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
20229
+
 
20230
+maintainer-clean-generic:
 
20231
+       @echo "This command is intended for maintainers to use"
 
20232
+       @echo "it deletes files that may require special tools to rebuild."
 
20233
+clean: clean-am
 
20234
+
 
20235
+clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
 
20236
+
 
20237
+distclean: distclean-am
 
20238
+       -rm -rf ./$(DEPDIR)
 
20239
+       -rm -f Makefile
 
20240
+distclean-am: clean-am distclean-compile distclean-generic \
 
20241
+       distclean-libtool distclean-tags
 
20242
+
 
20243
+dvi: dvi-am
 
20244
+
 
20245
+dvi-am:
 
20246
+
 
20247
+html: html-am
 
20248
+
 
20249
+info: info-am
 
20250
+
 
20251
+info-am:
 
20252
+
 
20253
+install-data-am:
 
20254
+
 
20255
+install-exec-am: install-binPROGRAMS
 
20256
+
 
20257
+install-info: install-info-am
 
20258
+
 
20259
+install-man:
 
20260
+
 
20261
+installcheck-am:
 
20262
+
 
20263
+maintainer-clean: maintainer-clean-am
 
20264
+       -rm -rf ./$(DEPDIR)
 
20265
+       -rm -f Makefile
 
20266
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
20267
+
 
20268
+mostlyclean: mostlyclean-am
 
20269
+
 
20270
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
20271
+       mostlyclean-libtool
 
20272
+
 
20273
+pdf: pdf-am
 
20274
+
 
20275
+pdf-am:
 
20276
+
 
20277
+ps: ps-am
 
20278
+
 
20279
+ps-am:
 
20280
+
 
20281
+uninstall-am: uninstall-binPROGRAMS uninstall-info-am
 
20282
+
 
20283
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
 
20284
+       clean-generic clean-libtool ctags distclean distclean-compile \
 
20285
+       distclean-generic distclean-libtool distclean-tags distdir dvi \
 
20286
+       dvi-am html html-am info info-am install install-am \
 
20287
+       install-binPROGRAMS install-data install-data-am install-exec \
 
20288
+       install-exec-am install-info install-info-am install-man \
 
20289
+       install-strip installcheck installcheck-am installdirs \
 
20290
+       maintainer-clean maintainer-clean-generic mostlyclean \
 
20291
+       mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
 
20292
+       pdf pdf-am ps ps-am tags uninstall uninstall-am \
 
20293
+       uninstall-binPROGRAMS uninstall-info-am
 
20294
+
 
20295
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
20296
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
20297
+.NOEXPORT:
 
20298
diff -urNad --exclude=CVS --exclude=.svn ./src/fe-text/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/fe-text/Makefile.in
 
20299
--- ./src/fe-text/Makefile.in   2005-07-17 16:30:34.000000000 +0300
 
20300
+++ /tmp/dpep-work.mDzhRz/irssi/src/fe-text/Makefile.in 2005-07-17 16:48:10.000000000 +0300
 
20301
@@ -143,6 +143,8 @@
 
20302
 GLIB_LIBS = @GLIB_LIBS@
 
20303
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
20304
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
20305
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
20306
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
20307
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
20308
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
20309
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
20310
@@ -152,6 +154,9 @@
 
20311
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
20312
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
20313
 LDFLAGS = @LDFLAGS@
 
20314
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
20315
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
20316
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
20317
 LIBOBJS = @LIBOBJS@
 
20318
 LIBPERL_A = @LIBPERL_A@
 
20319
 LIBS = @LIBS@
 
20320
@@ -267,7 +272,8 @@
 
20321
        @PERL_FE_LINK_LIBS@ \
 
20322
        @PERL_LINK_FLAGS@ \
 
20323
        @PROG_LIBS@ \
 
20324
-       @TEXTUI_LIBS@
 
20325
+       @TEXTUI_LIBS@ \
 
20326
+       -lgnutls
 
20327
 
 
20328
 tparm_sources = \
 
20329
        tparm.c
 
20330
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/bans.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/bans.Po
 
20331
--- ./src/irc/core/.deps/bans.Po        1970-01-01 02:00:00.000000000 +0200
 
20332
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/bans.Po      2005-07-17 16:48:41.000000000 +0300
 
20333
@@ -0,0 +1 @@
 
20334
+# dummy
 
20335
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/channel-events.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/channel-events.Po
 
20336
--- ./src/irc/core/.deps/channel-events.Po      1970-01-01 02:00:00.000000000 +0200
 
20337
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/channel-events.Po    2005-07-17 16:48:41.000000000 +0300
 
20338
@@ -0,0 +1 @@
 
20339
+# dummy
 
20340
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/channel-rejoin.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/channel-rejoin.Po
 
20341
--- ./src/irc/core/.deps/channel-rejoin.Po      1970-01-01 02:00:00.000000000 +0200
 
20342
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/channel-rejoin.Po    2005-07-17 16:48:41.000000000 +0300
 
20343
@@ -0,0 +1 @@
 
20344
+# dummy
 
20345
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/channels-query.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/channels-query.Po
 
20346
--- ./src/irc/core/.deps/channels-query.Po      1970-01-01 02:00:00.000000000 +0200
 
20347
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/channels-query.Po    2005-07-17 16:48:41.000000000 +0300
 
20348
@@ -0,0 +1 @@
 
20349
+# dummy
 
20350
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/ctcp.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/ctcp.Po
 
20351
--- ./src/irc/core/.deps/ctcp.Po        1970-01-01 02:00:00.000000000 +0200
 
20352
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/ctcp.Po      2005-07-17 16:48:41.000000000 +0300
 
20353
@@ -0,0 +1 @@
 
20354
+# dummy
 
20355
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-channels.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-channels.Po
 
20356
--- ./src/irc/core/.deps/irc-channels.Po        1970-01-01 02:00:00.000000000 +0200
 
20357
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-channels.Po      2005-07-17 16:48:41.000000000 +0300
 
20358
@@ -0,0 +1 @@
 
20359
+# dummy
 
20360
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-channels-setup.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-channels-setup.Po
 
20361
--- ./src/irc/core/.deps/irc-channels-setup.Po  1970-01-01 02:00:00.000000000 +0200
 
20362
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-channels-setup.Po        2005-07-17 16:48:41.000000000 +0300
 
20363
@@ -0,0 +1 @@
 
20364
+# dummy
 
20365
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-chatnets.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-chatnets.Po
 
20366
--- ./src/irc/core/.deps/irc-chatnets.Po        1970-01-01 02:00:00.000000000 +0200
 
20367
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-chatnets.Po      2005-07-17 16:48:41.000000000 +0300
 
20368
@@ -0,0 +1 @@
 
20369
+# dummy
 
20370
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-commands.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-commands.Po
 
20371
--- ./src/irc/core/.deps/irc-commands.Po        1970-01-01 02:00:00.000000000 +0200
 
20372
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-commands.Po      2005-07-17 16:48:41.000000000 +0300
 
20373
@@ -0,0 +1 @@
 
20374
+# dummy
 
20375
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-core.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-core.Po
 
20376
--- ./src/irc/core/.deps/irc-core.Po    1970-01-01 02:00:00.000000000 +0200
 
20377
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-core.Po  2005-07-17 16:48:41.000000000 +0300
 
20378
@@ -0,0 +1 @@
 
20379
+# dummy
 
20380
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-expandos.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-expandos.Po
 
20381
--- ./src/irc/core/.deps/irc-expandos.Po        1970-01-01 02:00:00.000000000 +0200
 
20382
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-expandos.Po      2005-07-17 16:48:41.000000000 +0300
 
20383
@@ -0,0 +1 @@
 
20384
+# dummy
 
20385
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-masks.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-masks.Po
 
20386
--- ./src/irc/core/.deps/irc-masks.Po   1970-01-01 02:00:00.000000000 +0200
 
20387
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-masks.Po 2005-07-17 16:48:41.000000000 +0300
 
20388
@@ -0,0 +1 @@
 
20389
+# dummy
 
20390
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-nicklist.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-nicklist.Po
 
20391
--- ./src/irc/core/.deps/irc-nicklist.Po        1970-01-01 02:00:00.000000000 +0200
 
20392
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-nicklist.Po      2005-07-17 16:48:41.000000000 +0300
 
20393
@@ -0,0 +1 @@
 
20394
+# dummy
 
20395
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc.Po
 
20396
--- ./src/irc/core/.deps/irc.Po 1970-01-01 02:00:00.000000000 +0200
 
20397
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc.Po       2005-07-17 16:48:41.000000000 +0300
 
20398
@@ -0,0 +1 @@
 
20399
+# dummy
 
20400
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-queries.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-queries.Po
 
20401
--- ./src/irc/core/.deps/irc-queries.Po 1970-01-01 02:00:00.000000000 +0200
 
20402
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-queries.Po       2005-07-17 16:48:41.000000000 +0300
 
20403
@@ -0,0 +1 @@
 
20404
+# dummy
 
20405
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-servers.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-servers.Po
 
20406
--- ./src/irc/core/.deps/irc-servers.Po 1970-01-01 02:00:00.000000000 +0200
 
20407
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-servers.Po       2005-07-17 16:48:41.000000000 +0300
 
20408
@@ -0,0 +1 @@
 
20409
+# dummy
 
20410
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-servers-reconnect.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-servers-reconnect.Po
 
20411
--- ./src/irc/core/.deps/irc-servers-reconnect.Po       1970-01-01 02:00:00.000000000 +0200
 
20412
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-servers-reconnect.Po     2005-07-17 16:48:41.000000000 +0300
 
20413
@@ -0,0 +1 @@
 
20414
+# dummy
 
20415
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-servers-setup.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-servers-setup.Po
 
20416
--- ./src/irc/core/.deps/irc-servers-setup.Po   1970-01-01 02:00:00.000000000 +0200
 
20417
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-servers-setup.Po 2005-07-17 16:48:41.000000000 +0300
 
20418
@@ -0,0 +1 @@
 
20419
+# dummy
 
20420
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/irc-session.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-session.Po
 
20421
--- ./src/irc/core/.deps/irc-session.Po 1970-01-01 02:00:00.000000000 +0200
 
20422
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/irc-session.Po       2005-07-17 16:48:41.000000000 +0300
 
20423
@@ -0,0 +1 @@
 
20424
+# dummy
 
20425
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/lag.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/lag.Po
 
20426
--- ./src/irc/core/.deps/lag.Po 1970-01-01 02:00:00.000000000 +0200
 
20427
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/lag.Po       2005-07-17 16:48:41.000000000 +0300
 
20428
@@ -0,0 +1 @@
 
20429
+# dummy
 
20430
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/massjoin.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/massjoin.Po
 
20431
--- ./src/irc/core/.deps/massjoin.Po    1970-01-01 02:00:00.000000000 +0200
 
20432
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/massjoin.Po  2005-07-17 16:48:41.000000000 +0300
 
20433
@@ -0,0 +1 @@
 
20434
+# dummy
 
20435
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/mode-lists.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/mode-lists.Po
 
20436
--- ./src/irc/core/.deps/mode-lists.Po  1970-01-01 02:00:00.000000000 +0200
 
20437
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/mode-lists.Po        2005-07-17 16:48:41.000000000 +0300
 
20438
@@ -0,0 +1 @@
 
20439
+# dummy
 
20440
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/modes.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/modes.Po
 
20441
--- ./src/irc/core/.deps/modes.Po       1970-01-01 02:00:00.000000000 +0200
 
20442
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/modes.Po     2005-07-17 16:48:41.000000000 +0300
 
20443
@@ -0,0 +1 @@
 
20444
+# dummy
 
20445
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/netsplit.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/netsplit.Po
 
20446
--- ./src/irc/core/.deps/netsplit.Po    1970-01-01 02:00:00.000000000 +0200
 
20447
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/netsplit.Po  2005-07-17 16:48:41.000000000 +0300
 
20448
@@ -0,0 +1 @@
 
20449
+# dummy
 
20450
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/servers-idle.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/servers-idle.Po
 
20451
--- ./src/irc/core/.deps/servers-idle.Po        1970-01-01 02:00:00.000000000 +0200
 
20452
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/servers-idle.Po      2005-07-17 16:48:41.000000000 +0300
 
20453
@@ -0,0 +1 @@
 
20454
+# dummy
 
20455
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/.deps/servers-redirect.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/servers-redirect.Po
 
20456
--- ./src/irc/core/.deps/servers-redirect.Po    1970-01-01 02:00:00.000000000 +0200
 
20457
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/.deps/servers-redirect.Po  2005-07-17 16:48:41.000000000 +0300
 
20458
@@ -0,0 +1 @@
 
20459
+# dummy
 
20460
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/Makefile /tmp/dpep-work.mDzhRz/irssi/src/irc/core/Makefile
 
20461
--- ./src/irc/core/Makefile     1970-01-01 02:00:00.000000000 +0200
 
20462
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/Makefile   2005-07-17 16:48:38.000000000 +0300
 
20463
@@ -0,0 +1,602 @@
 
20464
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
20465
+# src/irc/core/Makefile.  Generated from Makefile.in by configure.
 
20466
+
 
20467
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
20468
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
20469
+# This Makefile.in is free software; the Free Software Foundation
 
20470
+# gives unlimited permission to copy and/or distribute it,
 
20471
+# with or without modifications, as long as this notice is preserved.
 
20472
+
 
20473
+# This program is distributed in the hope that it will be useful,
 
20474
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
20475
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
20476
+# PARTICULAR PURPOSE.
 
20477
+
 
20478
+
 
20479
+
 
20480
+
 
20481
+srcdir = .
 
20482
+top_srcdir = ../../..
 
20483
+
 
20484
+pkgdatadir = $(datadir)/irssi
 
20485
+pkglibdir = $(libdir)/irssi
 
20486
+pkgincludedir = $(includedir)/irssi
 
20487
+top_builddir = ../../..
 
20488
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
20489
+INSTALL = /usr/bin/install -c
 
20490
+install_sh_DATA = $(install_sh) -c -m 644
 
20491
+install_sh_PROGRAM = $(install_sh) -c
 
20492
+install_sh_SCRIPT = $(install_sh) -c
 
20493
+INSTALL_HEADER = $(INSTALL_DATA)
 
20494
+transform = $(program_transform_name)
 
20495
+NORMAL_INSTALL = :
 
20496
+PRE_INSTALL = :
 
20497
+POST_INSTALL = :
 
20498
+NORMAL_UNINSTALL = :
 
20499
+PRE_UNINSTALL = :
 
20500
+POST_UNINSTALL = :
 
20501
+build_triplet = i686-pc-linux-gnu
 
20502
+host_triplet = i686-pc-linux-gnu
 
20503
+subdir = src/irc/core
 
20504
+DIST_COMMON = $(pkginc_irc_core_HEADERS) $(srcdir)/Makefile.am \
 
20505
+       $(srcdir)/Makefile.in
 
20506
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
20507
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
20508
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
20509
+       $(top_srcdir)/configure.in
 
20510
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
20511
+       $(ACLOCAL_M4)
 
20512
+mkinstalldirs = $(install_sh) -d
 
20513
+CONFIG_HEADER = $(top_builddir)/config.h
 
20514
+CONFIG_CLEAN_FILES =
 
20515
+LIBRARIES = $(noinst_LIBRARIES)
 
20516
+ARFLAGS = cru
 
20517
+libirc_core_a_AR = $(AR) $(ARFLAGS)
 
20518
+libirc_core_a_LIBADD =
 
20519
+am_libirc_core_a_OBJECTS = bans.$(OBJEXT) ctcp.$(OBJEXT) \
 
20520
+       channels-query.$(OBJEXT) channel-events.$(OBJEXT) \
 
20521
+       channel-rejoin.$(OBJEXT) irc.$(OBJEXT) irc-core.$(OBJEXT) \
 
20522
+       irc-channels.$(OBJEXT) irc-channels-setup.$(OBJEXT) \
 
20523
+       irc-chatnets.$(OBJEXT) irc-commands.$(OBJEXT) \
 
20524
+       irc-expandos.$(OBJEXT) irc-masks.$(OBJEXT) \
 
20525
+       irc-nicklist.$(OBJEXT) irc-queries.$(OBJEXT) \
 
20526
+       irc-servers.$(OBJEXT) irc-servers-reconnect.$(OBJEXT) \
 
20527
+       irc-servers-setup.$(OBJEXT) irc-session.$(OBJEXT) \
 
20528
+       lag.$(OBJEXT) massjoin.$(OBJEXT) modes.$(OBJEXT) \
 
20529
+       mode-lists.$(OBJEXT) netsplit.$(OBJEXT) servers-idle.$(OBJEXT) \
 
20530
+       servers-redirect.$(OBJEXT)
 
20531
+libirc_core_a_OBJECTS = $(am_libirc_core_a_OBJECTS)
 
20532
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
20533
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
20534
+am__depfiles_maybe = depfiles
 
20535
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
20536
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
20537
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
20538
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
20539
+       $(AM_CFLAGS) $(CFLAGS)
 
20540
+CCLD = $(CC)
 
20541
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
20542
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
20543
+SOURCES = $(libirc_core_a_SOURCES)
 
20544
+DIST_SOURCES = $(libirc_core_a_SOURCES)
 
20545
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
20546
+am__vpath_adj = case $$p in \
 
20547
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
20548
+    *) f=$$p;; \
 
20549
+  esac;
 
20550
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
20551
+am__installdirs = "$(DESTDIR)$(pkginc_irc_coredir)"
 
20552
+pkginc_irc_coreHEADERS_INSTALL = $(INSTALL_HEADER)
 
20553
+HEADERS = $(pkginc_irc_core_HEADERS)
 
20554
+ETAGS = etags
 
20555
+CTAGS = ctags
 
20556
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
20557
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
20558
+AMDEP_FALSE = #
 
20559
+AMDEP_TRUE = 
 
20560
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
20561
+AR = ar
 
20562
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
20563
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
20564
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
20565
+AWK = gawk
 
20566
+BUILD_IRSSIBOT_FALSE = 
 
20567
+BUILD_IRSSIBOT_TRUE = #
 
20568
+BUILD_IRSSIPROXY_FALSE = 
 
20569
+BUILD_IRSSIPROXY_TRUE = #
 
20570
+BUILD_PLUGINS_FALSE = 
 
20571
+BUILD_PLUGINS_TRUE = #
 
20572
+BUILD_TEXTUI_FALSE = #
 
20573
+BUILD_TEXTUI_TRUE = 
 
20574
+CC = gcc
 
20575
+CCDEPMODE = depmode=gcc3
 
20576
+CFLAGS = -g -O2 -Wall  
 
20577
+CHAT_MODULES = irc
 
20578
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
20579
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
20580
+CPP = gcc -E
 
20581
+CPPFLAGS = 
 
20582
+CURSES_INCLUDEDIR = 
 
20583
+CURSES_LIBS = -lncurses
 
20584
+CXX = g++
 
20585
+CXXCPP = g++ -E
 
20586
+CXXDEPMODE = depmode=gcc3
 
20587
+CXXFLAGS = -g -O2
 
20588
+CYGPATH_W = echo
 
20589
+DEFS = -DHAVE_CONFIG_H
 
20590
+DEPDIR = .deps
 
20591
+DYNALOADER_A = 
 
20592
+ECHO = echo
 
20593
+ECHO_C = 
 
20594
+ECHO_N = -n
 
20595
+ECHO_T = 
 
20596
+EGREP = grep -E
 
20597
+EXEEXT = 
 
20598
+F77 = 
 
20599
+FFLAGS = 
 
20600
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
20601
+GLIB_CONFIG = 
 
20602
+GLIB_GENMARSHAL = glib-genmarshal
 
20603
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
20604
+GLIB_MKENUMS = glib-mkenums
 
20605
+GOBJECT_QUERY = gobject-query
 
20606
+HAVE_GNUTLS_FALSE = #
 
20607
+HAVE_GNUTLS_TRUE = 
 
20608
+HAVE_PERL_FALSE = #
 
20609
+HAVE_PERL_TRUE = 
 
20610
+HAVE_STATIC_PERL_FALSE = #
 
20611
+HAVE_STATIC_PERL_TRUE = 
 
20612
+INSTALL_DATA = ${INSTALL} -m 644
 
20613
+INSTALL_PROGRAM = ${INSTALL}
 
20614
+INSTALL_SCRIPT = ${INSTALL}
 
20615
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
20616
+LDFLAGS = 
 
20617
+LIBGNUTLS_CFLAGS = -I/usr/include
 
20618
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
20619
+LIBGNUTLS_LIBS = -lgnutls
 
20620
+LIBOBJS = 
 
20621
+LIBPERL_A = 
 
20622
+LIBS = 
 
20623
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
20624
+LN_S = ln -s
 
20625
+LTLIBOBJS = 
 
20626
+MAINT = 
 
20627
+MAINTAINER_MODE_FALSE = #
 
20628
+MAINTAINER_MODE_TRUE = 
 
20629
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
20630
+NEED_TPARM_FALSE = 
 
20631
+NEED_TPARM_TRUE = #
 
20632
+OBJEXT = o
 
20633
+PACKAGE = irssi
 
20634
+PACKAGE_BUGREPORT = 
 
20635
+PACKAGE_NAME = 
 
20636
+PACKAGE_STRING = 
 
20637
+PACKAGE_TARNAME = 
 
20638
+PACKAGE_VERSION = 
 
20639
+PATH_SEPARATOR = :
 
20640
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
20641
+PERL_EXTRA_OPTS = 
 
20642
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
20643
+PERL_LDFLAGS = 
 
20644
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
20645
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
20646
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
20647
+PERL_MM_PARAMS = 
 
20648
+PERL_STATIC_LIBS = 0
 
20649
+PERL_USE_LIB = 
 
20650
+PKG_CONFIG = /usr/bin/pkg-config
 
20651
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
20652
+RANLIB = ranlib
 
20653
+SET_MAKE = 
 
20654
+SHELL = /bin/sh
 
20655
+SSL_CFLAGS =  
 
20656
+SSL_LIBS = -lssl -lcrypto -ldl  
 
20657
+STRIP = strip
 
20658
+TEXTUI_LIBS = -lncurses
 
20659
+USE_CURSES_FALSE = 
 
20660
+USE_CURSES_TRUE = #
 
20661
+VERSION = 0.8.10-rc5
 
20662
+VERSION_DATE = 20050717
 
20663
+VERSION_TIME = 1223
 
20664
+ac_ct_AR = ar
 
20665
+ac_ct_CC = gcc
 
20666
+ac_ct_CXX = g++
 
20667
+ac_ct_F77 = 
 
20668
+ac_ct_RANLIB = ranlib
 
20669
+ac_ct_STRIP = strip
 
20670
+ac_pt_PKG_CONFIG = 
 
20671
+am__fastdepCC_FALSE = #
 
20672
+am__fastdepCC_TRUE = 
 
20673
+am__fastdepCXX_FALSE = #
 
20674
+am__fastdepCXX_TRUE = 
 
20675
+am__include = include
 
20676
+am__leading_dot = .
 
20677
+am__quote = 
 
20678
+am__tar = ${AMTAR} chof - "$$tardir"
 
20679
+am__untar = ${AMTAR} xf -
 
20680
+bindir = ${exec_prefix}/bin
 
20681
+build = i686-pc-linux-gnu
 
20682
+build_alias = 
 
20683
+build_cpu = i686
 
20684
+build_os = linux-gnu
 
20685
+build_vendor = pc
 
20686
+datadir = ${prefix}/share
 
20687
+exec_prefix = ${prefix}
 
20688
+host = i686-pc-linux-gnu
 
20689
+host_alias = 
 
20690
+host_cpu = i686
 
20691
+host_os = linux-gnu
 
20692
+host_vendor = pc
 
20693
+includedir = ${prefix}/include
 
20694
+infodir = ${prefix}/info
 
20695
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
20696
+irc_MODULES = dcc flood notifylist
 
20697
+libdir = ${exec_prefix}/lib
 
20698
+libexecdir = ${exec_prefix}/libexec
 
20699
+localstatedir = ${prefix}/var
 
20700
+mandir = ${prefix}/man
 
20701
+mkdir_p = mkdir -p --
 
20702
+oldincludedir = /usr/include
 
20703
+perl_module_fe_lib = 
 
20704
+perl_module_lib = 
 
20705
+perl_static_fe_lib = libfe_perl_static.la
 
20706
+perl_static_lib = libperl_core_static.la
 
20707
+perlpath = /usr/bin/perl
 
20708
+prefix = /usr/local
 
20709
+program_transform_name = s,x,x,
 
20710
+sbindir = ${exec_prefix}/sbin
 
20711
+sedpath = /bin/sed
 
20712
+sharedstatedir = ${prefix}/com
 
20713
+sysconfdir = ${prefix}/etc
 
20714
+target_alias = 
 
20715
+noinst_LIBRARIES = libirc_core.a
 
20716
+INCLUDES = \
 
20717
+       -I$(top_srcdir)/src \
 
20718
+       -I$(top_srcdir)/src/core \
 
20719
+       -DSYSCONFDIR=\""$(sysconfdir)"\" \
 
20720
+       $(GLIB_CFLAGS)
 
20721
+
 
20722
+libirc_core_a_SOURCES = \
 
20723
+       bans.c \
 
20724
+        ctcp.c \
 
20725
+        channels-query.c \
 
20726
+        channel-events.c \
 
20727
+        channel-rejoin.c \
 
20728
+        irc.c \
 
20729
+        irc-core.c \
 
20730
+        irc-channels.c \
 
20731
+        irc-channels-setup.c \
 
20732
+       irc-chatnets.c \
 
20733
+        irc-commands.c \
 
20734
+        irc-expandos.c \
 
20735
+        irc-masks.c \
 
20736
+        irc-nicklist.c \
 
20737
+        irc-queries.c \
 
20738
+        irc-servers.c \
 
20739
+        irc-servers-reconnect.c \
 
20740
+        irc-servers-setup.c \
 
20741
+        irc-session.c \
 
20742
+        lag.c \
 
20743
+        massjoin.c \
 
20744
+        modes.c \
 
20745
+        mode-lists.c \
 
20746
+        netsplit.c \
 
20747
+        servers-idle.c \
 
20748
+        servers-redirect.c
 
20749
+
 
20750
+pkginc_irc_coredir = $(pkgincludedir)/src/irc/core
 
20751
+pkginc_irc_core_HEADERS = \
 
20752
+       bans.h \
 
20753
+        ctcp.h \
 
20754
+        channel-rejoin.h \
 
20755
+        irc.h \
 
20756
+        irc-channels.h \
 
20757
+       irc-chatnets.h \
 
20758
+       irc-commands.h \
 
20759
+        irc-masks.h \
 
20760
+        irc-nicklist.h \
 
20761
+        irc-queries.h \
 
20762
+        irc-servers.h \
 
20763
+        irc-servers-setup.h \
 
20764
+        modes.h \
 
20765
+        mode-lists.h \
 
20766
+       module.h \
 
20767
+        netsplit.h \
 
20768
+        servers-idle.h \
 
20769
+        servers-redirect.h
 
20770
+
 
20771
+all: all-am
 
20772
+
 
20773
+.SUFFIXES:
 
20774
+.SUFFIXES: .c .lo .o .obj
 
20775
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
20776
+       @for dep in $?; do \
 
20777
+         case '$(am__configure_deps)' in \
 
20778
+           *$$dep*) \
 
20779
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
20780
+               && exit 0; \
 
20781
+             exit 1;; \
 
20782
+         esac; \
 
20783
+       done; \
 
20784
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/irc/core/Makefile'; \
 
20785
+       cd $(top_srcdir) && \
 
20786
+         $(AUTOMAKE) --gnu  src/irc/core/Makefile
 
20787
+.PRECIOUS: Makefile
 
20788
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
20789
+       @case '$?' in \
 
20790
+         *config.status*) \
 
20791
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
20792
+         *) \
 
20793
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
20794
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
20795
+       esac;
 
20796
+
 
20797
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
20798
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
20799
+
 
20800
+$(top_srcdir)/configure:  $(am__configure_deps)
 
20801
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
20802
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
20803
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
20804
+
 
20805
+clean-noinstLIBRARIES:
 
20806
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
20807
+libirc_core.a: $(libirc_core_a_OBJECTS) $(libirc_core_a_DEPENDENCIES) 
 
20808
+       -rm -f libirc_core.a
 
20809
+       $(libirc_core_a_AR) libirc_core.a $(libirc_core_a_OBJECTS) $(libirc_core_a_LIBADD)
 
20810
+       $(RANLIB) libirc_core.a
 
20811
+
 
20812
+mostlyclean-compile:
 
20813
+       -rm -f *.$(OBJEXT)
 
20814
+
 
20815
+distclean-compile:
 
20816
+       -rm -f *.tab.c
 
20817
+
 
20818
+include ./$(DEPDIR)/bans.Po
 
20819
+include ./$(DEPDIR)/channel-events.Po
 
20820
+include ./$(DEPDIR)/channel-rejoin.Po
 
20821
+include ./$(DEPDIR)/channels-query.Po
 
20822
+include ./$(DEPDIR)/ctcp.Po
 
20823
+include ./$(DEPDIR)/irc-channels-setup.Po
 
20824
+include ./$(DEPDIR)/irc-channels.Po
 
20825
+include ./$(DEPDIR)/irc-chatnets.Po
 
20826
+include ./$(DEPDIR)/irc-commands.Po
 
20827
+include ./$(DEPDIR)/irc-core.Po
 
20828
+include ./$(DEPDIR)/irc-expandos.Po
 
20829
+include ./$(DEPDIR)/irc-masks.Po
 
20830
+include ./$(DEPDIR)/irc-nicklist.Po
 
20831
+include ./$(DEPDIR)/irc-queries.Po
 
20832
+include ./$(DEPDIR)/irc-servers-reconnect.Po
 
20833
+include ./$(DEPDIR)/irc-servers-setup.Po
 
20834
+include ./$(DEPDIR)/irc-servers.Po
 
20835
+include ./$(DEPDIR)/irc-session.Po
 
20836
+include ./$(DEPDIR)/irc.Po
 
20837
+include ./$(DEPDIR)/lag.Po
 
20838
+include ./$(DEPDIR)/massjoin.Po
 
20839
+include ./$(DEPDIR)/mode-lists.Po
 
20840
+include ./$(DEPDIR)/modes.Po
 
20841
+include ./$(DEPDIR)/netsplit.Po
 
20842
+include ./$(DEPDIR)/servers-idle.Po
 
20843
+include ./$(DEPDIR)/servers-redirect.Po
 
20844
+
 
20845
+.c.o:
 
20846
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
20847
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
20848
+#      source='$<' object='$@' libtool=no \
 
20849
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
20850
+#      $(COMPILE) -c $<
 
20851
+
 
20852
+.c.obj:
 
20853
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
20854
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
20855
+#      source='$<' object='$@' libtool=no \
 
20856
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
20857
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
20858
+
 
20859
+.c.lo:
 
20860
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
20861
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
20862
+#      source='$<' object='$@' libtool=yes \
 
20863
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
20864
+#      $(LTCOMPILE) -c -o $@ $<
 
20865
+
 
20866
+mostlyclean-libtool:
 
20867
+       -rm -f *.lo
 
20868
+
 
20869
+clean-libtool:
 
20870
+       -rm -rf .libs _libs
 
20871
+
 
20872
+distclean-libtool:
 
20873
+       -rm -f libtool
 
20874
+uninstall-info-am:
 
20875
+install-pkginc_irc_coreHEADERS: $(pkginc_irc_core_HEADERS)
 
20876
+       @$(NORMAL_INSTALL)
 
20877
+       test -z "$(pkginc_irc_coredir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_irc_coredir)"
 
20878
+       @list='$(pkginc_irc_core_HEADERS)'; for p in $$list; do \
 
20879
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
20880
+         f=$(am__strip_dir) \
 
20881
+         echo " $(pkginc_irc_coreHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_irc_coredir)/$$f'"; \
 
20882
+         $(pkginc_irc_coreHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_irc_coredir)/$$f"; \
 
20883
+       done
 
20884
+
 
20885
+uninstall-pkginc_irc_coreHEADERS:
 
20886
+       @$(NORMAL_UNINSTALL)
 
20887
+       @list='$(pkginc_irc_core_HEADERS)'; for p in $$list; do \
 
20888
+         f=$(am__strip_dir) \
 
20889
+         echo " rm -f '$(DESTDIR)$(pkginc_irc_coredir)/$$f'"; \
 
20890
+         rm -f "$(DESTDIR)$(pkginc_irc_coredir)/$$f"; \
 
20891
+       done
 
20892
+
 
20893
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
20894
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
20895
+       unique=`for i in $$list; do \
 
20896
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
20897
+         done | \
 
20898
+         $(AWK) '    { files[$$0] = 1; } \
 
20899
+              END { for (i in files) print i; }'`; \
 
20900
+       mkid -fID $$unique
 
20901
+tags: TAGS
 
20902
+
 
20903
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
20904
+               $(TAGS_FILES) $(LISP)
 
20905
+       tags=; \
 
20906
+       here=`pwd`; \
 
20907
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
20908
+       unique=`for i in $$list; do \
 
20909
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
20910
+         done | \
 
20911
+         $(AWK) '    { files[$$0] = 1; } \
 
20912
+              END { for (i in files) print i; }'`; \
 
20913
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
20914
+         test -n "$$unique" || unique=$$empty_fix; \
 
20915
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
20916
+           $$tags $$unique; \
 
20917
+       fi
 
20918
+ctags: CTAGS
 
20919
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
20920
+               $(TAGS_FILES) $(LISP)
 
20921
+       tags=; \
 
20922
+       here=`pwd`; \
 
20923
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
20924
+       unique=`for i in $$list; do \
 
20925
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
20926
+         done | \
 
20927
+         $(AWK) '    { files[$$0] = 1; } \
 
20928
+              END { for (i in files) print i; }'`; \
 
20929
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
20930
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
20931
+            $$tags $$unique
 
20932
+
 
20933
+GTAGS:
 
20934
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
20935
+         && cd $(top_srcdir) \
 
20936
+         && gtags -i $(GTAGS_ARGS) $$here
 
20937
+
 
20938
+distclean-tags:
 
20939
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
20940
+
 
20941
+distdir: $(DISTFILES)
 
20942
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
20943
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
20944
+       list='$(DISTFILES)'; for file in $$list; do \
 
20945
+         case $$file in \
 
20946
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
20947
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
20948
+         esac; \
 
20949
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
20950
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
20951
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
20952
+           dir="/$$dir"; \
 
20953
+           $(mkdir_p) "$(distdir)$$dir"; \
 
20954
+         else \
 
20955
+           dir=''; \
 
20956
+         fi; \
 
20957
+         if test -d $$d/$$file; then \
 
20958
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
20959
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
20960
+           fi; \
 
20961
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
20962
+         else \
 
20963
+           test -f $(distdir)/$$file \
 
20964
+           || cp -p $$d/$$file $(distdir)/$$file \
 
20965
+           || exit 1; \
 
20966
+         fi; \
 
20967
+       done
 
20968
+check-am: all-am
 
20969
+check: check-am
 
20970
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
20971
+installdirs:
 
20972
+       for dir in "$(DESTDIR)$(pkginc_irc_coredir)"; do \
 
20973
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
20974
+       done
 
20975
+install: install-am
 
20976
+install-exec: install-exec-am
 
20977
+install-data: install-data-am
 
20978
+uninstall: uninstall-am
 
20979
+
 
20980
+install-am: all-am
 
20981
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
20982
+
 
20983
+installcheck: installcheck-am
 
20984
+install-strip:
 
20985
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
20986
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
20987
+         `test -z '$(STRIP)' || \
 
20988
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
20989
+mostlyclean-generic:
 
20990
+
 
20991
+clean-generic:
 
20992
+
 
20993
+distclean-generic:
 
20994
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
20995
+
 
20996
+maintainer-clean-generic:
 
20997
+       @echo "This command is intended for maintainers to use"
 
20998
+       @echo "it deletes files that may require special tools to rebuild."
 
20999
+clean: clean-am
 
21000
+
 
21001
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
21002
+       mostlyclean-am
 
21003
+
 
21004
+distclean: distclean-am
 
21005
+       -rm -rf ./$(DEPDIR)
 
21006
+       -rm -f Makefile
 
21007
+distclean-am: clean-am distclean-compile distclean-generic \
 
21008
+       distclean-libtool distclean-tags
 
21009
+
 
21010
+dvi: dvi-am
 
21011
+
 
21012
+dvi-am:
 
21013
+
 
21014
+html: html-am
 
21015
+
 
21016
+info: info-am
 
21017
+
 
21018
+info-am:
 
21019
+
 
21020
+install-data-am: install-pkginc_irc_coreHEADERS
 
21021
+
 
21022
+install-exec-am:
 
21023
+
 
21024
+install-info: install-info-am
 
21025
+
 
21026
+install-man:
 
21027
+
 
21028
+installcheck-am:
 
21029
+
 
21030
+maintainer-clean: maintainer-clean-am
 
21031
+       -rm -rf ./$(DEPDIR)
 
21032
+       -rm -f Makefile
 
21033
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
21034
+
 
21035
+mostlyclean: mostlyclean-am
 
21036
+
 
21037
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
21038
+       mostlyclean-libtool
 
21039
+
 
21040
+pdf: pdf-am
 
21041
+
 
21042
+pdf-am:
 
21043
+
 
21044
+ps: ps-am
 
21045
+
 
21046
+ps-am:
 
21047
+
 
21048
+uninstall-am: uninstall-info-am uninstall-pkginc_irc_coreHEADERS
 
21049
+
 
21050
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
21051
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
21052
+       distclean-compile distclean-generic distclean-libtool \
 
21053
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
21054
+       install install-am install-data install-data-am install-exec \
 
21055
+       install-exec-am install-info install-info-am install-man \
 
21056
+       install-pkginc_irc_coreHEADERS install-strip installcheck \
 
21057
+       installcheck-am installdirs maintainer-clean \
 
21058
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
21059
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
21060
+       tags uninstall uninstall-am uninstall-info-am \
 
21061
+       uninstall-pkginc_irc_coreHEADERS
 
21062
+
 
21063
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
21064
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
21065
+.NOEXPORT:
 
21066
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/core/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/irc/core/Makefile.in
 
21067
--- ./src/irc/core/Makefile.in  2005-07-17 16:30:35.000000000 +0300
 
21068
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/core/Makefile.in        2005-07-17 16:48:11.000000000 +0300
 
21069
@@ -140,6 +140,8 @@
 
21070
 GLIB_LIBS = @GLIB_LIBS@
 
21071
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
21072
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
21073
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
21074
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
21075
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
21076
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
21077
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
21078
@@ -149,6 +151,9 @@
 
21079
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
21080
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
21081
 LDFLAGS = @LDFLAGS@
 
21082
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
21083
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
21084
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
21085
 LIBOBJS = @LIBOBJS@
 
21086
 LIBPERL_A = @LIBPERL_A@
 
21087
 LIBS = @LIBS@
 
21088
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/.deps/dcc-autoget.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-autoget.Po
 
21089
--- ./src/irc/dcc/.deps/dcc-autoget.Po  1970-01-01 02:00:00.000000000 +0200
 
21090
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-autoget.Po        2005-07-17 16:48:41.000000000 +0300
 
21091
@@ -0,0 +1 @@
 
21092
+# dummy
 
21093
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/.deps/dcc-chat.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-chat.Po
 
21094
--- ./src/irc/dcc/.deps/dcc-chat.Po     1970-01-01 02:00:00.000000000 +0200
 
21095
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-chat.Po   2005-07-17 16:48:41.000000000 +0300
 
21096
@@ -0,0 +1 @@
 
21097
+# dummy
 
21098
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/.deps/dcc-get.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-get.Po
 
21099
--- ./src/irc/dcc/.deps/dcc-get.Po      1970-01-01 02:00:00.000000000 +0200
 
21100
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-get.Po    2005-07-17 16:48:41.000000000 +0300
 
21101
@@ -0,0 +1 @@
 
21102
+# dummy
 
21103
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/.deps/dcc.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc.Po
 
21104
--- ./src/irc/dcc/.deps/dcc.Po  1970-01-01 02:00:00.000000000 +0200
 
21105
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc.Po        2005-07-17 16:48:41.000000000 +0300
 
21106
@@ -0,0 +1 @@
 
21107
+# dummy
 
21108
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/.deps/dcc-queue.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-queue.Po
 
21109
--- ./src/irc/dcc/.deps/dcc-queue.Po    1970-01-01 02:00:00.000000000 +0200
 
21110
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-queue.Po  2005-07-17 16:48:41.000000000 +0300
 
21111
@@ -0,0 +1 @@
 
21112
+# dummy
 
21113
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/.deps/dcc-resume.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-resume.Po
 
21114
--- ./src/irc/dcc/.deps/dcc-resume.Po   1970-01-01 02:00:00.000000000 +0200
 
21115
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-resume.Po 2005-07-17 16:48:41.000000000 +0300
 
21116
@@ -0,0 +1 @@
 
21117
+# dummy
 
21118
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/.deps/dcc-send.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-send.Po
 
21119
--- ./src/irc/dcc/.deps/dcc-send.Po     1970-01-01 02:00:00.000000000 +0200
 
21120
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-send.Po   2005-07-17 16:48:41.000000000 +0300
 
21121
@@ -0,0 +1 @@
 
21122
+# dummy
 
21123
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/.deps/dcc-server.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-server.Po
 
21124
--- ./src/irc/dcc/.deps/dcc-server.Po   1970-01-01 02:00:00.000000000 +0200
 
21125
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/.deps/dcc-server.Po 2005-07-17 16:48:41.000000000 +0300
 
21126
@@ -0,0 +1 @@
 
21127
+# dummy
 
21128
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/Makefile /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/Makefile
 
21129
--- ./src/irc/dcc/Makefile      1970-01-01 02:00:00.000000000 +0200
 
21130
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/Makefile    2005-07-17 16:48:38.000000000 +0300
 
21131
@@ -0,0 +1,549 @@
 
21132
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
21133
+# src/irc/dcc/Makefile.  Generated from Makefile.in by configure.
 
21134
+
 
21135
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
21136
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
21137
+# This Makefile.in is free software; the Free Software Foundation
 
21138
+# gives unlimited permission to copy and/or distribute it,
 
21139
+# with or without modifications, as long as this notice is preserved.
 
21140
+
 
21141
+# This program is distributed in the hope that it will be useful,
 
21142
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
21143
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
21144
+# PARTICULAR PURPOSE.
 
21145
+
 
21146
+
 
21147
+
 
21148
+
 
21149
+srcdir = .
 
21150
+top_srcdir = ../../..
 
21151
+
 
21152
+pkgdatadir = $(datadir)/irssi
 
21153
+pkglibdir = $(libdir)/irssi
 
21154
+pkgincludedir = $(includedir)/irssi
 
21155
+top_builddir = ../../..
 
21156
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
21157
+INSTALL = /usr/bin/install -c
 
21158
+install_sh_DATA = $(install_sh) -c -m 644
 
21159
+install_sh_PROGRAM = $(install_sh) -c
 
21160
+install_sh_SCRIPT = $(install_sh) -c
 
21161
+INSTALL_HEADER = $(INSTALL_DATA)
 
21162
+transform = $(program_transform_name)
 
21163
+NORMAL_INSTALL = :
 
21164
+PRE_INSTALL = :
 
21165
+POST_INSTALL = :
 
21166
+NORMAL_UNINSTALL = :
 
21167
+PRE_UNINSTALL = :
 
21168
+POST_UNINSTALL = :
 
21169
+build_triplet = i686-pc-linux-gnu
 
21170
+host_triplet = i686-pc-linux-gnu
 
21171
+subdir = src/irc/dcc
 
21172
+DIST_COMMON = $(pkginc_irc_dcc_HEADERS) $(srcdir)/Makefile.am \
 
21173
+       $(srcdir)/Makefile.in
 
21174
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
21175
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
21176
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
21177
+       $(top_srcdir)/configure.in
 
21178
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
21179
+       $(ACLOCAL_M4)
 
21180
+mkinstalldirs = $(install_sh) -d
 
21181
+CONFIG_HEADER = $(top_builddir)/config.h
 
21182
+CONFIG_CLEAN_FILES =
 
21183
+LIBRARIES = $(noinst_LIBRARIES)
 
21184
+ARFLAGS = cru
 
21185
+libirc_dcc_a_AR = $(AR) $(ARFLAGS)
 
21186
+libirc_dcc_a_LIBADD =
 
21187
+am_libirc_dcc_a_OBJECTS = dcc.$(OBJEXT) dcc-chat.$(OBJEXT) \
 
21188
+       dcc-get.$(OBJEXT) dcc-send.$(OBJEXT) dcc-resume.$(OBJEXT) \
 
21189
+       dcc-autoget.$(OBJEXT) dcc-queue.$(OBJEXT) dcc-server.$(OBJEXT)
 
21190
+libirc_dcc_a_OBJECTS = $(am_libirc_dcc_a_OBJECTS)
 
21191
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
21192
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
21193
+am__depfiles_maybe = depfiles
 
21194
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
21195
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
21196
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
21197
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
21198
+       $(AM_CFLAGS) $(CFLAGS)
 
21199
+CCLD = $(CC)
 
21200
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
21201
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
21202
+SOURCES = $(libirc_dcc_a_SOURCES)
 
21203
+DIST_SOURCES = $(libirc_dcc_a_SOURCES)
 
21204
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
21205
+am__vpath_adj = case $$p in \
 
21206
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
21207
+    *) f=$$p;; \
 
21208
+  esac;
 
21209
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
21210
+am__installdirs = "$(DESTDIR)$(pkginc_irc_dccdir)"
 
21211
+pkginc_irc_dccHEADERS_INSTALL = $(INSTALL_HEADER)
 
21212
+HEADERS = $(pkginc_irc_dcc_HEADERS)
 
21213
+ETAGS = etags
 
21214
+CTAGS = ctags
 
21215
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
21216
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
21217
+AMDEP_FALSE = #
 
21218
+AMDEP_TRUE = 
 
21219
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
21220
+AR = ar
 
21221
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
21222
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
21223
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
21224
+AWK = gawk
 
21225
+BUILD_IRSSIBOT_FALSE = 
 
21226
+BUILD_IRSSIBOT_TRUE = #
 
21227
+BUILD_IRSSIPROXY_FALSE = 
 
21228
+BUILD_IRSSIPROXY_TRUE = #
 
21229
+BUILD_PLUGINS_FALSE = 
 
21230
+BUILD_PLUGINS_TRUE = #
 
21231
+BUILD_TEXTUI_FALSE = #
 
21232
+BUILD_TEXTUI_TRUE = 
 
21233
+CC = gcc
 
21234
+CCDEPMODE = depmode=gcc3
 
21235
+CFLAGS = -g -O2 -Wall  
 
21236
+CHAT_MODULES = irc
 
21237
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
21238
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
21239
+CPP = gcc -E
 
21240
+CPPFLAGS = 
 
21241
+CURSES_INCLUDEDIR = 
 
21242
+CURSES_LIBS = -lncurses
 
21243
+CXX = g++
 
21244
+CXXCPP = g++ -E
 
21245
+CXXDEPMODE = depmode=gcc3
 
21246
+CXXFLAGS = -g -O2
 
21247
+CYGPATH_W = echo
 
21248
+DEFS = -DHAVE_CONFIG_H
 
21249
+DEPDIR = .deps
 
21250
+DYNALOADER_A = 
 
21251
+ECHO = echo
 
21252
+ECHO_C = 
 
21253
+ECHO_N = -n
 
21254
+ECHO_T = 
 
21255
+EGREP = grep -E
 
21256
+EXEEXT = 
 
21257
+F77 = 
 
21258
+FFLAGS = 
 
21259
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
21260
+GLIB_CONFIG = 
 
21261
+GLIB_GENMARSHAL = glib-genmarshal
 
21262
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
21263
+GLIB_MKENUMS = glib-mkenums
 
21264
+GOBJECT_QUERY = gobject-query
 
21265
+HAVE_GNUTLS_FALSE = #
 
21266
+HAVE_GNUTLS_TRUE = 
 
21267
+HAVE_PERL_FALSE = #
 
21268
+HAVE_PERL_TRUE = 
 
21269
+HAVE_STATIC_PERL_FALSE = #
 
21270
+HAVE_STATIC_PERL_TRUE = 
 
21271
+INSTALL_DATA = ${INSTALL} -m 644
 
21272
+INSTALL_PROGRAM = ${INSTALL}
 
21273
+INSTALL_SCRIPT = ${INSTALL}
 
21274
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
21275
+LDFLAGS = 
 
21276
+LIBGNUTLS_CFLAGS = -I/usr/include
 
21277
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
21278
+LIBGNUTLS_LIBS = -lgnutls
 
21279
+LIBOBJS = 
 
21280
+LIBPERL_A = 
 
21281
+LIBS = 
 
21282
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
21283
+LN_S = ln -s
 
21284
+LTLIBOBJS = 
 
21285
+MAINT = 
 
21286
+MAINTAINER_MODE_FALSE = #
 
21287
+MAINTAINER_MODE_TRUE = 
 
21288
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
21289
+NEED_TPARM_FALSE = 
 
21290
+NEED_TPARM_TRUE = #
 
21291
+OBJEXT = o
 
21292
+PACKAGE = irssi
 
21293
+PACKAGE_BUGREPORT = 
 
21294
+PACKAGE_NAME = 
 
21295
+PACKAGE_STRING = 
 
21296
+PACKAGE_TARNAME = 
 
21297
+PACKAGE_VERSION = 
 
21298
+PATH_SEPARATOR = :
 
21299
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
21300
+PERL_EXTRA_OPTS = 
 
21301
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
21302
+PERL_LDFLAGS = 
 
21303
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
21304
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
21305
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
21306
+PERL_MM_PARAMS = 
 
21307
+PERL_STATIC_LIBS = 0
 
21308
+PERL_USE_LIB = 
 
21309
+PKG_CONFIG = /usr/bin/pkg-config
 
21310
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
21311
+RANLIB = ranlib
 
21312
+SET_MAKE = 
 
21313
+SHELL = /bin/sh
 
21314
+SSL_CFLAGS =  
 
21315
+SSL_LIBS = -lssl -lcrypto -ldl  
 
21316
+STRIP = strip
 
21317
+TEXTUI_LIBS = -lncurses
 
21318
+USE_CURSES_FALSE = 
 
21319
+USE_CURSES_TRUE = #
 
21320
+VERSION = 0.8.10-rc5
 
21321
+VERSION_DATE = 20050717
 
21322
+VERSION_TIME = 1223
 
21323
+ac_ct_AR = ar
 
21324
+ac_ct_CC = gcc
 
21325
+ac_ct_CXX = g++
 
21326
+ac_ct_F77 = 
 
21327
+ac_ct_RANLIB = ranlib
 
21328
+ac_ct_STRIP = strip
 
21329
+ac_pt_PKG_CONFIG = 
 
21330
+am__fastdepCC_FALSE = #
 
21331
+am__fastdepCC_TRUE = 
 
21332
+am__fastdepCXX_FALSE = #
 
21333
+am__fastdepCXX_TRUE = 
 
21334
+am__include = include
 
21335
+am__leading_dot = .
 
21336
+am__quote = 
 
21337
+am__tar = ${AMTAR} chof - "$$tardir"
 
21338
+am__untar = ${AMTAR} xf -
 
21339
+bindir = ${exec_prefix}/bin
 
21340
+build = i686-pc-linux-gnu
 
21341
+build_alias = 
 
21342
+build_cpu = i686
 
21343
+build_os = linux-gnu
 
21344
+build_vendor = pc
 
21345
+datadir = ${prefix}/share
 
21346
+exec_prefix = ${prefix}
 
21347
+host = i686-pc-linux-gnu
 
21348
+host_alias = 
 
21349
+host_cpu = i686
 
21350
+host_os = linux-gnu
 
21351
+host_vendor = pc
 
21352
+includedir = ${prefix}/include
 
21353
+infodir = ${prefix}/info
 
21354
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
21355
+irc_MODULES = dcc flood notifylist
 
21356
+libdir = ${exec_prefix}/lib
 
21357
+libexecdir = ${exec_prefix}/libexec
 
21358
+localstatedir = ${prefix}/var
 
21359
+mandir = ${prefix}/man
 
21360
+mkdir_p = mkdir -p --
 
21361
+oldincludedir = /usr/include
 
21362
+perl_module_fe_lib = 
 
21363
+perl_module_lib = 
 
21364
+perl_static_fe_lib = libfe_perl_static.la
 
21365
+perl_static_lib = libperl_core_static.la
 
21366
+perlpath = /usr/bin/perl
 
21367
+prefix = /usr/local
 
21368
+program_transform_name = s,x,x,
 
21369
+sbindir = ${exec_prefix}/sbin
 
21370
+sedpath = /bin/sed
 
21371
+sharedstatedir = ${prefix}/com
 
21372
+sysconfdir = ${prefix}/etc
 
21373
+target_alias = 
 
21374
+noinst_LIBRARIES = libirc_dcc.a
 
21375
+INCLUDES = \
 
21376
+       -I$(top_srcdir)/src \
 
21377
+       -I$(top_srcdir)/src/core/ \
 
21378
+       -I$(top_srcdir)/src/irc/core/ \
 
21379
+       $(GLIB_CFLAGS)
 
21380
+
 
21381
+libirc_dcc_a_SOURCES = \
 
21382
+       dcc.c \
 
21383
+       dcc-chat.c \
 
21384
+       dcc-get.c \
 
21385
+       dcc-send.c \
 
21386
+       dcc-resume.c \
 
21387
+       dcc-autoget.c \
 
21388
+       dcc-queue.c \
 
21389
+       dcc-server.c
 
21390
+
 
21391
+pkginc_irc_dccdir = $(pkgincludedir)/src/irc/dcc
 
21392
+pkginc_irc_dcc_HEADERS = \
 
21393
+       dcc-rec.h \
 
21394
+       dcc-file-rec.h \
 
21395
+       dcc.h \
 
21396
+       dcc-file.h \
 
21397
+       dcc-chat.h \
 
21398
+       dcc-get.h \
 
21399
+       dcc-send.h \
 
21400
+       dcc-queue.h \
 
21401
+       module.h \
 
21402
+       dcc-server.h
 
21403
+
 
21404
+all: all-am
 
21405
+
 
21406
+.SUFFIXES:
 
21407
+.SUFFIXES: .c .lo .o .obj
 
21408
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
21409
+       @for dep in $?; do \
 
21410
+         case '$(am__configure_deps)' in \
 
21411
+           *$$dep*) \
 
21412
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
21413
+               && exit 0; \
 
21414
+             exit 1;; \
 
21415
+         esac; \
 
21416
+       done; \
 
21417
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/irc/dcc/Makefile'; \
 
21418
+       cd $(top_srcdir) && \
 
21419
+         $(AUTOMAKE) --gnu  src/irc/dcc/Makefile
 
21420
+.PRECIOUS: Makefile
 
21421
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
21422
+       @case '$?' in \
 
21423
+         *config.status*) \
 
21424
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
21425
+         *) \
 
21426
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
21427
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
21428
+       esac;
 
21429
+
 
21430
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
21431
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
21432
+
 
21433
+$(top_srcdir)/configure:  $(am__configure_deps)
 
21434
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
21435
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
21436
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
21437
+
 
21438
+clean-noinstLIBRARIES:
 
21439
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
21440
+libirc_dcc.a: $(libirc_dcc_a_OBJECTS) $(libirc_dcc_a_DEPENDENCIES) 
 
21441
+       -rm -f libirc_dcc.a
 
21442
+       $(libirc_dcc_a_AR) libirc_dcc.a $(libirc_dcc_a_OBJECTS) $(libirc_dcc_a_LIBADD)
 
21443
+       $(RANLIB) libirc_dcc.a
 
21444
+
 
21445
+mostlyclean-compile:
 
21446
+       -rm -f *.$(OBJEXT)
 
21447
+
 
21448
+distclean-compile:
 
21449
+       -rm -f *.tab.c
 
21450
+
 
21451
+include ./$(DEPDIR)/dcc-autoget.Po
 
21452
+include ./$(DEPDIR)/dcc-chat.Po
 
21453
+include ./$(DEPDIR)/dcc-get.Po
 
21454
+include ./$(DEPDIR)/dcc-queue.Po
 
21455
+include ./$(DEPDIR)/dcc-resume.Po
 
21456
+include ./$(DEPDIR)/dcc-send.Po
 
21457
+include ./$(DEPDIR)/dcc-server.Po
 
21458
+include ./$(DEPDIR)/dcc.Po
 
21459
+
 
21460
+.c.o:
 
21461
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
21462
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
21463
+#      source='$<' object='$@' libtool=no \
 
21464
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
21465
+#      $(COMPILE) -c $<
 
21466
+
 
21467
+.c.obj:
 
21468
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
21469
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
21470
+#      source='$<' object='$@' libtool=no \
 
21471
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
21472
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
21473
+
 
21474
+.c.lo:
 
21475
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
21476
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
21477
+#      source='$<' object='$@' libtool=yes \
 
21478
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
21479
+#      $(LTCOMPILE) -c -o $@ $<
 
21480
+
 
21481
+mostlyclean-libtool:
 
21482
+       -rm -f *.lo
 
21483
+
 
21484
+clean-libtool:
 
21485
+       -rm -rf .libs _libs
 
21486
+
 
21487
+distclean-libtool:
 
21488
+       -rm -f libtool
 
21489
+uninstall-info-am:
 
21490
+install-pkginc_irc_dccHEADERS: $(pkginc_irc_dcc_HEADERS)
 
21491
+       @$(NORMAL_INSTALL)
 
21492
+       test -z "$(pkginc_irc_dccdir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_irc_dccdir)"
 
21493
+       @list='$(pkginc_irc_dcc_HEADERS)'; for p in $$list; do \
 
21494
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
21495
+         f=$(am__strip_dir) \
 
21496
+         echo " $(pkginc_irc_dccHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_irc_dccdir)/$$f'"; \
 
21497
+         $(pkginc_irc_dccHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_irc_dccdir)/$$f"; \
 
21498
+       done
 
21499
+
 
21500
+uninstall-pkginc_irc_dccHEADERS:
 
21501
+       @$(NORMAL_UNINSTALL)
 
21502
+       @list='$(pkginc_irc_dcc_HEADERS)'; for p in $$list; do \
 
21503
+         f=$(am__strip_dir) \
 
21504
+         echo " rm -f '$(DESTDIR)$(pkginc_irc_dccdir)/$$f'"; \
 
21505
+         rm -f "$(DESTDIR)$(pkginc_irc_dccdir)/$$f"; \
 
21506
+       done
 
21507
+
 
21508
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
21509
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
21510
+       unique=`for i in $$list; do \
 
21511
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
21512
+         done | \
 
21513
+         $(AWK) '    { files[$$0] = 1; } \
 
21514
+              END { for (i in files) print i; }'`; \
 
21515
+       mkid -fID $$unique
 
21516
+tags: TAGS
 
21517
+
 
21518
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
21519
+               $(TAGS_FILES) $(LISP)
 
21520
+       tags=; \
 
21521
+       here=`pwd`; \
 
21522
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
21523
+       unique=`for i in $$list; do \
 
21524
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
21525
+         done | \
 
21526
+         $(AWK) '    { files[$$0] = 1; } \
 
21527
+              END { for (i in files) print i; }'`; \
 
21528
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
21529
+         test -n "$$unique" || unique=$$empty_fix; \
 
21530
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
21531
+           $$tags $$unique; \
 
21532
+       fi
 
21533
+ctags: CTAGS
 
21534
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
21535
+               $(TAGS_FILES) $(LISP)
 
21536
+       tags=; \
 
21537
+       here=`pwd`; \
 
21538
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
21539
+       unique=`for i in $$list; do \
 
21540
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
21541
+         done | \
 
21542
+         $(AWK) '    { files[$$0] = 1; } \
 
21543
+              END { for (i in files) print i; }'`; \
 
21544
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
21545
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
21546
+            $$tags $$unique
 
21547
+
 
21548
+GTAGS:
 
21549
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
21550
+         && cd $(top_srcdir) \
 
21551
+         && gtags -i $(GTAGS_ARGS) $$here
 
21552
+
 
21553
+distclean-tags:
 
21554
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
21555
+
 
21556
+distdir: $(DISTFILES)
 
21557
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
21558
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
21559
+       list='$(DISTFILES)'; for file in $$list; do \
 
21560
+         case $$file in \
 
21561
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
21562
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
21563
+         esac; \
 
21564
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
21565
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
21566
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
21567
+           dir="/$$dir"; \
 
21568
+           $(mkdir_p) "$(distdir)$$dir"; \
 
21569
+         else \
 
21570
+           dir=''; \
 
21571
+         fi; \
 
21572
+         if test -d $$d/$$file; then \
 
21573
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
21574
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
21575
+           fi; \
 
21576
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
21577
+         else \
 
21578
+           test -f $(distdir)/$$file \
 
21579
+           || cp -p $$d/$$file $(distdir)/$$file \
 
21580
+           || exit 1; \
 
21581
+         fi; \
 
21582
+       done
 
21583
+check-am: all-am
 
21584
+check: check-am
 
21585
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
21586
+installdirs:
 
21587
+       for dir in "$(DESTDIR)$(pkginc_irc_dccdir)"; do \
 
21588
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
21589
+       done
 
21590
+install: install-am
 
21591
+install-exec: install-exec-am
 
21592
+install-data: install-data-am
 
21593
+uninstall: uninstall-am
 
21594
+
 
21595
+install-am: all-am
 
21596
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
21597
+
 
21598
+installcheck: installcheck-am
 
21599
+install-strip:
 
21600
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
21601
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
21602
+         `test -z '$(STRIP)' || \
 
21603
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
21604
+mostlyclean-generic:
 
21605
+
 
21606
+clean-generic:
 
21607
+
 
21608
+distclean-generic:
 
21609
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
21610
+
 
21611
+maintainer-clean-generic:
 
21612
+       @echo "This command is intended for maintainers to use"
 
21613
+       @echo "it deletes files that may require special tools to rebuild."
 
21614
+clean: clean-am
 
21615
+
 
21616
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
21617
+       mostlyclean-am
 
21618
+
 
21619
+distclean: distclean-am
 
21620
+       -rm -rf ./$(DEPDIR)
 
21621
+       -rm -f Makefile
 
21622
+distclean-am: clean-am distclean-compile distclean-generic \
 
21623
+       distclean-libtool distclean-tags
 
21624
+
 
21625
+dvi: dvi-am
 
21626
+
 
21627
+dvi-am:
 
21628
+
 
21629
+html: html-am
 
21630
+
 
21631
+info: info-am
 
21632
+
 
21633
+info-am:
 
21634
+
 
21635
+install-data-am: install-pkginc_irc_dccHEADERS
 
21636
+
 
21637
+install-exec-am:
 
21638
+
 
21639
+install-info: install-info-am
 
21640
+
 
21641
+install-man:
 
21642
+
 
21643
+installcheck-am:
 
21644
+
 
21645
+maintainer-clean: maintainer-clean-am
 
21646
+       -rm -rf ./$(DEPDIR)
 
21647
+       -rm -f Makefile
 
21648
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
21649
+
 
21650
+mostlyclean: mostlyclean-am
 
21651
+
 
21652
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
21653
+       mostlyclean-libtool
 
21654
+
 
21655
+pdf: pdf-am
 
21656
+
 
21657
+pdf-am:
 
21658
+
 
21659
+ps: ps-am
 
21660
+
 
21661
+ps-am:
 
21662
+
 
21663
+uninstall-am: uninstall-info-am uninstall-pkginc_irc_dccHEADERS
 
21664
+
 
21665
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
21666
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
21667
+       distclean-compile distclean-generic distclean-libtool \
 
21668
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
21669
+       install install-am install-data install-data-am install-exec \
 
21670
+       install-exec-am install-info install-info-am install-man \
 
21671
+       install-pkginc_irc_dccHEADERS install-strip installcheck \
 
21672
+       installcheck-am installdirs maintainer-clean \
 
21673
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
21674
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
21675
+       tags uninstall uninstall-am uninstall-info-am \
 
21676
+       uninstall-pkginc_irc_dccHEADERS
 
21677
+
 
21678
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
21679
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
21680
+.NOEXPORT:
 
21681
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/dcc/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/Makefile.in
 
21682
--- ./src/irc/dcc/Makefile.in   2005-07-17 16:30:36.000000000 +0300
 
21683
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/dcc/Makefile.in 2005-07-17 16:48:11.000000000 +0300
 
21684
@@ -131,6 +131,8 @@
 
21685
 GLIB_LIBS = @GLIB_LIBS@
 
21686
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
21687
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
21688
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
21689
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
21690
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
21691
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
21692
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
21693
@@ -140,6 +142,9 @@
 
21694
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
21695
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
21696
 LDFLAGS = @LDFLAGS@
 
21697
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
21698
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
21699
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
21700
 LIBOBJS = @LIBOBJS@
 
21701
 LIBPERL_A = @LIBPERL_A@
 
21702
 LIBS = @LIBS@
 
21703
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/.deps/irc.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/.deps/irc.Po
 
21704
--- ./src/irc/.deps/irc.Po      1970-01-01 02:00:00.000000000 +0200
 
21705
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/.deps/irc.Po    2005-07-17 16:48:41.000000000 +0300
 
21706
@@ -0,0 +1 @@
 
21707
+# dummy
 
21708
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/flood/.deps/autoignore.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/flood/.deps/autoignore.Po
 
21709
--- ./src/irc/flood/.deps/autoignore.Po 1970-01-01 02:00:00.000000000 +0200
 
21710
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/flood/.deps/autoignore.Po       2005-07-17 16:48:41.000000000 +0300
 
21711
@@ -0,0 +1 @@
 
21712
+# dummy
 
21713
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/flood/.deps/flood.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/flood/.deps/flood.Po
 
21714
--- ./src/irc/flood/.deps/flood.Po      1970-01-01 02:00:00.000000000 +0200
 
21715
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/flood/.deps/flood.Po    2005-07-17 16:48:41.000000000 +0300
 
21716
@@ -0,0 +1 @@
 
21717
+# dummy
 
21718
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/flood/Makefile /tmp/dpep-work.mDzhRz/irssi/src/irc/flood/Makefile
 
21719
--- ./src/irc/flood/Makefile    1970-01-01 02:00:00.000000000 +0200
 
21720
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/flood/Makefile  2005-07-17 16:48:39.000000000 +0300
 
21721
@@ -0,0 +1,526 @@
 
21722
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
21723
+# src/irc/flood/Makefile.  Generated from Makefile.in by configure.
 
21724
+
 
21725
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
21726
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
21727
+# This Makefile.in is free software; the Free Software Foundation
 
21728
+# gives unlimited permission to copy and/or distribute it,
 
21729
+# with or without modifications, as long as this notice is preserved.
 
21730
+
 
21731
+# This program is distributed in the hope that it will be useful,
 
21732
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
21733
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
21734
+# PARTICULAR PURPOSE.
 
21735
+
 
21736
+
 
21737
+
 
21738
+
 
21739
+srcdir = .
 
21740
+top_srcdir = ../../..
 
21741
+
 
21742
+pkgdatadir = $(datadir)/irssi
 
21743
+pkglibdir = $(libdir)/irssi
 
21744
+pkgincludedir = $(includedir)/irssi
 
21745
+top_builddir = ../../..
 
21746
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
21747
+INSTALL = /usr/bin/install -c
 
21748
+install_sh_DATA = $(install_sh) -c -m 644
 
21749
+install_sh_PROGRAM = $(install_sh) -c
 
21750
+install_sh_SCRIPT = $(install_sh) -c
 
21751
+INSTALL_HEADER = $(INSTALL_DATA)
 
21752
+transform = $(program_transform_name)
 
21753
+NORMAL_INSTALL = :
 
21754
+PRE_INSTALL = :
 
21755
+POST_INSTALL = :
 
21756
+NORMAL_UNINSTALL = :
 
21757
+PRE_UNINSTALL = :
 
21758
+POST_UNINSTALL = :
 
21759
+build_triplet = i686-pc-linux-gnu
 
21760
+host_triplet = i686-pc-linux-gnu
 
21761
+subdir = src/irc/flood
 
21762
+DIST_COMMON = $(pkginc_irc_flood_HEADERS) $(srcdir)/Makefile.am \
 
21763
+       $(srcdir)/Makefile.in
 
21764
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
21765
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
21766
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
21767
+       $(top_srcdir)/configure.in
 
21768
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
21769
+       $(ACLOCAL_M4)
 
21770
+mkinstalldirs = $(install_sh) -d
 
21771
+CONFIG_HEADER = $(top_builddir)/config.h
 
21772
+CONFIG_CLEAN_FILES =
 
21773
+LIBRARIES = $(noinst_LIBRARIES)
 
21774
+ARFLAGS = cru
 
21775
+libirc_flood_a_AR = $(AR) $(ARFLAGS)
 
21776
+libirc_flood_a_LIBADD =
 
21777
+am_libirc_flood_a_OBJECTS = autoignore.$(OBJEXT) flood.$(OBJEXT)
 
21778
+libirc_flood_a_OBJECTS = $(am_libirc_flood_a_OBJECTS)
 
21779
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
21780
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
21781
+am__depfiles_maybe = depfiles
 
21782
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
21783
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
21784
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
21785
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
21786
+       $(AM_CFLAGS) $(CFLAGS)
 
21787
+CCLD = $(CC)
 
21788
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
21789
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
21790
+SOURCES = $(libirc_flood_a_SOURCES)
 
21791
+DIST_SOURCES = $(libirc_flood_a_SOURCES)
 
21792
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
21793
+am__vpath_adj = case $$p in \
 
21794
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
21795
+    *) f=$$p;; \
 
21796
+  esac;
 
21797
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
21798
+am__installdirs = "$(DESTDIR)$(pkginc_irc_flooddir)"
 
21799
+pkginc_irc_floodHEADERS_INSTALL = $(INSTALL_HEADER)
 
21800
+HEADERS = $(pkginc_irc_flood_HEADERS)
 
21801
+ETAGS = etags
 
21802
+CTAGS = ctags
 
21803
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
21804
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
21805
+AMDEP_FALSE = #
 
21806
+AMDEP_TRUE = 
 
21807
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
21808
+AR = ar
 
21809
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
21810
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
21811
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
21812
+AWK = gawk
 
21813
+BUILD_IRSSIBOT_FALSE = 
 
21814
+BUILD_IRSSIBOT_TRUE = #
 
21815
+BUILD_IRSSIPROXY_FALSE = 
 
21816
+BUILD_IRSSIPROXY_TRUE = #
 
21817
+BUILD_PLUGINS_FALSE = 
 
21818
+BUILD_PLUGINS_TRUE = #
 
21819
+BUILD_TEXTUI_FALSE = #
 
21820
+BUILD_TEXTUI_TRUE = 
 
21821
+CC = gcc
 
21822
+CCDEPMODE = depmode=gcc3
 
21823
+CFLAGS = -g -O2 -Wall  
 
21824
+CHAT_MODULES = irc
 
21825
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
21826
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
21827
+CPP = gcc -E
 
21828
+CPPFLAGS = 
 
21829
+CURSES_INCLUDEDIR = 
 
21830
+CURSES_LIBS = -lncurses
 
21831
+CXX = g++
 
21832
+CXXCPP = g++ -E
 
21833
+CXXDEPMODE = depmode=gcc3
 
21834
+CXXFLAGS = -g -O2
 
21835
+CYGPATH_W = echo
 
21836
+DEFS = -DHAVE_CONFIG_H
 
21837
+DEPDIR = .deps
 
21838
+DYNALOADER_A = 
 
21839
+ECHO = echo
 
21840
+ECHO_C = 
 
21841
+ECHO_N = -n
 
21842
+ECHO_T = 
 
21843
+EGREP = grep -E
 
21844
+EXEEXT = 
 
21845
+F77 = 
 
21846
+FFLAGS = 
 
21847
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
21848
+GLIB_CONFIG = 
 
21849
+GLIB_GENMARSHAL = glib-genmarshal
 
21850
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
21851
+GLIB_MKENUMS = glib-mkenums
 
21852
+GOBJECT_QUERY = gobject-query
 
21853
+HAVE_GNUTLS_FALSE = #
 
21854
+HAVE_GNUTLS_TRUE = 
 
21855
+HAVE_PERL_FALSE = #
 
21856
+HAVE_PERL_TRUE = 
 
21857
+HAVE_STATIC_PERL_FALSE = #
 
21858
+HAVE_STATIC_PERL_TRUE = 
 
21859
+INSTALL_DATA = ${INSTALL} -m 644
 
21860
+INSTALL_PROGRAM = ${INSTALL}
 
21861
+INSTALL_SCRIPT = ${INSTALL}
 
21862
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
21863
+LDFLAGS = 
 
21864
+LIBGNUTLS_CFLAGS = -I/usr/include
 
21865
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
21866
+LIBGNUTLS_LIBS = -lgnutls
 
21867
+LIBOBJS = 
 
21868
+LIBPERL_A = 
 
21869
+LIBS = 
 
21870
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
21871
+LN_S = ln -s
 
21872
+LTLIBOBJS = 
 
21873
+MAINT = 
 
21874
+MAINTAINER_MODE_FALSE = #
 
21875
+MAINTAINER_MODE_TRUE = 
 
21876
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
21877
+NEED_TPARM_FALSE = 
 
21878
+NEED_TPARM_TRUE = #
 
21879
+OBJEXT = o
 
21880
+PACKAGE = irssi
 
21881
+PACKAGE_BUGREPORT = 
 
21882
+PACKAGE_NAME = 
 
21883
+PACKAGE_STRING = 
 
21884
+PACKAGE_TARNAME = 
 
21885
+PACKAGE_VERSION = 
 
21886
+PATH_SEPARATOR = :
 
21887
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
21888
+PERL_EXTRA_OPTS = 
 
21889
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
21890
+PERL_LDFLAGS = 
 
21891
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
21892
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
21893
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
21894
+PERL_MM_PARAMS = 
 
21895
+PERL_STATIC_LIBS = 0
 
21896
+PERL_USE_LIB = 
 
21897
+PKG_CONFIG = /usr/bin/pkg-config
 
21898
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
21899
+RANLIB = ranlib
 
21900
+SET_MAKE = 
 
21901
+SHELL = /bin/sh
 
21902
+SSL_CFLAGS =  
 
21903
+SSL_LIBS = -lssl -lcrypto -ldl  
 
21904
+STRIP = strip
 
21905
+TEXTUI_LIBS = -lncurses
 
21906
+USE_CURSES_FALSE = 
 
21907
+USE_CURSES_TRUE = #
 
21908
+VERSION = 0.8.10-rc5
 
21909
+VERSION_DATE = 20050717
 
21910
+VERSION_TIME = 1223
 
21911
+ac_ct_AR = ar
 
21912
+ac_ct_CC = gcc
 
21913
+ac_ct_CXX = g++
 
21914
+ac_ct_F77 = 
 
21915
+ac_ct_RANLIB = ranlib
 
21916
+ac_ct_STRIP = strip
 
21917
+ac_pt_PKG_CONFIG = 
 
21918
+am__fastdepCC_FALSE = #
 
21919
+am__fastdepCC_TRUE = 
 
21920
+am__fastdepCXX_FALSE = #
 
21921
+am__fastdepCXX_TRUE = 
 
21922
+am__include = include
 
21923
+am__leading_dot = .
 
21924
+am__quote = 
 
21925
+am__tar = ${AMTAR} chof - "$$tardir"
 
21926
+am__untar = ${AMTAR} xf -
 
21927
+bindir = ${exec_prefix}/bin
 
21928
+build = i686-pc-linux-gnu
 
21929
+build_alias = 
 
21930
+build_cpu = i686
 
21931
+build_os = linux-gnu
 
21932
+build_vendor = pc
 
21933
+datadir = ${prefix}/share
 
21934
+exec_prefix = ${prefix}
 
21935
+host = i686-pc-linux-gnu
 
21936
+host_alias = 
 
21937
+host_cpu = i686
 
21938
+host_os = linux-gnu
 
21939
+host_vendor = pc
 
21940
+includedir = ${prefix}/include
 
21941
+infodir = ${prefix}/info
 
21942
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
21943
+irc_MODULES = dcc flood notifylist
 
21944
+libdir = ${exec_prefix}/lib
 
21945
+libexecdir = ${exec_prefix}/libexec
 
21946
+localstatedir = ${prefix}/var
 
21947
+mandir = ${prefix}/man
 
21948
+mkdir_p = mkdir -p --
 
21949
+oldincludedir = /usr/include
 
21950
+perl_module_fe_lib = 
 
21951
+perl_module_lib = 
 
21952
+perl_static_fe_lib = libfe_perl_static.la
 
21953
+perl_static_lib = libperl_core_static.la
 
21954
+perlpath = /usr/bin/perl
 
21955
+prefix = /usr/local
 
21956
+program_transform_name = s,x,x,
 
21957
+sbindir = ${exec_prefix}/sbin
 
21958
+sedpath = /bin/sed
 
21959
+sharedstatedir = ${prefix}/com
 
21960
+sysconfdir = ${prefix}/etc
 
21961
+target_alias = 
 
21962
+noinst_LIBRARIES = libirc_flood.a
 
21963
+INCLUDES = \
 
21964
+       -I$(top_srcdir)/src \
 
21965
+       -I$(top_srcdir)/src/core/ \
 
21966
+       -I$(top_srcdir)/src/irc/core/ \
 
21967
+       $(GLIB_CFLAGS)
 
21968
+
 
21969
+libirc_flood_a_SOURCES = \
 
21970
+       autoignore.c \
 
21971
+       flood.c
 
21972
+
 
21973
+pkginc_irc_flooddir = $(pkgincludedir)/src/irc/flood
 
21974
+pkginc_irc_flood_HEADERS = \
 
21975
+       module.h
 
21976
+
 
21977
+all: all-am
 
21978
+
 
21979
+.SUFFIXES:
 
21980
+.SUFFIXES: .c .lo .o .obj
 
21981
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
21982
+       @for dep in $?; do \
 
21983
+         case '$(am__configure_deps)' in \
 
21984
+           *$$dep*) \
 
21985
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
21986
+               && exit 0; \
 
21987
+             exit 1;; \
 
21988
+         esac; \
 
21989
+       done; \
 
21990
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/irc/flood/Makefile'; \
 
21991
+       cd $(top_srcdir) && \
 
21992
+         $(AUTOMAKE) --gnu  src/irc/flood/Makefile
 
21993
+.PRECIOUS: Makefile
 
21994
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
21995
+       @case '$?' in \
 
21996
+         *config.status*) \
 
21997
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
21998
+         *) \
 
21999
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
22000
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
22001
+       esac;
 
22002
+
 
22003
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
22004
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
22005
+
 
22006
+$(top_srcdir)/configure:  $(am__configure_deps)
 
22007
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
22008
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
22009
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
22010
+
 
22011
+clean-noinstLIBRARIES:
 
22012
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
22013
+libirc_flood.a: $(libirc_flood_a_OBJECTS) $(libirc_flood_a_DEPENDENCIES) 
 
22014
+       -rm -f libirc_flood.a
 
22015
+       $(libirc_flood_a_AR) libirc_flood.a $(libirc_flood_a_OBJECTS) $(libirc_flood_a_LIBADD)
 
22016
+       $(RANLIB) libirc_flood.a
 
22017
+
 
22018
+mostlyclean-compile:
 
22019
+       -rm -f *.$(OBJEXT)
 
22020
+
 
22021
+distclean-compile:
 
22022
+       -rm -f *.tab.c
 
22023
+
 
22024
+include ./$(DEPDIR)/autoignore.Po
 
22025
+include ./$(DEPDIR)/flood.Po
 
22026
+
 
22027
+.c.o:
 
22028
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
22029
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
22030
+#      source='$<' object='$@' libtool=no \
 
22031
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
22032
+#      $(COMPILE) -c $<
 
22033
+
 
22034
+.c.obj:
 
22035
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
22036
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
22037
+#      source='$<' object='$@' libtool=no \
 
22038
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
22039
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
22040
+
 
22041
+.c.lo:
 
22042
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
22043
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
22044
+#      source='$<' object='$@' libtool=yes \
 
22045
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
22046
+#      $(LTCOMPILE) -c -o $@ $<
 
22047
+
 
22048
+mostlyclean-libtool:
 
22049
+       -rm -f *.lo
 
22050
+
 
22051
+clean-libtool:
 
22052
+       -rm -rf .libs _libs
 
22053
+
 
22054
+distclean-libtool:
 
22055
+       -rm -f libtool
 
22056
+uninstall-info-am:
 
22057
+install-pkginc_irc_floodHEADERS: $(pkginc_irc_flood_HEADERS)
 
22058
+       @$(NORMAL_INSTALL)
 
22059
+       test -z "$(pkginc_irc_flooddir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_irc_flooddir)"
 
22060
+       @list='$(pkginc_irc_flood_HEADERS)'; for p in $$list; do \
 
22061
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
22062
+         f=$(am__strip_dir) \
 
22063
+         echo " $(pkginc_irc_floodHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_irc_flooddir)/$$f'"; \
 
22064
+         $(pkginc_irc_floodHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_irc_flooddir)/$$f"; \
 
22065
+       done
 
22066
+
 
22067
+uninstall-pkginc_irc_floodHEADERS:
 
22068
+       @$(NORMAL_UNINSTALL)
 
22069
+       @list='$(pkginc_irc_flood_HEADERS)'; for p in $$list; do \
 
22070
+         f=$(am__strip_dir) \
 
22071
+         echo " rm -f '$(DESTDIR)$(pkginc_irc_flooddir)/$$f'"; \
 
22072
+         rm -f "$(DESTDIR)$(pkginc_irc_flooddir)/$$f"; \
 
22073
+       done
 
22074
+
 
22075
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
22076
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
22077
+       unique=`for i in $$list; do \
 
22078
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
22079
+         done | \
 
22080
+         $(AWK) '    { files[$$0] = 1; } \
 
22081
+              END { for (i in files) print i; }'`; \
 
22082
+       mkid -fID $$unique
 
22083
+tags: TAGS
 
22084
+
 
22085
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
22086
+               $(TAGS_FILES) $(LISP)
 
22087
+       tags=; \
 
22088
+       here=`pwd`; \
 
22089
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
22090
+       unique=`for i in $$list; do \
 
22091
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
22092
+         done | \
 
22093
+         $(AWK) '    { files[$$0] = 1; } \
 
22094
+              END { for (i in files) print i; }'`; \
 
22095
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
22096
+         test -n "$$unique" || unique=$$empty_fix; \
 
22097
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
22098
+           $$tags $$unique; \
 
22099
+       fi
 
22100
+ctags: CTAGS
 
22101
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
22102
+               $(TAGS_FILES) $(LISP)
 
22103
+       tags=; \
 
22104
+       here=`pwd`; \
 
22105
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
22106
+       unique=`for i in $$list; do \
 
22107
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
22108
+         done | \
 
22109
+         $(AWK) '    { files[$$0] = 1; } \
 
22110
+              END { for (i in files) print i; }'`; \
 
22111
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
22112
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
22113
+            $$tags $$unique
 
22114
+
 
22115
+GTAGS:
 
22116
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
22117
+         && cd $(top_srcdir) \
 
22118
+         && gtags -i $(GTAGS_ARGS) $$here
 
22119
+
 
22120
+distclean-tags:
 
22121
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
22122
+
 
22123
+distdir: $(DISTFILES)
 
22124
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
22125
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
22126
+       list='$(DISTFILES)'; for file in $$list; do \
 
22127
+         case $$file in \
 
22128
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
22129
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
22130
+         esac; \
 
22131
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
22132
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
22133
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
22134
+           dir="/$$dir"; \
 
22135
+           $(mkdir_p) "$(distdir)$$dir"; \
 
22136
+         else \
 
22137
+           dir=''; \
 
22138
+         fi; \
 
22139
+         if test -d $$d/$$file; then \
 
22140
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
22141
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
22142
+           fi; \
 
22143
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
22144
+         else \
 
22145
+           test -f $(distdir)/$$file \
 
22146
+           || cp -p $$d/$$file $(distdir)/$$file \
 
22147
+           || exit 1; \
 
22148
+         fi; \
 
22149
+       done
 
22150
+check-am: all-am
 
22151
+check: check-am
 
22152
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
22153
+installdirs:
 
22154
+       for dir in "$(DESTDIR)$(pkginc_irc_flooddir)"; do \
 
22155
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
22156
+       done
 
22157
+install: install-am
 
22158
+install-exec: install-exec-am
 
22159
+install-data: install-data-am
 
22160
+uninstall: uninstall-am
 
22161
+
 
22162
+install-am: all-am
 
22163
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
22164
+
 
22165
+installcheck: installcheck-am
 
22166
+install-strip:
 
22167
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
22168
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
22169
+         `test -z '$(STRIP)' || \
 
22170
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
22171
+mostlyclean-generic:
 
22172
+
 
22173
+clean-generic:
 
22174
+
 
22175
+distclean-generic:
 
22176
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
22177
+
 
22178
+maintainer-clean-generic:
 
22179
+       @echo "This command is intended for maintainers to use"
 
22180
+       @echo "it deletes files that may require special tools to rebuild."
 
22181
+clean: clean-am
 
22182
+
 
22183
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
22184
+       mostlyclean-am
 
22185
+
 
22186
+distclean: distclean-am
 
22187
+       -rm -rf ./$(DEPDIR)
 
22188
+       -rm -f Makefile
 
22189
+distclean-am: clean-am distclean-compile distclean-generic \
 
22190
+       distclean-libtool distclean-tags
 
22191
+
 
22192
+dvi: dvi-am
 
22193
+
 
22194
+dvi-am:
 
22195
+
 
22196
+html: html-am
 
22197
+
 
22198
+info: info-am
 
22199
+
 
22200
+info-am:
 
22201
+
 
22202
+install-data-am: install-pkginc_irc_floodHEADERS
 
22203
+
 
22204
+install-exec-am:
 
22205
+
 
22206
+install-info: install-info-am
 
22207
+
 
22208
+install-man:
 
22209
+
 
22210
+installcheck-am:
 
22211
+
 
22212
+maintainer-clean: maintainer-clean-am
 
22213
+       -rm -rf ./$(DEPDIR)
 
22214
+       -rm -f Makefile
 
22215
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
22216
+
 
22217
+mostlyclean: mostlyclean-am
 
22218
+
 
22219
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
22220
+       mostlyclean-libtool
 
22221
+
 
22222
+pdf: pdf-am
 
22223
+
 
22224
+pdf-am:
 
22225
+
 
22226
+ps: ps-am
 
22227
+
 
22228
+ps-am:
 
22229
+
 
22230
+uninstall-am: uninstall-info-am uninstall-pkginc_irc_floodHEADERS
 
22231
+
 
22232
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
22233
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
22234
+       distclean-compile distclean-generic distclean-libtool \
 
22235
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
22236
+       install install-am install-data install-data-am install-exec \
 
22237
+       install-exec-am install-info install-info-am install-man \
 
22238
+       install-pkginc_irc_floodHEADERS install-strip installcheck \
 
22239
+       installcheck-am installdirs maintainer-clean \
 
22240
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
22241
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
22242
+       tags uninstall uninstall-am uninstall-info-am \
 
22243
+       uninstall-pkginc_irc_floodHEADERS
 
22244
+
 
22245
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
22246
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
22247
+.NOEXPORT:
 
22248
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/flood/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/irc/flood/Makefile.in
 
22249
--- ./src/irc/flood/Makefile.in 2005-07-17 16:30:36.000000000 +0300
 
22250
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/flood/Makefile.in       2005-07-17 16:48:12.000000000 +0300
 
22251
@@ -129,6 +129,8 @@
 
22252
 GLIB_LIBS = @GLIB_LIBS@
 
22253
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
22254
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
22255
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
22256
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
22257
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
22258
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
22259
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
22260
@@ -138,6 +140,9 @@
 
22261
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
22262
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
22263
 LDFLAGS = @LDFLAGS@
 
22264
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
22265
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
22266
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
22267
 LIBOBJS = @LIBOBJS@
 
22268
 LIBPERL_A = @LIBPERL_A@
 
22269
 LIBS = @LIBS@
 
22270
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/irc.c /tmp/dpep-work.mDzhRz/irssi/src/irc/irc.c
 
22271
--- ./src/irc/irc.c     1970-01-01 02:00:00.000000000 +0200
 
22272
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/irc.c   2005-07-17 16:48:37.000000000 +0300
 
22273
@@ -0,0 +1,6 @@
 
22274
+/* this file is automatically generated by configure - don't change */
 
22275
+void irc_core_init(void); void irc_core_deinit(void);
 
22276
+void irc_dcc_init(void);void irc_flood_init(void);void irc_notifylist_init(void);
 
22277
+void irc_notifylist_deinit(void);void irc_flood_deinit(void);void irc_dcc_deinit(void);
 
22278
+void irc_init(void) { irc_core_init();  irc_dcc_init(); irc_flood_init(); irc_notifylist_init(); }
 
22279
+void irc_deinit(void) { irc_notifylist_deinit(); irc_flood_deinit(); irc_dcc_deinit();  irc_core_deinit(); }
 
22280
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/Makefile /tmp/dpep-work.mDzhRz/irssi/src/irc/Makefile
 
22281
--- ./src/irc/Makefile  1970-01-01 02:00:00.000000000 +0200
 
22282
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/Makefile        2005-07-17 16:48:38.000000000 +0300
 
22283
@@ -0,0 +1,593 @@
 
22284
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
22285
+# src/irc/Makefile.  Generated from Makefile.in by configure.
 
22286
+
 
22287
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
22288
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
22289
+# This Makefile.in is free software; the Free Software Foundation
 
22290
+# gives unlimited permission to copy and/or distribute it,
 
22291
+# with or without modifications, as long as this notice is preserved.
 
22292
+
 
22293
+# This program is distributed in the hope that it will be useful,
 
22294
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
22295
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
22296
+# PARTICULAR PURPOSE.
 
22297
+
 
22298
+
 
22299
+
 
22300
+srcdir = .
 
22301
+top_srcdir = ../..
 
22302
+
 
22303
+pkgdatadir = $(datadir)/irssi
 
22304
+pkglibdir = $(libdir)/irssi
 
22305
+pkgincludedir = $(includedir)/irssi
 
22306
+top_builddir = ../..
 
22307
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
22308
+INSTALL = /usr/bin/install -c
 
22309
+install_sh_DATA = $(install_sh) -c -m 644
 
22310
+install_sh_PROGRAM = $(install_sh) -c
 
22311
+install_sh_SCRIPT = $(install_sh) -c
 
22312
+INSTALL_HEADER = $(INSTALL_DATA)
 
22313
+transform = $(program_transform_name)
 
22314
+NORMAL_INSTALL = :
 
22315
+PRE_INSTALL = :
 
22316
+POST_INSTALL = :
 
22317
+NORMAL_UNINSTALL = :
 
22318
+PRE_UNINSTALL = :
 
22319
+POST_UNINSTALL = :
 
22320
+build_triplet = i686-pc-linux-gnu
 
22321
+host_triplet = i686-pc-linux-gnu
 
22322
+subdir = src/irc
 
22323
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
22324
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
22325
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
22326
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
22327
+       $(top_srcdir)/configure.in
 
22328
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
22329
+       $(ACLOCAL_M4)
 
22330
+mkinstalldirs = $(install_sh) -d
 
22331
+CONFIG_HEADER = $(top_builddir)/config.h
 
22332
+CONFIG_CLEAN_FILES =
 
22333
+LIBRARIES = $(noinst_LIBRARIES)
 
22334
+ARFLAGS = cru
 
22335
+libirc_a_AR = $(AR) $(ARFLAGS)
 
22336
+libirc_a_LIBADD =
 
22337
+am_libirc_a_OBJECTS = irc.$(OBJEXT)
 
22338
+libirc_a_OBJECTS = $(am_libirc_a_OBJECTS)
 
22339
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
22340
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
22341
+am__depfiles_maybe = depfiles
 
22342
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
22343
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
22344
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
22345
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
22346
+       $(AM_CFLAGS) $(CFLAGS)
 
22347
+CCLD = $(CC)
 
22348
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
22349
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
22350
+SOURCES = $(libirc_a_SOURCES)
 
22351
+DIST_SOURCES = $(libirc_a_SOURCES)
 
22352
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
22353
+       html-recursive info-recursive install-data-recursive \
 
22354
+       install-exec-recursive install-info-recursive \
 
22355
+       install-recursive installcheck-recursive installdirs-recursive \
 
22356
+       pdf-recursive ps-recursive uninstall-info-recursive \
 
22357
+       uninstall-recursive
 
22358
+ETAGS = etags
 
22359
+CTAGS = ctags
 
22360
+DIST_SUBDIRS = core dcc flood notifylist proxy
 
22361
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
22362
+AMDEP_FALSE = #
 
22363
+AMDEP_TRUE = 
 
22364
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
22365
+AR = ar
 
22366
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
22367
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
22368
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
22369
+AWK = gawk
 
22370
+BUILD_IRSSIBOT_FALSE = 
 
22371
+BUILD_IRSSIBOT_TRUE = #
 
22372
+BUILD_IRSSIPROXY_FALSE = 
 
22373
+BUILD_IRSSIPROXY_TRUE = #
 
22374
+BUILD_PLUGINS_FALSE = 
 
22375
+BUILD_PLUGINS_TRUE = #
 
22376
+BUILD_TEXTUI_FALSE = #
 
22377
+BUILD_TEXTUI_TRUE = 
 
22378
+CC = gcc
 
22379
+CCDEPMODE = depmode=gcc3
 
22380
+CFLAGS = -g -O2 -Wall  
 
22381
+CHAT_MODULES = irc
 
22382
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
22383
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
22384
+CPP = gcc -E
 
22385
+CPPFLAGS = 
 
22386
+CURSES_INCLUDEDIR = 
 
22387
+CURSES_LIBS = -lncurses
 
22388
+CXX = g++
 
22389
+CXXCPP = g++ -E
 
22390
+CXXDEPMODE = depmode=gcc3
 
22391
+CXXFLAGS = -g -O2
 
22392
+CYGPATH_W = echo
 
22393
+DEFS = -DHAVE_CONFIG_H
 
22394
+DEPDIR = .deps
 
22395
+DYNALOADER_A = 
 
22396
+ECHO = echo
 
22397
+ECHO_C = 
 
22398
+ECHO_N = -n
 
22399
+ECHO_T = 
 
22400
+EGREP = grep -E
 
22401
+EXEEXT = 
 
22402
+F77 = 
 
22403
+FFLAGS = 
 
22404
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
22405
+GLIB_CONFIG = 
 
22406
+GLIB_GENMARSHAL = glib-genmarshal
 
22407
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
22408
+GLIB_MKENUMS = glib-mkenums
 
22409
+GOBJECT_QUERY = gobject-query
 
22410
+HAVE_GNUTLS_FALSE = #
 
22411
+HAVE_GNUTLS_TRUE = 
 
22412
+HAVE_PERL_FALSE = #
 
22413
+HAVE_PERL_TRUE = 
 
22414
+HAVE_STATIC_PERL_FALSE = #
 
22415
+HAVE_STATIC_PERL_TRUE = 
 
22416
+INSTALL_DATA = ${INSTALL} -m 644
 
22417
+INSTALL_PROGRAM = ${INSTALL}
 
22418
+INSTALL_SCRIPT = ${INSTALL}
 
22419
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
22420
+LDFLAGS = 
 
22421
+LIBGNUTLS_CFLAGS = -I/usr/include
 
22422
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
22423
+LIBGNUTLS_LIBS = -lgnutls
 
22424
+LIBOBJS = 
 
22425
+LIBPERL_A = 
 
22426
+LIBS = 
 
22427
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
22428
+LN_S = ln -s
 
22429
+LTLIBOBJS = 
 
22430
+MAINT = 
 
22431
+MAINTAINER_MODE_FALSE = #
 
22432
+MAINTAINER_MODE_TRUE = 
 
22433
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
22434
+NEED_TPARM_FALSE = 
 
22435
+NEED_TPARM_TRUE = #
 
22436
+OBJEXT = o
 
22437
+PACKAGE = irssi
 
22438
+PACKAGE_BUGREPORT = 
 
22439
+PACKAGE_NAME = 
 
22440
+PACKAGE_STRING = 
 
22441
+PACKAGE_TARNAME = 
 
22442
+PACKAGE_VERSION = 
 
22443
+PATH_SEPARATOR = :
 
22444
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
22445
+PERL_EXTRA_OPTS = 
 
22446
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
22447
+PERL_LDFLAGS = 
 
22448
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
22449
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
22450
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
22451
+PERL_MM_PARAMS = 
 
22452
+PERL_STATIC_LIBS = 0
 
22453
+PERL_USE_LIB = 
 
22454
+PKG_CONFIG = /usr/bin/pkg-config
 
22455
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
22456
+RANLIB = ranlib
 
22457
+SET_MAKE = 
 
22458
+SHELL = /bin/sh
 
22459
+SSL_CFLAGS =  
 
22460
+SSL_LIBS = -lssl -lcrypto -ldl  
 
22461
+STRIP = strip
 
22462
+TEXTUI_LIBS = -lncurses
 
22463
+USE_CURSES_FALSE = 
 
22464
+USE_CURSES_TRUE = #
 
22465
+VERSION = 0.8.10-rc5
 
22466
+VERSION_DATE = 20050717
 
22467
+VERSION_TIME = 1223
 
22468
+ac_ct_AR = ar
 
22469
+ac_ct_CC = gcc
 
22470
+ac_ct_CXX = g++
 
22471
+ac_ct_F77 = 
 
22472
+ac_ct_RANLIB = ranlib
 
22473
+ac_ct_STRIP = strip
 
22474
+ac_pt_PKG_CONFIG = 
 
22475
+am__fastdepCC_FALSE = #
 
22476
+am__fastdepCC_TRUE = 
 
22477
+am__fastdepCXX_FALSE = #
 
22478
+am__fastdepCXX_TRUE = 
 
22479
+am__include = include
 
22480
+am__leading_dot = .
 
22481
+am__quote = 
 
22482
+am__tar = ${AMTAR} chof - "$$tardir"
 
22483
+am__untar = ${AMTAR} xf -
 
22484
+bindir = ${exec_prefix}/bin
 
22485
+build = i686-pc-linux-gnu
 
22486
+build_alias = 
 
22487
+build_cpu = i686
 
22488
+build_os = linux-gnu
 
22489
+build_vendor = pc
 
22490
+datadir = ${prefix}/share
 
22491
+exec_prefix = ${prefix}
 
22492
+host = i686-pc-linux-gnu
 
22493
+host_alias = 
 
22494
+host_cpu = i686
 
22495
+host_os = linux-gnu
 
22496
+host_vendor = pc
 
22497
+includedir = ${prefix}/include
 
22498
+infodir = ${prefix}/info
 
22499
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
22500
+irc_MODULES = dcc flood notifylist
 
22501
+libdir = ${exec_prefix}/lib
 
22502
+libexecdir = ${exec_prefix}/libexec
 
22503
+localstatedir = ${prefix}/var
 
22504
+mandir = ${prefix}/man
 
22505
+mkdir_p = mkdir -p --
 
22506
+oldincludedir = /usr/include
 
22507
+perl_module_fe_lib = 
 
22508
+perl_module_lib = 
 
22509
+perl_static_fe_lib = libfe_perl_static.la
 
22510
+perl_static_lib = libperl_core_static.la
 
22511
+perlpath = /usr/bin/perl
 
22512
+prefix = /usr/local
 
22513
+program_transform_name = s,x,x,
 
22514
+sbindir = ${exec_prefix}/sbin
 
22515
+sedpath = /bin/sed
 
22516
+sharedstatedir = ${prefix}/com
 
22517
+sysconfdir = ${prefix}/etc
 
22518
+target_alias = 
 
22519
+#PROXY = proxy
 
22520
+SUBDIRS = core dcc flood notifylist $(PROXY)
 
22521
+noinst_LIBRARIES = libirc.a
 
22522
+libirc_a_SOURCES = irc.c
 
22523
+DISTFILES = $(DIST_COMMON) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
 
22524
+all: all-recursive
 
22525
+
 
22526
+.SUFFIXES:
 
22527
+.SUFFIXES: .c .lo .o .obj
 
22528
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
22529
+       @for dep in $?; do \
 
22530
+         case '$(am__configure_deps)' in \
 
22531
+           *$$dep*) \
 
22532
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
22533
+               && exit 0; \
 
22534
+             exit 1;; \
 
22535
+         esac; \
 
22536
+       done; \
 
22537
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/irc/Makefile'; \
 
22538
+       cd $(top_srcdir) && \
 
22539
+         $(AUTOMAKE) --gnu  src/irc/Makefile
 
22540
+.PRECIOUS: Makefile
 
22541
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
22542
+       @case '$?' in \
 
22543
+         *config.status*) \
 
22544
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
22545
+         *) \
 
22546
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
22547
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
22548
+       esac;
 
22549
+
 
22550
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
22551
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
22552
+
 
22553
+$(top_srcdir)/configure:  $(am__configure_deps)
 
22554
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
22555
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
22556
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
22557
+
 
22558
+clean-noinstLIBRARIES:
 
22559
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
22560
+libirc.a: $(libirc_a_OBJECTS) $(libirc_a_DEPENDENCIES) 
 
22561
+       -rm -f libirc.a
 
22562
+       $(libirc_a_AR) libirc.a $(libirc_a_OBJECTS) $(libirc_a_LIBADD)
 
22563
+       $(RANLIB) libirc.a
 
22564
+
 
22565
+mostlyclean-compile:
 
22566
+       -rm -f *.$(OBJEXT)
 
22567
+
 
22568
+distclean-compile:
 
22569
+       -rm -f *.tab.c
 
22570
+
 
22571
+include ./$(DEPDIR)/irc.Po
 
22572
+
 
22573
+.c.o:
 
22574
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
22575
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
22576
+#      source='$<' object='$@' libtool=no \
 
22577
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
22578
+#      $(COMPILE) -c $<
 
22579
+
 
22580
+.c.obj:
 
22581
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
22582
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
22583
+#      source='$<' object='$@' libtool=no \
 
22584
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
22585
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
22586
+
 
22587
+.c.lo:
 
22588
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
22589
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
22590
+#      source='$<' object='$@' libtool=yes \
 
22591
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
22592
+#      $(LTCOMPILE) -c -o $@ $<
 
22593
+
 
22594
+mostlyclean-libtool:
 
22595
+       -rm -f *.lo
 
22596
+
 
22597
+clean-libtool:
 
22598
+       -rm -rf .libs _libs
 
22599
+
 
22600
+distclean-libtool:
 
22601
+       -rm -f libtool
 
22602
+uninstall-info-am:
 
22603
+
 
22604
+# This directory's subdirectories are mostly independent; you can cd
 
22605
+# into them and run `make' without going through this Makefile.
 
22606
+# To change the values of `make' variables: instead of editing Makefiles,
 
22607
+# (1) if the variable is set in `config.status', edit `config.status'
 
22608
+#     (which will cause the Makefiles to be regenerated when you run `make');
 
22609
+# (2) otherwise, pass the desired values on the `make' command line.
 
22610
+$(RECURSIVE_TARGETS):
 
22611
+       @failcom='exit 1'; \
 
22612
+       for f in x $$MAKEFLAGS; do \
 
22613
+         case $$f in \
 
22614
+           *=* | --[!k]*);; \
 
22615
+           *k*) failcom='fail=yes';; \
 
22616
+         esac; \
 
22617
+       done; \
 
22618
+       dot_seen=no; \
 
22619
+       target=`echo $@ | sed s/-recursive//`; \
 
22620
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
22621
+         echo "Making $$target in $$subdir"; \
 
22622
+         if test "$$subdir" = "."; then \
 
22623
+           dot_seen=yes; \
 
22624
+           local_target="$$target-am"; \
 
22625
+         else \
 
22626
+           local_target="$$target"; \
 
22627
+         fi; \
 
22628
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
22629
+         || eval $$failcom; \
 
22630
+       done; \
 
22631
+       if test "$$dot_seen" = "no"; then \
 
22632
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
22633
+       fi; test -z "$$fail"
 
22634
+
 
22635
+mostlyclean-recursive clean-recursive distclean-recursive \
 
22636
+maintainer-clean-recursive:
 
22637
+       @failcom='exit 1'; \
 
22638
+       for f in x $$MAKEFLAGS; do \
 
22639
+         case $$f in \
 
22640
+           *=* | --[!k]*);; \
 
22641
+           *k*) failcom='fail=yes';; \
 
22642
+         esac; \
 
22643
+       done; \
 
22644
+       dot_seen=no; \
 
22645
+       case "$@" in \
 
22646
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
22647
+         *) list='$(SUBDIRS)' ;; \
 
22648
+       esac; \
 
22649
+       rev=''; for subdir in $$list; do \
 
22650
+         if test "$$subdir" = "."; then :; else \
 
22651
+           rev="$$subdir $$rev"; \
 
22652
+         fi; \
 
22653
+       done; \
 
22654
+       rev="$$rev ."; \
 
22655
+       target=`echo $@ | sed s/-recursive//`; \
 
22656
+       for subdir in $$rev; do \
 
22657
+         echo "Making $$target in $$subdir"; \
 
22658
+         if test "$$subdir" = "."; then \
 
22659
+           local_target="$$target-am"; \
 
22660
+         else \
 
22661
+           local_target="$$target"; \
 
22662
+         fi; \
 
22663
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
22664
+         || eval $$failcom; \
 
22665
+       done && test -z "$$fail"
 
22666
+tags-recursive:
 
22667
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
22668
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
22669
+       done
 
22670
+ctags-recursive:
 
22671
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
22672
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
22673
+       done
 
22674
+
 
22675
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
22676
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
22677
+       unique=`for i in $$list; do \
 
22678
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
22679
+         done | \
 
22680
+         $(AWK) '    { files[$$0] = 1; } \
 
22681
+              END { for (i in files) print i; }'`; \
 
22682
+       mkid -fID $$unique
 
22683
+tags: TAGS
 
22684
+
 
22685
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
22686
+               $(TAGS_FILES) $(LISP)
 
22687
+       tags=; \
 
22688
+       here=`pwd`; \
 
22689
+       if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
22690
+         include_option=--etags-include; \
 
22691
+         empty_fix=.; \
 
22692
+       else \
 
22693
+         include_option=--include; \
 
22694
+         empty_fix=; \
 
22695
+       fi; \
 
22696
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
22697
+         if test "$$subdir" = .; then :; else \
 
22698
+           test ! -f $$subdir/TAGS || \
 
22699
+             tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
22700
+         fi; \
 
22701
+       done; \
 
22702
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
22703
+       unique=`for i in $$list; do \
 
22704
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
22705
+         done | \
 
22706
+         $(AWK) '    { files[$$0] = 1; } \
 
22707
+              END { for (i in files) print i; }'`; \
 
22708
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
22709
+         test -n "$$unique" || unique=$$empty_fix; \
 
22710
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
22711
+           $$tags $$unique; \
 
22712
+       fi
 
22713
+ctags: CTAGS
 
22714
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
22715
+               $(TAGS_FILES) $(LISP)
 
22716
+       tags=; \
 
22717
+       here=`pwd`; \
 
22718
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
22719
+       unique=`for i in $$list; do \
 
22720
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
22721
+         done | \
 
22722
+         $(AWK) '    { files[$$0] = 1; } \
 
22723
+              END { for (i in files) print i; }'`; \
 
22724
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
22725
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
22726
+            $$tags $$unique
 
22727
+
 
22728
+GTAGS:
 
22729
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
22730
+         && cd $(top_srcdir) \
 
22731
+         && gtags -i $(GTAGS_ARGS) $$here
 
22732
+
 
22733
+distclean-tags:
 
22734
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
22735
+
 
22736
+distdir: $(DISTFILES)
 
22737
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
22738
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
22739
+       list='$(DISTFILES)'; for file in $$list; do \
 
22740
+         case $$file in \
 
22741
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
22742
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
22743
+         esac; \
 
22744
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
22745
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
22746
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
22747
+           dir="/$$dir"; \
 
22748
+           $(mkdir_p) "$(distdir)$$dir"; \
 
22749
+         else \
 
22750
+           dir=''; \
 
22751
+         fi; \
 
22752
+         if test -d $$d/$$file; then \
 
22753
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
22754
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
22755
+           fi; \
 
22756
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
22757
+         else \
 
22758
+           test -f $(distdir)/$$file \
 
22759
+           || cp -p $$d/$$file $(distdir)/$$file \
 
22760
+           || exit 1; \
 
22761
+         fi; \
 
22762
+       done
 
22763
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
22764
+         if test "$$subdir" = .; then :; else \
 
22765
+           test -d "$(distdir)/$$subdir" \
 
22766
+           || $(mkdir_p) "$(distdir)/$$subdir" \
 
22767
+           || exit 1; \
 
22768
+           distdir=`$(am__cd) $(distdir) && pwd`; \
 
22769
+           top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
 
22770
+           (cd $$subdir && \
 
22771
+             $(MAKE) $(AM_MAKEFLAGS) \
 
22772
+               top_distdir="$$top_distdir" \
 
22773
+               distdir="$$distdir/$$subdir" \
 
22774
+               distdir) \
 
22775
+             || exit 1; \
 
22776
+         fi; \
 
22777
+       done
 
22778
+check-am: all-am
 
22779
+check: check-recursive
 
22780
+all-am: Makefile $(LIBRARIES)
 
22781
+installdirs: installdirs-recursive
 
22782
+installdirs-am:
 
22783
+install: install-recursive
 
22784
+install-exec: install-exec-recursive
 
22785
+install-data: install-data-recursive
 
22786
+uninstall: uninstall-recursive
 
22787
+
 
22788
+install-am: all-am
 
22789
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
22790
+
 
22791
+installcheck: installcheck-recursive
 
22792
+install-strip:
 
22793
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
22794
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
22795
+         `test -z '$(STRIP)' || \
 
22796
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
22797
+mostlyclean-generic:
 
22798
+
 
22799
+clean-generic:
 
22800
+
 
22801
+maintainer-clean-generic:
 
22802
+       @echo "This command is intended for maintainers to use"
 
22803
+       @echo "it deletes files that may require special tools to rebuild."
 
22804
+clean: clean-recursive
 
22805
+
 
22806
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
22807
+       mostlyclean-am
 
22808
+
 
22809
+distclean: distclean-recursive
 
22810
+       -rm -rf ./$(DEPDIR)
 
22811
+       -rm -f Makefile
 
22812
+distclean-am: clean-am distclean-compile distclean-generic \
 
22813
+       distclean-libtool distclean-tags
 
22814
+
 
22815
+dvi: dvi-recursive
 
22816
+
 
22817
+dvi-am:
 
22818
+
 
22819
+html: html-recursive
 
22820
+
 
22821
+info: info-recursive
 
22822
+
 
22823
+info-am:
 
22824
+
 
22825
+install-data-am:
 
22826
+
 
22827
+install-exec-am:
 
22828
+
 
22829
+install-info: install-info-recursive
 
22830
+
 
22831
+install-man:
 
22832
+
 
22833
+installcheck-am:
 
22834
+
 
22835
+maintainer-clean: maintainer-clean-recursive
 
22836
+       -rm -rf ./$(DEPDIR)
 
22837
+       -rm -f Makefile
 
22838
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
22839
+
 
22840
+mostlyclean: mostlyclean-recursive
 
22841
+
 
22842
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
22843
+       mostlyclean-libtool
 
22844
+
 
22845
+pdf: pdf-recursive
 
22846
+
 
22847
+pdf-am:
 
22848
+
 
22849
+ps: ps-recursive
 
22850
+
 
22851
+ps-am:
 
22852
+
 
22853
+uninstall-am: uninstall-info-am
 
22854
+
 
22855
+uninstall-info: uninstall-info-recursive
 
22856
+
 
22857
+.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
 
22858
+       clean clean-generic clean-libtool clean-noinstLIBRARIES \
 
22859
+       clean-recursive ctags ctags-recursive distclean \
 
22860
+       distclean-compile distclean-generic distclean-libtool \
 
22861
+       distclean-recursive distclean-tags distdir dvi dvi-am html \
 
22862
+       html-am info info-am install install-am install-data \
 
22863
+       install-data-am install-exec install-exec-am install-info \
 
22864
+       install-info-am install-man install-strip installcheck \
 
22865
+       installcheck-am installdirs installdirs-am maintainer-clean \
 
22866
+       maintainer-clean-generic maintainer-clean-recursive \
 
22867
+       mostlyclean mostlyclean-compile mostlyclean-generic \
 
22868
+       mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
 
22869
+       tags tags-recursive uninstall uninstall-am uninstall-info-am
 
22870
+
 
22871
+
 
22872
+distclean-generic:
 
22873
+       rm -f irc.c
 
22874
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
22875
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
22876
+.NOEXPORT:
 
22877
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/irc/Makefile.in
 
22878
--- ./src/irc/Makefile.in       2005-07-17 16:30:35.000000000 +0300
 
22879
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/Makefile.in     2005-07-17 16:48:10.000000000 +0300
 
22880
@@ -124,6 +124,8 @@
 
22881
 GLIB_LIBS = @GLIB_LIBS@
 
22882
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
22883
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
22884
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
22885
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
22886
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
22887
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
22888
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
22889
@@ -133,6 +135,9 @@
 
22890
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
22891
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
22892
 LDFLAGS = @LDFLAGS@
 
22893
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
22894
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
22895
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
22896
 LIBOBJS = @LIBOBJS@
 
22897
 LIBPERL_A = @LIBPERL_A@
 
22898
 LIBS = @LIBS@
 
22899
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/notifylist/.deps/notify-commands.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notify-commands.Po
 
22900
--- ./src/irc/notifylist/.deps/notify-commands.Po       1970-01-01 02:00:00.000000000 +0200
 
22901
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notify-commands.Po     2005-07-17 16:48:41.000000000 +0300
 
22902
@@ -0,0 +1 @@
 
22903
+# dummy
 
22904
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/notifylist/.deps/notify-ison.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notify-ison.Po
 
22905
--- ./src/irc/notifylist/.deps/notify-ison.Po   1970-01-01 02:00:00.000000000 +0200
 
22906
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notify-ison.Po 2005-07-17 16:48:41.000000000 +0300
 
22907
@@ -0,0 +1 @@
 
22908
+# dummy
 
22909
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/notifylist/.deps/notifylist.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notifylist.Po
 
22910
--- ./src/irc/notifylist/.deps/notifylist.Po    1970-01-01 02:00:00.000000000 +0200
 
22911
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notifylist.Po  2005-07-17 16:48:41.000000000 +0300
 
22912
@@ -0,0 +1 @@
 
22913
+# dummy
 
22914
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/notifylist/.deps/notify-setup.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notify-setup.Po
 
22915
--- ./src/irc/notifylist/.deps/notify-setup.Po  1970-01-01 02:00:00.000000000 +0200
 
22916
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notify-setup.Po        2005-07-17 16:48:41.000000000 +0300
 
22917
@@ -0,0 +1 @@
 
22918
+# dummy
 
22919
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/notifylist/.deps/notify-whois.Po /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notify-whois.Po
 
22920
--- ./src/irc/notifylist/.deps/notify-whois.Po  1970-01-01 02:00:00.000000000 +0200
 
22921
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/.deps/notify-whois.Po        2005-07-17 16:48:41.000000000 +0300
 
22922
@@ -0,0 +1 @@
 
22923
+# dummy
 
22924
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/notifylist/Makefile /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/Makefile
 
22925
--- ./src/irc/notifylist/Makefile       1970-01-01 02:00:00.000000000 +0200
 
22926
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/Makefile     2005-07-17 16:48:38.000000000 +0300
 
22927
@@ -0,0 +1,536 @@
 
22928
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
22929
+# src/irc/notifylist/Makefile.  Generated from Makefile.in by configure.
 
22930
+
 
22931
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
22932
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
22933
+# This Makefile.in is free software; the Free Software Foundation
 
22934
+# gives unlimited permission to copy and/or distribute it,
 
22935
+# with or without modifications, as long as this notice is preserved.
 
22936
+
 
22937
+# This program is distributed in the hope that it will be useful,
 
22938
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
22939
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
22940
+# PARTICULAR PURPOSE.
 
22941
+
 
22942
+
 
22943
+
 
22944
+
 
22945
+srcdir = .
 
22946
+top_srcdir = ../../..
 
22947
+
 
22948
+pkgdatadir = $(datadir)/irssi
 
22949
+pkglibdir = $(libdir)/irssi
 
22950
+pkgincludedir = $(includedir)/irssi
 
22951
+top_builddir = ../../..
 
22952
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
22953
+INSTALL = /usr/bin/install -c
 
22954
+install_sh_DATA = $(install_sh) -c -m 644
 
22955
+install_sh_PROGRAM = $(install_sh) -c
 
22956
+install_sh_SCRIPT = $(install_sh) -c
 
22957
+INSTALL_HEADER = $(INSTALL_DATA)
 
22958
+transform = $(program_transform_name)
 
22959
+NORMAL_INSTALL = :
 
22960
+PRE_INSTALL = :
 
22961
+POST_INSTALL = :
 
22962
+NORMAL_UNINSTALL = :
 
22963
+PRE_UNINSTALL = :
 
22964
+POST_UNINSTALL = :
 
22965
+build_triplet = i686-pc-linux-gnu
 
22966
+host_triplet = i686-pc-linux-gnu
 
22967
+subdir = src/irc/notifylist
 
22968
+DIST_COMMON = $(pkginc_irc_notifylist_HEADERS) $(srcdir)/Makefile.am \
 
22969
+       $(srcdir)/Makefile.in
 
22970
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
22971
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
22972
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
22973
+       $(top_srcdir)/configure.in
 
22974
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
22975
+       $(ACLOCAL_M4)
 
22976
+mkinstalldirs = $(install_sh) -d
 
22977
+CONFIG_HEADER = $(top_builddir)/config.h
 
22978
+CONFIG_CLEAN_FILES =
 
22979
+LIBRARIES = $(noinst_LIBRARIES)
 
22980
+ARFLAGS = cru
 
22981
+libirc_notifylist_a_AR = $(AR) $(ARFLAGS)
 
22982
+libirc_notifylist_a_LIBADD =
 
22983
+am_libirc_notifylist_a_OBJECTS = notifylist.$(OBJEXT) \
 
22984
+       notify-commands.$(OBJEXT) notify-ison.$(OBJEXT) \
 
22985
+       notify-setup.$(OBJEXT) notify-whois.$(OBJEXT)
 
22986
+libirc_notifylist_a_OBJECTS = $(am_libirc_notifylist_a_OBJECTS)
 
22987
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
22988
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
22989
+am__depfiles_maybe = depfiles
 
22990
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
22991
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
22992
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
22993
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
22994
+       $(AM_CFLAGS) $(CFLAGS)
 
22995
+CCLD = $(CC)
 
22996
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
22997
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
22998
+SOURCES = $(libirc_notifylist_a_SOURCES)
 
22999
+DIST_SOURCES = $(libirc_notifylist_a_SOURCES)
 
23000
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
23001
+am__vpath_adj = case $$p in \
 
23002
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
23003
+    *) f=$$p;; \
 
23004
+  esac;
 
23005
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
23006
+am__installdirs = "$(DESTDIR)$(pkginc_irc_notifylistdir)"
 
23007
+pkginc_irc_notifylistHEADERS_INSTALL = $(INSTALL_HEADER)
 
23008
+HEADERS = $(pkginc_irc_notifylist_HEADERS)
 
23009
+ETAGS = etags
 
23010
+CTAGS = ctags
 
23011
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
23012
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
23013
+AMDEP_FALSE = #
 
23014
+AMDEP_TRUE = 
 
23015
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
23016
+AR = ar
 
23017
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
23018
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
23019
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
23020
+AWK = gawk
 
23021
+BUILD_IRSSIBOT_FALSE = 
 
23022
+BUILD_IRSSIBOT_TRUE = #
 
23023
+BUILD_IRSSIPROXY_FALSE = 
 
23024
+BUILD_IRSSIPROXY_TRUE = #
 
23025
+BUILD_PLUGINS_FALSE = 
 
23026
+BUILD_PLUGINS_TRUE = #
 
23027
+BUILD_TEXTUI_FALSE = #
 
23028
+BUILD_TEXTUI_TRUE = 
 
23029
+CC = gcc
 
23030
+CCDEPMODE = depmode=gcc3
 
23031
+CFLAGS = -g -O2 -Wall  
 
23032
+CHAT_MODULES = irc
 
23033
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
23034
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
23035
+CPP = gcc -E
 
23036
+CPPFLAGS = 
 
23037
+CURSES_INCLUDEDIR = 
 
23038
+CURSES_LIBS = -lncurses
 
23039
+CXX = g++
 
23040
+CXXCPP = g++ -E
 
23041
+CXXDEPMODE = depmode=gcc3
 
23042
+CXXFLAGS = -g -O2
 
23043
+CYGPATH_W = echo
 
23044
+DEFS = -DHAVE_CONFIG_H
 
23045
+DEPDIR = .deps
 
23046
+DYNALOADER_A = 
 
23047
+ECHO = echo
 
23048
+ECHO_C = 
 
23049
+ECHO_N = -n
 
23050
+ECHO_T = 
 
23051
+EGREP = grep -E
 
23052
+EXEEXT = 
 
23053
+F77 = 
 
23054
+FFLAGS = 
 
23055
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
23056
+GLIB_CONFIG = 
 
23057
+GLIB_GENMARSHAL = glib-genmarshal
 
23058
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
23059
+GLIB_MKENUMS = glib-mkenums
 
23060
+GOBJECT_QUERY = gobject-query
 
23061
+HAVE_GNUTLS_FALSE = #
 
23062
+HAVE_GNUTLS_TRUE = 
 
23063
+HAVE_PERL_FALSE = #
 
23064
+HAVE_PERL_TRUE = 
 
23065
+HAVE_STATIC_PERL_FALSE = #
 
23066
+HAVE_STATIC_PERL_TRUE = 
 
23067
+INSTALL_DATA = ${INSTALL} -m 644
 
23068
+INSTALL_PROGRAM = ${INSTALL}
 
23069
+INSTALL_SCRIPT = ${INSTALL}
 
23070
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
23071
+LDFLAGS = 
 
23072
+LIBGNUTLS_CFLAGS = -I/usr/include
 
23073
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
23074
+LIBGNUTLS_LIBS = -lgnutls
 
23075
+LIBOBJS = 
 
23076
+LIBPERL_A = 
 
23077
+LIBS = 
 
23078
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
23079
+LN_S = ln -s
 
23080
+LTLIBOBJS = 
 
23081
+MAINT = 
 
23082
+MAINTAINER_MODE_FALSE = #
 
23083
+MAINTAINER_MODE_TRUE = 
 
23084
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
23085
+NEED_TPARM_FALSE = 
 
23086
+NEED_TPARM_TRUE = #
 
23087
+OBJEXT = o
 
23088
+PACKAGE = irssi
 
23089
+PACKAGE_BUGREPORT = 
 
23090
+PACKAGE_NAME = 
 
23091
+PACKAGE_STRING = 
 
23092
+PACKAGE_TARNAME = 
 
23093
+PACKAGE_VERSION = 
 
23094
+PATH_SEPARATOR = :
 
23095
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
23096
+PERL_EXTRA_OPTS = 
 
23097
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
23098
+PERL_LDFLAGS = 
 
23099
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
23100
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
23101
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
23102
+PERL_MM_PARAMS = 
 
23103
+PERL_STATIC_LIBS = 0
 
23104
+PERL_USE_LIB = 
 
23105
+PKG_CONFIG = /usr/bin/pkg-config
 
23106
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
23107
+RANLIB = ranlib
 
23108
+SET_MAKE = 
 
23109
+SHELL = /bin/sh
 
23110
+SSL_CFLAGS =  
 
23111
+SSL_LIBS = -lssl -lcrypto -ldl  
 
23112
+STRIP = strip
 
23113
+TEXTUI_LIBS = -lncurses
 
23114
+USE_CURSES_FALSE = 
 
23115
+USE_CURSES_TRUE = #
 
23116
+VERSION = 0.8.10-rc5
 
23117
+VERSION_DATE = 20050717
 
23118
+VERSION_TIME = 1223
 
23119
+ac_ct_AR = ar
 
23120
+ac_ct_CC = gcc
 
23121
+ac_ct_CXX = g++
 
23122
+ac_ct_F77 = 
 
23123
+ac_ct_RANLIB = ranlib
 
23124
+ac_ct_STRIP = strip
 
23125
+ac_pt_PKG_CONFIG = 
 
23126
+am__fastdepCC_FALSE = #
 
23127
+am__fastdepCC_TRUE = 
 
23128
+am__fastdepCXX_FALSE = #
 
23129
+am__fastdepCXX_TRUE = 
 
23130
+am__include = include
 
23131
+am__leading_dot = .
 
23132
+am__quote = 
 
23133
+am__tar = ${AMTAR} chof - "$$tardir"
 
23134
+am__untar = ${AMTAR} xf -
 
23135
+bindir = ${exec_prefix}/bin
 
23136
+build = i686-pc-linux-gnu
 
23137
+build_alias = 
 
23138
+build_cpu = i686
 
23139
+build_os = linux-gnu
 
23140
+build_vendor = pc
 
23141
+datadir = ${prefix}/share
 
23142
+exec_prefix = ${prefix}
 
23143
+host = i686-pc-linux-gnu
 
23144
+host_alias = 
 
23145
+host_cpu = i686
 
23146
+host_os = linux-gnu
 
23147
+host_vendor = pc
 
23148
+includedir = ${prefix}/include
 
23149
+infodir = ${prefix}/info
 
23150
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
23151
+irc_MODULES = dcc flood notifylist
 
23152
+libdir = ${exec_prefix}/lib
 
23153
+libexecdir = ${exec_prefix}/libexec
 
23154
+localstatedir = ${prefix}/var
 
23155
+mandir = ${prefix}/man
 
23156
+mkdir_p = mkdir -p --
 
23157
+oldincludedir = /usr/include
 
23158
+perl_module_fe_lib = 
 
23159
+perl_module_lib = 
 
23160
+perl_static_fe_lib = libfe_perl_static.la
 
23161
+perl_static_lib = libperl_core_static.la
 
23162
+perlpath = /usr/bin/perl
 
23163
+prefix = /usr/local
 
23164
+program_transform_name = s,x,x,
 
23165
+sbindir = ${exec_prefix}/sbin
 
23166
+sedpath = /bin/sed
 
23167
+sharedstatedir = ${prefix}/com
 
23168
+sysconfdir = ${prefix}/etc
 
23169
+target_alias = 
 
23170
+noinst_LIBRARIES = libirc_notifylist.a
 
23171
+INCLUDES = \
 
23172
+       -I$(top_srcdir)/src \
 
23173
+       -I$(top_srcdir)/src/core/ \
 
23174
+       -I$(top_srcdir)/src/irc/core/ \
 
23175
+       $(GLIB_CFLAGS)
 
23176
+
 
23177
+libirc_notifylist_a_SOURCES = \
 
23178
+       notifylist.c \
 
23179
+       notify-commands.c \
 
23180
+       notify-ison.c \
 
23181
+       notify-setup.c \
 
23182
+       notify-whois.c
 
23183
+
 
23184
+pkginc_irc_notifylistdir = $(pkgincludedir)/src/irc/notifylist
 
23185
+pkginc_irc_notifylist_HEADERS = \
 
23186
+       notifylist.h \
 
23187
+       notify-setup.h \
 
23188
+       module.h
 
23189
+
 
23190
+all: all-am
 
23191
+
 
23192
+.SUFFIXES:
 
23193
+.SUFFIXES: .c .lo .o .obj
 
23194
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
23195
+       @for dep in $?; do \
 
23196
+         case '$(am__configure_deps)' in \
 
23197
+           *$$dep*) \
 
23198
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
23199
+               && exit 0; \
 
23200
+             exit 1;; \
 
23201
+         esac; \
 
23202
+       done; \
 
23203
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/irc/notifylist/Makefile'; \
 
23204
+       cd $(top_srcdir) && \
 
23205
+         $(AUTOMAKE) --gnu  src/irc/notifylist/Makefile
 
23206
+.PRECIOUS: Makefile
 
23207
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
23208
+       @case '$?' in \
 
23209
+         *config.status*) \
 
23210
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
23211
+         *) \
 
23212
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
23213
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
23214
+       esac;
 
23215
+
 
23216
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
23217
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
23218
+
 
23219
+$(top_srcdir)/configure:  $(am__configure_deps)
 
23220
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
23221
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
23222
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
23223
+
 
23224
+clean-noinstLIBRARIES:
 
23225
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
23226
+libirc_notifylist.a: $(libirc_notifylist_a_OBJECTS) $(libirc_notifylist_a_DEPENDENCIES) 
 
23227
+       -rm -f libirc_notifylist.a
 
23228
+       $(libirc_notifylist_a_AR) libirc_notifylist.a $(libirc_notifylist_a_OBJECTS) $(libirc_notifylist_a_LIBADD)
 
23229
+       $(RANLIB) libirc_notifylist.a
 
23230
+
 
23231
+mostlyclean-compile:
 
23232
+       -rm -f *.$(OBJEXT)
 
23233
+
 
23234
+distclean-compile:
 
23235
+       -rm -f *.tab.c
 
23236
+
 
23237
+include ./$(DEPDIR)/notify-commands.Po
 
23238
+include ./$(DEPDIR)/notify-ison.Po
 
23239
+include ./$(DEPDIR)/notify-setup.Po
 
23240
+include ./$(DEPDIR)/notify-whois.Po
 
23241
+include ./$(DEPDIR)/notifylist.Po
 
23242
+
 
23243
+.c.o:
 
23244
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
23245
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
23246
+#      source='$<' object='$@' libtool=no \
 
23247
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
23248
+#      $(COMPILE) -c $<
 
23249
+
 
23250
+.c.obj:
 
23251
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
23252
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
23253
+#      source='$<' object='$@' libtool=no \
 
23254
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
23255
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
23256
+
 
23257
+.c.lo:
 
23258
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
23259
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
23260
+#      source='$<' object='$@' libtool=yes \
 
23261
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
23262
+#      $(LTCOMPILE) -c -o $@ $<
 
23263
+
 
23264
+mostlyclean-libtool:
 
23265
+       -rm -f *.lo
 
23266
+
 
23267
+clean-libtool:
 
23268
+       -rm -rf .libs _libs
 
23269
+
 
23270
+distclean-libtool:
 
23271
+       -rm -f libtool
 
23272
+uninstall-info-am:
 
23273
+install-pkginc_irc_notifylistHEADERS: $(pkginc_irc_notifylist_HEADERS)
 
23274
+       @$(NORMAL_INSTALL)
 
23275
+       test -z "$(pkginc_irc_notifylistdir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_irc_notifylistdir)"
 
23276
+       @list='$(pkginc_irc_notifylist_HEADERS)'; for p in $$list; do \
 
23277
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
23278
+         f=$(am__strip_dir) \
 
23279
+         echo " $(pkginc_irc_notifylistHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_irc_notifylistdir)/$$f'"; \
 
23280
+         $(pkginc_irc_notifylistHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_irc_notifylistdir)/$$f"; \
 
23281
+       done
 
23282
+
 
23283
+uninstall-pkginc_irc_notifylistHEADERS:
 
23284
+       @$(NORMAL_UNINSTALL)
 
23285
+       @list='$(pkginc_irc_notifylist_HEADERS)'; for p in $$list; do \
 
23286
+         f=$(am__strip_dir) \
 
23287
+         echo " rm -f '$(DESTDIR)$(pkginc_irc_notifylistdir)/$$f'"; \
 
23288
+         rm -f "$(DESTDIR)$(pkginc_irc_notifylistdir)/$$f"; \
 
23289
+       done
 
23290
+
 
23291
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
23292
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
23293
+       unique=`for i in $$list; do \
 
23294
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
23295
+         done | \
 
23296
+         $(AWK) '    { files[$$0] = 1; } \
 
23297
+              END { for (i in files) print i; }'`; \
 
23298
+       mkid -fID $$unique
 
23299
+tags: TAGS
 
23300
+
 
23301
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
23302
+               $(TAGS_FILES) $(LISP)
 
23303
+       tags=; \
 
23304
+       here=`pwd`; \
 
23305
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
23306
+       unique=`for i in $$list; do \
 
23307
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
23308
+         done | \
 
23309
+         $(AWK) '    { files[$$0] = 1; } \
 
23310
+              END { for (i in files) print i; }'`; \
 
23311
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
23312
+         test -n "$$unique" || unique=$$empty_fix; \
 
23313
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
23314
+           $$tags $$unique; \
 
23315
+       fi
 
23316
+ctags: CTAGS
 
23317
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
23318
+               $(TAGS_FILES) $(LISP)
 
23319
+       tags=; \
 
23320
+       here=`pwd`; \
 
23321
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
23322
+       unique=`for i in $$list; do \
 
23323
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
23324
+         done | \
 
23325
+         $(AWK) '    { files[$$0] = 1; } \
 
23326
+              END { for (i in files) print i; }'`; \
 
23327
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
23328
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
23329
+            $$tags $$unique
 
23330
+
 
23331
+GTAGS:
 
23332
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
23333
+         && cd $(top_srcdir) \
 
23334
+         && gtags -i $(GTAGS_ARGS) $$here
 
23335
+
 
23336
+distclean-tags:
 
23337
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
23338
+
 
23339
+distdir: $(DISTFILES)
 
23340
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
23341
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
23342
+       list='$(DISTFILES)'; for file in $$list; do \
 
23343
+         case $$file in \
 
23344
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
23345
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
23346
+         esac; \
 
23347
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
23348
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
23349
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
23350
+           dir="/$$dir"; \
 
23351
+           $(mkdir_p) "$(distdir)$$dir"; \
 
23352
+         else \
 
23353
+           dir=''; \
 
23354
+         fi; \
 
23355
+         if test -d $$d/$$file; then \
 
23356
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
23357
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
23358
+           fi; \
 
23359
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
23360
+         else \
 
23361
+           test -f $(distdir)/$$file \
 
23362
+           || cp -p $$d/$$file $(distdir)/$$file \
 
23363
+           || exit 1; \
 
23364
+         fi; \
 
23365
+       done
 
23366
+check-am: all-am
 
23367
+check: check-am
 
23368
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
23369
+installdirs:
 
23370
+       for dir in "$(DESTDIR)$(pkginc_irc_notifylistdir)"; do \
 
23371
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
23372
+       done
 
23373
+install: install-am
 
23374
+install-exec: install-exec-am
 
23375
+install-data: install-data-am
 
23376
+uninstall: uninstall-am
 
23377
+
 
23378
+install-am: all-am
 
23379
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
23380
+
 
23381
+installcheck: installcheck-am
 
23382
+install-strip:
 
23383
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
23384
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
23385
+         `test -z '$(STRIP)' || \
 
23386
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
23387
+mostlyclean-generic:
 
23388
+
 
23389
+clean-generic:
 
23390
+
 
23391
+distclean-generic:
 
23392
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
23393
+
 
23394
+maintainer-clean-generic:
 
23395
+       @echo "This command is intended for maintainers to use"
 
23396
+       @echo "it deletes files that may require special tools to rebuild."
 
23397
+clean: clean-am
 
23398
+
 
23399
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
23400
+       mostlyclean-am
 
23401
+
 
23402
+distclean: distclean-am
 
23403
+       -rm -rf ./$(DEPDIR)
 
23404
+       -rm -f Makefile
 
23405
+distclean-am: clean-am distclean-compile distclean-generic \
 
23406
+       distclean-libtool distclean-tags
 
23407
+
 
23408
+dvi: dvi-am
 
23409
+
 
23410
+dvi-am:
 
23411
+
 
23412
+html: html-am
 
23413
+
 
23414
+info: info-am
 
23415
+
 
23416
+info-am:
 
23417
+
 
23418
+install-data-am: install-pkginc_irc_notifylistHEADERS
 
23419
+
 
23420
+install-exec-am:
 
23421
+
 
23422
+install-info: install-info-am
 
23423
+
 
23424
+install-man:
 
23425
+
 
23426
+installcheck-am:
 
23427
+
 
23428
+maintainer-clean: maintainer-clean-am
 
23429
+       -rm -rf ./$(DEPDIR)
 
23430
+       -rm -f Makefile
 
23431
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
23432
+
 
23433
+mostlyclean: mostlyclean-am
 
23434
+
 
23435
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
23436
+       mostlyclean-libtool
 
23437
+
 
23438
+pdf: pdf-am
 
23439
+
 
23440
+pdf-am:
 
23441
+
 
23442
+ps: ps-am
 
23443
+
 
23444
+ps-am:
 
23445
+
 
23446
+uninstall-am: uninstall-info-am uninstall-pkginc_irc_notifylistHEADERS
 
23447
+
 
23448
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
23449
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
23450
+       distclean-compile distclean-generic distclean-libtool \
 
23451
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
23452
+       install install-am install-data install-data-am install-exec \
 
23453
+       install-exec-am install-info install-info-am install-man \
 
23454
+       install-pkginc_irc_notifylistHEADERS install-strip \
 
23455
+       installcheck installcheck-am installdirs maintainer-clean \
 
23456
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
23457
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
23458
+       tags uninstall uninstall-am uninstall-info-am \
 
23459
+       uninstall-pkginc_irc_notifylistHEADERS
 
23460
+
 
23461
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
23462
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
23463
+.NOEXPORT:
 
23464
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/notifylist/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/Makefile.in
 
23465
--- ./src/irc/notifylist/Makefile.in    2005-07-17 16:30:36.000000000 +0300
 
23466
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/notifylist/Makefile.in  2005-07-17 16:48:12.000000000 +0300
 
23467
@@ -131,6 +131,8 @@
 
23468
 GLIB_LIBS = @GLIB_LIBS@
 
23469
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
23470
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
23471
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
23472
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
23473
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
23474
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
23475
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
23476
@@ -140,6 +142,9 @@
 
23477
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
23478
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
23479
 LDFLAGS = @LDFLAGS@
 
23480
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
23481
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
23482
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
23483
 LIBOBJS = @LIBOBJS@
 
23484
 LIBPERL_A = @LIBPERL_A@
 
23485
 LIBS = @LIBS@
 
23486
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/proxy/.deps/dump.Plo /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/.deps/dump.Plo
 
23487
--- ./src/irc/proxy/.deps/dump.Plo      1970-01-01 02:00:00.000000000 +0200
 
23488
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/.deps/dump.Plo    2005-07-17 16:48:41.000000000 +0300
 
23489
@@ -0,0 +1 @@
 
23490
+# dummy
 
23491
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/proxy/.deps/listen.Plo /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/.deps/listen.Plo
 
23492
--- ./src/irc/proxy/.deps/listen.Plo    1970-01-01 02:00:00.000000000 +0200
 
23493
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/.deps/listen.Plo  2005-07-17 16:48:41.000000000 +0300
 
23494
@@ -0,0 +1 @@
 
23495
+# dummy
 
23496
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/proxy/.deps/proxy.Plo /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/.deps/proxy.Plo
 
23497
--- ./src/irc/proxy/.deps/proxy.Plo     1970-01-01 02:00:00.000000000 +0200
 
23498
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/.deps/proxy.Plo   2005-07-17 16:48:41.000000000 +0300
 
23499
@@ -0,0 +1 @@
 
23500
+# dummy
 
23501
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/proxy/Makefile /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/Makefile
 
23502
--- ./src/irc/proxy/Makefile    1970-01-01 02:00:00.000000000 +0200
 
23503
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/Makefile  2005-07-17 16:48:39.000000000 +0300
 
23504
@@ -0,0 +1,538 @@
 
23505
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
23506
+# src/irc/proxy/Makefile.  Generated from Makefile.in by configure.
 
23507
+
 
23508
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
23509
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
23510
+# This Makefile.in is free software; the Free Software Foundation
 
23511
+# gives unlimited permission to copy and/or distribute it,
 
23512
+# with or without modifications, as long as this notice is preserved.
 
23513
+
 
23514
+# This program is distributed in the hope that it will be useful,
 
23515
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
23516
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
23517
+# PARTICULAR PURPOSE.
 
23518
+
 
23519
+
 
23520
+
 
23521
+
 
23522
+srcdir = .
 
23523
+top_srcdir = ../../..
 
23524
+
 
23525
+pkgdatadir = $(datadir)/irssi
 
23526
+pkglibdir = $(libdir)/irssi
 
23527
+pkgincludedir = $(includedir)/irssi
 
23528
+top_builddir = ../../..
 
23529
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
23530
+INSTALL = /usr/bin/install -c
 
23531
+install_sh_DATA = $(install_sh) -c -m 644
 
23532
+install_sh_PROGRAM = $(install_sh) -c
 
23533
+install_sh_SCRIPT = $(install_sh) -c
 
23534
+INSTALL_HEADER = $(INSTALL_DATA)
 
23535
+transform = $(program_transform_name)
 
23536
+NORMAL_INSTALL = :
 
23537
+PRE_INSTALL = :
 
23538
+POST_INSTALL = :
 
23539
+NORMAL_UNINSTALL = :
 
23540
+PRE_UNINSTALL = :
 
23541
+POST_UNINSTALL = :
 
23542
+build_triplet = i686-pc-linux-gnu
 
23543
+host_triplet = i686-pc-linux-gnu
 
23544
+subdir = src/irc/proxy
 
23545
+DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
 
23546
+       $(srcdir)/Makefile.in
 
23547
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
23548
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
23549
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
23550
+       $(top_srcdir)/configure.in
 
23551
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
23552
+       $(ACLOCAL_M4)
 
23553
+mkinstalldirs = $(install_sh) -d
 
23554
+CONFIG_HEADER = $(top_builddir)/config.h
 
23555
+CONFIG_CLEAN_FILES =
 
23556
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
23557
+am__vpath_adj = case $$p in \
 
23558
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
23559
+    *) f=$$p;; \
 
23560
+  esac;
 
23561
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
23562
+am__installdirs = "$(DESTDIR)$(moduledir)"
 
23563
+moduleLTLIBRARIES_INSTALL = $(INSTALL)
 
23564
+LTLIBRARIES = $(module_LTLIBRARIES)
 
23565
+libirc_proxy_la_LIBADD =
 
23566
+am_libirc_proxy_la_OBJECTS = proxy.lo dump.lo listen.lo
 
23567
+libirc_proxy_la_OBJECTS = $(am_libirc_proxy_la_OBJECTS)
 
23568
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
23569
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
23570
+am__depfiles_maybe = depfiles
 
23571
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
23572
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
23573
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
23574
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
23575
+       $(AM_CFLAGS) $(CFLAGS)
 
23576
+CCLD = $(CC)
 
23577
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
23578
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
23579
+SOURCES = $(libirc_proxy_la_SOURCES)
 
23580
+DIST_SOURCES = $(libirc_proxy_la_SOURCES)
 
23581
+HEADERS = $(noinst_HEADERS)
 
23582
+ETAGS = etags
 
23583
+CTAGS = ctags
 
23584
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
23585
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
23586
+AMDEP_FALSE = #
 
23587
+AMDEP_TRUE = 
 
23588
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
23589
+AR = ar
 
23590
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
23591
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
23592
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
23593
+AWK = gawk
 
23594
+BUILD_IRSSIBOT_FALSE = 
 
23595
+BUILD_IRSSIBOT_TRUE = #
 
23596
+BUILD_IRSSIPROXY_FALSE = 
 
23597
+BUILD_IRSSIPROXY_TRUE = #
 
23598
+BUILD_PLUGINS_FALSE = 
 
23599
+BUILD_PLUGINS_TRUE = #
 
23600
+BUILD_TEXTUI_FALSE = #
 
23601
+BUILD_TEXTUI_TRUE = 
 
23602
+CC = gcc
 
23603
+CCDEPMODE = depmode=gcc3
 
23604
+CFLAGS = -g -O2 -Wall  
 
23605
+CHAT_MODULES = irc
 
23606
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
23607
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
23608
+CPP = gcc -E
 
23609
+CPPFLAGS = 
 
23610
+CURSES_INCLUDEDIR = 
 
23611
+CURSES_LIBS = -lncurses
 
23612
+CXX = g++
 
23613
+CXXCPP = g++ -E
 
23614
+CXXDEPMODE = depmode=gcc3
 
23615
+CXXFLAGS = -g -O2
 
23616
+CYGPATH_W = echo
 
23617
+DEFS = -DHAVE_CONFIG_H
 
23618
+DEPDIR = .deps
 
23619
+DYNALOADER_A = 
 
23620
+ECHO = echo
 
23621
+ECHO_C = 
 
23622
+ECHO_N = -n
 
23623
+ECHO_T = 
 
23624
+EGREP = grep -E
 
23625
+EXEEXT = 
 
23626
+F77 = 
 
23627
+FFLAGS = 
 
23628
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
23629
+GLIB_CONFIG = 
 
23630
+GLIB_GENMARSHAL = glib-genmarshal
 
23631
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
23632
+GLIB_MKENUMS = glib-mkenums
 
23633
+GOBJECT_QUERY = gobject-query
 
23634
+HAVE_GNUTLS_FALSE = #
 
23635
+HAVE_GNUTLS_TRUE = 
 
23636
+HAVE_PERL_FALSE = #
 
23637
+HAVE_PERL_TRUE = 
 
23638
+HAVE_STATIC_PERL_FALSE = #
 
23639
+HAVE_STATIC_PERL_TRUE = 
 
23640
+INSTALL_DATA = ${INSTALL} -m 644
 
23641
+INSTALL_PROGRAM = ${INSTALL}
 
23642
+INSTALL_SCRIPT = ${INSTALL}
 
23643
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
23644
+LDFLAGS = 
 
23645
+LIBGNUTLS_CFLAGS = -I/usr/include
 
23646
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
23647
+LIBGNUTLS_LIBS = -lgnutls
 
23648
+LIBOBJS = 
 
23649
+LIBPERL_A = 
 
23650
+LIBS = 
 
23651
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
23652
+LN_S = ln -s
 
23653
+LTLIBOBJS = 
 
23654
+MAINT = 
 
23655
+MAINTAINER_MODE_FALSE = #
 
23656
+MAINTAINER_MODE_TRUE = 
 
23657
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
23658
+NEED_TPARM_FALSE = 
 
23659
+NEED_TPARM_TRUE = #
 
23660
+OBJEXT = o
 
23661
+PACKAGE = irssi
 
23662
+PACKAGE_BUGREPORT = 
 
23663
+PACKAGE_NAME = 
 
23664
+PACKAGE_STRING = 
 
23665
+PACKAGE_TARNAME = 
 
23666
+PACKAGE_VERSION = 
 
23667
+PATH_SEPARATOR = :
 
23668
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
23669
+PERL_EXTRA_OPTS = 
 
23670
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
23671
+PERL_LDFLAGS = 
 
23672
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
23673
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
23674
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
23675
+PERL_MM_PARAMS = 
 
23676
+PERL_STATIC_LIBS = 0
 
23677
+PERL_USE_LIB = 
 
23678
+PKG_CONFIG = /usr/bin/pkg-config
 
23679
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
23680
+RANLIB = ranlib
 
23681
+SET_MAKE = 
 
23682
+SHELL = /bin/sh
 
23683
+SSL_CFLAGS =  
 
23684
+SSL_LIBS = -lssl -lcrypto -ldl  
 
23685
+STRIP = strip
 
23686
+TEXTUI_LIBS = -lncurses
 
23687
+USE_CURSES_FALSE = 
 
23688
+USE_CURSES_TRUE = #
 
23689
+VERSION = 0.8.10-rc5
 
23690
+VERSION_DATE = 20050717
 
23691
+VERSION_TIME = 1223
 
23692
+ac_ct_AR = ar
 
23693
+ac_ct_CC = gcc
 
23694
+ac_ct_CXX = g++
 
23695
+ac_ct_F77 = 
 
23696
+ac_ct_RANLIB = ranlib
 
23697
+ac_ct_STRIP = strip
 
23698
+ac_pt_PKG_CONFIG = 
 
23699
+am__fastdepCC_FALSE = #
 
23700
+am__fastdepCC_TRUE = 
 
23701
+am__fastdepCXX_FALSE = #
 
23702
+am__fastdepCXX_TRUE = 
 
23703
+am__include = include
 
23704
+am__leading_dot = .
 
23705
+am__quote = 
 
23706
+am__tar = ${AMTAR} chof - "$$tardir"
 
23707
+am__untar = ${AMTAR} xf -
 
23708
+bindir = ${exec_prefix}/bin
 
23709
+build = i686-pc-linux-gnu
 
23710
+build_alias = 
 
23711
+build_cpu = i686
 
23712
+build_os = linux-gnu
 
23713
+build_vendor = pc
 
23714
+datadir = ${prefix}/share
 
23715
+exec_prefix = ${prefix}
 
23716
+host = i686-pc-linux-gnu
 
23717
+host_alias = 
 
23718
+host_cpu = i686
 
23719
+host_os = linux-gnu
 
23720
+host_vendor = pc
 
23721
+includedir = ${prefix}/include
 
23722
+infodir = ${prefix}/info
 
23723
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
23724
+irc_MODULES = dcc flood notifylist
 
23725
+libdir = ${exec_prefix}/lib
 
23726
+libexecdir = ${exec_prefix}/libexec
 
23727
+localstatedir = ${prefix}/var
 
23728
+mandir = ${prefix}/man
 
23729
+mkdir_p = mkdir -p --
 
23730
+oldincludedir = /usr/include
 
23731
+perl_module_fe_lib = 
 
23732
+perl_module_lib = 
 
23733
+perl_static_fe_lib = libfe_perl_static.la
 
23734
+perl_static_lib = libperl_core_static.la
 
23735
+perlpath = /usr/bin/perl
 
23736
+prefix = /usr/local
 
23737
+program_transform_name = s,x,x,
 
23738
+sbindir = ${exec_prefix}/sbin
 
23739
+sedpath = /bin/sed
 
23740
+sharedstatedir = ${prefix}/com
 
23741
+sysconfdir = ${prefix}/etc
 
23742
+target_alias = 
 
23743
+moduledir = $(libdir)/irssi/modules
 
23744
+module_LTLIBRARIES = libirc_proxy.la
 
23745
+INCLUDES = \
 
23746
+       -I$(top_srcdir)/src \
 
23747
+       -I$(top_srcdir)/src/core/ \
 
23748
+       -I$(top_srcdir)/src/irc/core/ \
 
23749
+       $(GLIB_CFLAGS)
 
23750
+
 
23751
+libirc_proxy_la_LDFLAGS = -module
 
23752
+libirc_proxy_la_DEPENDENCIES = libirc_proxy.a
 
23753
+libirc_proxy_la_SOURCES = \
 
23754
+       proxy.c \
 
23755
+       dump.c \
 
23756
+       listen.c
 
23757
+
 
23758
+noinst_HEADERS = \
 
23759
+       module.h
 
23760
+
 
23761
+all: all-am
 
23762
+
 
23763
+.SUFFIXES:
 
23764
+.SUFFIXES: .c .lo .o .obj
 
23765
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
23766
+       @for dep in $?; do \
 
23767
+         case '$(am__configure_deps)' in \
 
23768
+           *$$dep*) \
 
23769
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
23770
+               && exit 0; \
 
23771
+             exit 1;; \
 
23772
+         esac; \
 
23773
+       done; \
 
23774
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/irc/proxy/Makefile'; \
 
23775
+       cd $(top_srcdir) && \
 
23776
+         $(AUTOMAKE) --gnu  src/irc/proxy/Makefile
 
23777
+.PRECIOUS: Makefile
 
23778
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
23779
+       @case '$?' in \
 
23780
+         *config.status*) \
 
23781
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
23782
+         *) \
 
23783
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
23784
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
23785
+       esac;
 
23786
+
 
23787
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
23788
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
23789
+
 
23790
+$(top_srcdir)/configure:  $(am__configure_deps)
 
23791
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
23792
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
23793
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
23794
+install-moduleLTLIBRARIES: $(module_LTLIBRARIES)
 
23795
+       @$(NORMAL_INSTALL)
 
23796
+       test -z "$(moduledir)" || $(mkdir_p) "$(DESTDIR)$(moduledir)"
 
23797
+       @list='$(module_LTLIBRARIES)'; for p in $$list; do \
 
23798
+         if test -f $$p; then \
 
23799
+           f=$(am__strip_dir) \
 
23800
+           echo " $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(moduledir)/$$f'"; \
 
23801
+           $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(moduledir)/$$f"; \
 
23802
+         else :; fi; \
 
23803
+       done
 
23804
+
 
23805
+uninstall-moduleLTLIBRARIES:
 
23806
+       @$(NORMAL_UNINSTALL)
 
23807
+       @set -x; list='$(module_LTLIBRARIES)'; for p in $$list; do \
 
23808
+         p=$(am__strip_dir) \
 
23809
+         echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$p'"; \
 
23810
+         $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$p"; \
 
23811
+       done
 
23812
+
 
23813
+clean-moduleLTLIBRARIES:
 
23814
+       -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES)
 
23815
+       @list='$(module_LTLIBRARIES)'; for p in $$list; do \
 
23816
+         dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 
23817
+         test "$$dir" != "$$p" || dir=.; \
 
23818
+         echo "rm -f \"$${dir}/so_locations\""; \
 
23819
+         rm -f "$${dir}/so_locations"; \
 
23820
+       done
 
23821
+libirc_proxy.la: $(libirc_proxy_la_OBJECTS) $(libirc_proxy_la_DEPENDENCIES) 
 
23822
+       $(LINK) -rpath $(moduledir) $(libirc_proxy_la_LDFLAGS) $(libirc_proxy_la_OBJECTS) $(libirc_proxy_la_LIBADD) $(LIBS)
 
23823
+
 
23824
+mostlyclean-compile:
 
23825
+       -rm -f *.$(OBJEXT)
 
23826
+
 
23827
+distclean-compile:
 
23828
+       -rm -f *.tab.c
 
23829
+
 
23830
+include ./$(DEPDIR)/dump.Plo
 
23831
+include ./$(DEPDIR)/listen.Plo
 
23832
+include ./$(DEPDIR)/proxy.Plo
 
23833
+
 
23834
+.c.o:
 
23835
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
23836
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
23837
+#      source='$<' object='$@' libtool=no \
 
23838
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
23839
+#      $(COMPILE) -c $<
 
23840
+
 
23841
+.c.obj:
 
23842
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
23843
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
23844
+#      source='$<' object='$@' libtool=no \
 
23845
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
23846
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
23847
+
 
23848
+.c.lo:
 
23849
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
23850
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
23851
+#      source='$<' object='$@' libtool=yes \
 
23852
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
23853
+#      $(LTCOMPILE) -c -o $@ $<
 
23854
+
 
23855
+mostlyclean-libtool:
 
23856
+       -rm -f *.lo
 
23857
+
 
23858
+clean-libtool:
 
23859
+       -rm -rf .libs _libs
 
23860
+
 
23861
+distclean-libtool:
 
23862
+       -rm -f libtool
 
23863
+uninstall-info-am:
 
23864
+
 
23865
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
23866
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
23867
+       unique=`for i in $$list; do \
 
23868
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
23869
+         done | \
 
23870
+         $(AWK) '    { files[$$0] = 1; } \
 
23871
+              END { for (i in files) print i; }'`; \
 
23872
+       mkid -fID $$unique
 
23873
+tags: TAGS
 
23874
+
 
23875
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
23876
+               $(TAGS_FILES) $(LISP)
 
23877
+       tags=; \
 
23878
+       here=`pwd`; \
 
23879
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
23880
+       unique=`for i in $$list; do \
 
23881
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
23882
+         done | \
 
23883
+         $(AWK) '    { files[$$0] = 1; } \
 
23884
+              END { for (i in files) print i; }'`; \
 
23885
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
23886
+         test -n "$$unique" || unique=$$empty_fix; \
 
23887
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
23888
+           $$tags $$unique; \
 
23889
+       fi
 
23890
+ctags: CTAGS
 
23891
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
23892
+               $(TAGS_FILES) $(LISP)
 
23893
+       tags=; \
 
23894
+       here=`pwd`; \
 
23895
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
23896
+       unique=`for i in $$list; do \
 
23897
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
23898
+         done | \
 
23899
+         $(AWK) '    { files[$$0] = 1; } \
 
23900
+              END { for (i in files) print i; }'`; \
 
23901
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
23902
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
23903
+            $$tags $$unique
 
23904
+
 
23905
+GTAGS:
 
23906
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
23907
+         && cd $(top_srcdir) \
 
23908
+         && gtags -i $(GTAGS_ARGS) $$here
 
23909
+
 
23910
+distclean-tags:
 
23911
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
23912
+
 
23913
+distdir: $(DISTFILES)
 
23914
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
23915
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
23916
+       list='$(DISTFILES)'; for file in $$list; do \
 
23917
+         case $$file in \
 
23918
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
23919
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
23920
+         esac; \
 
23921
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
23922
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
23923
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
23924
+           dir="/$$dir"; \
 
23925
+           $(mkdir_p) "$(distdir)$$dir"; \
 
23926
+         else \
 
23927
+           dir=''; \
 
23928
+         fi; \
 
23929
+         if test -d $$d/$$file; then \
 
23930
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
23931
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
23932
+           fi; \
 
23933
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
23934
+         else \
 
23935
+           test -f $(distdir)/$$file \
 
23936
+           || cp -p $$d/$$file $(distdir)/$$file \
 
23937
+           || exit 1; \
 
23938
+         fi; \
 
23939
+       done
 
23940
+check-am: all-am
 
23941
+check: check-am
 
23942
+all-am: Makefile $(LTLIBRARIES) $(HEADERS)
 
23943
+installdirs:
 
23944
+       for dir in "$(DESTDIR)$(moduledir)"; do \
 
23945
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
23946
+       done
 
23947
+install: install-am
 
23948
+install-exec: install-exec-am
 
23949
+install-data: install-data-am
 
23950
+uninstall: uninstall-am
 
23951
+
 
23952
+install-am: all-am
 
23953
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
23954
+
 
23955
+installcheck: installcheck-am
 
23956
+install-strip:
 
23957
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
23958
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
23959
+         `test -z '$(STRIP)' || \
 
23960
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
23961
+mostlyclean-generic:
 
23962
+
 
23963
+distclean-generic:
 
23964
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
23965
+
 
23966
+maintainer-clean-generic:
 
23967
+       @echo "This command is intended for maintainers to use"
 
23968
+       @echo "it deletes files that may require special tools to rebuild."
 
23969
+clean: clean-am
 
23970
+
 
23971
+clean-am: clean-generic clean-libtool clean-moduleLTLIBRARIES \
 
23972
+       mostlyclean-am
 
23973
+
 
23974
+distclean: distclean-am
 
23975
+       -rm -rf ./$(DEPDIR)
 
23976
+       -rm -f Makefile
 
23977
+distclean-am: clean-am distclean-compile distclean-generic \
 
23978
+       distclean-libtool distclean-tags
 
23979
+
 
23980
+dvi: dvi-am
 
23981
+
 
23982
+dvi-am:
 
23983
+
 
23984
+html: html-am
 
23985
+
 
23986
+info: info-am
 
23987
+
 
23988
+info-am:
 
23989
+
 
23990
+install-data-am: install-moduleLTLIBRARIES
 
23991
+
 
23992
+install-exec-am:
 
23993
+
 
23994
+install-info: install-info-am
 
23995
+
 
23996
+install-man:
 
23997
+
 
23998
+installcheck-am:
 
23999
+
 
24000
+maintainer-clean: maintainer-clean-am
 
24001
+       -rm -rf ./$(DEPDIR)
 
24002
+       -rm -f Makefile
 
24003
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
24004
+
 
24005
+mostlyclean: mostlyclean-am
 
24006
+
 
24007
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
24008
+       mostlyclean-libtool
 
24009
+
 
24010
+pdf: pdf-am
 
24011
+
 
24012
+pdf-am:
 
24013
+
 
24014
+ps: ps-am
 
24015
+
 
24016
+ps-am:
 
24017
+
 
24018
+uninstall-am: uninstall-info-am uninstall-moduleLTLIBRARIES
 
24019
+
 
24020
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
24021
+       clean-libtool clean-moduleLTLIBRARIES ctags distclean \
 
24022
+       distclean-compile distclean-generic distclean-libtool \
 
24023
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
24024
+       install install-am install-data install-data-am install-exec \
 
24025
+       install-exec-am install-info install-info-am install-man \
 
24026
+       install-moduleLTLIBRARIES install-strip installcheck \
 
24027
+       installcheck-am installdirs maintainer-clean \
 
24028
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
24029
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
24030
+       tags uninstall uninstall-am uninstall-info-am \
 
24031
+       uninstall-moduleLTLIBRARIES
 
24032
+
 
24033
+
 
24034
+libirc_proxy.a:
 
24035
+       rm -f libirc_proxy.a
 
24036
+       $(LN_S) .libs/libirc_proxy.a libirc_proxy.a
 
24037
+
 
24038
+clean-generic:
 
24039
+       rm -f libirc_proxy.a
 
24040
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
24041
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
24042
+.NOEXPORT:
 
24043
diff -urNad --exclude=CVS --exclude=.svn ./src/irc/proxy/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/Makefile.in
 
24044
--- ./src/irc/proxy/Makefile.in 2005-07-17 16:30:37.000000000 +0300
 
24045
+++ /tmp/dpep-work.mDzhRz/irssi/src/irc/proxy/Makefile.in       2005-07-17 16:48:13.000000000 +0300
 
24046
@@ -127,6 +127,8 @@
 
24047
 GLIB_LIBS = @GLIB_LIBS@
 
24048
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
24049
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
24050
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
24051
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
24052
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
24053
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
24054
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
24055
@@ -136,6 +138,9 @@
 
24056
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
24057
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
24058
 LDFLAGS = @LDFLAGS@
 
24059
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
24060
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
24061
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
24062
 LIBOBJS = @LIBOBJS@
 
24063
 LIBPERL_A = @LIBPERL_A@
 
24064
 LIBS = @LIBS@
 
24065
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-config/.deps/get.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-config/.deps/get.Po
 
24066
--- ./src/lib-config/.deps/get.Po       1970-01-01 02:00:00.000000000 +0200
 
24067
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-config/.deps/get.Po     2005-07-17 16:48:42.000000000 +0300
 
24068
@@ -0,0 +1 @@
 
24069
+# dummy
 
24070
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-config/.deps/parse.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-config/.deps/parse.Po
 
24071
--- ./src/lib-config/.deps/parse.Po     1970-01-01 02:00:00.000000000 +0200
 
24072
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-config/.deps/parse.Po   2005-07-17 16:48:42.000000000 +0300
 
24073
@@ -0,0 +1 @@
 
24074
+# dummy
 
24075
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-config/.deps/set.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-config/.deps/set.Po
 
24076
--- ./src/lib-config/.deps/set.Po       1970-01-01 02:00:00.000000000 +0200
 
24077
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-config/.deps/set.Po     2005-07-17 16:48:42.000000000 +0300
 
24078
@@ -0,0 +1 @@
 
24079
+# dummy
 
24080
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-config/.deps/write.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-config/.deps/write.Po
 
24081
--- ./src/lib-config/.deps/write.Po     1970-01-01 02:00:00.000000000 +0200
 
24082
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-config/.deps/write.Po   2005-07-17 16:48:42.000000000 +0300
 
24083
@@ -0,0 +1 @@
 
24084
+# dummy
 
24085
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-config/Makefile /tmp/dpep-work.mDzhRz/irssi/src/lib-config/Makefile
 
24086
--- ./src/lib-config/Makefile   1970-01-01 02:00:00.000000000 +0200
 
24087
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-config/Makefile 2005-07-17 16:48:39.000000000 +0300
 
24088
@@ -0,0 +1,530 @@
 
24089
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
24090
+# src/lib-config/Makefile.  Generated from Makefile.in by configure.
 
24091
+
 
24092
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
24093
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
24094
+# This Makefile.in is free software; the Free Software Foundation
 
24095
+# gives unlimited permission to copy and/or distribute it,
 
24096
+# with or without modifications, as long as this notice is preserved.
 
24097
+
 
24098
+# This program is distributed in the hope that it will be useful,
 
24099
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
24100
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
24101
+# PARTICULAR PURPOSE.
 
24102
+
 
24103
+
 
24104
+
 
24105
+
 
24106
+srcdir = .
 
24107
+top_srcdir = ../..
 
24108
+
 
24109
+pkgdatadir = $(datadir)/irssi
 
24110
+pkglibdir = $(libdir)/irssi
 
24111
+pkgincludedir = $(includedir)/irssi
 
24112
+top_builddir = ../..
 
24113
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
24114
+INSTALL = /usr/bin/install -c
 
24115
+install_sh_DATA = $(install_sh) -c -m 644
 
24116
+install_sh_PROGRAM = $(install_sh) -c
 
24117
+install_sh_SCRIPT = $(install_sh) -c
 
24118
+INSTALL_HEADER = $(INSTALL_DATA)
 
24119
+transform = $(program_transform_name)
 
24120
+NORMAL_INSTALL = :
 
24121
+PRE_INSTALL = :
 
24122
+POST_INSTALL = :
 
24123
+NORMAL_UNINSTALL = :
 
24124
+PRE_UNINSTALL = :
 
24125
+POST_UNINSTALL = :
 
24126
+build_triplet = i686-pc-linux-gnu
 
24127
+host_triplet = i686-pc-linux-gnu
 
24128
+subdir = src/lib-config
 
24129
+DIST_COMMON = $(pkginc_lib_config_HEADERS) $(srcdir)/Makefile.am \
 
24130
+       $(srcdir)/Makefile.in
 
24131
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
24132
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
24133
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
24134
+       $(top_srcdir)/configure.in
 
24135
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
24136
+       $(ACLOCAL_M4)
 
24137
+mkinstalldirs = $(install_sh) -d
 
24138
+CONFIG_HEADER = $(top_builddir)/config.h
 
24139
+CONFIG_CLEAN_FILES =
 
24140
+LIBRARIES = $(noinst_LIBRARIES)
 
24141
+ARFLAGS = cru
 
24142
+libirssi_config_a_AR = $(AR) $(ARFLAGS)
 
24143
+libirssi_config_a_LIBADD =
 
24144
+am_libirssi_config_a_OBJECTS = get.$(OBJEXT) set.$(OBJEXT) \
 
24145
+       parse.$(OBJEXT) write.$(OBJEXT)
 
24146
+libirssi_config_a_OBJECTS = $(am_libirssi_config_a_OBJECTS)
 
24147
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
24148
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
24149
+am__depfiles_maybe = depfiles
 
24150
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
24151
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
24152
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
24153
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
24154
+       $(AM_CFLAGS) $(CFLAGS)
 
24155
+CCLD = $(CC)
 
24156
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
24157
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
24158
+SOURCES = $(libirssi_config_a_SOURCES)
 
24159
+DIST_SOURCES = $(libirssi_config_a_SOURCES)
 
24160
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
24161
+am__vpath_adj = case $$p in \
 
24162
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
24163
+    *) f=$$p;; \
 
24164
+  esac;
 
24165
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
24166
+am__installdirs = "$(DESTDIR)$(pkginc_lib_configdir)"
 
24167
+pkginc_lib_configHEADERS_INSTALL = $(INSTALL_HEADER)
 
24168
+HEADERS = $(pkginc_lib_config_HEADERS)
 
24169
+ETAGS = etags
 
24170
+CTAGS = ctags
 
24171
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
24172
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
24173
+AMDEP_FALSE = #
 
24174
+AMDEP_TRUE = 
 
24175
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
24176
+AR = ar
 
24177
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
24178
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
24179
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
24180
+AWK = gawk
 
24181
+BUILD_IRSSIBOT_FALSE = 
 
24182
+BUILD_IRSSIBOT_TRUE = #
 
24183
+BUILD_IRSSIPROXY_FALSE = 
 
24184
+BUILD_IRSSIPROXY_TRUE = #
 
24185
+BUILD_PLUGINS_FALSE = 
 
24186
+BUILD_PLUGINS_TRUE = #
 
24187
+BUILD_TEXTUI_FALSE = #
 
24188
+BUILD_TEXTUI_TRUE = 
 
24189
+CC = gcc
 
24190
+CCDEPMODE = depmode=gcc3
 
24191
+CFLAGS = -g -O2 -Wall  
 
24192
+CHAT_MODULES = irc
 
24193
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
24194
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
24195
+CPP = gcc -E
 
24196
+CPPFLAGS = 
 
24197
+CURSES_INCLUDEDIR = 
 
24198
+CURSES_LIBS = -lncurses
 
24199
+CXX = g++
 
24200
+CXXCPP = g++ -E
 
24201
+CXXDEPMODE = depmode=gcc3
 
24202
+CXXFLAGS = -g -O2
 
24203
+CYGPATH_W = echo
 
24204
+DEFS = -DHAVE_CONFIG_H
 
24205
+DEPDIR = .deps
 
24206
+DYNALOADER_A = 
 
24207
+ECHO = echo
 
24208
+ECHO_C = 
 
24209
+ECHO_N = -n
 
24210
+ECHO_T = 
 
24211
+EGREP = grep -E
 
24212
+EXEEXT = 
 
24213
+F77 = 
 
24214
+FFLAGS = 
 
24215
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
24216
+GLIB_CONFIG = 
 
24217
+GLIB_GENMARSHAL = glib-genmarshal
 
24218
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
24219
+GLIB_MKENUMS = glib-mkenums
 
24220
+GOBJECT_QUERY = gobject-query
 
24221
+HAVE_GNUTLS_FALSE = #
 
24222
+HAVE_GNUTLS_TRUE = 
 
24223
+HAVE_PERL_FALSE = #
 
24224
+HAVE_PERL_TRUE = 
 
24225
+HAVE_STATIC_PERL_FALSE = #
 
24226
+HAVE_STATIC_PERL_TRUE = 
 
24227
+INSTALL_DATA = ${INSTALL} -m 644
 
24228
+INSTALL_PROGRAM = ${INSTALL}
 
24229
+INSTALL_SCRIPT = ${INSTALL}
 
24230
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
24231
+LDFLAGS = 
 
24232
+LIBGNUTLS_CFLAGS = -I/usr/include
 
24233
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
24234
+LIBGNUTLS_LIBS = -lgnutls
 
24235
+LIBOBJS = 
 
24236
+LIBPERL_A = 
 
24237
+LIBS = 
 
24238
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
24239
+LN_S = ln -s
 
24240
+LTLIBOBJS = 
 
24241
+MAINT = 
 
24242
+MAINTAINER_MODE_FALSE = #
 
24243
+MAINTAINER_MODE_TRUE = 
 
24244
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
24245
+NEED_TPARM_FALSE = 
 
24246
+NEED_TPARM_TRUE = #
 
24247
+OBJEXT = o
 
24248
+PACKAGE = irssi
 
24249
+PACKAGE_BUGREPORT = 
 
24250
+PACKAGE_NAME = 
 
24251
+PACKAGE_STRING = 
 
24252
+PACKAGE_TARNAME = 
 
24253
+PACKAGE_VERSION = 
 
24254
+PATH_SEPARATOR = :
 
24255
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
24256
+PERL_EXTRA_OPTS = 
 
24257
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
24258
+PERL_LDFLAGS = 
 
24259
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
24260
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
24261
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
24262
+PERL_MM_PARAMS = 
 
24263
+PERL_STATIC_LIBS = 0
 
24264
+PERL_USE_LIB = 
 
24265
+PKG_CONFIG = /usr/bin/pkg-config
 
24266
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
24267
+RANLIB = ranlib
 
24268
+SET_MAKE = 
 
24269
+SHELL = /bin/sh
 
24270
+SSL_CFLAGS =  
 
24271
+SSL_LIBS = -lssl -lcrypto -ldl  
 
24272
+STRIP = strip
 
24273
+TEXTUI_LIBS = -lncurses
 
24274
+USE_CURSES_FALSE = 
 
24275
+USE_CURSES_TRUE = #
 
24276
+VERSION = 0.8.10-rc5
 
24277
+VERSION_DATE = 20050717
 
24278
+VERSION_TIME = 1223
 
24279
+ac_ct_AR = ar
 
24280
+ac_ct_CC = gcc
 
24281
+ac_ct_CXX = g++
 
24282
+ac_ct_F77 = 
 
24283
+ac_ct_RANLIB = ranlib
 
24284
+ac_ct_STRIP = strip
 
24285
+ac_pt_PKG_CONFIG = 
 
24286
+am__fastdepCC_FALSE = #
 
24287
+am__fastdepCC_TRUE = 
 
24288
+am__fastdepCXX_FALSE = #
 
24289
+am__fastdepCXX_TRUE = 
 
24290
+am__include = include
 
24291
+am__leading_dot = .
 
24292
+am__quote = 
 
24293
+am__tar = ${AMTAR} chof - "$$tardir"
 
24294
+am__untar = ${AMTAR} xf -
 
24295
+bindir = ${exec_prefix}/bin
 
24296
+build = i686-pc-linux-gnu
 
24297
+build_alias = 
 
24298
+build_cpu = i686
 
24299
+build_os = linux-gnu
 
24300
+build_vendor = pc
 
24301
+datadir = ${prefix}/share
 
24302
+exec_prefix = ${prefix}
 
24303
+host = i686-pc-linux-gnu
 
24304
+host_alias = 
 
24305
+host_cpu = i686
 
24306
+host_os = linux-gnu
 
24307
+host_vendor = pc
 
24308
+includedir = ${prefix}/include
 
24309
+infodir = ${prefix}/info
 
24310
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
24311
+irc_MODULES = dcc flood notifylist
 
24312
+libdir = ${exec_prefix}/lib
 
24313
+libexecdir = ${exec_prefix}/libexec
 
24314
+localstatedir = ${prefix}/var
 
24315
+mandir = ${prefix}/man
 
24316
+mkdir_p = mkdir -p --
 
24317
+oldincludedir = /usr/include
 
24318
+perl_module_fe_lib = 
 
24319
+perl_module_lib = 
 
24320
+perl_static_fe_lib = libfe_perl_static.la
 
24321
+perl_static_lib = libperl_core_static.la
 
24322
+perlpath = /usr/bin/perl
 
24323
+prefix = /usr/local
 
24324
+program_transform_name = s,x,x,
 
24325
+sbindir = ${exec_prefix}/sbin
 
24326
+sedpath = /bin/sed
 
24327
+sharedstatedir = ${prefix}/com
 
24328
+sysconfdir = ${prefix}/etc
 
24329
+target_alias = 
 
24330
+noinst_LIBRARIES = libirssi_config.a
 
24331
+INCLUDES = \
 
24332
+       -I$(top_srcdir)/src \
 
24333
+       $(GLIB_CFLAGS)
 
24334
+
 
24335
+libirssi_config_a_SOURCES = \
 
24336
+       get.c \
 
24337
+       set.c \
 
24338
+       parse.c \
 
24339
+       write.c
 
24340
+
 
24341
+pkginc_lib_configdir = $(pkgincludedir)/src/lib-config
 
24342
+pkginc_lib_config_HEADERS = \
 
24343
+       iconfig.h \
 
24344
+       module.h
 
24345
+
 
24346
+all: all-am
 
24347
+
 
24348
+.SUFFIXES:
 
24349
+.SUFFIXES: .c .lo .o .obj
 
24350
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
24351
+       @for dep in $?; do \
 
24352
+         case '$(am__configure_deps)' in \
 
24353
+           *$$dep*) \
 
24354
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
24355
+               && exit 0; \
 
24356
+             exit 1;; \
 
24357
+         esac; \
 
24358
+       done; \
 
24359
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib-config/Makefile'; \
 
24360
+       cd $(top_srcdir) && \
 
24361
+         $(AUTOMAKE) --gnu  src/lib-config/Makefile
 
24362
+.PRECIOUS: Makefile
 
24363
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
24364
+       @case '$?' in \
 
24365
+         *config.status*) \
 
24366
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
24367
+         *) \
 
24368
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
24369
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
24370
+       esac;
 
24371
+
 
24372
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
24373
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
24374
+
 
24375
+$(top_srcdir)/configure:  $(am__configure_deps)
 
24376
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
24377
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
24378
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
24379
+
 
24380
+clean-noinstLIBRARIES:
 
24381
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
24382
+libirssi_config.a: $(libirssi_config_a_OBJECTS) $(libirssi_config_a_DEPENDENCIES) 
 
24383
+       -rm -f libirssi_config.a
 
24384
+       $(libirssi_config_a_AR) libirssi_config.a $(libirssi_config_a_OBJECTS) $(libirssi_config_a_LIBADD)
 
24385
+       $(RANLIB) libirssi_config.a
 
24386
+
 
24387
+mostlyclean-compile:
 
24388
+       -rm -f *.$(OBJEXT)
 
24389
+
 
24390
+distclean-compile:
 
24391
+       -rm -f *.tab.c
 
24392
+
 
24393
+include ./$(DEPDIR)/get.Po
 
24394
+include ./$(DEPDIR)/parse.Po
 
24395
+include ./$(DEPDIR)/set.Po
 
24396
+include ./$(DEPDIR)/write.Po
 
24397
+
 
24398
+.c.o:
 
24399
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
24400
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
24401
+#      source='$<' object='$@' libtool=no \
 
24402
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
24403
+#      $(COMPILE) -c $<
 
24404
+
 
24405
+.c.obj:
 
24406
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
24407
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
24408
+#      source='$<' object='$@' libtool=no \
 
24409
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
24410
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
24411
+
 
24412
+.c.lo:
 
24413
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
24414
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
24415
+#      source='$<' object='$@' libtool=yes \
 
24416
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
24417
+#      $(LTCOMPILE) -c -o $@ $<
 
24418
+
 
24419
+mostlyclean-libtool:
 
24420
+       -rm -f *.lo
 
24421
+
 
24422
+clean-libtool:
 
24423
+       -rm -rf .libs _libs
 
24424
+
 
24425
+distclean-libtool:
 
24426
+       -rm -f libtool
 
24427
+uninstall-info-am:
 
24428
+install-pkginc_lib_configHEADERS: $(pkginc_lib_config_HEADERS)
 
24429
+       @$(NORMAL_INSTALL)
 
24430
+       test -z "$(pkginc_lib_configdir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_lib_configdir)"
 
24431
+       @list='$(pkginc_lib_config_HEADERS)'; for p in $$list; do \
 
24432
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
24433
+         f=$(am__strip_dir) \
 
24434
+         echo " $(pkginc_lib_configHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_lib_configdir)/$$f'"; \
 
24435
+         $(pkginc_lib_configHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_lib_configdir)/$$f"; \
 
24436
+       done
 
24437
+
 
24438
+uninstall-pkginc_lib_configHEADERS:
 
24439
+       @$(NORMAL_UNINSTALL)
 
24440
+       @list='$(pkginc_lib_config_HEADERS)'; for p in $$list; do \
 
24441
+         f=$(am__strip_dir) \
 
24442
+         echo " rm -f '$(DESTDIR)$(pkginc_lib_configdir)/$$f'"; \
 
24443
+         rm -f "$(DESTDIR)$(pkginc_lib_configdir)/$$f"; \
 
24444
+       done
 
24445
+
 
24446
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
24447
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
24448
+       unique=`for i in $$list; do \
 
24449
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
24450
+         done | \
 
24451
+         $(AWK) '    { files[$$0] = 1; } \
 
24452
+              END { for (i in files) print i; }'`; \
 
24453
+       mkid -fID $$unique
 
24454
+tags: TAGS
 
24455
+
 
24456
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
24457
+               $(TAGS_FILES) $(LISP)
 
24458
+       tags=; \
 
24459
+       here=`pwd`; \
 
24460
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
24461
+       unique=`for i in $$list; do \
 
24462
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
24463
+         done | \
 
24464
+         $(AWK) '    { files[$$0] = 1; } \
 
24465
+              END { for (i in files) print i; }'`; \
 
24466
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
24467
+         test -n "$$unique" || unique=$$empty_fix; \
 
24468
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
24469
+           $$tags $$unique; \
 
24470
+       fi
 
24471
+ctags: CTAGS
 
24472
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
24473
+               $(TAGS_FILES) $(LISP)
 
24474
+       tags=; \
 
24475
+       here=`pwd`; \
 
24476
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
24477
+       unique=`for i in $$list; do \
 
24478
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
24479
+         done | \
 
24480
+         $(AWK) '    { files[$$0] = 1; } \
 
24481
+              END { for (i in files) print i; }'`; \
 
24482
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
24483
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
24484
+            $$tags $$unique
 
24485
+
 
24486
+GTAGS:
 
24487
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
24488
+         && cd $(top_srcdir) \
 
24489
+         && gtags -i $(GTAGS_ARGS) $$here
 
24490
+
 
24491
+distclean-tags:
 
24492
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
24493
+
 
24494
+distdir: $(DISTFILES)
 
24495
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
24496
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
24497
+       list='$(DISTFILES)'; for file in $$list; do \
 
24498
+         case $$file in \
 
24499
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
24500
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
24501
+         esac; \
 
24502
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
24503
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
24504
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
24505
+           dir="/$$dir"; \
 
24506
+           $(mkdir_p) "$(distdir)$$dir"; \
 
24507
+         else \
 
24508
+           dir=''; \
 
24509
+         fi; \
 
24510
+         if test -d $$d/$$file; then \
 
24511
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
24512
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
24513
+           fi; \
 
24514
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
24515
+         else \
 
24516
+           test -f $(distdir)/$$file \
 
24517
+           || cp -p $$d/$$file $(distdir)/$$file \
 
24518
+           || exit 1; \
 
24519
+         fi; \
 
24520
+       done
 
24521
+check-am: all-am
 
24522
+check: check-am
 
24523
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
24524
+installdirs:
 
24525
+       for dir in "$(DESTDIR)$(pkginc_lib_configdir)"; do \
 
24526
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
24527
+       done
 
24528
+install: install-am
 
24529
+install-exec: install-exec-am
 
24530
+install-data: install-data-am
 
24531
+uninstall: uninstall-am
 
24532
+
 
24533
+install-am: all-am
 
24534
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
24535
+
 
24536
+installcheck: installcheck-am
 
24537
+install-strip:
 
24538
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
24539
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
24540
+         `test -z '$(STRIP)' || \
 
24541
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
24542
+mostlyclean-generic:
 
24543
+
 
24544
+clean-generic:
 
24545
+
 
24546
+distclean-generic:
 
24547
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
24548
+
 
24549
+maintainer-clean-generic:
 
24550
+       @echo "This command is intended for maintainers to use"
 
24551
+       @echo "it deletes files that may require special tools to rebuild."
 
24552
+clean: clean-am
 
24553
+
 
24554
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
24555
+       mostlyclean-am
 
24556
+
 
24557
+distclean: distclean-am
 
24558
+       -rm -rf ./$(DEPDIR)
 
24559
+       -rm -f Makefile
 
24560
+distclean-am: clean-am distclean-compile distclean-generic \
 
24561
+       distclean-libtool distclean-tags
 
24562
+
 
24563
+dvi: dvi-am
 
24564
+
 
24565
+dvi-am:
 
24566
+
 
24567
+html: html-am
 
24568
+
 
24569
+info: info-am
 
24570
+
 
24571
+info-am:
 
24572
+
 
24573
+install-data-am: install-pkginc_lib_configHEADERS
 
24574
+
 
24575
+install-exec-am:
 
24576
+
 
24577
+install-info: install-info-am
 
24578
+
 
24579
+install-man:
 
24580
+
 
24581
+installcheck-am:
 
24582
+
 
24583
+maintainer-clean: maintainer-clean-am
 
24584
+       -rm -rf ./$(DEPDIR)
 
24585
+       -rm -f Makefile
 
24586
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
24587
+
 
24588
+mostlyclean: mostlyclean-am
 
24589
+
 
24590
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
24591
+       mostlyclean-libtool
 
24592
+
 
24593
+pdf: pdf-am
 
24594
+
 
24595
+pdf-am:
 
24596
+
 
24597
+ps: ps-am
 
24598
+
 
24599
+ps-am:
 
24600
+
 
24601
+uninstall-am: uninstall-info-am uninstall-pkginc_lib_configHEADERS
 
24602
+
 
24603
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
24604
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
24605
+       distclean-compile distclean-generic distclean-libtool \
 
24606
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
24607
+       install install-am install-data install-data-am install-exec \
 
24608
+       install-exec-am install-info install-info-am install-man \
 
24609
+       install-pkginc_lib_configHEADERS install-strip installcheck \
 
24610
+       installcheck-am installdirs maintainer-clean \
 
24611
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
24612
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
24613
+       tags uninstall uninstall-am uninstall-info-am \
 
24614
+       uninstall-pkginc_lib_configHEADERS
 
24615
+
 
24616
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
24617
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
24618
+.NOEXPORT:
 
24619
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-config/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/lib-config/Makefile.in
 
24620
--- ./src/lib-config/Makefile.in        2005-07-17 16:30:37.000000000 +0300
 
24621
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-config/Makefile.in      2005-07-17 16:48:13.000000000 +0300
 
24622
@@ -130,6 +130,8 @@
 
24623
 GLIB_LIBS = @GLIB_LIBS@
 
24624
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
24625
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
24626
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
24627
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
24628
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
24629
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
24630
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
24631
@@ -139,6 +141,9 @@
 
24632
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
24633
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
24634
 LDFLAGS = @LDFLAGS@
 
24635
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
24636
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
24637
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
24638
 LIBOBJS = @LIBOBJS@
 
24639
 LIBPERL_A = @LIBPERL_A@
 
24640
 LIBS = @LIBS@
 
24641
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-popt/.deps/findme.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/findme.Po
 
24642
--- ./src/lib-popt/.deps/findme.Po      1970-01-01 02:00:00.000000000 +0200
 
24643
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/findme.Po    2005-07-17 16:48:42.000000000 +0300
 
24644
@@ -0,0 +1 @@
 
24645
+# dummy
 
24646
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-popt/.deps/poptconfig.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/poptconfig.Po
 
24647
--- ./src/lib-popt/.deps/poptconfig.Po  1970-01-01 02:00:00.000000000 +0200
 
24648
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/poptconfig.Po        2005-07-17 16:48:42.000000000 +0300
 
24649
@@ -0,0 +1 @@
 
24650
+# dummy
 
24651
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-popt/.deps/popthelp.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/popthelp.Po
 
24652
--- ./src/lib-popt/.deps/popthelp.Po    1970-01-01 02:00:00.000000000 +0200
 
24653
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/popthelp.Po  2005-07-17 16:48:42.000000000 +0300
 
24654
@@ -0,0 +1 @@
 
24655
+# dummy
 
24656
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-popt/.deps/poptparse.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/poptparse.Po
 
24657
--- ./src/lib-popt/.deps/poptparse.Po   1970-01-01 02:00:00.000000000 +0200
 
24658
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/poptparse.Po 2005-07-17 16:48:42.000000000 +0300
 
24659
@@ -0,0 +1 @@
 
24660
+# dummy
 
24661
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-popt/.deps/popt.Po /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/popt.Po
 
24662
--- ./src/lib-popt/.deps/popt.Po        1970-01-01 02:00:00.000000000 +0200
 
24663
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/.deps/popt.Po      2005-07-17 16:48:42.000000000 +0300
 
24664
@@ -0,0 +1 @@
 
24665
+# dummy
 
24666
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-popt/Makefile /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/Makefile
 
24667
--- ./src/lib-popt/Makefile     1970-01-01 02:00:00.000000000 +0200
 
24668
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/Makefile   2005-07-17 16:48:40.000000000 +0300
 
24669
@@ -0,0 +1,527 @@
 
24670
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
24671
+# src/lib-popt/Makefile.  Generated from Makefile.in by configure.
 
24672
+
 
24673
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
24674
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
24675
+# This Makefile.in is free software; the Free Software Foundation
 
24676
+# gives unlimited permission to copy and/or distribute it,
 
24677
+# with or without modifications, as long as this notice is preserved.
 
24678
+
 
24679
+# This program is distributed in the hope that it will be useful,
 
24680
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
24681
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
24682
+# PARTICULAR PURPOSE.
 
24683
+
 
24684
+
 
24685
+
 
24686
+
 
24687
+srcdir = .
 
24688
+top_srcdir = ../..
 
24689
+
 
24690
+pkgdatadir = $(datadir)/irssi
 
24691
+pkglibdir = $(libdir)/irssi
 
24692
+pkgincludedir = $(includedir)/irssi
 
24693
+top_builddir = ../..
 
24694
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
24695
+INSTALL = /usr/bin/install -c
 
24696
+install_sh_DATA = $(install_sh) -c -m 644
 
24697
+install_sh_PROGRAM = $(install_sh) -c
 
24698
+install_sh_SCRIPT = $(install_sh) -c
 
24699
+INSTALL_HEADER = $(INSTALL_DATA)
 
24700
+transform = $(program_transform_name)
 
24701
+NORMAL_INSTALL = :
 
24702
+PRE_INSTALL = :
 
24703
+POST_INSTALL = :
 
24704
+NORMAL_UNINSTALL = :
 
24705
+PRE_UNINSTALL = :
 
24706
+POST_UNINSTALL = :
 
24707
+build_triplet = i686-pc-linux-gnu
 
24708
+host_triplet = i686-pc-linux-gnu
 
24709
+subdir = src/lib-popt
 
24710
+DIST_COMMON = $(pkginc_libpopt_HEADERS) $(srcdir)/Makefile.am \
 
24711
+       $(srcdir)/Makefile.in
 
24712
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
24713
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
24714
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
24715
+       $(top_srcdir)/configure.in
 
24716
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
24717
+       $(ACLOCAL_M4)
 
24718
+mkinstalldirs = $(install_sh) -d
 
24719
+CONFIG_HEADER = $(top_builddir)/config.h
 
24720
+CONFIG_CLEAN_FILES =
 
24721
+LIBRARIES = $(noinst_LIBRARIES)
 
24722
+ARFLAGS = cru
 
24723
+libpopt_a_AR = $(AR) $(ARFLAGS)
 
24724
+libpopt_a_LIBADD =
 
24725
+am_libpopt_a_OBJECTS = findme.$(OBJEXT) popt.$(OBJEXT) \
 
24726
+       poptconfig.$(OBJEXT) popthelp.$(OBJEXT) poptparse.$(OBJEXT)
 
24727
+libpopt_a_OBJECTS = $(am_libpopt_a_OBJECTS)
 
24728
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
24729
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
24730
+am__depfiles_maybe = depfiles
 
24731
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
24732
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
24733
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
24734
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
24735
+       $(AM_CFLAGS) $(CFLAGS)
 
24736
+CCLD = $(CC)
 
24737
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
24738
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
24739
+SOURCES = $(libpopt_a_SOURCES)
 
24740
+DIST_SOURCES = $(libpopt_a_SOURCES)
 
24741
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
24742
+am__vpath_adj = case $$p in \
 
24743
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
24744
+    *) f=$$p;; \
 
24745
+  esac;
 
24746
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
24747
+am__installdirs = "$(DESTDIR)$(pkginc_libpoptdir)"
 
24748
+pkginc_libpoptHEADERS_INSTALL = $(INSTALL_HEADER)
 
24749
+HEADERS = $(pkginc_libpopt_HEADERS)
 
24750
+ETAGS = etags
 
24751
+CTAGS = ctags
 
24752
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
24753
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
24754
+AMDEP_FALSE = #
 
24755
+AMDEP_TRUE = 
 
24756
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
24757
+AR = ar
 
24758
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
24759
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
24760
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
24761
+AWK = gawk
 
24762
+BUILD_IRSSIBOT_FALSE = 
 
24763
+BUILD_IRSSIBOT_TRUE = #
 
24764
+BUILD_IRSSIPROXY_FALSE = 
 
24765
+BUILD_IRSSIPROXY_TRUE = #
 
24766
+BUILD_PLUGINS_FALSE = 
 
24767
+BUILD_PLUGINS_TRUE = #
 
24768
+BUILD_TEXTUI_FALSE = #
 
24769
+BUILD_TEXTUI_TRUE = 
 
24770
+CC = gcc
 
24771
+CCDEPMODE = depmode=gcc3
 
24772
+CFLAGS = -g -O2 -Wall  
 
24773
+CHAT_MODULES = irc
 
24774
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
24775
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
24776
+CPP = gcc -E
 
24777
+CPPFLAGS = 
 
24778
+CURSES_INCLUDEDIR = 
 
24779
+CURSES_LIBS = -lncurses
 
24780
+CXX = g++
 
24781
+CXXCPP = g++ -E
 
24782
+CXXDEPMODE = depmode=gcc3
 
24783
+CXXFLAGS = -g -O2
 
24784
+CYGPATH_W = echo
 
24785
+DEFS = -DHAVE_CONFIG_H
 
24786
+DEPDIR = .deps
 
24787
+DYNALOADER_A = 
 
24788
+ECHO = echo
 
24789
+ECHO_C = 
 
24790
+ECHO_N = -n
 
24791
+ECHO_T = 
 
24792
+EGREP = grep -E
 
24793
+EXEEXT = 
 
24794
+F77 = 
 
24795
+FFLAGS = 
 
24796
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
24797
+GLIB_CONFIG = 
 
24798
+GLIB_GENMARSHAL = glib-genmarshal
 
24799
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
24800
+GLIB_MKENUMS = glib-mkenums
 
24801
+GOBJECT_QUERY = gobject-query
 
24802
+HAVE_GNUTLS_FALSE = #
 
24803
+HAVE_GNUTLS_TRUE = 
 
24804
+HAVE_PERL_FALSE = #
 
24805
+HAVE_PERL_TRUE = 
 
24806
+HAVE_STATIC_PERL_FALSE = #
 
24807
+HAVE_STATIC_PERL_TRUE = 
 
24808
+INSTALL_DATA = ${INSTALL} -m 644
 
24809
+INSTALL_PROGRAM = ${INSTALL}
 
24810
+INSTALL_SCRIPT = ${INSTALL}
 
24811
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
24812
+LDFLAGS = 
 
24813
+LIBGNUTLS_CFLAGS = -I/usr/include
 
24814
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
24815
+LIBGNUTLS_LIBS = -lgnutls
 
24816
+LIBOBJS = 
 
24817
+LIBPERL_A = 
 
24818
+LIBS = 
 
24819
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
24820
+LN_S = ln -s
 
24821
+LTLIBOBJS = 
 
24822
+MAINT = 
 
24823
+MAINTAINER_MODE_FALSE = #
 
24824
+MAINTAINER_MODE_TRUE = 
 
24825
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
24826
+NEED_TPARM_FALSE = 
 
24827
+NEED_TPARM_TRUE = #
 
24828
+OBJEXT = o
 
24829
+PACKAGE = irssi
 
24830
+PACKAGE_BUGREPORT = 
 
24831
+PACKAGE_NAME = 
 
24832
+PACKAGE_STRING = 
 
24833
+PACKAGE_TARNAME = 
 
24834
+PACKAGE_VERSION = 
 
24835
+PATH_SEPARATOR = :
 
24836
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
24837
+PERL_EXTRA_OPTS = 
 
24838
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
24839
+PERL_LDFLAGS = 
 
24840
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
24841
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
24842
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
24843
+PERL_MM_PARAMS = 
 
24844
+PERL_STATIC_LIBS = 0
 
24845
+PERL_USE_LIB = 
 
24846
+PKG_CONFIG = /usr/bin/pkg-config
 
24847
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
24848
+RANLIB = ranlib
 
24849
+SET_MAKE = 
 
24850
+SHELL = /bin/sh
 
24851
+SSL_CFLAGS =  
 
24852
+SSL_LIBS = -lssl -lcrypto -ldl  
 
24853
+STRIP = strip
 
24854
+TEXTUI_LIBS = -lncurses
 
24855
+USE_CURSES_FALSE = 
 
24856
+USE_CURSES_TRUE = #
 
24857
+VERSION = 0.8.10-rc5
 
24858
+VERSION_DATE = 20050717
 
24859
+VERSION_TIME = 1223
 
24860
+ac_ct_AR = ar
 
24861
+ac_ct_CC = gcc
 
24862
+ac_ct_CXX = g++
 
24863
+ac_ct_F77 = 
 
24864
+ac_ct_RANLIB = ranlib
 
24865
+ac_ct_STRIP = strip
 
24866
+ac_pt_PKG_CONFIG = 
 
24867
+am__fastdepCC_FALSE = #
 
24868
+am__fastdepCC_TRUE = 
 
24869
+am__fastdepCXX_FALSE = #
 
24870
+am__fastdepCXX_TRUE = 
 
24871
+am__include = include
 
24872
+am__leading_dot = .
 
24873
+am__quote = 
 
24874
+am__tar = ${AMTAR} chof - "$$tardir"
 
24875
+am__untar = ${AMTAR} xf -
 
24876
+bindir = ${exec_prefix}/bin
 
24877
+build = i686-pc-linux-gnu
 
24878
+build_alias = 
 
24879
+build_cpu = i686
 
24880
+build_os = linux-gnu
 
24881
+build_vendor = pc
 
24882
+datadir = ${prefix}/share
 
24883
+exec_prefix = ${prefix}
 
24884
+host = i686-pc-linux-gnu
 
24885
+host_alias = 
 
24886
+host_cpu = i686
 
24887
+host_os = linux-gnu
 
24888
+host_vendor = pc
 
24889
+includedir = ${prefix}/include
 
24890
+infodir = ${prefix}/info
 
24891
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
24892
+irc_MODULES = dcc flood notifylist
 
24893
+libdir = ${exec_prefix}/lib
 
24894
+libexecdir = ${exec_prefix}/libexec
 
24895
+localstatedir = ${prefix}/var
 
24896
+mandir = ${prefix}/man
 
24897
+mkdir_p = mkdir -p --
 
24898
+oldincludedir = /usr/include
 
24899
+perl_module_fe_lib = 
 
24900
+perl_module_lib = 
 
24901
+perl_static_fe_lib = libfe_perl_static.la
 
24902
+perl_static_lib = libperl_core_static.la
 
24903
+perlpath = /usr/bin/perl
 
24904
+prefix = /usr/local
 
24905
+program_transform_name = s,x,x,
 
24906
+sbindir = ${exec_prefix}/sbin
 
24907
+sedpath = /bin/sed
 
24908
+sharedstatedir = ${prefix}/com
 
24909
+sysconfdir = ${prefix}/etc
 
24910
+target_alias = 
 
24911
+noinst_LIBRARIES = libpopt.a
 
24912
+INCLUDES = \
 
24913
+       -I$(top_srcdir)/src \
 
24914
+       $(GLIB_CFLAGS)
 
24915
+
 
24916
+libpopt_a_SOURCES = \
 
24917
+       findme.c popt.c poptconfig.c popthelp.c poptparse.c
 
24918
+
 
24919
+pkginc_libpoptdir = $(pkgincludedir)/src/lib-popt
 
24920
+pkginc_libpopt_HEADERS = \
 
24921
+       findme.h popt.h poptint.h
 
24922
+
 
24923
+all: all-am
 
24924
+
 
24925
+.SUFFIXES:
 
24926
+.SUFFIXES: .c .lo .o .obj
 
24927
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
24928
+       @for dep in $?; do \
 
24929
+         case '$(am__configure_deps)' in \
 
24930
+           *$$dep*) \
 
24931
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
24932
+               && exit 0; \
 
24933
+             exit 1;; \
 
24934
+         esac; \
 
24935
+       done; \
 
24936
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib-popt/Makefile'; \
 
24937
+       cd $(top_srcdir) && \
 
24938
+         $(AUTOMAKE) --gnu  src/lib-popt/Makefile
 
24939
+.PRECIOUS: Makefile
 
24940
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
24941
+       @case '$?' in \
 
24942
+         *config.status*) \
 
24943
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
24944
+         *) \
 
24945
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
24946
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
24947
+       esac;
 
24948
+
 
24949
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
24950
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
24951
+
 
24952
+$(top_srcdir)/configure:  $(am__configure_deps)
 
24953
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
24954
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
24955
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
24956
+
 
24957
+clean-noinstLIBRARIES:
 
24958
+       -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 
24959
+libpopt.a: $(libpopt_a_OBJECTS) $(libpopt_a_DEPENDENCIES) 
 
24960
+       -rm -f libpopt.a
 
24961
+       $(libpopt_a_AR) libpopt.a $(libpopt_a_OBJECTS) $(libpopt_a_LIBADD)
 
24962
+       $(RANLIB) libpopt.a
 
24963
+
 
24964
+mostlyclean-compile:
 
24965
+       -rm -f *.$(OBJEXT)
 
24966
+
 
24967
+distclean-compile:
 
24968
+       -rm -f *.tab.c
 
24969
+
 
24970
+include ./$(DEPDIR)/findme.Po
 
24971
+include ./$(DEPDIR)/popt.Po
 
24972
+include ./$(DEPDIR)/poptconfig.Po
 
24973
+include ./$(DEPDIR)/popthelp.Po
 
24974
+include ./$(DEPDIR)/poptparse.Po
 
24975
+
 
24976
+.c.o:
 
24977
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
24978
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
24979
+#      source='$<' object='$@' libtool=no \
 
24980
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
24981
+#      $(COMPILE) -c $<
 
24982
+
 
24983
+.c.obj:
 
24984
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
24985
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
24986
+#      source='$<' object='$@' libtool=no \
 
24987
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
24988
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
24989
+
 
24990
+.c.lo:
 
24991
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
24992
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
24993
+#      source='$<' object='$@' libtool=yes \
 
24994
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
24995
+#      $(LTCOMPILE) -c -o $@ $<
 
24996
+
 
24997
+mostlyclean-libtool:
 
24998
+       -rm -f *.lo
 
24999
+
 
25000
+clean-libtool:
 
25001
+       -rm -rf .libs _libs
 
25002
+
 
25003
+distclean-libtool:
 
25004
+       -rm -f libtool
 
25005
+uninstall-info-am:
 
25006
+install-pkginc_libpoptHEADERS: $(pkginc_libpopt_HEADERS)
 
25007
+       @$(NORMAL_INSTALL)
 
25008
+       test -z "$(pkginc_libpoptdir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_libpoptdir)"
 
25009
+       @list='$(pkginc_libpopt_HEADERS)'; for p in $$list; do \
 
25010
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
25011
+         f=$(am__strip_dir) \
 
25012
+         echo " $(pkginc_libpoptHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_libpoptdir)/$$f'"; \
 
25013
+         $(pkginc_libpoptHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_libpoptdir)/$$f"; \
 
25014
+       done
 
25015
+
 
25016
+uninstall-pkginc_libpoptHEADERS:
 
25017
+       @$(NORMAL_UNINSTALL)
 
25018
+       @list='$(pkginc_libpopt_HEADERS)'; for p in $$list; do \
 
25019
+         f=$(am__strip_dir) \
 
25020
+         echo " rm -f '$(DESTDIR)$(pkginc_libpoptdir)/$$f'"; \
 
25021
+         rm -f "$(DESTDIR)$(pkginc_libpoptdir)/$$f"; \
 
25022
+       done
 
25023
+
 
25024
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
25025
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
25026
+       unique=`for i in $$list; do \
 
25027
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
25028
+         done | \
 
25029
+         $(AWK) '    { files[$$0] = 1; } \
 
25030
+              END { for (i in files) print i; }'`; \
 
25031
+       mkid -fID $$unique
 
25032
+tags: TAGS
 
25033
+
 
25034
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
25035
+               $(TAGS_FILES) $(LISP)
 
25036
+       tags=; \
 
25037
+       here=`pwd`; \
 
25038
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
25039
+       unique=`for i in $$list; do \
 
25040
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
25041
+         done | \
 
25042
+         $(AWK) '    { files[$$0] = 1; } \
 
25043
+              END { for (i in files) print i; }'`; \
 
25044
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
25045
+         test -n "$$unique" || unique=$$empty_fix; \
 
25046
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
25047
+           $$tags $$unique; \
 
25048
+       fi
 
25049
+ctags: CTAGS
 
25050
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
25051
+               $(TAGS_FILES) $(LISP)
 
25052
+       tags=; \
 
25053
+       here=`pwd`; \
 
25054
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
25055
+       unique=`for i in $$list; do \
 
25056
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
25057
+         done | \
 
25058
+         $(AWK) '    { files[$$0] = 1; } \
 
25059
+              END { for (i in files) print i; }'`; \
 
25060
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
25061
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
25062
+            $$tags $$unique
 
25063
+
 
25064
+GTAGS:
 
25065
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
25066
+         && cd $(top_srcdir) \
 
25067
+         && gtags -i $(GTAGS_ARGS) $$here
 
25068
+
 
25069
+distclean-tags:
 
25070
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
25071
+
 
25072
+distdir: $(DISTFILES)
 
25073
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
25074
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
25075
+       list='$(DISTFILES)'; for file in $$list; do \
 
25076
+         case $$file in \
 
25077
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
25078
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
25079
+         esac; \
 
25080
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
25081
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
25082
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
25083
+           dir="/$$dir"; \
 
25084
+           $(mkdir_p) "$(distdir)$$dir"; \
 
25085
+         else \
 
25086
+           dir=''; \
 
25087
+         fi; \
 
25088
+         if test -d $$d/$$file; then \
 
25089
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
25090
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
25091
+           fi; \
 
25092
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
25093
+         else \
 
25094
+           test -f $(distdir)/$$file \
 
25095
+           || cp -p $$d/$$file $(distdir)/$$file \
 
25096
+           || exit 1; \
 
25097
+         fi; \
 
25098
+       done
 
25099
+check-am: all-am
 
25100
+check: check-am
 
25101
+all-am: Makefile $(LIBRARIES) $(HEADERS)
 
25102
+installdirs:
 
25103
+       for dir in "$(DESTDIR)$(pkginc_libpoptdir)"; do \
 
25104
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
25105
+       done
 
25106
+install: install-am
 
25107
+install-exec: install-exec-am
 
25108
+install-data: install-data-am
 
25109
+uninstall: uninstall-am
 
25110
+
 
25111
+install-am: all-am
 
25112
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
25113
+
 
25114
+installcheck: installcheck-am
 
25115
+install-strip:
 
25116
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
25117
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
25118
+         `test -z '$(STRIP)' || \
 
25119
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
25120
+mostlyclean-generic:
 
25121
+
 
25122
+clean-generic:
 
25123
+
 
25124
+distclean-generic:
 
25125
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
25126
+
 
25127
+maintainer-clean-generic:
 
25128
+       @echo "This command is intended for maintainers to use"
 
25129
+       @echo "it deletes files that may require special tools to rebuild."
 
25130
+clean: clean-am
 
25131
+
 
25132
+clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \
 
25133
+       mostlyclean-am
 
25134
+
 
25135
+distclean: distclean-am
 
25136
+       -rm -rf ./$(DEPDIR)
 
25137
+       -rm -f Makefile
 
25138
+distclean-am: clean-am distclean-compile distclean-generic \
 
25139
+       distclean-libtool distclean-tags
 
25140
+
 
25141
+dvi: dvi-am
 
25142
+
 
25143
+dvi-am:
 
25144
+
 
25145
+html: html-am
 
25146
+
 
25147
+info: info-am
 
25148
+
 
25149
+info-am:
 
25150
+
 
25151
+install-data-am: install-pkginc_libpoptHEADERS
 
25152
+
 
25153
+install-exec-am:
 
25154
+
 
25155
+install-info: install-info-am
 
25156
+
 
25157
+install-man:
 
25158
+
 
25159
+installcheck-am:
 
25160
+
 
25161
+maintainer-clean: maintainer-clean-am
 
25162
+       -rm -rf ./$(DEPDIR)
 
25163
+       -rm -f Makefile
 
25164
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
25165
+
 
25166
+mostlyclean: mostlyclean-am
 
25167
+
 
25168
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
25169
+       mostlyclean-libtool
 
25170
+
 
25171
+pdf: pdf-am
 
25172
+
 
25173
+pdf-am:
 
25174
+
 
25175
+ps: ps-am
 
25176
+
 
25177
+ps-am:
 
25178
+
 
25179
+uninstall-am: uninstall-info-am uninstall-pkginc_libpoptHEADERS
 
25180
+
 
25181
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
25182
+       clean-libtool clean-noinstLIBRARIES ctags distclean \
 
25183
+       distclean-compile distclean-generic distclean-libtool \
 
25184
+       distclean-tags distdir dvi dvi-am html html-am info info-am \
 
25185
+       install install-am install-data install-data-am install-exec \
 
25186
+       install-exec-am install-info install-info-am install-man \
 
25187
+       install-pkginc_libpoptHEADERS install-strip installcheck \
 
25188
+       installcheck-am installdirs maintainer-clean \
 
25189
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
25190
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
25191
+       tags uninstall uninstall-am uninstall-info-am \
 
25192
+       uninstall-pkginc_libpoptHEADERS
 
25193
+
 
25194
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
25195
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
25196
+.NOEXPORT:
 
25197
diff -urNad --exclude=CVS --exclude=.svn ./src/lib-popt/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/Makefile.in
 
25198
--- ./src/lib-popt/Makefile.in  2005-07-17 16:30:38.000000000 +0300
 
25199
+++ /tmp/dpep-work.mDzhRz/irssi/src/lib-popt/Makefile.in        2005-07-17 16:48:13.000000000 +0300
 
25200
@@ -130,6 +130,8 @@
 
25201
 GLIB_LIBS = @GLIB_LIBS@
 
25202
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
25203
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
25204
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
25205
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
25206
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
25207
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
25208
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
25209
@@ -139,6 +141,9 @@
 
25210
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
25211
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
25212
 LDFLAGS = @LDFLAGS@
 
25213
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
25214
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
25215
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
25216
 LIBOBJS = @LIBOBJS@
 
25217
 LIBPERL_A = @LIBPERL_A@
 
25218
 LIBS = @LIBS@
 
25219
diff -urNad --exclude=CVS --exclude=.svn ./src/Makefile /tmp/dpep-work.mDzhRz/irssi/src/Makefile
 
25220
--- ./src/Makefile      1970-01-01 02:00:00.000000000 +0200
 
25221
+++ /tmp/dpep-work.mDzhRz/irssi/src/Makefile    2005-07-17 16:48:38.000000000 +0300
 
25222
@@ -0,0 +1,570 @@
 
25223
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
25224
+# src/Makefile.  Generated from Makefile.in by configure.
 
25225
+
 
25226
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
25227
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
25228
+# This Makefile.in is free software; the Free Software Foundation
 
25229
+# gives unlimited permission to copy and/or distribute it,
 
25230
+# with or without modifications, as long as this notice is preserved.
 
25231
+
 
25232
+# This program is distributed in the hope that it will be useful,
 
25233
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
25234
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
25235
+# PARTICULAR PURPOSE.
 
25236
+
 
25237
+
 
25238
+
 
25239
+srcdir = .
 
25240
+top_srcdir = ..
 
25241
+
 
25242
+pkgdatadir = $(datadir)/irssi
 
25243
+pkglibdir = $(libdir)/irssi
 
25244
+pkgincludedir = $(includedir)/irssi
 
25245
+top_builddir = ..
 
25246
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
25247
+INSTALL = /usr/bin/install -c
 
25248
+install_sh_DATA = $(install_sh) -c -m 644
 
25249
+install_sh_PROGRAM = $(install_sh) -c
 
25250
+install_sh_SCRIPT = $(install_sh) -c
 
25251
+INSTALL_HEADER = $(INSTALL_DATA)
 
25252
+transform = $(program_transform_name)
 
25253
+NORMAL_INSTALL = :
 
25254
+PRE_INSTALL = :
 
25255
+POST_INSTALL = :
 
25256
+NORMAL_UNINSTALL = :
 
25257
+PRE_UNINSTALL = :
 
25258
+POST_UNINSTALL = :
 
25259
+build_triplet = i686-pc-linux-gnu
 
25260
+host_triplet = i686-pc-linux-gnu
 
25261
+subdir = src
 
25262
+DIST_COMMON = $(pkginc_src_HEADERS) $(srcdir)/Makefile.am \
 
25263
+       $(srcdir)/Makefile.in
 
25264
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
25265
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
25266
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
25267
+       $(top_srcdir)/configure.in
 
25268
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
25269
+       $(ACLOCAL_M4)
 
25270
+mkinstalldirs = $(install_sh) -d
 
25271
+CONFIG_HEADER = $(top_builddir)/config.h
 
25272
+CONFIG_CLEAN_FILES =
 
25273
+SOURCES =
 
25274
+DIST_SOURCES =
 
25275
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
25276
+       html-recursive info-recursive install-data-recursive \
 
25277
+       install-exec-recursive install-info-recursive \
 
25278
+       install-recursive installcheck-recursive installdirs-recursive \
 
25279
+       pdf-recursive ps-recursive uninstall-info-recursive \
 
25280
+       uninstall-recursive
 
25281
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
25282
+am__vpath_adj = case $$p in \
 
25283
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
25284
+    *) f=$$p;; \
 
25285
+  esac;
 
25286
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
25287
+am__installdirs = "$(DESTDIR)$(pkginc_srcdir)"
 
25288
+pkginc_srcHEADERS_INSTALL = $(INSTALL_HEADER)
 
25289
+HEADERS = $(pkginc_src_HEADERS)
 
25290
+ETAGS = etags
 
25291
+CTAGS = ctags
 
25292
+DIST_SUBDIRS = lib-popt lib-config core irc fe-common perl fe-text \
 
25293
+       fe-none
 
25294
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
25295
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
25296
+AMDEP_FALSE = #
 
25297
+AMDEP_TRUE = 
 
25298
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
25299
+AR = ar
 
25300
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
25301
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
25302
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
25303
+AWK = gawk
 
25304
+BUILD_IRSSIBOT_FALSE = 
 
25305
+BUILD_IRSSIBOT_TRUE = #
 
25306
+BUILD_IRSSIPROXY_FALSE = 
 
25307
+BUILD_IRSSIPROXY_TRUE = #
 
25308
+BUILD_PLUGINS_FALSE = 
 
25309
+BUILD_PLUGINS_TRUE = #
 
25310
+BUILD_TEXTUI_FALSE = #
 
25311
+BUILD_TEXTUI_TRUE = 
 
25312
+CC = gcc
 
25313
+CCDEPMODE = depmode=gcc3
 
25314
+CFLAGS = -g -O2 -Wall  
 
25315
+CHAT_MODULES = irc
 
25316
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
25317
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
25318
+CPP = gcc -E
 
25319
+CPPFLAGS = 
 
25320
+CURSES_INCLUDEDIR = 
 
25321
+CURSES_LIBS = -lncurses
 
25322
+CXX = g++
 
25323
+CXXCPP = g++ -E
 
25324
+CXXDEPMODE = depmode=gcc3
 
25325
+CXXFLAGS = -g -O2
 
25326
+CYGPATH_W = echo
 
25327
+DEFS = -DHAVE_CONFIG_H
 
25328
+DEPDIR = .deps
 
25329
+DYNALOADER_A = 
 
25330
+ECHO = echo
 
25331
+ECHO_C = 
 
25332
+ECHO_N = -n
 
25333
+ECHO_T = 
 
25334
+EGREP = grep -E
 
25335
+EXEEXT = 
 
25336
+F77 = 
 
25337
+FFLAGS = 
 
25338
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
25339
+GLIB_CONFIG = 
 
25340
+GLIB_GENMARSHAL = glib-genmarshal
 
25341
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
25342
+GLIB_MKENUMS = glib-mkenums
 
25343
+GOBJECT_QUERY = gobject-query
 
25344
+HAVE_GNUTLS_FALSE = #
 
25345
+HAVE_GNUTLS_TRUE = 
 
25346
+HAVE_PERL_FALSE = #
 
25347
+HAVE_PERL_TRUE = 
 
25348
+HAVE_STATIC_PERL_FALSE = #
 
25349
+HAVE_STATIC_PERL_TRUE = 
 
25350
+INSTALL_DATA = ${INSTALL} -m 644
 
25351
+INSTALL_PROGRAM = ${INSTALL}
 
25352
+INSTALL_SCRIPT = ${INSTALL}
 
25353
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
25354
+LDFLAGS = 
 
25355
+LIBGNUTLS_CFLAGS = -I/usr/include
 
25356
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
25357
+LIBGNUTLS_LIBS = -lgnutls
 
25358
+LIBOBJS = 
 
25359
+LIBPERL_A = 
 
25360
+LIBS = 
 
25361
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
25362
+LN_S = ln -s
 
25363
+LTLIBOBJS = 
 
25364
+MAINT = 
 
25365
+MAINTAINER_MODE_FALSE = #
 
25366
+MAINTAINER_MODE_TRUE = 
 
25367
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
25368
+NEED_TPARM_FALSE = 
 
25369
+NEED_TPARM_TRUE = #
 
25370
+OBJEXT = o
 
25371
+PACKAGE = irssi
 
25372
+PACKAGE_BUGREPORT = 
 
25373
+PACKAGE_NAME = 
 
25374
+PACKAGE_STRING = 
 
25375
+PACKAGE_TARNAME = 
 
25376
+PACKAGE_VERSION = 
 
25377
+PATH_SEPARATOR = :
 
25378
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
25379
+PERL_EXTRA_OPTS = 
 
25380
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
25381
+PERL_LDFLAGS = 
 
25382
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
25383
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
25384
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
25385
+PERL_MM_PARAMS = 
 
25386
+PERL_STATIC_LIBS = 0
 
25387
+PERL_USE_LIB = 
 
25388
+PKG_CONFIG = /usr/bin/pkg-config
 
25389
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
25390
+RANLIB = ranlib
 
25391
+SET_MAKE = 
 
25392
+SHELL = /bin/sh
 
25393
+SSL_CFLAGS =  
 
25394
+SSL_LIBS = -lssl -lcrypto -ldl  
 
25395
+STRIP = strip
 
25396
+TEXTUI_LIBS = -lncurses
 
25397
+USE_CURSES_FALSE = 
 
25398
+USE_CURSES_TRUE = #
 
25399
+VERSION = 0.8.10-rc5
 
25400
+VERSION_DATE = 20050717
 
25401
+VERSION_TIME = 1223
 
25402
+ac_ct_AR = ar
 
25403
+ac_ct_CC = gcc
 
25404
+ac_ct_CXX = g++
 
25405
+ac_ct_F77 = 
 
25406
+ac_ct_RANLIB = ranlib
 
25407
+ac_ct_STRIP = strip
 
25408
+ac_pt_PKG_CONFIG = 
 
25409
+am__fastdepCC_FALSE = #
 
25410
+am__fastdepCC_TRUE = 
 
25411
+am__fastdepCXX_FALSE = #
 
25412
+am__fastdepCXX_TRUE = 
 
25413
+am__include = include
 
25414
+am__leading_dot = .
 
25415
+am__quote = 
 
25416
+am__tar = ${AMTAR} chof - "$$tardir"
 
25417
+am__untar = ${AMTAR} xf -
 
25418
+bindir = ${exec_prefix}/bin
 
25419
+build = i686-pc-linux-gnu
 
25420
+build_alias = 
 
25421
+build_cpu = i686
 
25422
+build_os = linux-gnu
 
25423
+build_vendor = pc
 
25424
+datadir = ${prefix}/share
 
25425
+exec_prefix = ${prefix}
 
25426
+host = i686-pc-linux-gnu
 
25427
+host_alias = 
 
25428
+host_cpu = i686
 
25429
+host_os = linux-gnu
 
25430
+host_vendor = pc
 
25431
+includedir = ${prefix}/include
 
25432
+infodir = ${prefix}/info
 
25433
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
25434
+irc_MODULES = dcc flood notifylist
 
25435
+libdir = ${exec_prefix}/lib
 
25436
+libexecdir = ${exec_prefix}/libexec
 
25437
+localstatedir = ${prefix}/var
 
25438
+mandir = ${prefix}/man
 
25439
+mkdir_p = mkdir -p --
 
25440
+oldincludedir = /usr/include
 
25441
+perl_module_fe_lib = 
 
25442
+perl_module_lib = 
 
25443
+perl_static_fe_lib = libfe_perl_static.la
 
25444
+perl_static_lib = libperl_core_static.la
 
25445
+perlpath = /usr/bin/perl
 
25446
+prefix = /usr/local
 
25447
+program_transform_name = s,x,x,
 
25448
+sbindir = ${exec_prefix}/sbin
 
25449
+sedpath = /bin/sed
 
25450
+sharedstatedir = ${prefix}/com
 
25451
+sysconfdir = ${prefix}/etc
 
25452
+target_alias = 
 
25453
+TEXTUI = fe-text
 
25454
+#BOTUI = fe-none
 
25455
+PERLDIR = perl
 
25456
+pkginc_srcdir = $(pkgincludedir)/src
 
25457
+pkginc_src_HEADERS = \
 
25458
+       common.h
 
25459
+
 
25460
+SUBDIRS = lib-popt lib-config core irc fe-common $(PERLDIR) $(TEXTUI) $(BOTUI)
 
25461
+all: all-recursive
 
25462
+
 
25463
+.SUFFIXES:
 
25464
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
25465
+       @for dep in $?; do \
 
25466
+         case '$(am__configure_deps)' in \
 
25467
+           *$$dep*) \
 
25468
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
25469
+               && exit 0; \
 
25470
+             exit 1;; \
 
25471
+         esac; \
 
25472
+       done; \
 
25473
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/Makefile'; \
 
25474
+       cd $(top_srcdir) && \
 
25475
+         $(AUTOMAKE) --gnu  src/Makefile
 
25476
+.PRECIOUS: Makefile
 
25477
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
25478
+       @case '$?' in \
 
25479
+         *config.status*) \
 
25480
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
25481
+         *) \
 
25482
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
25483
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
25484
+       esac;
 
25485
+
 
25486
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
25487
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
25488
+
 
25489
+$(top_srcdir)/configure:  $(am__configure_deps)
 
25490
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
25491
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
25492
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
25493
+
 
25494
+mostlyclean-libtool:
 
25495
+       -rm -f *.lo
 
25496
+
 
25497
+clean-libtool:
 
25498
+       -rm -rf .libs _libs
 
25499
+
 
25500
+distclean-libtool:
 
25501
+       -rm -f libtool
 
25502
+uninstall-info-am:
 
25503
+install-pkginc_srcHEADERS: $(pkginc_src_HEADERS)
 
25504
+       @$(NORMAL_INSTALL)
 
25505
+       test -z "$(pkginc_srcdir)" || $(mkdir_p) "$(DESTDIR)$(pkginc_srcdir)"
 
25506
+       @list='$(pkginc_src_HEADERS)'; for p in $$list; do \
 
25507
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
25508
+         f=$(am__strip_dir) \
 
25509
+         echo " $(pkginc_srcHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginc_srcdir)/$$f'"; \
 
25510
+         $(pkginc_srcHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginc_srcdir)/$$f"; \
 
25511
+       done
 
25512
+
 
25513
+uninstall-pkginc_srcHEADERS:
 
25514
+       @$(NORMAL_UNINSTALL)
 
25515
+       @list='$(pkginc_src_HEADERS)'; for p in $$list; do \
 
25516
+         f=$(am__strip_dir) \
 
25517
+         echo " rm -f '$(DESTDIR)$(pkginc_srcdir)/$$f'"; \
 
25518
+         rm -f "$(DESTDIR)$(pkginc_srcdir)/$$f"; \
 
25519
+       done
 
25520
+
 
25521
+# This directory's subdirectories are mostly independent; you can cd
 
25522
+# into them and run `make' without going through this Makefile.
 
25523
+# To change the values of `make' variables: instead of editing Makefiles,
 
25524
+# (1) if the variable is set in `config.status', edit `config.status'
 
25525
+#     (which will cause the Makefiles to be regenerated when you run `make');
 
25526
+# (2) otherwise, pass the desired values on the `make' command line.
 
25527
+$(RECURSIVE_TARGETS):
 
25528
+       @failcom='exit 1'; \
 
25529
+       for f in x $$MAKEFLAGS; do \
 
25530
+         case $$f in \
 
25531
+           *=* | --[!k]*);; \
 
25532
+           *k*) failcom='fail=yes';; \
 
25533
+         esac; \
 
25534
+       done; \
 
25535
+       dot_seen=no; \
 
25536
+       target=`echo $@ | sed s/-recursive//`; \
 
25537
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
25538
+         echo "Making $$target in $$subdir"; \
 
25539
+         if test "$$subdir" = "."; then \
 
25540
+           dot_seen=yes; \
 
25541
+           local_target="$$target-am"; \
 
25542
+         else \
 
25543
+           local_target="$$target"; \
 
25544
+         fi; \
 
25545
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
25546
+         || eval $$failcom; \
 
25547
+       done; \
 
25548
+       if test "$$dot_seen" = "no"; then \
 
25549
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
25550
+       fi; test -z "$$fail"
 
25551
+
 
25552
+mostlyclean-recursive clean-recursive distclean-recursive \
 
25553
+maintainer-clean-recursive:
 
25554
+       @failcom='exit 1'; \
 
25555
+       for f in x $$MAKEFLAGS; do \
 
25556
+         case $$f in \
 
25557
+           *=* | --[!k]*);; \
 
25558
+           *k*) failcom='fail=yes';; \
 
25559
+         esac; \
 
25560
+       done; \
 
25561
+       dot_seen=no; \
 
25562
+       case "$@" in \
 
25563
+         distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
25564
+         *) list='$(SUBDIRS)' ;; \
 
25565
+       esac; \
 
25566
+       rev=''; for subdir in $$list; do \
 
25567
+         if test "$$subdir" = "."; then :; else \
 
25568
+           rev="$$subdir $$rev"; \
 
25569
+         fi; \
 
25570
+       done; \
 
25571
+       rev="$$rev ."; \
 
25572
+       target=`echo $@ | sed s/-recursive//`; \
 
25573
+       for subdir in $$rev; do \
 
25574
+         echo "Making $$target in $$subdir"; \
 
25575
+         if test "$$subdir" = "."; then \
 
25576
+           local_target="$$target-am"; \
 
25577
+         else \
 
25578
+           local_target="$$target"; \
 
25579
+         fi; \
 
25580
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
25581
+         || eval $$failcom; \
 
25582
+       done && test -z "$$fail"
 
25583
+tags-recursive:
 
25584
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
25585
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
25586
+       done
 
25587
+ctags-recursive:
 
25588
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
25589
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
25590
+       done
 
25591
+
 
25592
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
25593
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
25594
+       unique=`for i in $$list; do \
 
25595
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
25596
+         done | \
 
25597
+         $(AWK) '    { files[$$0] = 1; } \
 
25598
+              END { for (i in files) print i; }'`; \
 
25599
+       mkid -fID $$unique
 
25600
+tags: TAGS
 
25601
+
 
25602
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
25603
+               $(TAGS_FILES) $(LISP)
 
25604
+       tags=; \
 
25605
+       here=`pwd`; \
 
25606
+       if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
25607
+         include_option=--etags-include; \
 
25608
+         empty_fix=.; \
 
25609
+       else \
 
25610
+         include_option=--include; \
 
25611
+         empty_fix=; \
 
25612
+       fi; \
 
25613
+       list='$(SUBDIRS)'; for subdir in $$list; do \
 
25614
+         if test "$$subdir" = .; then :; else \
 
25615
+           test ! -f $$subdir/TAGS || \
 
25616
+             tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
25617
+         fi; \
 
25618
+       done; \
 
25619
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
25620
+       unique=`for i in $$list; do \
 
25621
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
25622
+         done | \
 
25623
+         $(AWK) '    { files[$$0] = 1; } \
 
25624
+              END { for (i in files) print i; }'`; \
 
25625
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
25626
+         test -n "$$unique" || unique=$$empty_fix; \
 
25627
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
25628
+           $$tags $$unique; \
 
25629
+       fi
 
25630
+ctags: CTAGS
 
25631
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
25632
+               $(TAGS_FILES) $(LISP)
 
25633
+       tags=; \
 
25634
+       here=`pwd`; \
 
25635
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
25636
+       unique=`for i in $$list; do \
 
25637
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
25638
+         done | \
 
25639
+         $(AWK) '    { files[$$0] = 1; } \
 
25640
+              END { for (i in files) print i; }'`; \
 
25641
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
25642
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
25643
+            $$tags $$unique
 
25644
+
 
25645
+GTAGS:
 
25646
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
25647
+         && cd $(top_srcdir) \
 
25648
+         && gtags -i $(GTAGS_ARGS) $$here
 
25649
+
 
25650
+distclean-tags:
 
25651
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
25652
+
 
25653
+distdir: $(DISTFILES)
 
25654
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
25655
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
25656
+       list='$(DISTFILES)'; for file in $$list; do \
 
25657
+         case $$file in \
 
25658
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
25659
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
25660
+         esac; \
 
25661
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
25662
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
25663
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
25664
+           dir="/$$dir"; \
 
25665
+           $(mkdir_p) "$(distdir)$$dir"; \
 
25666
+         else \
 
25667
+           dir=''; \
 
25668
+         fi; \
 
25669
+         if test -d $$d/$$file; then \
 
25670
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
25671
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
25672
+           fi; \
 
25673
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
25674
+         else \
 
25675
+           test -f $(distdir)/$$file \
 
25676
+           || cp -p $$d/$$file $(distdir)/$$file \
 
25677
+           || exit 1; \
 
25678
+         fi; \
 
25679
+       done
 
25680
+       list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
25681
+         if test "$$subdir" = .; then :; else \
 
25682
+           test -d "$(distdir)/$$subdir" \
 
25683
+           || $(mkdir_p) "$(distdir)/$$subdir" \
 
25684
+           || exit 1; \
 
25685
+           distdir=`$(am__cd) $(distdir) && pwd`; \
 
25686
+           top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
 
25687
+           (cd $$subdir && \
 
25688
+             $(MAKE) $(AM_MAKEFLAGS) \
 
25689
+               top_distdir="$$top_distdir" \
 
25690
+               distdir="$$distdir/$$subdir" \
 
25691
+               distdir) \
 
25692
+             || exit 1; \
 
25693
+         fi; \
 
25694
+       done
 
25695
+check-am: all-am
 
25696
+check: check-recursive
 
25697
+all-am: Makefile $(HEADERS)
 
25698
+installdirs: installdirs-recursive
 
25699
+installdirs-am:
 
25700
+       for dir in "$(DESTDIR)$(pkginc_srcdir)"; do \
 
25701
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
25702
+       done
 
25703
+install: install-recursive
 
25704
+install-exec: install-exec-recursive
 
25705
+install-data: install-data-recursive
 
25706
+uninstall: uninstall-recursive
 
25707
+
 
25708
+install-am: all-am
 
25709
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
25710
+
 
25711
+installcheck: installcheck-recursive
 
25712
+install-strip:
 
25713
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
25714
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
25715
+         `test -z '$(STRIP)' || \
 
25716
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
25717
+mostlyclean-generic:
 
25718
+
 
25719
+clean-generic:
 
25720
+
 
25721
+distclean-generic:
 
25722
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
25723
+
 
25724
+maintainer-clean-generic:
 
25725
+       @echo "This command is intended for maintainers to use"
 
25726
+       @echo "it deletes files that may require special tools to rebuild."
 
25727
+clean: clean-recursive
 
25728
+
 
25729
+clean-am: clean-generic clean-libtool mostlyclean-am
 
25730
+
 
25731
+distclean: distclean-recursive
 
25732
+       -rm -f Makefile
 
25733
+distclean-am: clean-am distclean-generic distclean-libtool \
 
25734
+       distclean-tags
 
25735
+
 
25736
+dvi: dvi-recursive
 
25737
+
 
25738
+dvi-am:
 
25739
+
 
25740
+html: html-recursive
 
25741
+
 
25742
+info: info-recursive
 
25743
+
 
25744
+info-am:
 
25745
+
 
25746
+install-data-am: install-pkginc_srcHEADERS
 
25747
+
 
25748
+install-exec-am:
 
25749
+
 
25750
+install-info: install-info-recursive
 
25751
+
 
25752
+install-man:
 
25753
+
 
25754
+installcheck-am:
 
25755
+
 
25756
+maintainer-clean: maintainer-clean-recursive
 
25757
+       -rm -f Makefile
 
25758
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
25759
+
 
25760
+mostlyclean: mostlyclean-recursive
 
25761
+
 
25762
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
25763
+
 
25764
+pdf: pdf-recursive
 
25765
+
 
25766
+pdf-am:
 
25767
+
 
25768
+ps: ps-recursive
 
25769
+
 
25770
+ps-am:
 
25771
+
 
25772
+uninstall-am: uninstall-info-am uninstall-pkginc_srcHEADERS
 
25773
+
 
25774
+uninstall-info: uninstall-info-recursive
 
25775
+
 
25776
+.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
 
25777
+       clean clean-generic clean-libtool clean-recursive ctags \
 
25778
+       ctags-recursive distclean distclean-generic distclean-libtool \
 
25779
+       distclean-recursive distclean-tags distdir dvi dvi-am html \
 
25780
+       html-am info info-am install install-am install-data \
 
25781
+       install-data-am install-exec install-exec-am install-info \
 
25782
+       install-info-am install-man install-pkginc_srcHEADERS \
 
25783
+       install-strip installcheck installcheck-am installdirs \
 
25784
+       installdirs-am maintainer-clean maintainer-clean-generic \
 
25785
+       maintainer-clean-recursive mostlyclean mostlyclean-generic \
 
25786
+       mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
 
25787
+       tags tags-recursive uninstall uninstall-am uninstall-info-am \
 
25788
+       uninstall-pkginc_srcHEADERS
 
25789
+
 
25790
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
25791
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
25792
+.NOEXPORT:
 
25793
diff -urNad --exclude=CVS --exclude=.svn ./src/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/Makefile.in
 
25794
--- ./src/Makefile.in   2005-07-17 16:30:31.000000000 +0300
 
25795
+++ /tmp/dpep-work.mDzhRz/irssi/src/Makefile.in 2005-07-17 16:48:07.000000000 +0300
 
25796
@@ -119,6 +119,8 @@
 
25797
 GLIB_LIBS = @GLIB_LIBS@
 
25798
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
25799
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
25800
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
25801
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
25802
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
25803
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
25804
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
25805
@@ -128,6 +130,9 @@
 
25806
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
25807
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
25808
 LDFLAGS = @LDFLAGS@
 
25809
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
25810
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
25811
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
25812
 LIBOBJS = @LIBOBJS@
 
25813
 LIBPERL_A = @LIBPERL_A@
 
25814
 LIBS = @LIBS@
 
25815
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/common/Makefile.PL /tmp/dpep-work.mDzhRz/irssi/src/perl/common/Makefile.PL
 
25816
--- ./src/perl/common/Makefile.PL       1970-01-01 02:00:00.000000000 +0200
 
25817
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/common/Makefile.PL     2005-07-17 16:48:40.000000000 +0300
 
25818
@@ -0,0 +1,7 @@
 
25819
+use ExtUtils::MakeMaker;
 
25820
+
 
25821
+WriteMakefile('NAME' => 'Irssi',
 
25822
+              'LIBS' => '',
 
25823
+             'OBJECT' => '$(O_FILES)',
 
25824
+              'INC' => '-I../../.. -I../../.. -I../../../src -I../../../src/core -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  ',
 
25825
+             'VERSION_FROM' => './Irssi.pm');
 
25826
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/.deps/module-formats.Plo /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/module-formats.Plo
 
25827
--- ./src/perl/.deps/module-formats.Plo 1970-01-01 02:00:00.000000000 +0200
 
25828
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/module-formats.Plo       2005-07-17 16:48:42.000000000 +0300
 
25829
@@ -0,0 +1 @@
 
25830
+# dummy
 
25831
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/.deps/perl-common.Plo /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-common.Plo
 
25832
--- ./src/perl/.deps/perl-common.Plo    1970-01-01 02:00:00.000000000 +0200
 
25833
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-common.Plo  2005-07-17 16:48:42.000000000 +0300
 
25834
@@ -0,0 +1 @@
 
25835
+# dummy
 
25836
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/.deps/perl-core.Plo /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-core.Plo
 
25837
--- ./src/perl/.deps/perl-core.Plo      1970-01-01 02:00:00.000000000 +0200
 
25838
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-core.Plo    2005-07-17 16:48:42.000000000 +0300
 
25839
@@ -0,0 +1 @@
 
25840
+# dummy
 
25841
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/.deps/perl-fe.Plo /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-fe.Plo
 
25842
--- ./src/perl/.deps/perl-fe.Plo        1970-01-01 02:00:00.000000000 +0200
 
25843
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-fe.Plo      2005-07-17 16:48:42.000000000 +0300
 
25844
@@ -0,0 +1 @@
 
25845
+# dummy
 
25846
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/.deps/perl-signals.Plo /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-signals.Plo
 
25847
--- ./src/perl/.deps/perl-signals.Plo   1970-01-01 02:00:00.000000000 +0200
 
25848
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-signals.Plo 2005-07-17 16:48:42.000000000 +0300
 
25849
@@ -0,0 +1 @@
 
25850
+# dummy
 
25851
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/.deps/perl-sources.Plo /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-sources.Plo
 
25852
--- ./src/perl/.deps/perl-sources.Plo   1970-01-01 02:00:00.000000000 +0200
 
25853
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/.deps/perl-sources.Plo 2005-07-17 16:48:42.000000000 +0300
 
25854
@@ -0,0 +1 @@
 
25855
+# dummy
 
25856
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/irc/Makefile.PL /tmp/dpep-work.mDzhRz/irssi/src/perl/irc/Makefile.PL
 
25857
--- ./src/perl/irc/Makefile.PL  1970-01-01 02:00:00.000000000 +0200
 
25858
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/irc/Makefile.PL        2005-07-17 16:48:40.000000000 +0300
 
25859
@@ -0,0 +1,8 @@
 
25860
+use ExtUtils::MakeMaker;
 
25861
+
 
25862
+WriteMakefile('NAME' => 'Irssi::Irc',
 
25863
+              'LIBS' => '',
 
25864
+             'OBJECT' => '$(O_FILES)',
 
25865
+              'TYPEMAPS' => ['../common/typemap'],
 
25866
+              'INC' => '-I../../.. -I../../../src -I../../../src/core -I../../../src/irc/core -I../../../src/irc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  ',
 
25867
+             'VERSION_FROM' => './Irc.pm');
 
25868
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/Makefile /tmp/dpep-work.mDzhRz/irssi/src/perl/Makefile
 
25869
--- ./src/perl/Makefile 1970-01-01 02:00:00.000000000 +0200
 
25870
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/Makefile       2005-07-17 16:48:40.000000000 +0300
 
25871
@@ -0,0 +1,707 @@
 
25872
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
25873
+# src/perl/Makefile.  Generated from Makefile.in by configure.
 
25874
+
 
25875
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
25876
+# 2003, 2004, 2005  Free Software Foundation, Inc.
 
25877
+# This Makefile.in is free software; the Free Software Foundation
 
25878
+# gives unlimited permission to copy and/or distribute it,
 
25879
+# with or without modifications, as long as this notice is preserved.
 
25880
+
 
25881
+# This program is distributed in the hope that it will be useful,
 
25882
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
25883
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
25884
+# PARTICULAR PURPOSE.
 
25885
+
 
25886
+
 
25887
+
 
25888
+
 
25889
+srcdir = .
 
25890
+top_srcdir = ../..
 
25891
+
 
25892
+pkgdatadir = $(datadir)/irssi
 
25893
+pkglibdir = $(libdir)/irssi
 
25894
+pkgincludedir = $(includedir)/irssi
 
25895
+top_builddir = ../..
 
25896
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
25897
+INSTALL = /usr/bin/install -c
 
25898
+install_sh_DATA = $(install_sh) -c -m 644
 
25899
+install_sh_PROGRAM = $(install_sh) -c
 
25900
+install_sh_SCRIPT = $(install_sh) -c
 
25901
+INSTALL_HEADER = $(INSTALL_DATA)
 
25902
+transform = $(program_transform_name)
 
25903
+NORMAL_INSTALL = :
 
25904
+PRE_INSTALL = :
 
25905
+POST_INSTALL = :
 
25906
+NORMAL_UNINSTALL = :
 
25907
+PRE_UNINSTALL = :
 
25908
+POST_UNINSTALL = :
 
25909
+build_triplet = i686-pc-linux-gnu
 
25910
+host_triplet = i686-pc-linux-gnu
 
25911
+subdir = src/perl
 
25912
+DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
 
25913
+       $(srcdir)/Makefile.in
 
25914
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
25915
+am__aclocal_m4_deps = $(top_srcdir)/curses.m4 \
 
25916
+       $(top_srcdir)/glib-2.0.m4 $(top_srcdir)/glib.m4 \
 
25917
+       $(top_srcdir)/configure.in
 
25918
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
25919
+       $(ACLOCAL_M4)
 
25920
+mkinstalldirs = $(install_sh) -d
 
25921
+CONFIG_HEADER = $(top_builddir)/config.h
 
25922
+CONFIG_CLEAN_FILES =
 
25923
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
25924
+am__vpath_adj = case $$p in \
 
25925
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
25926
+    *) f=$$p;; \
 
25927
+  esac;
 
25928
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
25929
+am__installdirs = "$(DESTDIR)$(moduledir)"
 
25930
+moduleLTLIBRARIES_INSTALL = $(INSTALL)
 
25931
+LTLIBRARIES = $(module_LTLIBRARIES) $(noinst_LTLIBRARIES)
 
25932
+libfe_perl_la_LIBADD =
 
25933
+am__objects_1 = module-formats.lo perl-fe.lo
 
25934
+am_libfe_perl_la_OBJECTS = $(am__objects_1)
 
25935
+libfe_perl_la_OBJECTS = $(am_libfe_perl_la_OBJECTS)
 
25936
+libfe_perl_static_la_LIBADD =
 
25937
+am_libfe_perl_static_la_OBJECTS = $(am__objects_1)
 
25938
+libfe_perl_static_la_OBJECTS = $(am_libfe_perl_static_la_OBJECTS)
 
25939
+am__DEPENDENCIES_1 =
 
25940
+am__objects_2 = perl-core.lo perl-common.lo perl-signals.lo \
 
25941
+       perl-sources.lo
 
25942
+am_libperl_core_la_OBJECTS = $(am__objects_2)
 
25943
+libperl_core_la_OBJECTS = $(am_libperl_core_la_OBJECTS)
 
25944
+libperl_core_static_la_LIBADD =
 
25945
+am_libperl_core_static_la_OBJECTS = $(am__objects_2)
 
25946
+libperl_core_static_la_OBJECTS = $(am_libperl_core_static_la_OBJECTS)
 
25947
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 
25948
+depcomp = $(SHELL) $(top_srcdir)/depcomp
 
25949
+am__depfiles_maybe = depfiles
 
25950
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
25951
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
25952
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
 
25953
+       $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
25954
+       $(AM_CFLAGS) $(CFLAGS)
 
25955
+CCLD = $(CC)
 
25956
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
25957
+       $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
25958
+SOURCES = $(libfe_perl_la_SOURCES) $(libfe_perl_static_la_SOURCES) \
 
25959
+       $(libperl_core_la_SOURCES) $(libperl_core_static_la_SOURCES)
 
25960
+DIST_SOURCES = $(libfe_perl_la_SOURCES) \
 
25961
+       $(libfe_perl_static_la_SOURCES) $(libperl_core_la_SOURCES) \
 
25962
+       $(libperl_core_static_la_SOURCES)
 
25963
+HEADERS = $(noinst_HEADERS)
 
25964
+ETAGS = etags
 
25965
+CTAGS = ctags
 
25966
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
25967
+ACLOCAL = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run aclocal-1.9
 
25968
+AMDEP_FALSE = #
 
25969
+AMDEP_TRUE = 
 
25970
+AMTAR = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run tar
 
25971
+AR = ar
 
25972
+AUTOCONF = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoconf
 
25973
+AUTOHEADER = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run autoheader
 
25974
+AUTOMAKE = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run automake-1.9
 
25975
+AWK = gawk
 
25976
+BUILD_IRSSIBOT_FALSE = 
 
25977
+BUILD_IRSSIBOT_TRUE = #
 
25978
+BUILD_IRSSIPROXY_FALSE = 
 
25979
+BUILD_IRSSIPROXY_TRUE = #
 
25980
+BUILD_PLUGINS_FALSE = 
 
25981
+BUILD_PLUGINS_TRUE = #
 
25982
+BUILD_TEXTUI_FALSE = #
 
25983
+BUILD_TEXTUI_TRUE = 
 
25984
+CC = gcc
 
25985
+CCDEPMODE = depmode=gcc3
 
25986
+CFLAGS = -g -O2 -Wall  
 
25987
+CHAT_MODULES = irc
 
25988
+COMMON_LIBS = ../fe-common/irc/libfe_common_irc.a ../fe-common/irc/dcc/libfe_irc_dcc.a ../fe-common/irc/notifylist/libfe_irc_notifylist.a ../fe-common/core/libfe_common_core.a  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
25989
+COMMON_NOUI_LIBS =  ../irc/libirc.a ../irc/core/libirc_core.a ../irc/dcc/libirc_dcc.a ../irc/flood/libirc_flood.a ../irc/notifylist/libirc_notifylist.a ../core/libcore.a ../lib-config/libirssi_config.a ../lib-popt/libpopt.a
 
25990
+CPP = gcc -E
 
25991
+CPPFLAGS = 
 
25992
+CURSES_INCLUDEDIR = 
 
25993
+CURSES_LIBS = -lncurses
 
25994
+CXX = g++
 
25995
+CXXCPP = g++ -E
 
25996
+CXXDEPMODE = depmode=gcc3
 
25997
+CXXFLAGS = -g -O2
 
25998
+CYGPATH_W = echo
 
25999
+DEFS = -DHAVE_CONFIG_H
 
26000
+DEPDIR = .deps
 
26001
+DYNALOADER_A = 
 
26002
+ECHO = echo
 
26003
+ECHO_C = 
 
26004
+ECHO_N = -n
 
26005
+ECHO_T = 
 
26006
+EGREP = grep -E
 
26007
+EXEEXT = 
 
26008
+F77 = 
 
26009
+FFLAGS = 
 
26010
+GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 
26011
+GLIB_CONFIG = 
 
26012
+GLIB_GENMARSHAL = glib-genmarshal
 
26013
+GLIB_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0  
 
26014
+GLIB_MKENUMS = glib-mkenums
 
26015
+GOBJECT_QUERY = gobject-query
 
26016
+HAVE_GNUTLS_FALSE = #
 
26017
+HAVE_GNUTLS_TRUE = 
 
26018
+HAVE_PERL_FALSE = #
 
26019
+HAVE_PERL_TRUE = 
 
26020
+HAVE_STATIC_PERL_FALSE = #
 
26021
+HAVE_STATIC_PERL_TRUE = 
 
26022
+INSTALL_DATA = ${INSTALL} -m 644
 
26023
+INSTALL_PROGRAM = ${INSTALL}
 
26024
+INSTALL_SCRIPT = ${INSTALL}
 
26025
+INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
 
26026
+LDFLAGS = 
 
26027
+LIBGNUTLS_CFLAGS = -I/usr/include
 
26028
+LIBGNUTLS_CONFIG = /usr/bin/libgnutls-config
 
26029
+LIBGNUTLS_LIBS = -lgnutls
 
26030
+LIBOBJS = 
 
26031
+LIBPERL_A = 
 
26032
+LIBS = 
 
26033
+LIBTOOL = $(PERL_LIBTOOL)
 
26034
+LN_S = ln -s
 
26035
+LTLIBOBJS = 
 
26036
+MAINT = 
 
26037
+MAINTAINER_MODE_FALSE = #
 
26038
+MAINTAINER_MODE_TRUE = 
 
26039
+MAKEINFO = ${SHELL} /tmp/dpep-work.mDzhRz/irssi/missing --run makeinfo
 
26040
+NEED_TPARM_FALSE = 
 
26041
+NEED_TPARM_TRUE = #
 
26042
+OBJEXT = o
 
26043
+PACKAGE = irssi
 
26044
+PACKAGE_BUGREPORT = 
 
26045
+PACKAGE_NAME = 
 
26046
+PACKAGE_STRING = 
 
26047
+PACKAGE_TARNAME = 
 
26048
+PACKAGE_VERSION = 
 
26049
+PATH_SEPARATOR = :
 
26050
+PERL_CFLAGS =  -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
 
26051
+PERL_EXTRA_OPTS = 
 
26052
+PERL_FE_LINK_LIBS = ../perl/libfe_perl_static.la
 
26053
+PERL_LDFLAGS = 
 
26054
+PERL_LIBTOOL = $(SHELL) $(top_builddir)/libtool
 
26055
+PERL_LINK_FLAGS = -Wl,-E -L/usr/local/lib /usr/lib/perl/5.8/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lcrypt
 
26056
+PERL_LINK_LIBS = ../perl/libperl_core_static.la
 
26057
+PERL_MM_PARAMS = 
 
26058
+PERL_STATIC_LIBS = 0
 
26059
+PERL_USE_LIB = 
 
26060
+PKG_CONFIG = /usr/bin/pkg-config
 
26061
+PROG_LIBS =  -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0   -lssl -lcrypto -ldl  
 
26062
+RANLIB = ranlib
 
26063
+SET_MAKE = 
 
26064
+SHELL = /bin/sh
 
26065
+SSL_CFLAGS =  
 
26066
+SSL_LIBS = -lssl -lcrypto -ldl  
 
26067
+STRIP = strip
 
26068
+TEXTUI_LIBS = -lncurses
 
26069
+USE_CURSES_FALSE = 
 
26070
+USE_CURSES_TRUE = #
 
26071
+VERSION = 0.8.10-rc5
 
26072
+VERSION_DATE = 20050717
 
26073
+VERSION_TIME = 1223
 
26074
+ac_ct_AR = ar
 
26075
+ac_ct_CC = gcc
 
26076
+ac_ct_CXX = g++
 
26077
+ac_ct_F77 = 
 
26078
+ac_ct_RANLIB = ranlib
 
26079
+ac_ct_STRIP = strip
 
26080
+ac_pt_PKG_CONFIG = 
 
26081
+am__fastdepCC_FALSE = #
 
26082
+am__fastdepCC_TRUE = 
 
26083
+am__fastdepCXX_FALSE = #
 
26084
+am__fastdepCXX_TRUE = 
 
26085
+am__include = include
 
26086
+am__leading_dot = .
 
26087
+am__quote = 
 
26088
+am__tar = ${AMTAR} chof - "$$tardir"
 
26089
+am__untar = ${AMTAR} xf -
 
26090
+bindir = ${exec_prefix}/bin
 
26091
+build = i686-pc-linux-gnu
 
26092
+build_alias = 
 
26093
+build_cpu = i686
 
26094
+build_os = linux-gnu
 
26095
+build_vendor = pc
 
26096
+datadir = ${prefix}/share
 
26097
+exec_prefix = ${prefix}
 
26098
+host = i686-pc-linux-gnu
 
26099
+host_alias = 
 
26100
+host_cpu = i686
 
26101
+host_os = linux-gnu
 
26102
+host_vendor = pc
 
26103
+includedir = ${prefix}/include
 
26104
+infodir = ${prefix}/info
 
26105
+install_sh = /tmp/dpep-work.mDzhRz/irssi/install-sh
 
26106
+irc_MODULES = dcc flood notifylist
 
26107
+libdir = ${exec_prefix}/lib
 
26108
+libexecdir = ${exec_prefix}/libexec
 
26109
+localstatedir = ${prefix}/var
 
26110
+mandir = ${prefix}/man
 
26111
+mkdir_p = mkdir -p --
 
26112
+oldincludedir = /usr/include
 
26113
+perl_module_fe_lib = 
 
26114
+perl_module_lib = 
 
26115
+perl_static_fe_lib = libfe_perl_static.la
 
26116
+perl_static_lib = libperl_core_static.la
 
26117
+perlpath = /usr/bin/perl
 
26118
+prefix = /usr/local
 
26119
+program_transform_name = s,x,x,
 
26120
+sbindir = ${exec_prefix}/sbin
 
26121
+sedpath = /bin/sed
 
26122
+sharedstatedir = ${prefix}/com
 
26123
+sysconfdir = ${prefix}/etc
 
26124
+target_alias = 
 
26125
+moduledir = $(libdir)/irssi/modules
 
26126
+perl_dirs = common irc ui textui
 
26127
+module_LTLIBRARIES = $(perl_module_lib) $(perl_module_fe_lib)
 
26128
+noinst_LTLIBRARIES = $(perl_static_lib) $(perl_static_fe_lib)
 
26129
+EXTRA_LTLIBRARIES = \
 
26130
+       libperl_core.la libfe_perl.la \
 
26131
+       libperl_core_static.la libfe_perl_static.la
 
26132
+
 
26133
+libperl_core_la_LDFLAGS = -module -avoid-version -rpath $(moduledir)
 
26134
+libfe_perl_la_LDFLAGS = -module -avoid-version -rpath $(moduledir)
 
26135
+INCLUDES = \
 
26136
+       -I$(top_srcdir)/src \
 
26137
+       -I$(top_srcdir)/src/core \
 
26138
+       -I$(top_srcdir)/src/fe-common/core \
 
26139
+       $(GLIB_CFLAGS) \
 
26140
+       -DSCRIPTDIR=\""$(datadir)/irssi/scripts"\" \
 
26141
+       -DPERL_USE_LIB=\""$(PERL_USE_LIB)"\" \
 
26142
+       -DPERL_STATIC_LIBS=$(PERL_STATIC_LIBS) \
 
26143
+       $(PERL_CFLAGS)
 
26144
+
 
26145
+perl_sources = \
 
26146
+       perl-core.c \
 
26147
+       perl-common.c \
 
26148
+       perl-signals.c \
 
26149
+       perl-sources.c
 
26150
+
 
26151
+perl_fe_sources = \
 
26152
+       module-formats.c \
 
26153
+       perl-fe.c
 
26154
+
 
26155
+noinst_HEADERS = \
 
26156
+       module.h \
 
26157
+       module-fe.h \
 
26158
+       module-formats.h \
 
26159
+       perl-core.h \
 
26160
+       perl-common.h \
 
26161
+       perl-signals.h \
 
26162
+       perl-sources.h
 
26163
+
 
26164
+libperl_core_la_DEPENDENCIES = .libs/libperl_orig.a .libs/DynaLoader.a
 
26165
+libperl_core_la_SOURCES = \
 
26166
+       $(perl_sources)
 
26167
+
 
26168
+libperl_core_static_la_SOURCES = \
 
26169
+       $(perl_sources)
 
26170
+
 
26171
+libfe_perl_la_SOURCES = \
 
26172
+       $(perl_fe_sources)
 
26173
+
 
26174
+libfe_perl_static_la_SOURCES = \
 
26175
+       $(perl_fe_sources)
 
26176
+
 
26177
+common_sources = \
 
26178
+       common/Irssi.xs \
 
26179
+       common/Irssi.pm \
 
26180
+       common/Channel.xs \
 
26181
+       common/Core.xs \
 
26182
+       common/Expando.xs \
 
26183
+       common/Ignore.xs \
 
26184
+       common/Log.xs \
 
26185
+       common/Masks.xs \
 
26186
+       common/Query.xs \
 
26187
+       common/Rawlog.xs \
 
26188
+       common/Server.xs \
 
26189
+       common/Settings.xs \
 
26190
+       common/Makefile.PL.in \
 
26191
+       common/typemap \
 
26192
+       common/module.h
 
26193
+
 
26194
+irc_sources = \
 
26195
+       irc/Irc.xs \
 
26196
+       irc/Irc.pm \
 
26197
+       irc/Dcc.xs \
 
26198
+       irc/Channel.xs \
 
26199
+       irc/Ctcp.xs \
 
26200
+       irc/Query.xs \
 
26201
+       irc/Server.xs \
 
26202
+       irc/Modes.xs \
 
26203
+       irc/Netsplit.xs \
 
26204
+       irc/Notifylist.xs \
 
26205
+       irc/Makefile.PL.in \
 
26206
+       irc/typemap \
 
26207
+       irc/module.h
 
26208
+
 
26209
+ui_sources = \
 
26210
+       ui/UI.xs \
 
26211
+       ui/UI.pm \
 
26212
+       ui/Formats.xs \
 
26213
+       ui/Themes.xs \
 
26214
+       ui/Window.xs \
 
26215
+       ui/Makefile.PL.in \
 
26216
+       ui/typemap \
 
26217
+       ui/module.h
 
26218
+
 
26219
+textui_sources = \
 
26220
+       textui/TextUI.xs \
 
26221
+       textui/TextUI.pm \
 
26222
+       textui/TextBuffer.xs \
 
26223
+       textui/TextBufferView.xs \
 
26224
+       textui/Statusbar.xs \
 
26225
+       textui/Makefile.PL.in \
 
26226
+       textui/typemap \
 
26227
+       textui/module.h
 
26228
+
 
26229
+EXTRA_DIST = \
 
26230
+       libperl_dynaloader.la \
 
26231
+       libperl_orig.la \
 
26232
+       get-signals.pl \
 
26233
+       irssi-core.pl \
 
26234
+       $(common_sources) \
 
26235
+       $(irc_sources) \
 
26236
+       $(ui_sources) \
 
26237
+       $(textui_sources)
 
26238
+
 
26239
+libperl_core_la_LIBADD = $(PERL_LDFLAGS)
 
26240
+all: all-am
 
26241
+
 
26242
+.SUFFIXES:
 
26243
+.SUFFIXES: .c .lo .o .obj
 
26244
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
26245
+       @for dep in $?; do \
 
26246
+         case '$(am__configure_deps)' in \
 
26247
+           *$$dep*) \
 
26248
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
26249
+               && exit 0; \
 
26250
+             exit 1;; \
 
26251
+         esac; \
 
26252
+       done; \
 
26253
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/perl/Makefile'; \
 
26254
+       cd $(top_srcdir) && \
 
26255
+         $(AUTOMAKE) --gnu  src/perl/Makefile
 
26256
+.PRECIOUS: Makefile
 
26257
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
26258
+       @case '$?' in \
 
26259
+         *config.status*) \
 
26260
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
26261
+         *) \
 
26262
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
26263
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
26264
+       esac;
 
26265
+
 
26266
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
26267
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
26268
+
 
26269
+$(top_srcdir)/configure:  $(am__configure_deps)
 
26270
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
26271
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
26272
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
26273
+install-moduleLTLIBRARIES: $(module_LTLIBRARIES)
 
26274
+       @$(NORMAL_INSTALL)
 
26275
+       test -z "$(moduledir)" || $(mkdir_p) "$(DESTDIR)$(moduledir)"
 
26276
+       @list='$(module_LTLIBRARIES)'; for p in $$list; do \
 
26277
+         if test -f $$p; then \
 
26278
+           f=$(am__strip_dir) \
 
26279
+           echo " $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(moduledir)/$$f'"; \
 
26280
+           $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(moduledir)/$$f"; \
 
26281
+         else :; fi; \
 
26282
+       done
 
26283
+
 
26284
+uninstall-moduleLTLIBRARIES:
 
26285
+       @$(NORMAL_UNINSTALL)
 
26286
+       @set -x; list='$(module_LTLIBRARIES)'; for p in $$list; do \
 
26287
+         p=$(am__strip_dir) \
 
26288
+         echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$p'"; \
 
26289
+         $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$p"; \
 
26290
+       done
 
26291
+
 
26292
+clean-moduleLTLIBRARIES:
 
26293
+       -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES)
 
26294
+       @list='$(module_LTLIBRARIES)'; for p in $$list; do \
 
26295
+         dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 
26296
+         test "$$dir" != "$$p" || dir=.; \
 
26297
+         echo "rm -f \"$${dir}/so_locations\""; \
 
26298
+         rm -f "$${dir}/so_locations"; \
 
26299
+       done
 
26300
+
 
26301
+clean-noinstLTLIBRARIES:
 
26302
+       -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
 
26303
+       @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
 
26304
+         dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 
26305
+         test "$$dir" != "$$p" || dir=.; \
 
26306
+         echo "rm -f \"$${dir}/so_locations\""; \
 
26307
+         rm -f "$${dir}/so_locations"; \
 
26308
+       done
 
26309
+libfe_perl.la: $(libfe_perl_la_OBJECTS) $(libfe_perl_la_DEPENDENCIES) 
 
26310
+       $(LINK)  $(libfe_perl_la_LDFLAGS) $(libfe_perl_la_OBJECTS) $(libfe_perl_la_LIBADD) $(LIBS)
 
26311
+libfe_perl_static.la: $(libfe_perl_static_la_OBJECTS) $(libfe_perl_static_la_DEPENDENCIES) 
 
26312
+       $(LINK)  $(libfe_perl_static_la_LDFLAGS) $(libfe_perl_static_la_OBJECTS) $(libfe_perl_static_la_LIBADD) $(LIBS)
 
26313
+libperl_core.la: $(libperl_core_la_OBJECTS) $(libperl_core_la_DEPENDENCIES) 
 
26314
+       $(LINK)  $(libperl_core_la_LDFLAGS) $(libperl_core_la_OBJECTS) $(libperl_core_la_LIBADD) $(LIBS)
 
26315
+libperl_core_static.la: $(libperl_core_static_la_OBJECTS) $(libperl_core_static_la_DEPENDENCIES) 
 
26316
+       $(LINK)  $(libperl_core_static_la_LDFLAGS) $(libperl_core_static_la_OBJECTS) $(libperl_core_static_la_LIBADD) $(LIBS)
 
26317
+
 
26318
+mostlyclean-compile:
 
26319
+       -rm -f *.$(OBJEXT)
 
26320
+
 
26321
+distclean-compile:
 
26322
+       -rm -f *.tab.c
 
26323
+
 
26324
+include ./$(DEPDIR)/module-formats.Plo
 
26325
+include ./$(DEPDIR)/perl-common.Plo
 
26326
+include ./$(DEPDIR)/perl-core.Plo
 
26327
+include ./$(DEPDIR)/perl-fe.Plo
 
26328
+include ./$(DEPDIR)/perl-signals.Plo
 
26329
+include ./$(DEPDIR)/perl-sources.Plo
 
26330
+
 
26331
+.c.o:
 
26332
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
26333
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
26334
+#      source='$<' object='$@' libtool=no \
 
26335
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
26336
+#      $(COMPILE) -c $<
 
26337
+
 
26338
+.c.obj:
 
26339
+       if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
 
26340
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
26341
+#      source='$<' object='$@' libtool=no \
 
26342
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
26343
+#      $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
26344
+
 
26345
+.c.lo:
 
26346
+       if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
 
26347
+       then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
 
26348
+#      source='$<' object='$@' libtool=yes \
 
26349
+#      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
 
26350
+#      $(LTCOMPILE) -c -o $@ $<
 
26351
+
 
26352
+mostlyclean-libtool:
 
26353
+       -rm -f *.lo
 
26354
+
 
26355
+clean-libtool:
 
26356
+       -rm -rf .libs _libs
 
26357
+
 
26358
+distclean-libtool:
 
26359
+       -rm -f libtool
 
26360
+uninstall-info-am:
 
26361
+
 
26362
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
26363
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
26364
+       unique=`for i in $$list; do \
 
26365
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
26366
+         done | \
 
26367
+         $(AWK) '    { files[$$0] = 1; } \
 
26368
+              END { for (i in files) print i; }'`; \
 
26369
+       mkid -fID $$unique
 
26370
+tags: TAGS
 
26371
+
 
26372
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
26373
+               $(TAGS_FILES) $(LISP)
 
26374
+       tags=; \
 
26375
+       here=`pwd`; \
 
26376
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
26377
+       unique=`for i in $$list; do \
 
26378
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
26379
+         done | \
 
26380
+         $(AWK) '    { files[$$0] = 1; } \
 
26381
+              END { for (i in files) print i; }'`; \
 
26382
+       if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
26383
+         test -n "$$unique" || unique=$$empty_fix; \
 
26384
+         $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
26385
+           $$tags $$unique; \
 
26386
+       fi
 
26387
+ctags: CTAGS
 
26388
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
26389
+               $(TAGS_FILES) $(LISP)
 
26390
+       tags=; \
 
26391
+       here=`pwd`; \
 
26392
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
 
26393
+       unique=`for i in $$list; do \
 
26394
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
26395
+         done | \
 
26396
+         $(AWK) '    { files[$$0] = 1; } \
 
26397
+              END { for (i in files) print i; }'`; \
 
26398
+       test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
26399
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
26400
+            $$tags $$unique
 
26401
+
 
26402
+GTAGS:
 
26403
+       here=`$(am__cd) $(top_builddir) && pwd` \
 
26404
+         && cd $(top_srcdir) \
 
26405
+         && gtags -i $(GTAGS_ARGS) $$here
 
26406
+
 
26407
+distclean-tags:
 
26408
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
26409
+
 
26410
+distdir: $(DISTFILES)
 
26411
+       $(mkdir_p) $(distdir)/common $(distdir)/irc $(distdir)/textui $(distdir)/ui
 
26412
+       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
 
26413
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
 
26414
+       list='$(DISTFILES)'; for file in $$list; do \
 
26415
+         case $$file in \
 
26416
+           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
 
26417
+           $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
 
26418
+         esac; \
 
26419
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
26420
+         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
 
26421
+         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
 
26422
+           dir="/$$dir"; \
 
26423
+           $(mkdir_p) "$(distdir)$$dir"; \
 
26424
+         else \
 
26425
+           dir=''; \
 
26426
+         fi; \
 
26427
+         if test -d $$d/$$file; then \
 
26428
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
26429
+             cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
26430
+           fi; \
 
26431
+           cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
26432
+         else \
 
26433
+           test -f $(distdir)/$$file \
 
26434
+           || cp -p $$d/$$file $(distdir)/$$file \
 
26435
+           || exit 1; \
 
26436
+         fi; \
 
26437
+       done
 
26438
+check-am: all-am
 
26439
+check: check-am
 
26440
+all-am: Makefile $(LTLIBRARIES) $(HEADERS) all-local
 
26441
+installdirs:
 
26442
+       for dir in "$(DESTDIR)$(moduledir)"; do \
 
26443
+         test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
26444
+       done
 
26445
+install: install-am
 
26446
+install-exec: install-exec-am
 
26447
+install-data: install-data-am
 
26448
+uninstall: uninstall-am
 
26449
+
 
26450
+install-am: all-am
 
26451
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
26452
+
 
26453
+installcheck: installcheck-am
 
26454
+install-strip:
 
26455
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
26456
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
26457
+         `test -z '$(STRIP)' || \
 
26458
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
26459
+mostlyclean-generic:
 
26460
+
 
26461
+maintainer-clean-generic:
 
26462
+       @echo "This command is intended for maintainers to use"
 
26463
+       @echo "it deletes files that may require special tools to rebuild."
 
26464
+clean: clean-am
 
26465
+
 
26466
+clean-am: clean-generic clean-libtool clean-moduleLTLIBRARIES \
 
26467
+       clean-noinstLTLIBRARIES mostlyclean-am
 
26468
+
 
26469
+distclean: distclean-am
 
26470
+       -rm -rf ./$(DEPDIR)
 
26471
+       -rm -f Makefile
 
26472
+distclean-am: clean-am distclean-compile distclean-generic \
 
26473
+       distclean-libtool distclean-tags
 
26474
+
 
26475
+dvi: dvi-am
 
26476
+
 
26477
+dvi-am:
 
26478
+
 
26479
+html: html-am
 
26480
+
 
26481
+info: info-am
 
26482
+
 
26483
+info-am:
 
26484
+
 
26485
+install-data-am: install-moduleLTLIBRARIES
 
26486
+
 
26487
+install-exec-am: install-exec-local
 
26488
+
 
26489
+install-info: install-info-am
 
26490
+
 
26491
+install-man:
 
26492
+
 
26493
+installcheck-am:
 
26494
+
 
26495
+maintainer-clean: maintainer-clean-am
 
26496
+       -rm -rf ./$(DEPDIR)
 
26497
+       -rm -f Makefile
 
26498
+maintainer-clean-am: distclean-am maintainer-clean-generic
 
26499
+
 
26500
+mostlyclean: mostlyclean-am
 
26501
+
 
26502
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
26503
+       mostlyclean-libtool
 
26504
+
 
26505
+pdf: pdf-am
 
26506
+
 
26507
+pdf-am:
 
26508
+
 
26509
+ps: ps-am
 
26510
+
 
26511
+ps-am:
 
26512
+
 
26513
+uninstall-am: uninstall-info-am uninstall-moduleLTLIBRARIES
 
26514
+
 
26515
+.PHONY: CTAGS GTAGS all all-am all-local check check-am clean \
 
26516
+       clean-generic clean-libtool clean-moduleLTLIBRARIES \
 
26517
+       clean-noinstLTLIBRARIES ctags distclean distclean-compile \
 
26518
+       distclean-generic distclean-libtool distclean-tags distdir dvi \
 
26519
+       dvi-am html html-am info info-am install install-am \
 
26520
+       install-data install-data-am install-exec install-exec-am \
 
26521
+       install-exec-local install-info install-info-am install-man \
 
26522
+       install-moduleLTLIBRARIES install-strip installcheck \
 
26523
+       installcheck-am installdirs maintainer-clean \
 
26524
+       maintainer-clean-generic mostlyclean mostlyclean-compile \
 
26525
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
26526
+       tags uninstall uninstall-am uninstall-info-am \
 
26527
+       uninstall-moduleLTLIBRARIES
 
26528
+
 
26529
+
 
26530
+perl-core.c: perl-signals-list.h irssi-core.pl.h
 
26531
+
 
26532
+.libs/libperl_orig.a:
 
26533
+       if [ ! -d .libs ]; then mkdir .libs; fi
 
26534
+       rm -f .libs/libperl_orig.a
 
26535
+       if [ x$(LIBPERL_A) = x ]; then touch .libs/libperl_orig.a; else $(LN_S) $(LIBPERL_A) .libs/libperl_orig.a; fi
 
26536
+.libs/DynaLoader.a:
 
26537
+       if [ ! -d .libs ]; then mkdir .libs; fi
 
26538
+       rm -f .libs/DynaLoader.a
 
26539
+       $(LN_S) $(DYNALOADER_A) .libs/DynaLoader.a
 
26540
+
 
26541
+perl-signals-list.h: $(top_srcdir)/docs/signals.txt $(srcdir)/get-signals.pl
 
26542
+       cat $(top_srcdir)/docs/signals.txt | $(perlpath) $(srcdir)/get-signals.pl > perl-signals-list.h
 
26543
+
 
26544
+irssi-core.pl.h: irssi-core.pl
 
26545
+       $(top_srcdir)/file2header.sh $(srcdir)/irssi-core.pl irssi_core_code > irssi-core.pl.h
 
26546
+
 
26547
+all-local:
 
26548
+       for dir in $(perl_dirs); do \
 
26549
+         cd $$dir && \
 
26550
+         if [ ! -f Makefile ]; then \
 
26551
+           $(perlpath) Makefile.PL $(PERL_MM_PARAMS); \
 
26552
+         fi && \
 
26553
+         ($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
 
26554
+          $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
 
26555
+         cd ..; \
 
26556
+       done
 
26557
+
 
26558
+install-exec-local:
 
26559
+       for dir in $(perl_dirs); do \
 
26560
+         cd $$dir && $(MAKE) install && cd ..; \
 
26561
+       done
 
26562
+
 
26563
+clean-generic:
 
26564
+       for dir in $(perl_dirs); do \
 
26565
+         cd $$dir; \
 
26566
+         $(MAKE) clean; \
 
26567
+         cd ..; \
 
26568
+       done
 
26569
+
 
26570
+distclean-generic:
 
26571
+       for dir in $(perl_dirs); do \
 
26572
+         cd $$dir; \
 
26573
+         $(MAKE) realclean; rm -f Makefile.PL Makefile; \
 
26574
+         cd ..; \
 
26575
+       done
 
26576
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
26577
+# Otherwise a system limit (for SysV at least) may be exceeded.
 
26578
+.NOEXPORT:
 
26579
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/Makefile.in /tmp/dpep-work.mDzhRz/irssi/src/perl/Makefile.in
 
26580
--- ./src/perl/Makefile.in      2005-07-17 16:30:38.000000000 +0300
 
26581
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/Makefile.in    2005-07-17 16:48:14.000000000 +0300
 
26582
@@ -142,6 +142,8 @@
 
26583
 GLIB_LIBS = @GLIB_LIBS@
 
26584
 GLIB_MKENUMS = @GLIB_MKENUMS@
 
26585
 GOBJECT_QUERY = @GOBJECT_QUERY@
 
26586
+HAVE_GNUTLS_FALSE = @HAVE_GNUTLS_FALSE@
 
26587
+HAVE_GNUTLS_TRUE = @HAVE_GNUTLS_TRUE@
 
26588
 HAVE_PERL_FALSE = @HAVE_PERL_FALSE@
 
26589
 HAVE_PERL_TRUE = @HAVE_PERL_TRUE@
 
26590
 HAVE_STATIC_PERL_FALSE = @HAVE_STATIC_PERL_FALSE@
 
26591
@@ -151,6 +153,9 @@
 
26592
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
26593
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
26594
 LDFLAGS = @LDFLAGS@
 
26595
+LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
 
26596
+LIBGNUTLS_CONFIG = @LIBGNUTLS_CONFIG@
 
26597
+LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
 
26598
 LIBOBJS = @LIBOBJS@
 
26599
 LIBPERL_A = @LIBPERL_A@
 
26600
 LIBS = @LIBS@
 
26601
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/textui/Makefile.PL /tmp/dpep-work.mDzhRz/irssi/src/perl/textui/Makefile.PL
 
26602
--- ./src/perl/textui/Makefile.PL       1970-01-01 02:00:00.000000000 +0200
 
26603
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/textui/Makefile.PL     2005-07-17 16:48:40.000000000 +0300
 
26604
@@ -0,0 +1,8 @@
 
26605
+use ExtUtils::MakeMaker;
 
26606
+
 
26607
+WriteMakefile('NAME' => 'Irssi::TextUI',
 
26608
+              'LIBS' => '',
 
26609
+             'OBJECT' => '$(O_FILES)',
 
26610
+              'TYPEMAPS' => ['../common/typemap', '../ui/typemap'],
 
26611
+              'INC' => '-I../../.. -I../../../src -I../../../src/core -I../../../src/fe-common/core -I../../../src/fe-text -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  ',
 
26612
+             'VERSION_FROM' => './TextUI.pm');
 
26613
diff -urNad --exclude=CVS --exclude=.svn ./src/perl/ui/Makefile.PL /tmp/dpep-work.mDzhRz/irssi/src/perl/ui/Makefile.PL
 
26614
--- ./src/perl/ui/Makefile.PL   1970-01-01 02:00:00.000000000 +0200
 
26615
+++ /tmp/dpep-work.mDzhRz/irssi/src/perl/ui/Makefile.PL 2005-07-17 16:48:40.000000000 +0300
 
26616
@@ -0,0 +1,8 @@
 
26617
+use ExtUtils::MakeMaker;
 
26618
+
 
26619
+WriteMakefile('NAME' => 'Irssi::UI',
 
26620
+              'LIBS' => '',
 
26621
+             'OBJECT' => '$(O_FILES)',
 
26622
+              'TYPEMAPS' => ['../common/typemap'],
 
26623
+              'INC' => '-I../../.. -I../../../src -I../../../src/core -I../../../src/fe-common/core -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  ',
 
26624
+             'VERSION_FROM' => './UI.pm');
 
26625
diff -urNad --exclude=CVS --exclude=.svn ./stamp-h1 /tmp/dpep-work.mDzhRz/irssi/stamp-h1
 
26626
--- ./stamp-h1  1970-01-01 02:00:00.000000000 +0200
 
26627
+++ /tmp/dpep-work.mDzhRz/irssi/stamp-h1        2005-07-17 16:48:41.000000000 +0300
 
26628
@@ -0,0 +1 @@
 
26629
+timestamp for config.h