diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-31 23:19:19 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-31 23:19:19 +0000 |
commit | 7ccbe8fe70598abf16899b154d2576a8878d7c87 (patch) | |
tree | fb99732572c629aa5932e75543bf491a965a630e | |
parent | 01fbc3b649d986fc7f2c1c7ea347ed0fe75119c0 (diff) | |
download | gtk+-7ccbe8fe70598abf16899b154d2576a8878d7c87.tar.gz |
#ifdef out test cases.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gtk/fnmatch.c | 2 |
6 files changed, 26 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2003-01-01 Matthias Clasen <maclas@gmx.de> + + * gtk/fnmatch.c (FNMATCH_TEST_CASES): #undef, since having + a main() in the library is obviously bad. + 2002-12-27 Matthias Clasen <maclas@gmx.de> * gtk/gtktextview.c (gtk_text_view_drag_data_received): Place the diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 2418358e96..4b9fcaec27 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2003-01-01 Matthias Clasen <maclas@gmx.de> + + * gtk/fnmatch.c (FNMATCH_TEST_CASES): #undef, since having + a main() in the library is obviously bad. + 2002-12-27 Matthias Clasen <maclas@gmx.de> * gtk/gtktextview.c (gtk_text_view_drag_data_received): Place the diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 2418358e96..4b9fcaec27 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2003-01-01 Matthias Clasen <maclas@gmx.de> + + * gtk/fnmatch.c (FNMATCH_TEST_CASES): #undef, since having + a main() in the library is obviously bad. + 2002-12-27 Matthias Clasen <maclas@gmx.de> * gtk/gtktextview.c (gtk_text_view_drag_data_received): Place the diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 2418358e96..4b9fcaec27 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2003-01-01 Matthias Clasen <maclas@gmx.de> + + * gtk/fnmatch.c (FNMATCH_TEST_CASES): #undef, since having + a main() in the library is obviously bad. + 2002-12-27 Matthias Clasen <maclas@gmx.de> * gtk/gtktextview.c (gtk_text_view_drag_data_received): Place the diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 2418358e96..4b9fcaec27 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2003-01-01 Matthias Clasen <maclas@gmx.de> + + * gtk/fnmatch.c (FNMATCH_TEST_CASES): #undef, since having + a main() in the library is obviously bad. + 2002-12-27 Matthias Clasen <maclas@gmx.de> * gtk/gtktextview.c (gtk_text_view_drag_data_received): Place the diff --git a/gtk/fnmatch.c b/gtk/fnmatch.c index e6ccb4073d..6a677d8041 100644 --- a/gtk/fnmatch.c +++ b/gtk/fnmatch.c @@ -256,7 +256,7 @@ _gtk_fnmatch (const char *pattern, return gtk_fnmatch_intern (pattern, string, TRUE); } -#define FNMATCH_TEST_CASES +#undef FNMATCH_TEST_CASES #ifdef FNMATCH_TEST_CASES #define TEST(pat, str, result) \ |