aboutsummaryrefslogtreecommitdiffstats
path: root/databases/Makefile
blob: 74e2b9a817f36886dda04d7ba9b5b27be84c1d95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
# $FreeBSD$
#

    COMMENT = Databases and related software

    SUBDIR += R-cran-DBI
    SUBDIR += R-cran-RMySQL
    SUBDIR += R-cran-RSQLite
    SUBDIR += R-cran-RSQLite.extfuns
    SUBDIR += R-cran-sqldf
    SUBDIR += WWWdb
    SUBDIR += adabase
    SUBDIR += adminer
    SUBDIR += adodb
    SUBDIR += adodb5
    SUBDIR += akonadi
    SUBDIR += animenfo-client
    SUBDIR += animenfo-client-gtk
    SUBDIR += apq
    SUBDIR += apq-mysql
    SUBDIR += apq-odbc
    SUBDIR += apq-pgsql
    SUBDIR += ateam_mysql_ldap_auth
    SUBDIR += autobackupmysql
    SUBDIR += bbdb
    SUBDIR += beansdb
    SUBDIR += buzhug
    SUBDIR += c3p0
    SUBDIR += cassandra-cpp-driver
    SUBDIR += cassandra2
    SUBDIR += casstcl
    SUBDIR += cdb
    SUBDIR += cego
    SUBDIR += cegobridge
    SUBDIR += clickhouse
    SUBDIR += couchdb
    SUBDIR += courier-authlib-mysql
    SUBDIR += courier-authlib-pgsql
    SUBDIR += courier-authlib-userdb
    SUBDIR += courier-authlib-usergdbm
    SUBDIR += cppdb
    SUBDIR += credis
    SUBDIR += dalmp
    SUBDIR += datamodeler
    SUBDIR += db
    SUBDIR += db48
    SUBDIR += db5
    SUBDIR += db6
    SUBDIR += dbconnect
    SUBDIR += dbf
    SUBDIR += dbf2mysql
    SUBDIR += dbh
    SUBDIR += dbow
    SUBDIR += dbtool
    SUBDIR += dbview
    SUBDIR += elixir-calecto
    SUBDIR += elixir-db_connection
    SUBDIR += elixir-ecto
    SUBDIR += elixir-ecto_migrate
    SUBDIR += elixir-exredis
    SUBDIR += elixir-geo
    SUBDIR += elixir-mariaex
    SUBDIR += elixir-mongo
    SUBDIR += elixir-postgrex
    SUBDIR += elixir-timex_ecto
    SUBDIR += emma
    SUBDIR += erlang-couchbeam
    SUBDIR += erlang-epgsql
    SUBDIR += erlang-eredis
    SUBDIR += evolution-data-server
    SUBDIR += fastdb
    SUBDIR += firebird25-client
    SUBDIR += firebird25-server
    SUBDIR += flamerobin
    SUBDIR += fortytwo-bdb
    SUBDIR += fpc-dblib
    SUBDIR += fpc-fpindexer
    SUBDIR += fpc-gdbm
    SUBDIR += fpc-ibase
    SUBDIR += fpc-mysql
    SUBDIR += fpc-odbc
    SUBDIR += fpc-oracle
    SUBDIR += fpc-postgres
    SUBDIR += fpc-pxlib
    SUBDIR += fpc-sqlite
    SUBDIR += freetds
    SUBDIR += freetds-devel
    SUBDIR += frontbase-jdbc
    SUBDIR += gadfly
    SUBDIR += galera
    SUBDIR += gdbm
    SUBDIR += geoserver-mysql-plugin
    SUBDIR += gigabase
    SUBDIR += glom
    SUBDIR += gnats4
    SUBDIR += gnatsweb4
    SUBDIR += gomdb
    SUBDIR += gosqlite3
    SUBDIR += gqlplus
    SUBDIR += grass
    SUBDIR += gtksql
    SUBDIR += hamsterdb
    SUBDIR += hashtypes
    SUBDIR += hbase
    SUBDIR += hiredis
    SUBDIR += hs-esqueleto
    SUBDIR += hs-hedis
    SUBDIR += hs-mysql
    SUBDIR += hs-persistent
    SUBDIR += hs-persistent-sqlite
    SUBDIR += hs-persistent-template
    SUBDIR += hsqldb
    SUBDIR += influxdb
    SUBDIR += innotop
    SUBDIR += ip4r
    SUBDIR += ipa_sdb
    SUBDIR += iplike
    SUBDIR += isql-viewer
    SUBDIR += jakarta-commons-dbutils
    SUBDIR += jasperreports
    SUBDIR += jdb
    SUBDIR += jdbc-oracle11g
    SUBDIR += jlog
    SUBDIR += jrobin
    SUBDIR += jrrd
    SUBDIR += kbibtex
    SUBDIR += kdb
    SUBDIR += kexi
    SUBDIR += kyotocabinet
    SUBDIR += kyototycoon
    SUBDIR += ldb
    SUBDIR += leo_center
    SUBDIR += leofs
    SUBDIR += leveldb
    SUBDIR += levigo
    SUBDIR += libcouchbase
    SUBDIR += libdbi
    SUBDIR += libdbi-drivers
    SUBDIR += libdrizzle
    SUBDIR += libdrizzle-redux
    SUBDIR += libgda5
    SUBDIR += libgda5-bdb
    SUBDIR += libgda5-jdbc
    SUBDIR += libgda5-ldap
    SUBDIR += libgda5-mdb
    SUBDIR += libgda5-mysql
    SUBDIR += libgda5-postgresql
    SUBDIR += libgda5-ui
    SUBDIR += libgdamm5
    SUBDIR += libhsclient
    SUBDIR += libiodbc
    SUBDIR += libmemcache
    SUBDIR += libmemcached
    SUBDIR += libmongo-client
    SUBDIR += libnvpair
    SUBDIR += libodbc++
    SUBDIR += libpbl
    SUBDIR += libpqtypes
    SUBDIR += libsdb
    SUBDIR += libzbxpgsql
    SUBDIR += libzdb
    SUBDIR += linux-c6-sqlite3
    SUBDIR += linux-c7-sqlite3
    SUBDIR += linux-oracle-instantclient-basic
    SUBDIR += linux-oracle-instantclient-sdk
    SUBDIR += linux-oracle-instantclient-sqlplus
    SUBDIR += liquibase
    SUBDIR += lmdb
    SUBDIR += lua-xapian
    SUBDIR += luadbi
    SUBDIR += luasql-firebird
    SUBDIR += luasql-mysql
    SUBDIR += luasql-odbc
    SUBDIR += luasql-postgres
    SUBDIR += luasql-sqlite3
    SUBDIR += mantis
    SUBDIR += mariadb-connector-c
    SUBDIR += mariadb100-client
    SUBDIR += mariadb100-server
    SUBDIR += mariadb101-client
    SUBDIR += mariadb101-server
    SUBDIR += mariadb102-client
    SUBDIR += mariadb102-server
    SUBDIR += mariadb55-client
    SUBDIR += mariadb55-server
    SUBDIR += mdbtools
    SUBDIR += mdcached
    SUBDIR += memcached
    SUBDIR += memcacheq
    SUBDIR += metakit
    SUBDIR += monetdb
    SUBDIR += mongodb
    SUBDIR += mongodb32
    SUBDIR += mongodb32-tools
    SUBDIR += mongodb34
    SUBDIR += mongodb34-rocks
    SUBDIR += mongodb34-tools
    SUBDIR += mrtg-mysql-load
    SUBDIR += mtools-mongodb
    SUBDIR += mtop
    SUBDIR += mydbf2mysql
    SUBDIR += mydumper
    SUBDIR += mysac
    SUBDIR += mysql++1
    SUBDIR += mysql++3
    SUBDIR += mysql-connector-c
    SUBDIR += mysql-connector-c++
    SUBDIR += mysql-connector-java
    SUBDIR += mysql-connector-odbc
    SUBDIR += mysql-proxy
    SUBDIR += mysql-q4m
    SUBDIR += mysql-udf
    SUBDIR += mysql2odbc
    SUBDIR += mysql2pgsql
    SUBDIR += mysql55-client
    SUBDIR += mysql55-server
    SUBDIR += mysql56-client
    SUBDIR += mysql56-server
    SUBDIR += mysql57-client
    SUBDIR += mysql57-server
    SUBDIR += mysql80-client
    SUBDIR += mysql80-server
    SUBDIR += mysqlbackup
    SUBDIR += mysqlbigram
    SUBDIR += mysqldump-secure
    SUBDIR += mysqldumper
    SUBDIR += mysqlidxchk
    SUBDIR += mysqlreport
    SUBDIR += mysqlsla
    SUBDIR += mysqlsniffer
    SUBDIR += mysqltcl
    SUBDIR += mysqltuner
    SUBDIR += mysqlwsrep56-server
    SUBDIR += mysqlwsrep57-server
    SUBDIR += mytop
    SUBDIR += nagios-check_mongodb
    SUBDIR += nagios-check_postgres_replication
    SUBDIR += nagios-check_redis
    SUBDIR += namazu2
    SUBDIR += neo4j
    SUBDIR += ntdb
    SUBDIR += ocaml-dbm
    SUBDIR += ocaml-mysql
    SUBDIR += ocaml-sqlite3
    SUBDIR += openark-kit
    SUBDIR += opendbx
    SUBDIR += opentsdb
    SUBDIR += ora2pg
    SUBDIR += oracle8-client
    SUBDIR += p5-Amazon-SimpleDB
    SUBDIR += p5-Amon2-DBI
    SUBDIR += p5-AnyEvent-BDB
    SUBDIR += p5-AnyEvent-CouchDB
    SUBDIR += p5-AnyEvent-DBD-Pg
    SUBDIR += p5-AnyEvent-Memcached
    SUBDIR += p5-AnyEvent-Redis
    SUBDIR += p5-App-Sqitch
    SUBDIR += p5-AsciiDB-TagFile
    SUBDIR += p5-BDB
    SUBDIR += p5-BSON
    SUBDIR += p5-BerkeleyDB
    SUBDIR += p5-Bucardo
    SUBDIR += p5-CDB_File
    SUBDIR += p5-CDB_File-Generator
    SUBDIR += p5-CGI-Session-Driver-memcached
    SUBDIR += p5-Cache-BDB
    SUBDIR += p5-Cache-Memcached
    SUBDIR += p5-Cache-Memcached-Fast
    SUBDIR += p5-Cache-Memcached-Managed
    SUBDIR += p5-Cache-Memcached-XS
    SUBDIR += p5-Cache-Memcached-libmemcached
    SUBDIR += p5-Class-DBI
    SUBDIR += p5-Class-DBI-AbstractSearch
    SUBDIR += p5-Class-DBI-AsForm
    SUBDIR += p5-Class-DBI-AutoLoader
    SUBDIR += p5-Class-DBI-BaseDSN
    SUBDIR += p5-Class-DBI-DATA-Schema
    SUBDIR += p5-Class-DBI-DDL
    SUBDIR += p5-Class-DBI-FromCGI
    SUBDIR += p5-Class-DBI-LazyInflate
    SUBDIR += p5-Class-DBI-Loader
    SUBDIR += p5-Class-DBI-Loader-Relationship
    SUBDIR += p5-Class-DBI-Oracle
    SUBDIR += p5-Class-DBI-Pager
    SUBDIR += p5-Class-DBI-Pg
    SUBDIR += p5-Class-DBI-Plugin
    SUBDIR += p5-Class-DBI-Plugin-AbstractCount
    SUBDIR += p5-Class-DBI-Plugin-DeepAbstractSearch
    SUBDIR += p5-Class-DBI-Plugin-Iterator
    SUBDIR += p5-Class-DBI-Plugin-Pager
    SUBDIR += p5-Class-DBI-Plugin-RetrieveAll
    SUBDIR += p5-Class-DBI-Plugin-Senna
    SUBDIR += p5-Class-DBI-Plugin-Type
    SUBDIR += p5-Class-DBI-Replication
    SUBDIR += p5-Class-DBI-SAK
    SUBDIR += p5-Class-DBI-SQLite
    SUBDIR += p5-Class-DBI-Sweet
    SUBDIR += p5-Class-DBI-ToSax
    SUBDIR += p5-Class-DBI-Untaint
    SUBDIR += p5-Class-DBI-mysql
    SUBDIR += p5-Class-Inflate
    SUBDIR += p5-CouchDB-View
    SUBDIR += p5-DBD-AnyData
    SUBDIR += p5-DBD-CSV
    SUBDIR += p5-DBD-Excel
    SUBDIR += p5-DBD-Google
    SUBDIR += p5-DBD-InterBase
    SUBDIR += p5-DBD-LDAP
    SUBDIR += p5-DBD-Mock
    SUBDIR += p5-DBD-Multi
    SUBDIR += p5-DBD-ODBC
    SUBDIR += p5-DBD-Oracle
    SUBDIR += p5-DBD-Pg
    SUBDIR += p5-DBD-PgLite
    SUBDIR += p5-DBD-PgPP
    SUBDIR += p5-DBD-SQLite
    SUBDIR += p5-DBD-SQLite2
    SUBDIR += p5-DBD-Sybase
    SUBDIR += p5-DBD-XBase
    SUBDIR += p5-DBD-cego
    SUBDIR += p5-DBD-mysql
    SUBDIR += p5-DBI
    SUBDIR += p5-DBI-Shell
    SUBDIR += p5-DBICx-Deploy
    SUBDIR += p5-DBICx-MapMaker
    SUBDIR += p5-DBICx-Sugar
    SUBDIR += p5-DBICx-TestDatabase
    SUBDIR += p5-DBICx-TxnInsert
    SUBDIR += p5-DBIWrapper
    SUBDIR += p5-DBIx-Abstract
    SUBDIR += p5-DBIx-Admin-CreateTable
    SUBDIR += p5-DBIx-Admin-DSNManager
    SUBDIR += p5-DBIx-Admin-TableInfo
    SUBDIR += p5-DBIx-AnyDBD
    SUBDIR += p5-DBIx-Browse
    SUBDIR += p5-DBIx-Class
    SUBDIR += p5-DBIx-Class-AsFdat
    SUBDIR += p5-DBIx-Class-BitField
    SUBDIR += p5-DBIx-Class-Candy
    SUBDIR += p5-DBIx-Class-Cursor-Cached
    SUBDIR += p5-DBIx-Class-CustomPrefetch
    SUBDIR += p5-DBIx-Class-DateTime-Epoch
    SUBDIR += p5-DBIx-Class-DeploymentHandler
    SUBDIR += p5-DBIx-Class-DigestColumns
    SUBDIR += p5-DBIx-Class-DynamicDefault
    SUBDIR += p5-DBIx-Class-DynamicSubclass
    SUBDIR += p5-DBIx-Class-EncodeColumns
    SUBDIR += p5-DBIx-Class-EncodedColumn
    SUBDIR += p5-DBIx-Class-Fixtures
    SUBDIR += p5-DBIx-Class-FrozenColumns
    SUBDIR += p5-DBIx-Class-Helpers
    SUBDIR += p5-DBIx-Class-InflateColumn-Authen-Passphrase
    SUBDIR += p5-DBIx-Class-InflateColumn-FS
    SUBDIR += p5-DBIx-Class-InflateColumn-IP
    SUBDIR += p5-DBIx-Class-IntrospectableM2M
    SUBDIR += p5-DBIx-Class-Loader
    SUBDIR += p5-DBIx-Class-Migration
    SUBDIR += p5-DBIx-Class-MooseColumns
    SUBDIR += p5-DBIx-Class-PassphraseColumn
    SUBDIR += p5-DBIx-Class-QueryLog
    SUBDIR += p5-DBIx-Class-QueryProfiler
    SUBDIR += p5-DBIx-Class-ResultSet-HashRef
    SUBDIR += p5-DBIx-Class-ResultSet-RecursiveUpdate
    SUBDIR += p5-DBIx-Class-Schema-Config
    SUBDIR += p5-DBIx-Class-Schema-Loader
    SUBDIR += p5-DBIx-Class-Schema-PopulateMore
    SUBDIR += p5-DBIx-Class-TimeStamp
    SUBDIR += p5-DBIx-Class-Tree
    SUBDIR += p5-DBIx-Class-Tree-NestedSet
    SUBDIR += p5-DBIx-Class-UUIDColumns
    SUBDIR += p5-DBIx-Class-VirtualColumns
    SUBDIR += p5-DBIx-Class-WebForm
    SUBDIR += p5-DBIx-Connector
    SUBDIR += p5-DBIx-ContextualFetch
    SUBDIR += p5-DBIx-Custom
    SUBDIR += p5-DBIx-DBHResolver
    SUBDIR += p5-DBIx-DBSchema
    SUBDIR += p5-DBIx-DataSource
    SUBDIR += p5-DBIx-Dump
    SUBDIR += p5-DBIx-Ease
    SUBDIR += p5-DBIx-HA
    SUBDIR += p5-DBIx-Handler
    SUBDIR += p5-DBIx-Inspector
    SUBDIR += p5-DBIx-Introspector
    SUBDIR += p5-DBIx-Lite
    SUBDIR += p5-DBIx-Log4perl
    SUBDIR += p5-DBIx-MySQLSequence
    SUBDIR += p5-DBIx-NoSQL
    SUBDIR += p5-DBIx-Password
    SUBDIR += p5-DBIx-Perlish
    SUBDIR += p5-DBIx-QueryLog
    SUBDIR += p5-DBIx-Recordset
    SUBDIR += p5-DBIx-RetryOverDisconnects
    SUBDIR += p5-DBIx-SQLEngine
    SUBDIR += p5-DBIx-SQLite-Simple
    SUBDIR += p5-DBIx-Safe
    SUBDIR += p5-DBIx-SearchBuilder
    SUBDIR += p5-DBIx-Sequence
    SUBDIR += p5-DBIx-Simple
    SUBDIR += p5-DBIx-Skinny
    SUBDIR += p5-DBIx-Skinny-InflateColumn-DateTime
    SUBDIR += p5-DBIx-Skinny-Mixin-DBHResolver
    SUBDIR += p5-DBIx-Skinny-Pager
    SUBDIR += p5-DBIx-Skinny-Schema-Loader
    SUBDIR += p5-DBIx-Sunny
    SUBDIR += p5-DBIx-TableHash
    SUBDIR += p5-DBIx-TransactionManager
    SUBDIR += p5-DBIx-Tree
    SUBDIR += p5-DBIx-VersionedDDL
    SUBDIR += p5-DBIx-Wrapper
    SUBDIR += p5-DBIx-XHTML_Table
    SUBDIR += p5-DBIx-XML_RDB
    SUBDIR += p5-DBM-Deep
    SUBDIR += p5-DMOZ-ParseRDF
    SUBDIR += p5-DR-Tarantool
    SUBDIR += p5-DWH_File
    SUBDIR += p5-Dancer-Plugin-DBIC
    SUBDIR += p5-Dancer-Plugin-Database
    SUBDIR += p5-Dancer-Plugin-Database-Core
    SUBDIR += p5-Dancer-Plugin-Redis
    SUBDIR += p5-Dancer-Session-Memcached
    SUBDIR += p5-Dancer2-Plugin-DBIC
    SUBDIR += p5-Dancer2-Plugin-Database
    SUBDIR += p5-Dancer2-Session-DBIC
    SUBDIR += p5-Data-Page
    SUBDIR += p5-Data-Pageset
    SUBDIR += p5-Exception-Class-DBI
    SUBDIR += p5-File-Locate
    SUBDIR += p5-GDBM
    SUBDIR += p5-Genezzo
    SUBDIR += p5-GitDDL
    SUBDIR += p5-GitDDL-Migrator
    SUBDIR += p5-GraphViz-DBI
    SUBDIR += p5-HTML-FormHandler-Model-DBIC
    SUBDIR += p5-Ima-DBI
    SUBDIR += p5-Interchange6-Schema
    SUBDIR += p5-Iterator-DBI
    SUBDIR += p5-Jifty-DBI
    SUBDIR += p5-KyotoCabinet
    SUBDIR += p5-LMDB_File
    SUBDIR += p5-MLDBM
    SUBDIR += p5-MLDBM-Sync
    SUBDIR += p5-MR-Tarantool
    SUBDIR += p5-Mango
    SUBDIR += p5-Memcached-libmemcached
    SUBDIR += p5-Metadata
    SUBDIR += p5-Mojo-Pg
    SUBDIR += p5-MongoDB
    SUBDIR += p5-MySQL-Diff
    SUBDIR += p5-Net-Async-CassandraCQL
    SUBDIR += p5-ORLite
    SUBDIR += p5-ORLite-Migrate
    SUBDIR += p5-Oryx
    SUBDIR += p5-POE-Component-DBIAgent
    SUBDIR += p5-POE-Component-EasyDBI
    SUBDIR += p5-POE-Component-LaDBI
    SUBDIR += p5-POE-Component-RRDTool
    SUBDIR += p5-Pg
    SUBDIR += p5-PostgreSQL-PLPerl-Call
    SUBDIR += p5-PostgreSQL-PLPerl-Trace
    SUBDIR += p5-Prophet
    SUBDIR += p5-Protocol-CassandraCQL
    SUBDIR += p5-RRD-Simple
    SUBDIR += p5-Redis
    SUBDIR += p5-Redis-hiredis
    SUBDIR += p5-RedisDB
    SUBDIR += p5-RedisDB-Parser
    SUBDIR += p5-Relations
    SUBDIR += p5-Relations-Query
    SUBDIR += p5-ResourcePool-Resource-DBI
    SUBDIR += p5-Rose-DB
    SUBDIR += p5-Rose-DB-Object
    SUBDIR += p5-Rose-DBx-Object-MoreHelpers
    SUBDIR += p5-Rose-DBx-Object-Renderer
    SUBDIR += p5-SQL-Abstract
    SUBDIR += p5-SQL-Abstract-Limit
    SUBDIR += p5-SQL-Abstract-More
    SUBDIR += p5-SQL-Abstract-Plugin-InsertMulti
    SUBDIR += p5-SQL-Interp
    SUBDIR += p5-SQL-Maker
    SUBDIR += p5-SQL-ReservedWords
    SUBDIR += p5-SQL-Statement
    SUBDIR += p5-SQL-Translator
    SUBDIR += p5-SQLite-Work
    SUBDIR += p5-Search-InvertedIndex
    SUBDIR += p5-Search-Namazu
    SUBDIR += p5-Search-Xapian10
    SUBDIR += p5-Search-Xapian12
    SUBDIR += p5-Store-CouchDB
    SUBDIR += p5-T2
    SUBDIR += p5-Tangram
    SUBDIR += p5-Template-DBI
    SUBDIR += p5-Teng
    SUBDIR += p5-Test-Cukes
    SUBDIR += p5-Test-Database
    SUBDIR += p5-Test-DatabaseRow
    SUBDIR += p5-Test-Fixture-DBI
    SUBDIR += p5-Test-mysqld
    SUBDIR += p5-Test-postgresql
    SUBDIR += p5-Text-Query-SQL
    SUBDIR += p5-Text-xSV
    SUBDIR += p5-Tie-DBI
    SUBDIR += p5-Tie-LevelDB
    SUBDIR += p5-Time-Piece-MySQL
    SUBDIR += p5-TokyoCabinet
    SUBDIR += p5-Xapian
    SUBDIR += p5-mysql-genocide
    SUBDIR += p5-tokyotyrant
    SUBDIR += pear-DB
    SUBDIR += pear-DBA
    SUBDIR += pear-DBA_Relational
    SUBDIR += pear-DB_DataObject
    SUBDIR += pear-DB_DataObject_FormBuilder
    SUBDIR += pear-DB_Pager
    SUBDIR += pear-DB_QueryTool
    SUBDIR += pear-DB_Sqlite_Tools
    SUBDIR += pear-DB_Table
    SUBDIR += pear-DB_ldap
    SUBDIR += pear-DB_ldap2
    SUBDIR += pear-DoctrineCommon
    SUBDIR += pear-DoctrineDBAL
    SUBDIR += pear-DoctrineORM
    SUBDIR += pear-Horde_Db
    SUBDIR += pear-Horde_HashTable
    SUBDIR += pear-Horde_Imsp
    SUBDIR += pear-Horde_Memcache
    SUBDIR += pear-Horde_Mongo
    SUBDIR += pear-MDB
    SUBDIR += pear-MDB2
    SUBDIR += pear-MDB2_Driver_mysql
    SUBDIR += pear-MDB2_Driver_mysqli
    SUBDIR += pear-MDB2_Driver_pgsql
    SUBDIR += pear-MDB2_Schema
    SUBDIR += pear-MDB_QueryTool
    SUBDIR += pear-Structures_DataGrid_DataSource_Array
    SUBDIR += pear-Structures_DataGrid_DataSource_CSV
    SUBDIR += pear-Structures_DataGrid_DataSource_DB
    SUBDIR += pear-Structures_DataGrid_DataSource_DBQuery
    SUBDIR += pear-Structures_DataGrid_DataSource_DBTable
    SUBDIR += pear-Structures_DataGrid_DataSource_DataObject
    SUBDIR += pear-Structures_DataGrid_DataSource_MDB2
    SUBDIR += pear-Structures_DataGrid_DataSource_PDO
    SUBDIR += pear-XML_Query2XML
    SUBDIR += pecl-cassandra
    SUBDIR += pecl-chdb
    SUBDIR += pecl-couchbase
    SUBDIR += pecl-dbase
    SUBDIR += pecl-drizzle
    SUBDIR += pecl-leveldb
    SUBDIR += pecl-memcache
    SUBDIR += pecl-memcached
    SUBDIR += pecl-memcached2
    SUBDIR += pecl-mongo
    SUBDIR += pecl-mongodb
    SUBDIR += pecl-pdo_user
    SUBDIR += pecl-redis
    SUBDIR += pecl-rrd
    SUBDIR += pecl-tokyo_tyrant
    SUBDIR += percona-pam-for-mysql
    SUBDIR += percona-toolkit
    SUBDIR += percona55-client
    SUBDIR += percona55-server
    SUBDIR += percona56-client
    SUBDIR += percona56-server
    SUBDIR += percona57-client
    SUBDIR += percona57-pam-for-mysql
    SUBDIR += percona57-server
    SUBDIR += pg_activity
    SUBDIR += pg_citus
    SUBDIR += pg_qualstats
    SUBDIR += pg_reorg
    SUBDIR += pg_repack
    SUBDIR += pg_rman
    SUBDIR += pg_stat_kcache
    SUBDIR += pg_statsinfo
    SUBDIR += pgaccess
    SUBDIR += pgadmin3
    SUBDIR += pgagent
    SUBDIR += pgbadger
    SUBDIR += pgbarman
    SUBDIR += pgbouncer
    SUBDIR += pgdbf
    SUBDIR += pgespresso
    SUBDIR += pgFormatter
    SUBDIR += pgfouine
    SUBDIR += pgloader
    SUBDIR += pglogical
    SUBDIR += pgmodeler
    SUBDIR += pgpool
    SUBDIR += pgpool-II-33
    SUBDIR += pgpool-II-35
    SUBDIR += pgpool-II-36
    SUBDIR += pgreplay
    SUBDIR += pgrouting
    SUBDIR += pgsphere
    SUBDIR += pgtcl
    SUBDIR += pgtop
    SUBDIR += pgtune
    SUBDIR += pguri
    SUBDIR += pgworksheet
    SUBDIR += php-mdcached
    SUBDIR += php-xapian
    SUBDIR += php5-pdo_cassandra
    SUBDIR += php5-tarantool
    SUBDIR += php56-dba
    SUBDIR += php56-interbase
    SUBDIR += php56-mssql
    SUBDIR += php56-mysql
    SUBDIR += php56-mysqli
    SUBDIR += php56-odbc
    SUBDIR += php56-pdo
    SUBDIR += php56-pdo_dblib
    SUBDIR += php56-pdo_firebird
    SUBDIR += php56-pdo_mysql
    SUBDIR += php56-pdo_odbc
    SUBDIR += php56-pdo_pgsql
    SUBDIR += php56-pdo_sqlite
    SUBDIR += php56-pgsql
    SUBDIR += php56-sqlite3
    SUBDIR += php56-sybase_ct
    SUBDIR += php70-dba
    SUBDIR += php70-interbase
    SUBDIR += php70-memcache
    SUBDIR += php70-memcached
    SUBDIR += php70-mysqli
    SUBDIR += php70-odbc
    SUBDIR += php70-pdo
    SUBDIR += php70-pdo_dblib
    SUBDIR += php70-pdo_firebird
    SUBDIR += php70-pdo_mysql
    SUBDIR += php70-pdo_odbc
    SUBDIR += php70-pdo_pgsql
    SUBDIR += php70-pdo_sqlite
    SUBDIR += php70-pgsql
    SUBDIR += php70-sqlite3
    SUBDIR += php71-dba
    SUBDIR += php71-interbase
    SUBDIR += php71-memcache
    SUBDIR += php71-mysqli
    SUBDIR += php71-odbc
    SUBDIR += php71-pdo
    SUBDIR += php71-pdo_dblib
    SUBDIR += php71-pdo_firebird
    SUBDIR += php71-pdo_mysql
    SUBDIR += php71-pdo_odbc
    SUBDIR += php71-pdo_pgsql
    SUBDIR += php71-pdo_sqlite
    SUBDIR += php71-pgsql
    SUBDIR += php71-sqlite3
    SUBDIR += phpliteadmin
    SUBDIR += phpminiadmin
    SUBDIR += phpmyadmin
    SUBDIR += phppgadmin
    SUBDIR += pldebugger
    SUBDIR += plpgsql_check
    SUBDIR += postgis-jdbc
    SUBDIR += postgis20
    SUBDIR += postgis21
    SUBDIR += postgis22
    SUBDIR += postgis23
    SUBDIR += postgresql-cstore_fdw
    SUBDIR += postgresql-jdbc
    SUBDIR += postgresql-libpgeasy
    SUBDIR += postgresql-libpqxx
    SUBDIR += postgresql-libpqxx3
    SUBDIR += postgresql-mysql_fdw
    SUBDIR += postgresql-odbc
    SUBDIR += postgresql-plproxy
    SUBDIR += postgresql-plruby
    SUBDIR += postgresql-plv8js
    SUBDIR += postgresql-relay
    SUBDIR += postgresql-repmgr
    SUBDIR += postgresql-repmgr2
    SUBDIR += postgresql-tds_fdw
    SUBDIR += postgresql92-client
    SUBDIR += postgresql92-contrib
    SUBDIR += postgresql92-docs
    SUBDIR += postgresql92-pgtcl
    SUBDIR += postgresql92-plperl
    SUBDIR += postgresql92-plpython
    SUBDIR += postgresql92-pltcl
    SUBDIR += postgresql92-server
    SUBDIR += postgresql93-client
    SUBDIR += postgresql93-contrib
    SUBDIR += postgresql93-docs
    SUBDIR += postgresql93-pgtcl
    SUBDIR += postgresql93-plperl
    SUBDIR += postgresql93-plpython
    SUBDIR += postgresql93-pltcl
    SUBDIR += postgresql93-server
    SUBDIR += postgresql94-client
    SUBDIR += postgresql94-contrib
    SUBDIR += postgresql94-docs
    SUBDIR += postgresql94-pgtcl
    SUBDIR += postgresql94-plperl
    SUBDIR += postgresql94-plpython
    SUBDIR += postgresql94-pltcl
    SUBDIR += postgresql94-server
    SUBDIR += postgresql95-client
    SUBDIR += postgresql95-contrib
    SUBDIR += postgresql95-docs
    SUBDIR += postgresql95-pgtcl
    SUBDIR += postgresql95-plperl
    SUBDIR += postgresql95-plpython
    SUBDIR += postgresql95-pltcl
    SUBDIR += postgresql95-server
    SUBDIR += postgresql96-client
    SUBDIR += postgresql96-contrib
    SUBDIR += postgresql96-docs
    SUBDIR += postgresql96-pgtcl
    SUBDIR += postgresql96-plperl
    SUBDIR += postgresql96-plpython
    SUBDIR += postgresql96-pltcl
    SUBDIR += postgresql96-server
    SUBDIR += powa-archivist
    SUBDIR += powa-web
    SUBDIR += powerarchitect
    SUBDIR += proftpd-mod_sql_mysql
    SUBDIR += proftpd-mod_sql_odbc
    SUBDIR += proftpd-mod_sql_postgres
    SUBDIR += proftpd-mod_sql_sqlite
    SUBDIR += proftpd-mod_sql_tds
    SUBDIR += puppetdb-terminus3
    SUBDIR += puppetdb-terminus4
    SUBDIR += puppetdb3
    SUBDIR += puppetdb4
    SUBDIR += pure-sql3
    SUBDIR += puredb
    SUBDIR += pxlib
    SUBDIR += pxtools
    SUBDIR += py-Elixir
    SUBDIR += py-MySQLdb
    SUBDIR += py-MySQLdb55
    SUBDIR += py-MySQLdb56
    SUBDIR += py-PyGreSQL
    SUBDIR += py-Pyrseas
    SUBDIR += py-agate-sql
    SUBDIR += py-alembic
    SUBDIR += py-apsw
    SUBDIR += py-bsddb
    SUBDIR += py-bsddb3
    SUBDIR += py-carbon
    SUBDIR += py-cdb
    SUBDIR += py-couchdb
    SUBDIR += py-cql
    SUBDIR += py-dbf
    SUBDIR += py-dbutils
    SUBDIR += py-django-transaction-hooks
    SUBDIR += py-fakeredis
    SUBDIR += py-fdb
    SUBDIR += py-firebirdsql
    SUBDIR += py-flask-sqlalchemy
    SUBDIR += py-forgetsql
    SUBDIR += py-gdbm
    SUBDIR += py-geoalchemy
    SUBDIR += py-geoalchemy2
    SUBDIR += py-hiredis
    SUBDIR += py-htsql
    SUBDIR += py-htsql-mysql
    SUBDIR += py-htsql-pgsql
    SUBDIR += py-kyotocabinet
    SUBDIR += py-leveldb
    SUBDIR += py-motor
    SUBDIR += py-mycli
    SUBDIR += py-mysql-connector-python
    SUBDIR += py-mysql-connector-python2
    SUBDIR += py-mysql2pgsql
    SUBDIR += py-mysqlclient
    SUBDIR += py-odbc
    SUBDIR += py-oops
    SUBDIR += py-oursql
    SUBDIR += py-peewee
    SUBDIR += py-pg8000
    SUBDIR += py-pg_pqueue
    SUBDIR += py-pgcli
    SUBDIR += py-pgspecial
    SUBDIR += py-pgxnclient
    SUBDIR += py-pickledb
    SUBDIR += py-pickleshare
    SUBDIR += py-postgresql
    SUBDIR += py-psycogreen
    SUBDIR += py-psycopg2
    SUBDIR += py-psycopg2cffi
    SUBDIR += py-pyPgSQL
    SUBDIR += py-pyhs
    SUBDIR += py-pylibmc
    SUBDIR += py-pymssql
    SUBDIR += py-pymysql
    SUBDIR += py-pypuppetdb
    SUBDIR += py-pypuppetdb03
    SUBDIR += py-pytc
    SUBDIR += py-python-memcached
    SUBDIR += py-python-rrdtool
    SUBDIR += py-python-sql
    SUBDIR += py-python-swiftclient
    SUBDIR += py-qt4-sql
    SUBDIR += py-qt5-sql
    SUBDIR += py-queries
    SUBDIR += py-rb
    SUBDIR += py-redis
    SUBDIR += py-riak
    SUBDIR += py-rrdtool_lgpl
    SUBDIR += py-sispy
    SUBDIR += py-south
    SUBDIR += py-sqlalchemy-migrate
    SUBDIR += py-sqlalchemy10
    SUBDIR += py-sqlalchemy11
    SUBDIR += py-sqlite3
    SUBDIR += py-sqlite3dbm
    SUBDIR += py-sqlobject
    SUBDIR += py-sqlparse
    SUBDIR += py-sqlparse01
    SUBDIR += py-sqlrelay
    SUBDIR += py-swift
    SUBDIR += py-sybase
    SUBDIR += py-tarantool
    SUBDIR += py-umemcache
    SUBDIR += py-unqlite
    SUBDIR += py-varstack
    SUBDIR += py-whisper
    SUBDIR += py-xapian
    SUBDIR += py3-apsw
    SUBDIR += py3-bsddb3
    SUBDIR += py3-mysqlclient
    SUBDIR += py3-psycopg2
    SUBDIR += py33-gdbm
    SUBDIR += py33-sqlite3
    SUBDIR += py34-gdbm
    SUBDIR += py34-sqlite3
    SUBDIR += py35-gdbm
    SUBDIR += py35-sqlite3
    SUBDIR += py36-gdbm
    SUBDIR += py36-sqlite3
    SUBDIR += pydbx
    SUBDIR += pymongo
    SUBDIR += pypy-gdbm
    SUBDIR += pypy-sqlite3
    SUBDIR += pyspatialite
    SUBDIR += qdbm
    SUBDIR += qdbm-plus
    SUBDIR += qof
    SUBDIR += qt4-ibase-plugin
    SUBDIR += qt4-mysql-plugin
    SUBDIR += qt4-odbc-plugin
    SUBDIR += qt4-pgsql-plugin
    SUBDIR += qt4-sql
    SUBDIR += qt4-sqlite-plugin
    SUBDIR += qt4-sqlite3-plugin
    SUBDIR += qt5-sql
    SUBDIR += qt5-sqldrivers-ibase
    SUBDIR += qt5-sqldrivers-mysql
    SUBDIR += qt5-sqldrivers-odbc
    SUBDIR += qt5-sqldrivers-pgsql
    SUBDIR += qt5-sqldrivers-sqlite2
    SUBDIR += qt5-sqldrivers-sqlite3
    SUBDIR += qt5-sqldrivers-tds
    SUBDIR += radix.v2
    SUBDIR += rdb
    SUBDIR += rdfdb
    SUBDIR += recutils
    SUBDIR += redigo
    SUBDIR += redis
    SUBDIR += redis-devel
    SUBDIR += retcl
    SUBDIR += riak
    SUBDIR += riak2
    SUBDIR += rocksdb
    SUBDIR += rocksdb-lite
    SUBDIR += rrdman
    SUBDIR += rrdmerge
    SUBDIR += rrdtool
    SUBDIR += rrdtool12
    SUBDIR += ruby-bdb
    SUBDIR += ruby-gdbm
    SUBDIR += ruby-mysql
    SUBDIR += ruby-odbc
    SUBDIR += ruby-qdbm
    SUBDIR += ruby-tokyocabinet
    SUBDIR += ruby-xapian
    SUBDIR += rubygem-active_record_query_trace
    SUBDIR += rubygem-activemodel-serializers-xml
    SUBDIR += rubygem-activemodel4
    SUBDIR += rubygem-activemodel5
    SUBDIR += rubygem-activemodel50
    SUBDIR += rubygem-activerecord-import
    SUBDIR += rubygem-activerecord-jdbc-adapter
    SUBDIR += rubygem-activerecord-jdbcmysql-adapter
    SUBDIR += rubygem-activerecord-session_store
    SUBDIR += rubygem-activerecord4
    SUBDIR += rubygem-activerecord5
    SUBDIR += rubygem-activerecord50
    SUBDIR += rubygem-after_commit_queue
    SUBDIR += rubygem-amalgalite
    SUBDIR += rubygem-arel
    SUBDIR += rubygem-arel-helpers
    SUBDIR += rubygem-arel6
    SUBDIR += rubygem-arel7
    SUBDIR += rubygem-awesome_nested_set
    SUBDIR += rubygem-bdb1
    SUBDIR += rubygem-bigrecord
    SUBDIR += rubygem-couchrest
    SUBDIR += rubygem-data_objects
    SUBDIR += rubygem-datamapper
    SUBDIR += rubygem-dbd-mysql
    SUBDIR += rubygem-dbd-odbc
    SUBDIR += rubygem-dbd-pg
    SUBDIR += rubygem-dbd-sqlite3
    SUBDIR += rubygem-dbi
    SUBDIR += rubygem-dm-aggregates
    SUBDIR += rubygem-dm-chunked_query
    SUBDIR += rubygem-dm-constraints
    SUBDIR += rubygem-dm-core
    SUBDIR += rubygem-dm-do-adapter
    SUBDIR += rubygem-dm-migrations
    SUBDIR += rubygem-dm-mysql-adapter
    SUBDIR += rubygem-dm-observer
    SUBDIR += rubygem-dm-pager
    SUBDIR += rubygem-dm-paperclip
    SUBDIR += rubygem-dm-postgres-adapter
    SUBDIR += rubygem-dm-serializer
    SUBDIR += rubygem-dm-timestamps
    SUBDIR += rubygem-dm-transactions
    SUBDIR += rubygem-dm-types
    SUBDIR += rubygem-dm-validations
    SUBDIR += rubygem-do_mysql
    SUBDIR += rubygem-do_postgres
    SUBDIR += rubygem-do_sqlite3
    SUBDIR += rubygem-em-redis-unified
    SUBDIR += rubygem-familia
    SUBDIR += rubygem-flipper-active_record
    SUBDIR += rubygem-globalid
    SUBDIR += rubygem-globalid-rails5
    SUBDIR += rubygem-globalid-rails50
    SUBDIR += rubygem-her
    SUBDIR += rubygem-hiredis
    SUBDIR += rubygem-jdbc-mysql
    SUBDIR += rubygem-leo_manager_client
    SUBDIR += rubygem-memcache
    SUBDIR += rubygem-memcache-client
    SUBDIR += rubygem-mysql
    SUBDIR += rubygem-mysql2
    SUBDIR += rubygem-openid-redis-store
    SUBDIR += rubygem-paranoia
    SUBDIR += rubygem-pg
    SUBDIR += rubygem-pg_array_parser
    SUBDIR += rubygem-pghero
    SUBDIR += rubygem-pghero-rails5
    SUBDIR += rubygem-pghero-rails50
    SUBDIR += rubygem-postgres_ext
    SUBDIR += rubygem-rbase
    SUBDIR += rubygem-redis
    SUBDIR += rubygem-redis-actionpack
    SUBDIR += rubygem-redis-actionpack-rails5
    SUBDIR += rubygem-redis-actionpack-rails50
    SUBDIR += rubygem-redis-namespace
    SUBDIR += rubygem-seed-fu
    SUBDIR += rubygem-sqlite3
    SUBDIR += rubygem-sqlite3-ruby
    SUBDIR += rubygem-state_machines-activemodel
    SUBDIR += rubygem-state_machines-activerecord
    SUBDIR += rubygem-tarantool
    SUBDIR += sfcgal
    SUBDIR += sharedance
    SUBDIR += skytools
    SUBDIR += slony1v2
    SUBDIR += soci
    SUBDIR += spatialite
    SUBDIR += spatialite-tools
    SUBDIR += spatialite_gui
    SUBDIR += speedtables
    SUBDIR += sql-workbench
    SUBDIR += sqlbuddy
    SUBDIR += sqlcached
    SUBDIR += sqlcipher
    SUBDIR += sqlclient
    SUBDIR += sqldeveloper
    SUBDIR += sqlite-ext-miscfuncs
    SUBDIR += sqlite-ext-pcre
    SUBDIR += sqlite-ext-regexp
    SUBDIR += sqlite-ext-spellfix
    SUBDIR += sqlite2
    SUBDIR += sqlite3
    SUBDIR += sqlitebrowser
    SUBDIR += sqlitebrowser-qt5
    SUBDIR += sqliteconvert
    SUBDIR += sqliteman
    SUBDIR += sqlitemanager
    SUBDIR += sqliteodbc
    SUBDIR += sqliteodbc-sqlite2
    SUBDIR += sqlitestudio
    SUBDIR += sqlrelay
    SUBDIR += sqsh
    SUBDIR += squirrel-sql
    SUBDIR += tablelog
    SUBDIR += tarantool
    SUBDIR += tarantool-c
    SUBDIR += tcl-Mysql
    SUBDIR += tcl-lmdb
    SUBDIR += tcl-sqlite3
    SUBDIR += tdb
    SUBDIR += tdbc
    SUBDIR += tile38
    SUBDIR += timescaledb
    SUBDIR += tinycdb
    SUBDIR += tokyocabinet
    SUBDIR += tokyotyrant
    SUBDIR += tora
    SUBDIR += tsearch_extras
    SUBDIR += tuning-primer
    SUBDIR += twemproxy
    SUBDIR += unixODBC
    SUBDIR += useracc
    SUBDIR += vfront
    SUBDIR += virtualpg
    SUBDIR += virtuoso
    SUBDIR += vsqlite
    SUBDIR += wfb2sql
    SUBDIR += wmjsql
    SUBDIR += xapian-bindings
    SUBDIR += xapian-bindings12
    SUBDIR += xapian-core
    SUBDIR += xapian-core10
    SUBDIR += xapian-core12
    SUBDIR += xtrabackup
    SUBDIR += zodb3

