Mercurial > pidgin
comparison src/Makefile.am @ 6738:6c95f01aaf49
[gaim-migrate @ 7270]
Added optional GNUTLS support, which will also be used as a fallback if
Mozilla NSS is not installed.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Thu, 04 Sep 2003 06:19:25 +0000 |
| parents | b7e113a59b51 |
| children | 1c06bdded08c |
comparison
equal
deleted
inserted
replaced
| 6737:05098da416bb | 6738:6c95f01aaf49 |
|---|---|
| 2 getopt.c \ | 2 getopt.c \ |
| 3 getopt.h \ | 3 getopt.h \ |
| 4 getopt1.c \ | 4 getopt1.c \ |
| 5 Makefile.mingw \ | 5 Makefile.mingw \ |
| 6 win_gaim.c \ | 6 win_gaim.c \ |
| 7 ssl-nss.c \ | |
| 8 ssl-gnutls.c \ | |
| 7 win32/IdleTracker/Makefile.mingw \ | 9 win32/IdleTracker/Makefile.mingw \ |
| 8 win32/IdleTracker/idletrack.c \ | 10 win32/IdleTracker/idletrack.c \ |
| 9 win32/IdleTracker/idletrack.h \ | 11 win32/IdleTracker/idletrack.h \ |
| 10 win32/MinimizeToTray.c \ | 12 win32/MinimizeToTray.c \ |
| 11 win32/MinimizeToTray.h \ | 13 win32/MinimizeToTray.h \ |
| 40 win32/nsis/translations/simp-chinese.nsh \ | 42 win32/nsis/translations/simp-chinese.nsh \ |
| 41 win32/nsis/translations/swedish.nsh \ | 43 win32/nsis/translations/swedish.nsh \ |
| 42 win32/nsis/translations/trad-chinese.nsh | 44 win32/nsis/translations/trad-chinese.nsh |
| 43 | 45 |
| 44 SUBDIRS = protocols | 46 SUBDIRS = protocols |
| 47 | |
| 48 if USE_NSS | |
| 49 SSLSOURCES = ssl-nss.c | |
| 50 endif | |
| 51 | |
| 52 if USE_GNUTLS | |
| 53 SSLSOURCES = ssl-gnutls.c | |
| 54 endif | |
| 45 | 55 |
| 46 CORESOURCES = \ | 56 CORESOURCES = \ |
| 47 account.c \ | 57 account.c \ |
| 48 account.h \ | 58 account.h \ |
| 49 accountopt.c \ | 59 accountopt.c \ |
| 92 sslconn.c \ | 102 sslconn.c \ |
| 93 sslconn.h \ | 103 sslconn.h \ |
| 94 util.c \ | 104 util.c \ |
| 95 util.h \ | 105 util.h \ |
| 96 value.c \ | 106 value.c \ |
| 97 value.h | 107 value.h \ |
| 108 $(SSLSOURCES) | |
| 98 | 109 |
| 99 bin_PROGRAMS = gaim gaim-remote | 110 bin_PROGRAMS = gaim gaim-remote |
| 100 gaim_SOURCES = \ | 111 gaim_SOURCES = \ |
| 101 $(CORESOURCES) \ | 112 $(CORESOURCES) \ |
| 102 about.c \ | 113 about.c \ |
| 163 $(STATIC_LINK_LIBS) \ | 174 $(STATIC_LINK_LIBS) \ |
| 164 $(XSS_LIBS) \ | 175 $(XSS_LIBS) \ |
| 165 $(SM_LIBS) \ | 176 $(SM_LIBS) \ |
| 166 $(INTLLIBS) \ | 177 $(INTLLIBS) \ |
| 167 $(GTKSPELL_LIBS) \ | 178 $(GTKSPELL_LIBS) \ |
| 168 $(NSS_LIBS) | 179 $(NSS_LIBS) \ |
| 180 $(GNUTLS_LIBS) | |
| 169 | 181 |
| 170 gaim_remote_SOURCES = \ | 182 gaim_remote_SOURCES = \ |
| 171 gaim-remote.c | 183 gaim-remote.c |
| 172 | 184 |
| 173 gaim_remote_DEPENDENCIES = @LIBOBJS@ | 185 gaim_remote_DEPENDENCIES = @LIBOBJS@ |
| 183 $(AUDIOFILE_CFLAGS) \ | 195 $(AUDIOFILE_CFLAGS) \ |
| 184 $(AO_CFLAGS) \ | 196 $(AO_CFLAGS) \ |
| 185 $(DEBUG_CFLAGS) \ | 197 $(DEBUG_CFLAGS) \ |
| 186 $(GTK_CFLAGS) \ | 198 $(GTK_CFLAGS) \ |
| 187 $(GTKSPELL_CFLAGS) \ | 199 $(GTKSPELL_CFLAGS) \ |
| 188 $(NSS_CFLAGS) | 200 $(NSS_CFLAGS) \ |
| 201 $(GNUTLS_CFLAGS) |
