Now that we check for a C++ compiler in configure.in anyway, I added a

2001-05-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* tests/Makefile.am, tests/cxx-test.C: Now that we check for a C++
	compiler in configure.in anyway, I added a test, that the GLib
	headers can be inclued into a C++ program. This fixes bug #52605.
This commit is contained in:
Sebastian Wilhelmi
2001-05-29 14:17:23 +00:00
committed by Sebastian Wilhelmi
parent 2fd34ae182
commit 68e002beed
11 changed files with 51 additions and 0 deletions

9
tests/cxx-test.C Normal file
View File

@@ -0,0 +1,9 @@
#include <glib.h>
#include <gmodule.h>
#include <glib-object.h>
int
main ()
{
return 0;
}