.include <bsd.port.subdir.mk>
lass='commitgraph'>* Switched to use e_contact_quick_add_free_form. Removed debugging code,Jon Trowbridge2001-03-0918-178/+1102 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-03-08 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-popup.c (quick_add_cb): Switched to use e_contact_quick_add_free_form. Removed debugging code, hopefully without introducing any bugs in the process. * gui/component/select-names/e-select-names-text-model.c (e_select_names_text_model_insert_length): Fix bug with commas inside of name/address combos. As long as the comma is inside of quotes, it will be treated as part of the name rather than as a break between addresses. * gui/component/select-names/e-select-names-completion.c (match_nickname): Use e_card_name_to_string for nickname match strings. (match_email): Use e_card_name_to_string for email match strings. (e_select_names_completion_begin): Strip quotes out of query text, so we don't produce malformed sexps. Added William Blake quote easter egg. * contact-editor/e-contact-quick-add.c: Further attempts to fix... mostly unsuccessful. (e_contact_quick_add_free_form): Added. Takes a single string and tries to parse out (using some simple, loose rules) the name and e-mail -- then calls e_contact_quick_add. An attempt to get the computer to automatically Do The Right Thing. * backend/ebook/e-book.c: Fixed some broken indentation. Yes, I'm anal. * gui/component/GNOME_Evolution_Addressbook.oafinfo: Added oaf_server info for EAddressWidget. * gui/component/GNOME_Evolution_Addressbook.oaf.in: Added oaf_server info for EAddressWidget. * gui/component/addressbook-factory.c (main): Add call to e_address_widget_factory_init. * gui/component/e-address-widget.h: * gui/component/e-address-widget.c: Added. A little widget (and a Bonobo control, BTW) for displaying addresses, with a left-click menu. Used to display addresses in the mail viewer (as embedded GtkHTML objects, replacing the text previously used). Still quite incomplete. 2001-03-08 Jon Trowbridge <trow@ximian.com> * mail-format.c (write_field_row_begin): Added. Table row HTML broken out into its own function. (write_subject): Added. Emits the proper HTML for the subject line. (write_field_to_stream): #ifdef-ed out of existence. (write_address): Take a CamelInternetAddress and spit out an <object> tag with the appropriate <param>s. * mail-display.c (on_object_requested): Check for an "address" object. If found, call... (handle_embedded_address_object): ...this function, which creates an AddressWidget bonobo control and passes in the necessary info. I never really realized just quite how much GtkHTML kicks ass until I figured out how to make this work. svn path=/trunk/; revision=8607 * Removed mail-vtrash.cJeffrey Stedfast2001-03-092-3/+5 | | | | | | | | 2001-03-08 Jeffrey Stedfast <fejj@ximian.com> * POTFILES.in: Removed mail-vtrash.c svn path=/trunk/; revision=8606 * The type of this folder is now "vtrash" and not "mail".Jeffrey Stedfast2001-03-092-1/+6 | | | | | | | | | 2001-03-08 Jeffrey Stedfast <fejj@ximian.com> * local/Trash/folder-metadata.xml: The type of this folder is now "vtrash" and not "mail". svn path=/trunk/; revision=8605 * Removed from cvsJeffrey Stedfast2001-03-095-218/+6 | | | | | | | | | | | | | | | | | | | 2001-03-08 Jeffrey Stedfast <fejj@ximian.com> * mail-vtrash.[c,h]: Removed from cvs * Makefile.am: Removed mail-vtrash.[c,h] * main.c: Don't #include "mail-vtrash" anymore. * component-factory.c: Add "vtrash" as a folder type we support. (create_view): Kludgy-kludge around the vtrash type. (owner_set_cb): Don't create the vTrash folder here anymore... * folder-browser.c (on_double_click): Call open_msg here so that it does the Right Thing (tm). svn path=/trunk/; revision=8604 * Add "vtrash" as a folder type we support. (create_view): Kludgy-kludgeJeffrey Stedfast2001-03-092-3/+7 | | | | | | | | | | 2001-03-08 Jeffrey Stedfast <fejj@ximian.com> * component-factory.c: Add "vtrash" as a folder type we support. (create_view): Kludgy-kludge around the vtrash type. (owner_set_cb): Don't create the vTrash folder here anymore... svn path=/trunk/; revision=8603 * Hmm, fixesFatih Demir2001-03-091-10/+10 | | | | svn path=/trunk/; revision=8602 * Updated tr.poFatih Demir2001-03-092-2280/+2830 | | | | svn path=/trunk/; revision=8601 * Call open_msg here so that it does the Right Thing (tm).Jeffrey Stedfast2001-03-093-5/+10 | | | | | | | | | 2001-03-08 Jeffrey Stedfast <fejj@ximian.com> * folder-browser.c (on_double_click): Call open_msg here so that it does the Right Thing (tm). svn path=/trunk/; revision=8600 * Make sure we have something selected first ;-)Jeffrey Stedfast2001-03-093-6/+13 | | | | | | | | | | | 2001-03-08 Jeffrey Stedfast <fejj@ximian.com> * vfolder-editor.c (double_click): Make sure we have something selected first ;-) * filter-editor.c (double_click): And here too. svn path=/trunk/; revision=8599 * Override the default init_trash() with the our custom one (sinceJeffrey Stedfast2001-03-092-15/+70 | | | | | | | | | | | | | | | | 2001-03-08 Jeffrey Stedfast <fejj@ximian.com> * mail-local.c (mail_local_store_class_init): Override the default init_trash() with the our custom one (since MailLocalStore doesn't let the CamelStore keep a hash of opened folders and instead keepts track of them itself). (init_trash): custom implementation of the init_trash method for MailLocalStores (get_folder): i18nize. (register_folder_registered): Don't add the folder to the vtrash here. svn path=/trunk/; revision=8596 * These fixes make it so that the CamelStore does not actually hold a ref onJeffrey Stedfast2001-03-092-27/+54 | | | | | | | | | | | | | | | | | | | | 2001-03-08 Jeffrey Stedfast <fejj@ximian.com> These fixes make it so that the CamelStore does not actually hold a ref on it's vTrash folder. The vTrash folder is now created ONLY when it is requested. This solves the problem of not being able to unref a Store and have it disconnect/finalize like we expect it to. * camel-store.c (init_trash): When we create the vtrash, add all previously opened folders to it and hook on to the finalize event so that we can then set the store->vtrash to NULL. (get_trash): If a vtrash folder for the store doesn't exist, init_trash() and then try. (construct): No longer need this. (camel_store_class_init): Don't override the construct method. (camel_store_finalize): We no longer hold a ref on the vtrash so don't unref it. svn path=/trunk/; revision=8595 * Added a ShellComponent method to retrieve the selection for drag andEttore Perazzoli2001-03-0817-73/+312 | | | | | | drop and support for it in the shell. Untested. svn path=/trunk/; revision=8594 * Rename the "Get Mail" button to "Send and Receive".Ettore Perazzoli2001-03-082-2/+7 | | | | svn path=/trunk/; revision=8593 * Implement. (get_trash): Implement. (camel_pop3_store_class_init): OverrideJeffrey Stedfast2001-03-082-0/+31 | | | | | | | | | | | | | | | | 2001-03-07 Jeffrey Stedfast <fejj@ximian.com> * providers/pop3/camel-pop3-store.c (init_trash): Implement. (get_trash): Implement. (camel_pop3_store_class_init): Override the default init_trash and get_trash virtual functions. Hopefully this should fix the problem of pop3 sotre's not disconnecting after the send&recv code finishes downloading mail. Wonder if I should override the default implementation for the mbox, mh, and maildir too? svn path=/trunk/; revision=8592 * Removed --enable-assbarn-security and replaced it with the real options:Jeffrey Stedfast2001-03-083-101/+91 | | | | | | | | | | | | | | 2001-03-07 Jeffrey Stedfast <fejj@ximian.com> * configure.in: Removed --enable-assbarn-security and replaced it with the real options: --with-nspr-includes=PREFIX --with-nspr-libs=PREFIX --with-nss=PREFIX * acconfig.h: #undef HAVE_NSS svn path=/trunk/; revision=8591 * New function. Used to store integer values into the configuration engine.Miguel de Icaza2001-03-087-275/+645 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-03-06 Miguel de Icaza <miguel@ximian.com> * e-msg-composer.c (set_config): New function. Used to store integer values into the configuration engine. Handles the case of Bonobo-conf being installed, or falls back to gnome_config. * e-msg-composer-hdrs.c (add_header): Renamed to be header_new_recipient(). Now we take care of the other cases in create_headers, which is a lot nicer now. (create_optionmenu): Removed extra "name" argument which was not being used anyways (the only arg passed was From:). (init): Removed all the redundant NULL initialization by using nice g_new0 (create_headers): New function, much cleaner. Use of Pair structure everywhere instead of individual widgets to keep track of which ones are visible and which ones are not. * e-msg-composer.c (setup_ui): Handle ViewFrom and ViewBCC commands. (menu_view_bcc_cb, menu_view_from_cb): New functions that implement the features described. (menu_format_html_cb): Removed unrequired test, as e_msg_composer_set_send_html already optimizes the case of the state being the same. (menu_security_pgp_encrypt_cb): Remove redundant code. (menu_security_pgp_sign_cb): ditto. 2001-03-06 Miguel de Icaza <miguel@ximian.com> * evolution-message-composer.xml: Reorder menus to be File, Edit, View, Insert, Format (instead of File, Edit, Format, View, Insert). Add View/From Field and View/From BCC Add Insert/File. Add File/Send menu item. Change the look to follow the "mailer" look (thiner display). svn path=/trunk/; revision=8590 * Added the ability for components to specify drag/drop types, andEttore Perazzoli2001-03-088-14/+425 | | | | | | | started some work to get the EStorageSetView to use them. Still in progress, nothing really happens for the user yet. svn path=/trunk/; revision=8589 * Require GAL 0.5.99.6.Ettore Perazzoli2001-03-082-1/+5 | | | | svn path=/trunk/; revision=8588 * New public API call, `e_table_get_cell_at()'. Also upped the GALEttore Perazzoli2001-03-082-44/+42 | | | | | | version number because of that. svn path=/trunk/; revision=8587 * Add an action-part widget. (filter_rule_from_mlist): Same here. ThisJeffrey Stedfast2001-03-082-4/+16 | | | | | | | | | | | | 2001-03-07 Jeffrey Stedfast <fejj@ximian.com> * mail-autofilter.c (filter_rule_from_message): Add an action-part widget. (filter_rule_from_mlist): Same here. This should get rid of the problem where people go to create a rule based on a message and forget to fill-in the action part. svn path=/trunk/; revision=8586 * (remote_recv_line): Fix another problem...Dan Winship2001-03-082-1/+3 | | | | svn path=/trunk/; revision=8585 * /* xgettext:no-c-format */ before the welcome message.Kjartan Maraas2001-03-081-0/+2 | | | | | | | | | 2001-03-07 Kjartan Maraas <kmaraas@gnome.org> * shell/main: /* xgettext:no-c-format */ before the welcome message. svn path=/trunk/; revision=8584 * Don't try to generate a Makefile in camel/providers/vee as it's empty.Kjartan Maraas2001-03-083-2/+6 | | | | | | | | | 2001-03-07 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Don't try to generate a Makefile in camel/providers/vee as it's empty. svn path=/trunk/; revision=8583 * Remove some unused stuffDan Winship2001-03-074-71/+4 | | | | | | | | * providers/local/camel-mbox-provider.c: * providers/vee/.cvsignore: * providers/vee/libcamelvee.urls: Remove some unused stuff svn path=/trunk/; revision=8582 * Fix an off-by-one in the "is this for real?" check so that "http:// "Dan Winship2001-03-072-1/+6 | | | | | | | * e-html-utils.c (url_extract): Fix an off-by-one in the "is this for real?" check so that "http:// " won't get URLified svn path=/trunk/; revision=8581 * Return the return value of camel_service_connect rather than returningDan Winship2001-03-072-4/+10 | | | | | | | | | | * camel-remote-store.c (camel_remote_store_connected): Return the return value of camel_service_connect rather than returning !camel_exception_is_set(), since that will be wrong if ex==NULL... Fixes a crash in the IMAP keepalive code, but this same problem probably exists in other places too... svn path=/trunk/; revision=8580 * Add extension mime type fileMiguel de Icaza2001-03-072-3/+9 | | | | svn path=/trunk/; revision=8579 * New function to decide if a mime part is an S/MIME v3 signed part.Jeffrey Stedfast2001-03-073-21/+107 | | | | | | | | | | | | 2001-03-07 Jeffrey Stedfast <fejj@ximian.com> * mail-crypto.c (mail_crypto_is_smime_v3_signed): New function to decide if a mime part is an S/MIME v3 signed part. (mail_crypto_is_pkcs7_mime): New function to decide if a mime part is an application/pkcs7-mime part (or an application/octet-stream part with application/pkcs7-mime data). svn path=/trunk/; revision=8578 * Move the signal emittion to after the set_menu call so that it actuallyJeffrey Stedfast2001-03-074-1399/+1332 | | | | | | | | | | | | | | | 2001-03-07 Jeffrey Stedfast <fejj@ximian.com> * mail-account-editor.c (source_auth_init): Move the signal emittion to after the set_menu call so that it actually works. (transport_type_changed): Updated to manipulate the user/passwd fields for the transport. (construct): Updated to init the user/passwd fields for the transport. (transport_auth_init): Renamed. Also fill in the user/passwd fields if available. svn path=/trunk/; revision=8577 * uh, emacs said it didn't save thisJeffrey Stedfast2001-03-071-1/+1 | | | | svn path=/trunk/; revision=8576 * Disable the NNTP code if NNTP is not enabled. This prevents some runtimeJeffrey Stedfast2001-03-072-1/+6 | | | | | | | | | | | 2001-03-06 Jeffrey Stedfast <fejj@ximian.com> * mail-accounts.c (construct): Disable the NNTP code if NNTP is not enabled. This prevents some runtime warnings... * mail-config-druid.c: Updated to have a transport auth page. svn path=/trunk/; revision=8575 * Updated to have a transport auth page.Jeffrey Stedfast2001-03-074-92/+554 | | | | | | | | 2001-03-06 Jeffrey Stedfast <fejj@ximian.com> * mail-config-druid.c: Updated to have a transport auth page. svn path=/trunk/; revision=8574 * Redone so as to save on memory allocations and speed.Jeffrey Stedfast2001-03-073-54/+63 | | | | | | | | | 2001-03-06 Jeffrey Stedfast <fejj@ximian.com> * camel-sasl-digest-md5.c (compute_response): Redone so as to save on memory allocations and speed. svn path=/trunk/; revision=8573 * Reorganize the menus to have entries always in a consistent fashion, asMiguel de Icaza2001-03-0718-304/+621 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-02-27 Miguel de Icaza <miguel@ximian.com> * gui/e-day-view.c (e_day_view_on_event_right_click): Reorganize the menus to have entries always in a consistent fashion, as reported to the genepool mailing list. (e_day_view_on_event_right_click): Added a FIXME comment to the FIXME comment without a FIXME. Now we use e_popup_menu. This allows us to hide/show items on demand, and to sensitize/de-sensitize items depending on their state. This will also let us add icon support (when we get nice icons for this) * gui/e-week-view.c (e_week_view_show_popup_menu): Ditto. The files popup-menu.c and popup-menu.h can now be removed. 2001-03-01 Miguel de Icaza <miguel@ximian.com> * folder-browser.c (on_right_click): Move the context menus to the toplevel code; Use enumerations for the various bitfield constants. Add support for hiding items that are not required (read/unread and delete/undelete). This requires my previous patch, as it assumes "Open" does the right thing instead of having two operations: Open and Edit. 2001-02-28 Miguel de Icaza <miguel@ximian.com> * folder-browser.c (on_right_click): Removed draft folders op here, since open_msg now does the right thing (edit or view). * folder-browser-factory.c (update_pixmaps): Removed MessageEdit from here. * mail-callbacks.c (open_msg): New function, does the "right thing" to a message (either, edit or open). * folder-browser-factory.c: Register new command here. (update_pixmaps): Rename keys that have been shuffled around. (update_pixmaps): Rename to match new updates on xml file. Rename MessageOpenNewWindow to MessageOpen. Change action from "view_message" to "open_message". * mail-callbacks.c (mark_all_as_seen): New command. Marks all messages as seen. 2001-03-06 Miguel de Icaza <miguel@ximian.com> * evolution-tasks.xml: Added "File/New/Task" as well. * evolution-mail.xml: Added "File/New/Mail Message" at the top with binding C-n. * evolution-calendar.xml: Set the binding for New Appointment to C-n * evolution-contact-editor.xml: Set the toolbar to hlook=text vlook=icon; Set all icons priority-text to 1. * evolution-addressbook.xml: Added "Contact" to the New menu. * evolution.xml: Provide an entry point to put "New" items on the first level. We are going to need some Bonobo support to "hide" objects when other objects appear (like, having Mail Message bound to C-S-X in the global space, and when we switch to Mail, we only show the entry that has C-n as the binding). 2001-02-28 Miguel de Icaza <miguel@ximian.com> * evolution.xml: Moved Importer after the Folder operations per Dan's proposal. * evolution-addressbook.xml: Renamed Settings/AddressBook Configuration to Tools/Settings. Make all the items have "Print" items that use the same icon instead of a collection of icons. * evolution-calendar.xml: Moved "Calendar Preferences" from "Settings" to "Tools/Settings". * evolution-mail.xml: Settings menu is fully gone. All things that run a dialog now end up in "Tools" while actions end up in "Actions". Hence I am right. Renamed "Mail Configuration..." to "Identieies and Servers" Move MessageMarkAsRead, MessageMarkAsUnRead to Edit menu. Add MessageMarkAllAsRead. Remove "Print Message" from Message menu. Remove "Print Preview Message" from Message menu. Leave them on the "File" menu. Renamed "Reply to Sender" to "Reply" (awaiting Ettore's permission). Renamed "Messages" to "Actions". Open Message renamed to "Open Selected Items" (as this is what it actually does). Moved "Save Message As" to "File" menu. Added "Properties" to the File/Folder submenu. Edit menu now looks like this: Message Move, Message Copy, Select All, Invert Selection, Delete, Undelete, Mark as Read, Mark as Unread. Some of them were moved from the "Messages" menu. "Forward message" shortcut changed to C-f Tools menu created. Create Rule From message moved to "Tools". * evolution.xml: Added Tools menu. Moved Edit/Customize to Tools/Customize Toolbar. Added File/Folder submenu. Duplicate "New Folder" in here. 2001-02-28 Miguel de Icaza <miguel@ximian.com> * menus/gal-view-menus.c (build_menus): Add translation string here. svn path=/trunk/; revision=8572 * Fix glitch with inserting comma-delimited stuff when length > 1.Jon Trowbridge2001-03-072-0/+8 | | | | | | | | | | 2001-03-06 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-text-model.c (e_select_names_text_model_insert_length): Fix glitch with inserting comma-delimited stuff when length > 1. svn path=/trunk/; revision=8571 * Added. Just encapsulates openingJon Trowbridge2001-03-073-2/+40 | | | | | | | | | | | 2001-03-06 Jon Trowbridge <trow@ximian.com> * backend/ebook/e-book.c (e_book_load_local_address_book): Added. Just encapsulates opening file://~username/evolution/local/Contactes/addressbook.db, so that path doesn't need to be hardwired in throughout the code. svn path=/trunk/; revision=8570 * If the folderinfo has no URL (ie, can't contain messages), don't add it asDan Winship2001-03-072-4/+7 | | | | | | | * mail-ops.c (get_folderinfo_got): If the folderinfo has no URL (ie, can't contain messages), don't add it as a vtrash source. svn path=/trunk/; revision=8569 * Added the third argument to e_contact_editor_new. (Cheated and send NULLBenjamin Kahn2001-03-073-2/+10 | | | | | | | | | | | | 2001-03-06 Benjamin Kahn <xkahn@cybersites.com> * contact-editor/e-contact-quick-add.c (clicked_cb): Added the third argument to e_contact_editor_new. (Cheated and send NULL for the field argument, which is probably troublesome. It will be fixed soon by either clahey or toshok.) svn path=/trunk/; revision=8568 * Fix a reference counting bug.Jon Trowbridge2001-03-0614-6/+1084 | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-03-06 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-model.c (e_select_names_model_replace): Fix a reference counting bug. * gui/component/select-names/e-select-names-manager.c (popup_cb): A callback for creating the appropriate popup by calling e_select_names_popup. (e_select_names_manager_create_entry): Connect popup_cb to the entry's popup signal * gui/component/select-names/e-select-names-popup.c: Added. Code for popup right-click menus for recipient entries. Still a bit incomplete. * backend/ebook/e-destination.c (e_destination_get_email_num): Added. * contact-editor/e-contact-quick-add.c: Added. Some code and a dialog for very quickly adding entries to the address book. Still not fully working. svn path=/trunk/; revision=8567 * Added. This is part of a change of sematics that makes things much nicerJon Trowbridge2001-03-064-28/+68 | | | | | | | | | | | | | | | | | | | | | | | 2001-03-06 Jon Trowbridge <trow@gnu.org> * gal/e-text/e-entry.c (e_entry_text_keypress): Added. This is part of a change of sematics that makes things much nicer for the user --- auto-activate the completion popup only on keypresses than also change the entry. (e_entry_proxy_changed): Record that the underlying EText has changed, and set up a timeout to clear the changed_since_keypress flag in a very short amount of time. (e_entry_init): Connect to the EText's "keypress" signal". (e_entry_destroy): If our completion_delay_tag timeout is still floating around out there when we are winding things down, remove it. * gal/e-text/e-text.c (e_text_class_init): Added keypress signal. (e_text_text_model_reposition): Removed some old cruft. (e_text_event): Emit our keypress signal after handling events of type GDK_KEY_PRESS. svn path=/trunk/; revision=8566 * Set version number to 0.5.99.5Jon Trowbridge2001-03-065-10/+66 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-03-05 Jon Trowbridge <trow@gnu.org> * configure.in: Set version number to 0.5.99.5 * gal/e-text/e-entry.c (e_entry_class_init): Add a "popup" signal. If you have trepidations about this, see the technical argument below. (e_entry_init): Connect to the EText's popup signal. (e_entry_proxy_popup): Proxy emitter for popup signals from the EText. * gal/e-text/e-text.c (e_text_class_init): Added a "popup" signal. (e_text_event): Emit the "popup" signal on right-clicks. Now you could ask yourself: "should there be a signal named 'popup' in EText that gets emitted on right-clicks?" And this is a reasonable question, since... well, this has a funny feeling to it. But the whole point of GNOME, or at least one of the original points of GNOME, was to impose policy in a reasonable way when it made sense in order to simplify the user's experience. Convention dictates that popup menus are tied to right-clicks --- so rather than setting up some elaborate forwarding of button-press signals, why not just impose a little policy and set up a signal that is closely tied to a familiar set of semantics? Maybe it isn't the best thing to do from a aesthetics-of-the-API point of view, but I doubt anyone could condemn it as being anything more than mostly harmless. svn path=/trunk/; revision=8565 * Update pilot instructionsJP Rosevear2001-03-062-1/+5 | | | | | | | | 2001-03-05 JP Rosevear <jpr@ximian.com> * README: Update pilot instructions svn path=/trunk/; revision=8564 * Updated Norwegian (bokmål) translation. Updated with a bunch of missingKjartan Maraas2001-03-064-1185/+1493 | | | | | | | | | 2001-03-05 Kjartan Maraas <kmaraas@gnome.org> * no.po: Updated Norwegian (bokmål) translation. * POTFILES.in: Updated with a bunch of missing files. svn path=/trunk/; revision=8563 * Don't return NULL if the token is non-NULL. This is why:Jeffrey Stedfast2001-03-064-3/+37 | | | | | | | | | | | | | | | | | | | | | 2001-03-05 Jeffrey Stedfast <fejj@ximian.com> * camel-sasl-plain.c (plain_challenge): Don't return NULL if the token is non-NULL. This is why: sending : AUTH PLAIN received: 334 ok. go on. <-- this is why sending : ZGZPaQpAZ214Lm5ldBBnb29jYXI= received: 235 {mp005-rz3} go ahead * camel-sasl.c (camel_sasl_authtype): Add the PLAIN type here. (camel_sasl_authtype_list): And here too. * camel-sasl-plain.c: Initialize the camel_sasl_plain_authtype. * camel-sasl-plain.h: extern the camel_sasl_plain_authtype. svn path=/trunk/; revision=8562 * i18n'd some strings in here.Jeffrey Stedfast2001-03-063-9/+68 | | | | | | | | | | | | | 2001-03-05 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-store.c (imap_connect): i18n'd some strings in here. * providers/smtp/camel-smtp-transport.c (smtp_connect): Keep trying to authenticate until either we succeed or until the user cancels. svn path=/trunk/; revision=8561 * Don't access the `active` data member of a GtkToggleButton directly - badJeffrey Stedfast2001-03-066